    .guide-toc {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.9rem;
      margin-top: 2rem;
    }

    .guide-toc a {
      display: block;
      padding: 1rem 1.1rem;
      border: 1px solid rgba(157, 195, 250, 0.18);
      border-radius: var(--r);
      background: rgba(255, 255, 255, 0.07);
      color: #fff;
      text-decoration: none;
      font-size: 0.86rem;
      font-weight: 500;
      line-height: 1.45;
    }

    .guide-lede {
      max-width: 780px;
      font-size: 1.05rem;
      line-height: 1.85;
      color: #4e5262;
      margin-bottom: 2rem;
    }

    .guide-block {
      max-width: 860px;
      margin-bottom: 2.5rem;
    }

    .guide-block p {
      color: #4e5262;
      font-size: 0.96rem;
      font-weight: 300;
      line-height: 1.82;
      margin-bottom: 0.95rem;
    }

    .guide-kicker {
      color: var(--purple);
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      margin-bottom: 0.45rem;
    }

    .guide-mini-title {
      color: var(--galaxy);
      font-size: 1.22rem;
      line-height: 1.35;
      margin-bottom: 0.6rem;
    }

    .guide-flow {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 0.9rem;
      margin: 2rem 0 0;
    }

    .guide-flow + .figure-grid,
    .guide-table + .figure-grid {
      margin-top: 2rem;
    }

    .guide-step {
      padding: 1.2rem;
      border-radius: var(--r);
      background: #fff;
      border: 1px solid #e4e4ef;
      box-shadow: 0 2px 14px rgba(0, 0, 0, 0.04);
    }

    .guide-step strong {
      color: var(--purple);
      display: block;
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 0.4rem;
    }

    .guide-step span {
      display: block;
      color: #4e5262;
      font-size: 0.86rem;
      line-height: 1.65;
    }

    .guide-table {
      display: grid;
      gap: 0.85rem;
      margin-top: 1.5rem;
    }

    .guide-row {
      display: grid;
      grid-template-columns: minmax(150px, 0.55fr) minmax(0, 1fr);
      gap: 1rem;
      padding: 1rem 0;
      border-bottom: 1px solid rgba(0, 0, 48, 0.09);
    }

    .guide-row strong {
      color: var(--galaxy);
      font-size: 0.9rem;
      line-height: 1.45;
    }

    .guide-row span {
      color: #4e5262;
      font-size: 0.9rem;
      font-weight: 300;
      line-height: 1.7;
    }

    .guide-check-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1rem;
      margin-top: 1.5rem;
    }

    .guide-check {
      padding: 1.25rem;
      border-radius: var(--r);
      background: #fff;
      border: 1px solid #e4e4ef;
      box-shadow: 0 2px 14px rgba(0, 0, 0, 0.04);
    }

    .guide-check h3 {
      color: var(--galaxy);
      font-size: 1rem;
      line-height: 1.35;
      margin-bottom: 0.7rem;
    }

    .guide-check ul {
      list-style: none;
      display: grid;
      gap: 0.55rem;
    }

    .guide-check li {
      position: relative;
      color: #4e5262;
      font-size: 0.86rem;
      font-weight: 300;
      line-height: 1.6;
      padding-left: 1rem;
    }

    .guide-check li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.72em;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--purple);
    }

    .guide-script-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1rem;
      margin-top: 1.6rem;
    }

    .guide-script {
      padding: 1.35rem;
      border-radius: var(--r);
      background: #fff;
      border: 1px solid #e4e4ef;
      box-shadow: 0 2px 14px rgba(0, 0, 0, 0.04);
    }

    .guide-script p:first-child {
      color: var(--purple);
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 0.55rem;
    }

    .guide-script p:last-child {
      color: #4e5262;
      font-size: 0.92rem;
      font-weight: 300;
      line-height: 1.72;
    }

    @media (max-width: 760px) {
      .guide-toc {
        grid-template-columns: 1fr;
      }

      .guide-row {
        grid-template-columns: 1fr;
        gap: 0.35rem;
      }
    }
