
    :root {
      --bg: var(--os-ink-900);
      --surface: rgba(255,255,255,0.035);
      --surface-2: rgba(255,255,255,0.02);
      --border: rgba(240,239,237,0.10);
      --border-2: rgba(240,239,237,0.16);
      --text: var(--os-paper-100);
      --muted: rgba(240,239,237,0.58);
      --faint: rgba(240,239,237,0.38);
      --gold: var(--os-gold-400);
      --gold-soft: rgba(240,194,77,0.14);
      --gold-border: rgba(240,194,77,0.28);
      --green: #4ade80;
    }
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; scroll-padding-top: 90px; }
    body {
      margin: 0; background: var(--bg); color: var(--text);
      font-family: var(--os-font-body);
      font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased;
    }
    .glow {
      position: fixed; inset: 0; z-index: 0; pointer-events: none;
      background:
        radial-gradient(720px 480px at 78% -8%, rgba(240,194,77,0.10), transparent 70%),
        radial-gradient(560px 560px at 2% 112%, rgba(224,165,42,0.06), transparent 70%);
    }

    .wm { user-select: none; letter-spacing: -0.01em; white-space: nowrap; }
    .wm .out { font-family: var(--os-font-wordmark-serif); font-style: italic; font-weight: 400; }
    .wm .scaled { font-family: var(--os-font-wordmark-sans); font-weight: 700; }
    .wm .dot { color: var(--gold); }

    /* ---- Nav + dropdown ---- */
    .nav {
      position: sticky; top: 0; z-index: 40;
      display: flex; align-items: center; justify-content: space-between; gap: 16px;
      padding: 14px 28px;
      background: rgba(20,17,15,0.85); backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
    }
    .nav .wm { font-size: 21px; }
    .nav-links { display: flex; gap: 26px; align-items: center; }
    .nav-links a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 500; }
    .nav-links a:hover { color: var(--text); }
    .dd { position: relative; }
    .dd > a { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
    .dd > a svg { transition: transform .15s; }
    .dd:hover > a svg, .dd:focus-within > a svg { transform: rotate(180deg); }
    .dd-menu {
      position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%);
      min-width: 240px; padding: 8px;
      background: rgba(28,24,20,0.97); border: 1px solid var(--border-2); border-radius: 14px;
      box-shadow: 0 24px 60px rgba(0,0,0,0.5);
      opacity: 0; visibility: hidden; translate: 0 -4px; transition: all .15s;
    }
    .dd:hover .dd-menu, .dd:focus-within .dd-menu { opacity: 1; visibility: visible; translate: 0 0; }
    .dd-menu::before { content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
    .dd-menu a {
      display: block; padding: 12px 14px; border-radius: 10px; color: var(--text);
    }
    .dd-menu a:hover { background: var(--gold-soft); }
    .dd-menu a b { display: block; font-size: 14px; font-weight: 600; }
    .dd-menu a span { font-size: 12px; color: var(--faint); font-weight: 400; }

    .btn {
      display: inline-block; border: none; border-radius: 10px; cursor: pointer;
      font-family: inherit; font-weight: 600; text-decoration: none; text-align: center;
      transition: transform .1s, box-shadow .15s;
    }
    .btn:active { transform: translateY(1px); }
    .btn-gold {
      color: #180f00; font-weight: 700;
      background: linear-gradient(180deg, var(--os-gold-300), var(--os-gold-500));
      box-shadow: 0 6px 24px rgba(224,165,42,0.24);
    }
    .btn-gold:hover { box-shadow: 0 9px 30px rgba(224,165,42,0.32); transform: translateY(-1px); }
    .btn-cta { letter-spacing: 0.04em; text-transform: uppercase; font-size: 14px; }
    .btn-ghost { color: var(--text); background: transparent; border: 1px solid var(--border-2); }
    .btn-ghost:hover { border-color: var(--gold); color: var(--os-gold-300); }
    .nav .btn { font-size: 13px; padding: 11px 20px; }
    .nav-links a.btn-gold { color: #180f00; font-weight: 700; }

    .wrap { position: relative; z-index: 1; max-width: 1120px; margin: 0 auto; padding: 0 24px; }
    section { padding: 104px 0 0; }
    .chip {
      display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--gold);
      background: var(--gold-soft); border: 1px solid var(--gold-border);
      padding: 5px 13px; border-radius: 8px; margin-bottom: 22px;
    }
    .sec-h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.12; margin: 0 0 14px; }
    /* Headline accents: bold gold, congruent with the hero. Playfair italic
       lives only in the manifesto and the wordmark. */
    .sec-h2 .ed, .road h2 .ed, .door h2 .ed {
      font-family: inherit; font-style: normal; font-weight: 700;
      background: linear-gradient(180deg, var(--os-gold-200), var(--os-gold-400));
      -webkit-background-clip: text; background-clip: text; color: transparent;
    }
    .sec-lead { font-size: 17px; color: var(--muted); max-width: 58ch; margin: 0 0 40px; }
    .center { text-align: center; }
    .center .sec-lead { margin-left: auto; margin-right: auto; }

    /* ---- Hero ---- */
    .hero { padding: 88px 0 64px; text-align: center; }
    .hero h1 {
      font-size: clamp(32px, 4.6vw, 54px); font-weight: 700; letter-spacing: -0.03em;
      line-height: 1.12; margin: 0 0 24px;
    }
    .hero h1 .gold {
      background: linear-gradient(180deg, var(--os-gold-200), var(--os-gold-400));
      -webkit-background-clip: text; background-clip: text; color: transparent;
    }
    .hero .sub { font-size: clamp(17px, 2vw, 19px); color: var(--muted); max-width: 56ch; margin: 0 auto 12px; }
    .hero .sub b { color: var(--text); font-weight: 600; }
    .hero .sub2 { font-size: 15.5px; color: var(--faint); margin: 0 auto 36px; }
    .hero .cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; align-items: center; }
    .hero .btn-gold { padding: 16px 30px; }
    .hero .btn-ghost { font-size: 15px; padding: 15px 26px; }
    .hero .cta-note { margin-top: 16px; font-size: 13px; color: var(--faint); }

    /* ---- VSL ---- */
    .vsl-sec { padding-top: 48px; }
    .steps { max-width: 860px; margin: 0 auto; }
    .step-label {
      display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
      font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold);
    }
    .step-label .line { flex: 1; height: 1px; background: var(--border); }
    .vsl-frame {
      position: relative; aspect-ratio: 16 / 9; border-radius: 16px; overflow: hidden;
      background:
        radial-gradient(520px 300px at 70% 20%, rgba(240,194,77,0.08), transparent 70%),
        linear-gradient(180deg, #201c18, #16130f);
      border: 1px solid var(--border-2);
      display: grid; place-items: center;
      box-shadow: 0 30px 80px rgba(0,0,0,0.45);
    }
    .vsl-frame .inner { text-align: center; }
    .vsl-frame .wm { font-size: clamp(28px, 4vw, 40px); opacity: 0.9; }
    .play {
      width: 76px; height: 76px; margin: 22px auto 0; border-radius: 50%;
      background: linear-gradient(180deg, var(--os-gold-400), var(--os-gold-500));
      display: grid; place-items: center; cursor: pointer;
      box-shadow: 0 10px 34px rgba(224,165,42,0.35);
      transition: transform .12s;
    }
    .play:hover { transform: scale(1.05); }
    .play svg { margin-left: 4px; }
    .vsl-frame .dur { margin-top: 18px; font-size: 12.5px; color: var(--faint); }
    .step-2 { margin-top: 40px; text-align: center; }
    .step-2 .step-label { justify-content: center; }
    .step-2 .step-label .line { display: none; }
    .step-2 .btn-gold { padding: 16px 30px; }

    /* ---- Names ---- */
    .names { margin-top: 84px; text-align: center; }
    .names .n-label { font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); margin-bottom: 20px; }
    .names .row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 34px; align-items: baseline; }
    .names .row span { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; color: rgba(240,239,237,0.45); white-space: nowrap; }

    /* ---- Trap ---- */
    .trap-stage { position: relative; max-width: 920px; margin: 48px auto 0; min-height: 210px; }
    .trap-stage svg.ribbon { position: absolute; inset: 0; width: 100%; height: 100%; }
    .trap-cards { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: center; height: 210px; }
    .trap-card {
      width: min(300px, 42%);
      background: linear-gradient(180deg, #24201b, #1a1613);
      border: 1px solid var(--gold-border); border-radius: 14px; padding: 20px 22px;
      box-shadow: 0 18px 50px rgba(0,0,0,0.45);
    }
    .trap-card b { display: block; font-size: 17px; font-weight: 700; margin-bottom: 4px; }
    .trap-card span { font-size: 13px; color: var(--muted); }
    .trap-close { text-align: center; margin: 36px auto 48px; font-size: 17px; color: var(--muted); max-width: 52ch; }
    .trap-close b { color: var(--os-gold-300); font-weight: 600; }

    .cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
    .leak { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 24px; }
    .leak .l-tag { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold); margin-bottom: 10px; }
    .leak h3 { font-size: 16.5px; font-weight: 600; margin: 0 0 6px; line-height: 1.35; }
    .leak p { font-size: 14px; color: var(--muted); margin: 0; }

    /* ---- Truth manifesto ---- */
    .truth {
      background: var(--surface); border: 1px solid var(--gold-border); border-radius: 16px;
      padding: 52px 56px;
    }
    .truth p {
      font-family: var(--os-font-editorial); font-style: italic;
      font-size: clamp(20px, 2.6vw, 26px); line-height: 1.55; margin: 0 0 18px;
    }
    .truth p:last-of-type { margin-bottom: 0; }
    .truth .hl { color: var(--os-gold-300); }
    .truth .src { font-family: var(--os-font-body); font-style: normal; font-size: 12px; color: var(--faint); margin-top: 22px; }

    /* ---- Mechanism panel ---- */
    .road {
      border: 1px solid var(--gold-border); border-radius: 20px; padding: 56px 48px;
      background: radial-gradient(600px 320px at 50% -30%, rgba(240,194,77,0.12), transparent 70%), var(--surface);
      text-align: center;
    }
    .road h2 { font-size: clamp(28px, 4.4vw, 42px); font-weight: 700; letter-spacing: -0.03em; margin: 0 0 14px; }
    .road p { color: var(--muted); max-width: 58ch; margin: 0 auto 18px; font-size: 16.5px; }
    .road p b { color: var(--text); }
    .phases { display: flex; justify-content: center; gap: 6px; flex-wrap: wrap; margin: 10px 0 30px; }
    .phase {
      font-size: 11.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
      color: var(--gold); border: 1px solid var(--gold-border); border-radius: 999px; padding: 6px 12px;
      background: var(--gold-soft);
    }
    .road .btn { font-size: 15px; padding: 14px 26px; }
    .road .mini { margin-top: 14px; font-size: 12.5px; color: var(--faint); }

    /* ---- Outcome ---- */
    .outcome { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
    .outcome .o-def { font-size: 16px; color: var(--muted); border-left: 2px solid var(--gold-border); padding-left: 24px; }
    .outcome .o-def b { color: var(--text); }
    .bars { display: grid; gap: 26px; }
    .bar-block .b-label { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 13.5px; }
    .bar-block .b-tag {
      font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
      border: 1px solid var(--border-2); border-radius: 999px; padding: 3px 10px; color: var(--faint);
    }
    .bar-block .b-tag.after { color: var(--gold); border-color: var(--gold-border); background: var(--gold-soft); }
    .bar-block .b-label span b { color: var(--gold); }
    .bar { display: flex; border-radius: 12px; overflow: hidden; border: 1px solid var(--border-2); }
    .bar .seg { padding: 16px 16px; }
    .bar .seg .pct { font-size: 20px; font-weight: 700; font-variant-numeric: tabular-nums; }
    .bar .seg .what { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); margin-top: 2px; white-space: nowrap; }
    .bar .seg.big { flex: 4; }
    .bar .seg.small { flex: 1; display: grid; place-items: center; font-size: 15px; font-weight: 700; font-variant-numeric: tabular-nums; }
    .bar.before .big { background: var(--surface); }
    .bar.before .small { background: var(--gold-soft); color: var(--gold); border-left: 1px solid var(--gold-border); }
    .bar.after .big { background: linear-gradient(180deg, rgba(240,194,77,0.22), rgba(240,194,77,0.12)); }
    .bar.after .big .pct { color: var(--os-gold-300); }
    .bar.after .small { background: var(--surface); color: var(--muted); border-left: 1px solid var(--border-2); }
    .bars .fine { font-size: 11px; color: var(--faint); }

    /* ---- Tree ---- */
    .tree { text-align: center; }
    .t-root {
      display: inline-block; font-size: 15px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--os-gold-300);
      border: 1px solid var(--gold-border); border-radius: 12px; padding: 16px 34px;
      background: linear-gradient(180deg, rgba(240,194,77,0.10), rgba(240,194,77,0.03));
      box-shadow: 0 10px 40px rgba(0,0,0,0.35);
    }
    .t-curves { display: block; margin: 0 auto; width: min(760px, 92%); height: 84px; }
    .t-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 980px; margin: 0 auto; text-align: left; }
    .t-col { position: relative; }
    .t-branch {
      display: inline-block; font-size: 14px; font-weight: 600; letter-spacing: 0.02em;
      border: 1px solid var(--border-2); border-radius: 10px; padding: 9px 22px;
      background: var(--surface); margin-bottom: 20px;
      position: relative; left: 50%; transform: translateX(-50%);
    }
    .t-nodes { position: relative; display: grid; gap: 12px; }
    .t-nodes::before {
      content: ''; position: absolute; left: 50%; top: -20px; bottom: 24px; width: 1px;
      background: var(--gold-border); z-index: 0;
    }
    .t-node {
      position: relative; z-index: 1;
      background: linear-gradient(180deg, #221d18, #191512);
      border: 1px solid var(--border-2); border-radius: 12px; padding: 15px 18px 15px 24px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    }
    .t-node::before {
      content: ''; position: absolute; left: 0; top: 12px; bottom: 12px; width: 4px;
      border-radius: 0 4px 4px 0;
      background: linear-gradient(180deg, var(--os-gold-300), var(--os-gold-600));
    }
    .t-node b { display: block; font-size: 15px; font-weight: 600; }
    .t-node span { font-size: 12.5px; color: var(--faint); }
    .tree .t-close { margin-top: 34px; font-size: 15px; color: var(--muted); max-width: 58ch; margin-left: auto; margin-right: auto; }
    .tree .t-close b { color: var(--text); }

    /* ---- Trio ---- */
    .lanes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
    .lane {
      background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 28px 24px;
      display: flex; flex-direction: column; gap: 10px;
    }
    .lane .l-tag { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold); }
    .lane h3 { font-size: 19px; font-weight: 600; margin: 0; }
    .lane p { font-size: 14px; color: var(--muted); margin: 0; flex: 1; }
    .lane a { color: var(--os-gold-300); font-size: 14px; font-weight: 500; text-decoration: none; }
    .lane a:hover { text-decoration: underline; text-underline-offset: 3px; }
    .lane .incl { font-size: 12.5px; color: var(--faint); }
    .lanes-note { margin-top: 20px; font-size: 13.5px; color: var(--faint); max-width: 64ch; }

    /* ---- How it works ---- */
    .hiw { display: grid; gap: 14px; }
    .hiw-row {
      display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
      background: var(--surface-2); border: 1px solid var(--border); border-radius: 16px; padding: 36px;
    }
    .hiw-row:nth-child(even) .hiw-copy { order: 2; }
    .hiw-num { font-size: 22px; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 12px; letter-spacing: 0.06em; font-variant-numeric: tabular-nums; }
    .hiw-copy h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.01em; margin: 0 0 10px; }
    .hiw-copy p { font-size: 15px; color: var(--muted); margin: 0 0 10px; max-width: 44ch; }
    .hiw-copy .g-note { font-size: 13.5px; color: var(--os-gold-300); }

    .screen {
      border-radius: 12px; background: rgba(255,255,255,0.045); border: 1px solid var(--border-2);
      padding: 20px; box-shadow: 0 18px 50px rgba(0,0,0,0.38); position: relative;
    }
    .screen .demo-tag {
      position: absolute; top: 10px; right: 12px; font-size: 9.5px; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--faint); border: 1px solid var(--border);
      border-radius: 999px; padding: 2px 8px;
    }
    .screen .s-lbl { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--faint); margin-bottom: 4px; }
    .screen .s-val { font-size: 24px; font-weight: 700; font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }
    .screen .s-d { font-size: 12px; font-variant-numeric: tabular-nums; }
    .screen .up { color: var(--green); }
    .screen svg { display: block; width: 100%; margin-top: 10px; }
    .screen .rowline {
      display: flex; justify-content: space-between; gap: 10px; padding: 9px 0;
      border-top: 1px solid var(--border); font-size: 12.5px;
    }
    .screen .rowline:first-of-type { border-top: none; }
    .screen .rowline .who { color: var(--text); font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .screen .rowline .amt { font-variant-numeric: tabular-nums; color: var(--muted); white-space: nowrap; }
    .screen .pillrow { display: flex; gap: 6px; margin-top: 12px; flex-wrap: wrap; }
    .screen .spill {
      font-size: 10.5px; padding: 3px 9px; border-radius: 999px;
      background: var(--surface-2); border: 1px solid var(--border); color: var(--muted);
    }
    .screen .spill.hot { color: var(--gold); border-color: var(--gold-border); background: var(--gold-soft); }
    .slackmsg { display: flex; gap: 10px; padding: 10px 0; border-top: 1px solid var(--border); }
    .slackmsg:first-of-type { border-top: none; }
    .slackmsg .av {
      width: 30px; height: 30px; border-radius: 8px; flex: none;
      background: linear-gradient(180deg, var(--os-gold-400), var(--os-gold-500));
      display: grid; place-items: center; font-size: 11px; font-weight: 700; color: var(--os-gold-ink);
    }
    .slackmsg .m b { font-size: 12.5px; display: block; }
    .slackmsg .m span { font-size: 12px; color: var(--muted); }

    .bento { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .bento .screen { padding: 24px; }
    .bento .cap { margin-top: 14px; font-size: 12.5px; color: var(--faint); }

    /* ---- Founder ---- */
    .founder {
      display: grid; grid-template-columns: 200px 1fr; gap: 40px; align-items: center;
      background: var(--surface-2); border: 1px solid var(--border); border-radius: 16px; padding: 36px;
    }
    .founder img { width: 100%; border-radius: 14px; display: block; filter: grayscale(28%) contrast(1.04); }
    .founder .f-copy p { font-size: 15.5px; color: var(--muted); margin: 0 0 12px; max-width: 58ch; }
    .founder .f-copy p b { color: var(--text); }
    .founder .sig { margin-top: 6px; font-size: 18px; }

    /* ---- FAQ ---- */
    .faq { max-width: 760px; }
    .faq details { border-bottom: 1px solid var(--border); padding: 4px 0; }
    .faq summary {
      cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
      gap: 16px; padding: 16px 0; font-size: 15.5px; font-weight: 600;
    }
    .faq summary::-webkit-details-marker { display: none; }
    .faq summary .pm { color: var(--gold); font-weight: 400; font-size: 20px; flex: none; transition: transform .15s; }
    .faq details[open] summary .pm { transform: rotate(45deg); }
    .faq .a { padding: 0 0 18px; font-size: 14.5px; color: var(--muted); max-width: 62ch; }

    /* ---- Door ---- */
    .guas { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 14px; }
    .gua { border: 1px solid var(--border); border-radius: 14px; padding: 20px 22px; background: var(--surface-2); text-align: center; }
    .gua b { display: block; font-size: 16px; margin-bottom: 4px; }
    .gua span { font-size: 13px; color: var(--faint); }
    .door {
      border-radius: 20px; padding: 64px 40px; text-align: center;
      background: radial-gradient(560px 300px at 50% -20%, rgba(240,194,77,0.14), transparent 70%), var(--surface);
      border: 1px solid var(--gold-border);
    }
    .door h2 { font-size: clamp(28px, 4.4vw, 42px); font-weight: 700; letter-spacing: -0.03em; margin: 0 0 12px; }
    .door p { color: var(--muted); max-width: 48ch; margin: 0 auto 30px; }
    .door .btn-gold { padding: 17px 32px; }

    footer { margin-top: 104px; border-top: 1px solid var(--border); padding: 36px 0 48px; }
    .foot { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
    .foot .wm { font-size: 18px; }
    .foot-links { display: flex; gap: 20px; flex-wrap: wrap; }
    .foot-links a { color: var(--muted); font-size: 13px; text-decoration: none; }
    .foot-links a:hover { color: var(--text); }
    .foot .note { font-size: 12px; color: var(--faint); width: 100%; text-align: center; margin-top: 22px; }

    @media (max-width: 900px) {
      .cards-3, .lanes, .guas { grid-template-columns: 1fr; }
      .bento, .outcome { grid-template-columns: 1fr; }
      .outcome { gap: 30px; }
      .hiw-row { grid-template-columns: 1fr; gap: 24px; padding: 26px; }
      .hiw-row:nth-child(even) .hiw-copy { order: 0; }
      .founder { grid-template-columns: 1fr; gap: 24px; padding: 28px; }
      .founder img { max-width: 190px; }
      .nav-links > a:not(.btn), .dd { display: none; }
      .t-curves { display: none; }
      .t-cols { grid-template-columns: 1fr; gap: 36px; margin-top: 28px; }
      .trap-stage { min-height: 0; }
      .trap-stage svg.ribbon { display: none; }
      .trap-cards { flex-direction: column; gap: 14px; height: auto; }
      .trap-card { width: 100%; }
      .truth { padding: 32px 26px; }
    }
    @media (max-width: 560px) {
      section { padding: 76px 0 0; }
      .hero { padding: 76px 0 44px; }
      .road { padding: 40px 24px; }
    }
  
/* ---- Founders (two) ---- */
.founders-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 40px; }
.fcard { background: var(--surface-2); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; }
.fcard img { width: 100%; aspect-ratio: 4 / 3.4; object-fit: cover; object-position: center 20%; filter: grayscale(24%) contrast(1.03); display: block; }
.fcard .f-body { padding: 22px 24px 26px; }
.fcard .f-body b { font-size: 18px; font-weight: 700; display: block; }
.fcard .f-role { font-size: 11.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); display: block; margin: 3px 0 10px; }
.fcard .f-body p { font-size: 14.5px; color: var(--muted); margin: 0; }
@media (max-width: 900px) { .founders-2 { grid-template-columns: 1fr; } }

/* ---- Subpage helpers ---- */
.page-hero { padding: 72px 0 24px; text-align: center; }
.page-hero h1 { font-size: clamp(30px, 4.6vw, 50px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.12; margin: 0 0 20px; }
.page-hero h1 .gold {
  background: linear-gradient(180deg, var(--os-gold-200), var(--os-gold-400));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.page-hero .sub { font-size: clamp(16.5px, 2vw, 18.5px); color: var(--muted); max-width: 56ch; margin: 0 auto 34px; }
.page-hero .cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.page-hero .btn-gold { padding: 16px 30px; }
.page-hero .btn-ghost { font-size: 15px; padding: 15px 26px; }
.forwho { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fw { border-radius: 16px; padding: 26px; border: 1px solid var(--border); background: var(--surface-2); }
.fw.yes { border-color: var(--gold-border); background: var(--gold-soft); }
.fw h3 { margin: 0 0 12px; font-size: 16px; }
.fw ul { margin: 0; padding: 0; list-style: none; }
.fw li { padding: 7px 0; font-size: 14px; color: var(--muted); display: flex; gap: 10px; }
.fw li .m { flex: none; color: var(--gold); }
.fw.no li .m { color: var(--faint); }
.scenes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.scene {
  background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 24px 22px;
  display: flex; flex-direction: column; gap: 8px;
}
.scene h3 { font-size: 15.5px; font-weight: 600; margin: 0; }
.scene p { font-size: 13.5px; color: var(--muted); margin: 0; flex: 1; }
.scene .rep { font-size: 12px; color: var(--faint); border-top: 1px solid var(--border); padding-top: 10px; }
.scene .rep b { color: var(--os-gold-300); font-weight: 500; }
.roles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.role { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 20px 22px; }
.role b { font-size: 15.5px; display: block; margin-bottom: 4px; }
.role span { font-size: 13px; color: var(--muted); }
@media (max-width: 900px) { .forwho, .scenes, .roles { grid-template-columns: 1fr; } }
@media (max-width: 900px) and (min-width: 561px) { .scenes, .roles { grid-template-columns: 1fr 1fr; } }

/* ---- Mobile hamburger nav ---- */
.nav-burger {
  display: none; background: none; border: 1px solid var(--border-2);
  border-radius: 8px; padding: 9px 10px; cursor: pointer; flex: none;
}
.nav-burger span { display: block; width: 18px; height: 2px; background: var(--text); margin: 3.5px 0; border-radius: 2px; }
.mobile-menu {
  position: fixed; top: 63px; left: 0; right: 0; z-index: 39;
  background: rgba(22,18,15,0.98); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-2);
  padding: 8px 22px 18px; display: none;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 14px 2px; color: var(--text); text-decoration: none;
  font-size: 16px; font-weight: 500; border-top: 1px solid var(--border);
}
.mobile-menu a:first-child { border-top: none; }
.mobile-menu a span { display: block; font-size: 12.5px; color: var(--faint); font-weight: 400; margin-top: 2px; }
@media (max-width: 900px) {
  .nav-burger { display: block; }
  .nav .btn { font-size: 12.5px; padding: 10px 14px; }
}

/* Mobile: CTA lives at the bottom of the hamburger menu, not in the bar */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .mobile-menu .mm-cta {
    border-top: none; margin-top: 16px; text-align: center;
    padding: 15px; font-size: 14px; color: #180f00; font-weight: 700;
  }
  /* More air between the sticky bar and the first content */
  .page-hero { padding-top: 44px; }
}
@media (max-width: 560px) {
  .hero { padding-top: 100px; }
}

/* Safety net: no page-level horizontal scroll, ever */
body { overflow-x: hidden; }

    /* ---- v3: brands marquee ---- */
    .marquee-sec { padding: 30px 0 8px; }
    .marquee-label { text-align: center; font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); margin-bottom: 22px; }
    .marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
    .marquee .track { display: flex; align-items: center; width: max-content; animation: marq 46s linear infinite; }
    .marquee .track span { white-space: nowrap; font-size: 14.5px; font-weight: 600; letter-spacing: 0.04em; color: var(--muted); padding-right: 26px; }
    .marquee .track span::after { content: '·'; color: var(--gold); margin-left: 26px; }
    @keyframes marq { to { transform: translateX(-50%); } }

    /* ---- v3: results cases (homepage) ---- */
    .cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
    .case-img { width: 100%; border-radius: 14px; border: 1px solid var(--border); display: block; }
    .case-intro { font-size: 15.5px; line-height: 1.5; color: rgba(240,239,237,0.82); margin: 0 0 12px; min-height: 47px; }
    .case-intro .g { color: var(--os-gold-300); }
    @media (max-width: 860px) { .cases { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; } }

    /* ---- v3: belief ---- */
    .belief-body { max-width: 700px; margin: 26px auto 0; text-align: center; }
    .belief-body p { font-size: 17.5px; line-height: 1.65; color: var(--muted); margin: 0 0 13px; }
    .belief-body b { color: var(--text); font-weight: 600; }

    /* ---- v3: hero chip, slightly more present ---- */
    .hero .chip { font-size: 13px; padding: 7px 16px; color: var(--os-gold-300); border-color: rgba(240,194,77,0.42); }

    /* ---- v3: data flywheel ---- */
    .fly { max-width: 760px; margin: 0 auto; text-align: center; }
    .fly-row { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
    .fly-chip { font-size: 13px; font-weight: 600; color: var(--muted); border: 1px solid var(--border-2); border-radius: 8px; padding: 8px 16px; background: var(--surface); }
    .fly-svg { display: block; width: 100%; max-width: 640px; margin: 0 auto; height: 64px; }
    .fly-node { display: inline-block; font-size: 14px; font-weight: 700; color: var(--os-gold-300); border: 1px solid var(--gold-border); background: var(--gold-soft); padding: 10px 24px; border-radius: 10px; }
    .fly-arrow { width: 1.5px; height: 34px; background: linear-gradient(180deg, rgba(240,194,77,0.5), var(--gold)); margin: 0 auto; position: relative; }
    .fly-arrow::after { content: ''; position: absolute; bottom: -1px; left: 50%; transform: translateX(-50%); border: 5px solid transparent; border-top-color: var(--gold); }
    .fly-front { max-width: 520px; margin: 10px auto 0; border: 1px solid var(--gold-border); background: linear-gradient(180deg, rgba(240,194,77,0.10), rgba(240,194,77,0.03)); border-radius: 14px; padding: 20px 28px; }
    .fly-front small { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); margin-bottom: 6px; }
    .fly-front b { display: block; font-size: 17px; letter-spacing: -0.01em; }
    .fly-front span { display: block; font-size: 13.5px; color: var(--muted); margin-top: 5px; }
    .fly-loop { margin-top: 18px; font-size: 13.5px; color: var(--faint); }

    /* ---- v3: 4 pillars grid ---- */
    .cards-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .cards-4 .leak p b { color: var(--os-gold-300); font-weight: 600; }
    @media (max-width: 700px) { .cards-4 { grid-template-columns: 1fr; } }

    /* ---- v3: belief mirror lines ---- */
    .belief-mirrors { margin: 16px 0; }
    .belief-mirrors span { display: block; font-size: 18.5px; font-weight: 600; letter-spacing: -0.01em; padding: 2px 0; }
    .belief-mirrors span:nth-child(1) { color: rgba(240,239,237,0.55); }
    .belief-mirrors span:nth-child(2) { color: rgba(240,239,237,0.70); }
    .belief-mirrors span:nth-child(3) { color: rgba(240,239,237,0.85); }
    .belief-mirrors span:nth-child(4) { color: var(--text); }
    .belief-pull { font-size: clamp(22px, 3vw, 30px); font-weight: 700; letter-spacing: -0.02em; color: var(--text) !important; margin: 20px 0 10px !important; }

    /* ---- v3: pillar card design + scroll reveal ---- */
    .cards-4 .leak { position: relative; padding: 28px 26px 24px; transition: transform .25s ease, border-color .25s ease; }
    .cards-4 .leak:hover { transform: translateY(-3px); border-color: var(--gold-border); }
    .cards-4 .leak .l-tag {
      font-size: 30px; font-weight: 700; letter-spacing: 0;
      background: linear-gradient(180deg, rgba(240,194,77,0.55), rgba(240,194,77,0.18));
      -webkit-background-clip: text; background-clip: text; color: transparent;
      margin-bottom: 8px;
    }
    .js-reveal [data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
    .js-reveal [data-reveal].in { opacity: 1; transform: none; }
    .js-reveal .cards-4 [data-reveal]:nth-child(2) { transition-delay: .08s; }
    .js-reveal .cards-4 [data-reveal]:nth-child(3) { transition-delay: .16s; }
    .js-reveal .cards-4 [data-reveal]:nth-child(4) { transition-delay: .24s; }
    @media (prefers-reduced-motion: reduce) {
      .js-reveal [data-reveal] { opacity: 1; transform: none; transition: none; }
    }

    /* ---- v3: buyer journey (merged 80/20 + flywheel) ---- */
    .journey { max-width: 940px; margin: 0 auto; }
    .j-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
    .j-step { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 14px 12px; text-align: center; }
    .j-step b { display: block; font-size: 13.5px; }
    .j-step span { display: block; font-size: 11.5px; color: var(--faint); margin-top: 3px; }
    .j-step.gold { border-color: var(--gold-border); background: var(--gold-soft); }
    .j-step:not(:last-child)::after { content: '→'; position: absolute; right: -13px; top: 50%; transform: translateY(-50%); color: var(--gold); font-size: 13px; z-index: 1; }
    .j-brackets { display: grid; grid-template-columns: 4fr 1fr; gap: 12px; margin-top: 14px; }
    .j-bracket i { display: block; height: 10px; border: 1px solid var(--gold-border); border-top: none; border-radius: 0 0 10px 10px; }
    .j-bracket span { display: block; text-align: center; font-size: 12.5px; color: var(--muted); margin-top: 8px; }
    .j-bracket b { color: var(--os-gold-300); }
    .j-loop { display: block; width: 92%; margin: 16px auto 0; height: 52px; }
    .j-caption { text-align: center; font-size: 13.5px; color: var(--faint); margin: 4px 0 0; }
    .j-caption b { color: var(--muted); }
    .dm-wrap { margin-top: 44px; text-align: center; }
    .dm-lead { font-size: 14px; color: var(--muted); margin: 0 0 14px; }
    .dm-card { position: relative; display: inline-block; text-align: left; width: min(360px, 100%); background: linear-gradient(180deg, #1d1915, #17130f); border: 1px solid var(--border-2); border-radius: 18px; padding: 18px; }
    .dm-demo { position: absolute; top: 12px; right: 14px; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); border: 1px solid var(--border); padding: 2px 8px; border-radius: 999px; }
    .dm-head { font-size: 11.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); margin-bottom: 12px; }
    .dm-msg { background: var(--surface-2); border: 1px solid var(--border); border-radius: 4px 14px 14px 14px; padding: 10px 14px; font-size: 13.5px; color: var(--text); margin-bottom: 8px; max-width: 85%; }
    .dm-msg:last-of-type { margin-bottom: 0; }
    @media (max-width: 820px) {
      .j-steps { grid-template-columns: 1fr; gap: 20px; }
      .j-step:not(:last-child)::after { content: '↓'; right: 50%; top: auto; bottom: -17px; transform: translateX(50%); }
      .j-brackets { grid-template-columns: 1fr; gap: 6px; }
      .j-bracket i { display: none; }
      .j-bracket span { margin-top: 0; }
      .j-loop { display: none; }
    }

    /* ---- v3: two tuesdays toggle ---- */
    .tt { max-width: 620px; margin: 0 auto; }
    .tt-toggle { display: flex; justify-content: center; gap: 0; background: var(--surface-2); border: 1px solid var(--border); border-radius: 999px; padding: 4px; width: max-content; margin: 0 auto 26px; }
    .tt-tab { font-family: inherit; font-size: 13.5px; font-weight: 600; color: var(--muted); background: transparent; border: none; border-radius: 999px; padding: 10px 22px; cursor: pointer; transition: all .2s; }
    .tt-tab.active { background: #2b241d; color: var(--text); }
    .tt-tab.gold.active { background: linear-gradient(180deg, var(--os-gold-300), var(--os-gold-500)); color: #241b05; }
    .tt-day { display: none; }
    .tt-day.active { display: block; animation: ttfade .3s ease; }
    @keyframes ttfade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
    .tt-title { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); margin-bottom: 12px; }
    .tt-title span { color: var(--muted); text-transform: none; letter-spacing: 0; font-weight: 500; }
    .tt-row { display: grid; grid-template-columns: 56px 1fr; gap: 14px; align-items: start; padding: 8px 0; }
    .tt-time { font-size: 13px; color: var(--faint); font-variant-numeric: tabular-nums; padding-top: 2px; }
    .tt-note { font-size: 14.5px; color: var(--muted); }
    .tt-event { border: 1px solid var(--border); border-left: 3px solid var(--faint); border-radius: 10px; background: var(--surface); padding: 10px 14px; }
    .tt-event b { display: block; font-size: 14px; }
    .tt-event span { display: block; font-size: 13px; color: var(--muted); margin-top: 2px; }
    .tt-event.bad { border-left-color: #b3544a; }
    .tt-event.good { border-left-color: var(--gold); background: var(--gold-soft); }

    /* ---- v3: two tuesdays, calendar + guide layout ---- */
    .tt-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 52px; align-items: center; max-width: 1040px; margin: 0 auto; }
    .tt-guide { padding-top: 6px; }
    .tt-g { padding-left: 16px; border-left: 2px solid var(--gold-border); }
    .tt-g + .tt-g { margin-top: 24px; }
    .tt-g h3 { margin: 0 0 6px; font-size: 16px; }
    .tt-g p { margin: 0; font-size: 14.5px; color: var(--muted); }
    .tt-hint { margin: 26px 0 0 16px; font-size: 13px; color: var(--faint); }
    .tt { max-width: none; margin: 0; }
    .tt-toggle { margin: 0 auto 18px; }
    .tt-cal { background: linear-gradient(180deg, #1d1915, #16130f); border: 1px solid var(--border-2); border-radius: 16px; padding: 16px 18px 10px; box-shadow: 0 24px 60px rgba(0,0,0,0.35); }
    .tt-calhead { display: flex; align-items: center; gap: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--border); margin-bottom: 8px; }
    .tt-date { flex: none; width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; background: var(--surface-2); border: 1px solid var(--border-2); color: var(--muted); }
    .tt-date.gold { background: var(--gold-soft); border-color: var(--gold-border); color: var(--os-gold-300); }
    .tt-calhead b { display: block; font-size: 14.5px; }
    .tt-calhead span { display: block; font-size: 12px; color: var(--faint); }
    .tt-rows { position: relative; }
    .tt-row { grid-template-columns: 44px 16px 1fr; gap: 10px; padding: 9px 0; }
    .tt-tick { position: relative; display: block; }
    .tt-tick::before { content: ''; position: absolute; left: 50%; top: -9px; bottom: -9px; width: 1px; background: var(--border); }
    .tt-rows .tt-row:first-child .tt-tick::before { top: 10px; }
    .tt-rows .tt-row:last-child .tt-tick::before { bottom: auto; height: 10px; }
    .tt-tick::after { content: ''; position: absolute; left: 50%; top: 8px; transform: translateX(-50%); width: 7px; height: 7px; border-radius: 50%; background: var(--faint); }
    .tt-row:has(.tt-event.good) .tt-tick::after { background: var(--gold); }
    .tt-row:has(.tt-event.bad) .tt-tick::after { background: #b3544a; }
    .tt .j-caption { margin-top: 14px; }
    @media (max-width: 920px) {
      .tt-grid { display: flex; flex-direction: column; gap: 36px; }
      .tt { order: -1; }
      .tt-hint { display: none; }
    }
    .tt-g p b { color: var(--os-gold-300); font-weight: 600; }

    /* ---- v3: equal-height day switch + clearer contrast ---- */
    .tt-days { display: grid; }
    .tt-days .tt-day { display: block; grid-area: 1 / 1; visibility: hidden; opacity: 0; transform: translateY(6px); transition: opacity .3s ease, transform .3s ease, visibility .3s; animation: none; }
    .tt-days .tt-day.active { visibility: visible; opacity: 1; transform: none; }
    .tt-day[data-day="without"] .tt-cal { border-color: rgba(179,84,74,0.35); background: linear-gradient(180deg, #1c1615, #171210); }
    .tt-day[data-day="with"] .tt-cal { border-color: var(--gold-border); box-shadow: 0 24px 70px rgba(0,0,0,0.4), 0 0 40px rgba(240,194,77,0.07); }
    .tt-date.bad { background: rgba(179,84,74,0.14); border-color: rgba(179,84,74,0.4); color: #d98d84; }
    .tt-sum { border-top: 1px solid var(--border); margin-top: 8px; padding: 12px 2px 6px; font-size: 13px; color: var(--faint); }
    .tt-sum .s-bad { color: #d98d84; font-weight: 600; }
    .tt-sum .s-good { color: var(--os-gold-300); font-weight: 600; }

    /* ---- v3: google-calendar look ---- */
    .tt-cal .tt-date, .tt-cal .tt-date.bad, .tt-cal .tt-date.gold { width: auto; height: auto; background: none; border: none; display: flex; flex-direction: column; align-items: center; gap: 3px; }
    .tt-date i { font-style: normal; font-size: 9.5px; font-weight: 700; letter-spacing: 0.12em; color: var(--faint); }
    .tt-date b { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; font-size: 15px; font-weight: 700; }
    .tt-date.bad b { background: rgba(179,84,74,0.18); color: #d98d84; }
    .tt-date.gold b { background: linear-gradient(180deg, var(--os-gold-300), var(--os-gold-500)); color: #241b05; }
    .tt-tick { display: none; }
    .tt-row { grid-template-columns: 46px 1fr; gap: 12px; border-top: 1px solid rgba(240,239,237,0.055); padding: 10px 0; }
    .tt-rows .tt-row:first-child { border-top: none; }
    .tt-time { font-size: 12px; }
    .tt-event { border-radius: 8px; padding: 9px 12px; }
    .tt-event.bad { background: rgba(179,84,74,0.10); }
    .tt-event b { display: flex; align-items: center; gap: 7px; }
    .tt-event b em { font-style: normal; font-weight: 400; font-size: 11.5px; color: var(--faint); margin-left: auto; font-variant-numeric: tabular-nums; }
    .tt-event.good b svg { color: var(--os-gold-300); }
    .tt-event.bad b svg { color: #d98d84; }
    .tt-nowline { position: relative; border-top: 2px solid #d15b4f; margin: 4px 0 4px 46px; }
    .tt-nowline::before { content: ''; position: absolute; left: -5px; top: -5px; width: 8px; height: 8px; border-radius: 50%; background: #d15b4f; }
    .tt-nowline.goldline { border-color: var(--gold); }
    .tt-nowline.goldline::before { background: var(--gold); }

    /* ---- v3: founder socials ---- */
    .f-socials { display: flex; gap: 14px; margin-top: 14px; }
    .f-socials a { color: var(--faint); display: inline-flex; transition: color .15s; }
    .f-socials a:hover { color: var(--os-gold-300); }

    /* ---- v3: clickable offer cards ---- */
    a.lane { display: flex; color: inherit; text-decoration: none; cursor: pointer; transition: transform .2s ease, border-color .2s ease; }
    a.lane:hover { transform: translateY(-3px); border-color: var(--gold-border); }
    .lane-link { color: var(--os-gold-300); font-size: 14px; font-weight: 500; }
    a.lane:hover .lane-link { text-decoration: underline; text-underline-offset: 3px; }

    /* ---- v3: result videos ---- */
    .vids { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 40px; }
    .yt-wrap { aspect-ratio: 16 / 9; border-radius: 14px; overflow: hidden; border: 1px solid var(--border); background: #000; }
    .yt-wrap iframe { width: 100%; height: 100%; display: block; }
    .results-more { text-align: center; margin: 40px auto 0; font-size: 16px; color: var(--muted); }
    @media (max-width: 860px) { .vids { grid-template-columns: 1fr; } }

    /* ---- v3: FAQ two-column cards ---- */
    .faq2 { display: grid; grid-template-columns: 1fr; gap: 14px; align-items: start; max-width: 760px; margin: 0 auto; }
    .faq2-col { display: flex; flex-direction: column; gap: 14px; }
    .faq2 details { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 0 22px; transition: border-color .2s ease; }
    .faq2 details:hover, .faq2 details[open] { border-color: var(--gold-border); }
    .faq2 summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 19px 0; font-size: 15.5px; font-weight: 600; }
    .faq2 summary::-webkit-details-marker { display: none; }
    .faq2 .pm { flex: none; width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--border-2); display: grid; place-items: center; font-size: 15px; font-weight: 400; color: var(--gold); transition: transform .2s ease, background .2s ease; }
    .faq2 details[open] .pm { transform: rotate(45deg); background: var(--gold-soft); }
    .faq2 .a { padding: 0 0 20px; font-size: 14.5px; color: var(--muted); max-width: 60ch; }
    @media (max-width: 820px) { .faq2 { grid-template-columns: 1fr; } }

    /* ---- OS v2: path showcase, screens, claude ---- */
    .path { display: grid; grid-template-columns: 0.9fr 1.4fr; gap: 34px; align-items: center; border: 1px solid var(--border); background: var(--surface-2); border-radius: 20px; padding: 30px 34px; margin-bottom: 16px; }
    .path-tag { display: inline-block; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold); margin-bottom: 12px; }
    .path-head h3 { font-size: 22px; margin: 0 0 10px; }
    .path-head p { font-size: 14.5px; color: var(--muted); margin: 0; }
    .path-shot { width: 100%; border-radius: 12px; border: 1px solid var(--border-2); display: block; box-shadow: 0 24px 60px rgba(0,0,0,0.4); }
    .stack-viz { text-align: center; padding: 10px 0; }
    .stack-row { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
    .stack-chip { font-size: 12.5px; font-weight: 600; color: var(--muted); border: 1px solid var(--border-2); border-radius: 8px; padding: 7px 14px; background: var(--surface); }
    .stack-svg { display: block; width: 100%; max-width: 560px; margin: 0 auto; height: 56px; }
    .stack-note { margin-top: 12px; font-size: 12.5px; color: var(--faint); }
    .shot-wide img { width: 100%; border-radius: 14px; border: 1px solid var(--border-2); display: block; box-shadow: 0 24px 60px rgba(0,0,0,0.4); }
    .shot-cap { text-align: center; font-size: 13px; color: var(--faint); margin-top: 12px; }
    .claude-band { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: center; margin-top: 56px; }
    .claude-copy h3 { font-size: clamp(22px, 3vw, 30px); margin: 0 0 12px; }
    .claude-copy p { font-size: 15px; color: var(--muted); margin: 0; }
    .claude-card { background: linear-gradient(180deg, #1d1915, #16130f); border: 1px solid var(--gold-border); border-radius: 18px; padding: 22px 24px; box-shadow: 0 24px 70px rgba(0,0,0,0.4), 0 0 40px rgba(240,194,77,0.06); }
    .cc-head { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); margin-bottom: 14px; }
    .cc-q { background: var(--gold-soft); border: 1px solid var(--gold-border); color: var(--text); border-radius: 14px 14px 4px 14px; padding: 11px 16px; font-size: 14px; margin-bottom: 12px; margin-left: 15%; }
    .cc-a { background: var(--surface-2); border: 1px solid var(--border); border-radius: 4px 14px 14px 14px; padding: 13px 16px; font-size: 13.5px; color: var(--muted); margin-right: 6%; }
    .cc-a b { color: var(--text); }
    @media (max-width: 880px) {
      .path, .claude-band { grid-template-columns: 1fr; gap: 20px; }
      .cases[style] { grid-template-columns: 1fr !important; }
    }

    /* ---- OS v2: story sections ---- */
    .signs { max-width: 760px; margin: 44px auto 0; }
    .sign { display: flex; gap: 22px; align-items: flex-start; padding: 18px 4px; border-top: 1px solid rgba(240,239,237,0.07); }
    .sign:first-child { border-top: none; }
    .s-num { flex: none; font-size: 26px; font-weight: 700; background: linear-gradient(180deg, rgba(240,194,77,0.55), rgba(240,194,77,0.18)); -webkit-background-clip: text; background-clip: text; color: transparent; width: 44px; }
    .sign b { display: block; font-size: 16px; margin-bottom: 3px; }
    .sign span { display: block; font-size: 14px; color: var(--muted); }
    .phil { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; max-width: 860px; margin: 40px auto 0; }
    .phil-card { border: 1px solid var(--border); background: var(--surface-2); border-radius: 16px; padding: 26px 28px; }
    .phil-card.gold { border-color: var(--gold-border); background: var(--gold-soft); }
    .phil-tag { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; color: var(--faint); margin-bottom: 14px; }
    .phil-card.gold .phil-tag { color: var(--gold); }
    .phil-card ul { margin: 0; padding: 0; list-style: none; }
    .phil-card li { padding: 8px 0; font-size: 14.5px; color: var(--muted); border-top: 1px solid rgba(240,239,237,0.06); }
    .phil-card li:first-child { border-top: none; }
    .phil-card.gold li { color: var(--text); border-top-color: rgba(240,194,77,0.14); }
    .ways3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 40px; }
    .way3 { border: 1px solid var(--border); background: var(--surface); border-radius: 14px; padding: 22px 24px; }
    .way3.on { border-color: var(--gold-border); }
    .w3-tag { font-size: 10.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; color: var(--faint); margin-bottom: 8px; }
    .way3.on .w3-tag { color: var(--gold); }
    .way3 b { display: block; font-size: 15.5px; margin-bottom: 6px; }
    .way3 p { margin: 0; font-size: 13px; color: var(--muted); }
    @media (max-width: 820px) { .phil, .ways3 { grid-template-columns: 1fr; } }

    /* ---- OS v3: two columns ---- */
    .cols2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: stretch; }
    .col2 { display: flex; flex-direction: column; border: 1px solid var(--gold-border); background: var(--surface-2); border-radius: 20px; padding: 30px 32px; }
    .col2 h3 { font-size: 23px; margin: 0 0 8px; }
    .col2-line { font-size: 14.5px; color: var(--muted); margin: 0 0 16px; }
    .col2-line b { color: var(--os-gold-300); }
    .col2 ul { margin: 0 0 22px; padding: 0; list-style: none; }
    .col2 li { padding: 8px 0 8px 24px; font-size: 14.5px; color: var(--muted); position: relative; border-top: 1px solid rgba(240,239,237,0.06); }
    .col2 li:first-child { border-top: none; }
    .col2 li::before { content: '→'; position: absolute; left: 0; color: var(--gold); font-size: 13px; }
    .col2-shot { width: 100%; border-radius: 12px; border: 1px solid var(--border-2); display: block; margin-top: auto; box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
    @media (max-width: 860px) { .cols2 { grid-template-columns: 1fr; } }

    /* ---- mobile density pass: smaller type, wider text ---- */
    @media (max-width: 640px) {
      .wrap { padding: 0 16px; }
      .nav { padding: 12px 16px; }
      .hero { padding: 38px 0 48px; }
      .hero h1 { font-size: 29px; }
      .hero .sub { font-size: 15px; }
      .page-hero h1 { font-size: 28px; }
      .page-hero .sub { font-size: 15px; }
      .sec-h2 { font-size: 24px; }
      .sec-lead { font-size: 14.5px; }
      section { padding: 84px 0 0; }
      .belief-body { margin-top: 20px; }
      .belief-body p { font-size: 15px; line-height: 1.62; }
      .belief-pull { font-size: 19px; }
      .leak { padding: 20px 18px; }
      .leak p, .fw li, .scene p { font-size: 13.5px; }
      .sign b { font-size: 15px; }
      .sign span { font-size: 13.5px; }
      .sign { gap: 14px; padding: 14px 2px; }
      .s-num { font-size: 21px; width: 34px; }
      .tt-g p, .path-head p, .col2 li, .tt-note { font-size: 13.5px; }
      .truth p { font-size: 17px; }
      .door h2 { font-size: 24px; }
      .faq2 summary { font-size: 14.5px; padding: 16px 0; }
      .faq2 .a { font-size: 13.5px; }
      .case-intro { font-size: 14px; min-height: 0; }
      .results-more { font-size: 14.5px; }
    }

    /* ---- unified door: clarity call ---- */
    .door-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: left; margin: 32px 0 34px; }
    .dl { position: relative; padding-left: 26px; }
    .dl::before { content: '✓'; position: absolute; left: 0; top: 1px; color: var(--gold); font-weight: 700; }
    .dl b { display: block; font-size: 15px; margin-bottom: 5px; }
    .dl span { display: block; font-size: 13.5px; color: var(--muted); }
    @media (max-width: 700px) { .door-list { grid-template-columns: 1fr; gap: 16px; } }

    /* mid-page CTAs match hero size */
    .center > a.btn-gold.btn-cta, .door .btn-gold.btn-cta { padding: 16px 30px; font-size: 14px; }

    @media (max-width: 640px) {
      .hero .cta-row, .page-hero .cta-row { flex-direction: column; align-items: stretch; max-width: 320px; margin-left: auto; margin-right: auto; }
      .hero .cta-row .btn, .page-hero .cta-row .btn { width: 100%; text-align: center; }
    }

    /* hard stop on horizontal panning (iOS Safari needs html too) */
    html, body { overflow-x: hidden; overflow-x: clip; max-width: 100%; }

    /* ---- consulting: vault library ---- */
    .vault { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 900px; margin: 40px auto 0; }
    .vdoc { display: flex; flex-direction: column; gap: 10px; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 20px 20px 16px; transition: border-color .2s, transform .2s; }
    .vdoc:hover { border-color: var(--gold-border); transform: translateY(-2px); }
    .vdoc i { color: var(--os-gold-300); display: inline-flex; }
    .vdoc b { font-size: 14.5px; }
    .vdoc span { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); }
    .vdoc.lock { background: var(--surface-2); }
    .vdoc.lock i { color: var(--faint); }
    .vdoc.lock em { display: block; height: 12px; border-radius: 6px; background: rgba(240,239,237,0.10); }
    @media (max-width: 820px) { .vault { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 540px) { .vault { grid-template-columns: 1fr; } }

    /* ---- growth partner: org chart ---- */
    .org { max-width: 860px; margin: 40px auto 0; text-align: center; }
    .org-node { display: inline-flex; flex-direction: column; gap: 2px; background: var(--surface); border: 1px solid var(--border-2); border-radius: 12px; padding: 12px 22px; }
    .org-node b { font-size: 14.5px; }
    .org-node span { font-size: 11px; color: var(--faint); }
    .org-node.you { border-color: var(--border-2); background: var(--surface-2); padding: 14px 34px; }
    .org-node.os { border-color: var(--gold-border); background: var(--gold-soft); }
    .org-node.os span { color: var(--os-gold-300); font-weight: 600; }
    .org-svg { display: block; width: 100%; max-width: 800px; margin: 0 auto; height: 56px; }
    .org-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
    .org-row .org-node { width: 100%; }
    .org-cap { margin-top: 22px; font-size: 13.5px; color: var(--faint); }
    @media (max-width: 820px) {
      .org-svg { display: none; }
      .org-row { grid-template-columns: 1fr 1fr; margin-top: 14px; }
      .org-top { margin-bottom: 4px; }
    }

    /* ---- consulting: brand resonance funnel ---- */
    .funnel { max-width: 720px; margin: 40px auto 0; display: flex; flex-direction: column; align-items: center; gap: 8px; }
    .f-band { text-align: center; border: 1px solid var(--gold-border); border-radius: 12px; padding: 14px 18px; background: linear-gradient(180deg, rgba(240,194,77,0.16), rgba(240,194,77,0.05)); }
    .f-band:nth-child(2) { background: linear-gradient(180deg, rgba(240,194,77,0.22), rgba(240,194,77,0.08)); }
    .f-band:nth-child(3) { background: linear-gradient(180deg, rgba(240,194,77,0.30), rgba(240,194,77,0.12)); }
    .f-band:nth-child(4) { background: linear-gradient(180deg, rgba(240,194,77,0.40), rgba(240,194,77,0.18)); }
    .f-band b { display: block; font-size: 15px; }
    .f-band span { display: block; font-size: 12.5px; color: var(--muted); margin-top: 2px; }
    @media (max-width: 640px) { .f-band span { font-size: 12px; } }

    /* ---- vault: PDF-style document thumbnails ---- */
    .vault .vdoc { align-items: stretch; text-align: center; padding: 0; background: none; border: none; }
    .vault .vdoc:hover { border: none; }
    .vault .vdoc > b { margin-top: 12px; font-size: 14px; }
    .vault .vdoc > span { margin-top: 2px; }
    .vpage { position: relative; aspect-ratio: 3 / 4; background: #F0EFED; border-radius: 8px; padding: 16px 16px 12px; text-align: left; box-shadow: 0 16px 40px rgba(0,0,0,0.45); transition: transform .2s ease, box-shadow .2s ease; overflow: hidden; display: flex; flex-direction: column; }
    .vdoc:hover .vpage { transform: translateY(-4px) rotate(-0.5deg); box-shadow: 0 22px 55px rgba(0,0,0,0.55); }
    .vp-wm { font-size: 11px; color: #1A1A1A; margin-bottom: 14px; }
    .vp-wm i { font-family: var(--os-font-wordmark-serif); font-style: italic; font-weight: 400; }
    .vp-wm b { font-family: var(--os-font-wordmark-sans); font-weight: 700; }
    .vp-label { font-size: 7px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #888; margin-bottom: 5px; }
    .vp-title { font-size: 13px; font-weight: 700; color: #1A1A1A; line-height: 1.25; letter-spacing: -0.01em; }
    .vp-rule { height: 1px; background: #CCC9C4; margin: 9px 0 10px; }
    .vp-line { height: 5px; border-radius: 3px; background: #DBD8D2; margin-bottom: 6px; }
    .vp-sub { height: 7px; width: 46%; border-radius: 3px; background: #C4C0B9; margin: 10px 0 8px; }
    .vp-foot { margin-top: auto; display: flex; justify-content: space-between; font-size: 6.5px; color: #999; border-top: 1px solid #DDD9D3; padding-top: 6px; }
    .vpage.locked > .vp-line, .vpage.locked > .vp-rule { filter: blur(1.5px); }
    .vpage.locked { background: #E9E7E3; }
    .vlock { position: absolute; inset: 0; display: grid; place-items: center; color: #97701F; }
    .vlock svg { background: rgba(240,239,237,0.9); border: 1px solid #C7962E; border-radius: 50%; padding: 10px; width: 42px; height: 42px; box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

    /* ---- vault: stacked document piles ---- */
    .vstacks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px 40px; max-width: 940px; margin: 48px auto 0; row-gap: 56px; }
    .vstack { text-align: center; }
    .vstack-pages { position: relative; aspect-ratio: 3 / 4; margin: 0 14px; }
    .vstack .vpage { position: absolute; inset: 0; aspect-ratio: auto; }
    .vstack .vpage.back { padding: 0; }
    .vstack .vpage.b1 { transform: rotate(-5deg) translate(-9px, 7px); background: #DDDAD4; box-shadow: 0 10px 30px rgba(0,0,0,0.35); }
    .vstack .vpage.b2 { transform: rotate(3deg) translate(8px, 3px); background: #E7E4DF; box-shadow: 0 12px 34px rgba(0,0,0,0.4); }
    .vstack .vpage.top { transform: rotate(-0.6deg); }
    .vstack:hover .vpage.top { transform: rotate(-0.6deg) translateY(-5px); }
    .vstack:hover .vpage.b2 { transform: rotate(4deg) translate(10px, 4px); }
    .vstack:hover .vpage.b1 { transform: rotate(-6.5deg) translate(-11px, 8px); }
    .vstack .vpage { transition: transform .25s ease; }
    .vstack > b { display: block; margin-top: 20px; font-size: 15px; }
    .vstack > span { display: block; margin-top: 4px; font-size: 12.5px; color: var(--faint); }
    @media (max-width: 820px) {
      .vstacks { grid-template-columns: 1fr 1fr; gap: 40px 22px; max-width: 480px; }
      .vp-title { font-size: 11px; }
      .vp-wm { font-size: 9.5px; margin-bottom: 9px; }
      .vpage { padding: 12px 12px 9px; }
      .vstack > b { font-size: 13.5px; margin-top: 14px; }
      .vstack > span { font-size: 11.5px; }
    }

    /* ---- OS: switchable overlapping screens gallery ---- */
    .oswin-tabs { display: flex; justify-content: center; gap: 6px; flex-wrap: wrap; background: var(--surface-2); border: 1px solid var(--border); border-radius: 999px; padding: 4px; width: max-content; margin: 40px auto 30px; max-width: 100%; }
    .oswin-tab { font-family: inherit; font-size: 13px; font-weight: 600; color: var(--muted); background: transparent; border: none; border-radius: 999px; padding: 9px 18px; cursor: pointer; transition: all .2s; }
    .oswin-tab.active { background: linear-gradient(180deg, var(--os-gold-300), var(--os-gold-500)); color: #241b05; }
    .oswin-stage { display: grid; max-width: 980px; margin: 0 auto; }
    .oswin { grid-area: 1 / 1; width: 100%; border-radius: 14px; border: 1px solid var(--border-2); display: block; box-shadow: 0 24px 60px rgba(0,0,0,0.45); transition: transform .35s ease, opacity .35s ease, filter .35s ease; align-self: center; }
    .oswin:not(.active) { opacity: 0.35; filter: brightness(0.55) saturate(0.8); z-index: 1; pointer-events: none; }
    .oswin:nth-child(odd):not(.active) { transform: rotate(-2.2deg) translate(-26px, 10px) scale(0.94); }
    .oswin:nth-child(even):not(.active) { transform: rotate(2deg) translate(26px, 12px) scale(0.94); }
    .oswin.active { z-index: 5; transform: none; }
    @media (max-width: 700px) { .oswin-tab { padding: 8px 12px; font-size: 12px; } }

    /* ---- OS gallery: integration chips ---- */
    .oswin-stage { position: relative; }
    .oswin-ints { position: absolute; inset: 0; z-index: 6; pointer-events: none; opacity: 0; transition: opacity .35s ease; }
    .oswin-ints.active { opacity: 1; }
    .ichip { position: absolute; font-size: 12.5px; font-weight: 600; color: var(--text); background: #221d18; border: 1px solid var(--gold-border); border-radius: 999px; padding: 8px 15px; white-space: nowrap; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
    @media (max-width: 1080px) { .oswin-ints { display: none; } }

    .ichip { display: flex; align-items: center; gap: 8px; }
    .ichip i { display: inline-flex; }
    .ichip svg { border-radius: 4px; }

    /* ---- OS: gallery connector ---- */
    .os-connect { max-width: 860px; margin: 8px auto 0; }
    .osc-svg { display: block; width: 100%; max-width: 800px; margin: 0 auto; height: 70px; }
    .osc-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .osc-card { border: 1px solid var(--border-2); background: var(--surface-2); border-radius: 16px; padding: 22px 26px; }
    .osc-card.gold { border-color: var(--gold-border); background: var(--gold-soft); }
    .osc-card b { display: block; font-size: 16px; margin-bottom: 6px; }
    .osc-card p { margin: 0; font-size: 14px; color: var(--muted); }
    @media (max-width: 700px) { .osc-cards { grid-template-columns: 1fr; } .osc-svg { display: none; } }

    /* ---- Claude app style card ---- */
    .claude-card.capp { position: relative; background: #FAF9F5; border: 1px solid #E8E4DC; border-radius: 18px; padding: 0; overflow: visible; box-shadow: 0 24px 70px rgba(0,0,0,0.45); }
    .ca-head { display: flex; align-items: center; gap: 9px; padding: 14px 18px; border-bottom: 1px solid #ECE8E0; }
    .ca-head i { display: inline-flex; }
    .ca-head b { font-size: 14.5px; color: #1a1915; letter-spacing: -0.01em; }
    .ca-conn { margin-left: auto; font-size: 11px; font-weight: 600; color: #2E9E5B; background: #E9F4EC; border-radius: 999px; padding: 4px 11px; }
    .ca-conn::before { content: '●'; font-size: 7px; vertical-align: 1.5px; margin-right: 5px; }
    .ca-user { margin: 16px 18px 10px auto; max-width: 75%; width: fit-content; background: #F0EEE6; border: 1px solid #E6E2D8; color: #1a1915; border-radius: 14px 14px 4px 14px; padding: 10px 15px; font-size: 13.5px; margin-right: 18px; }
    .ca-reply { display: flex; gap: 11px; padding: 4px 18px 16px; }
    .ca-reply i { flex: none; margin-top: 3px; display: inline-flex; }
    .ca-reply div { font-family: Georgia, 'Times New Roman', serif; font-size: 13.5px; line-height: 1.65; color: #1a1915; }
    .ca-reply b { font-weight: 700; }
    .ca-input { display: flex; align-items: center; justify-content: space-between; margin: 0 18px 16px; background: #fff; border: 1px solid #E2DED4; border-radius: 999px; padding: 10px 8px 10px 16px; }
    .ca-input span { font-size: 12.5px; color: #9b968c; }
    .ca-input em { font-style: normal; width: 26px; height: 26px; border-radius: 50%; background: #D97757; color: #fff; display: grid; place-items: center; font-size: 14px; font-weight: 700; }
    .ca-float1 { position: absolute; top: -16px; right: -26px; transform: rotate(4deg); }
    .ca-float2 { position: absolute; bottom: 24%; right: -40px; transform: rotate(-4deg); }
    @media (max-width: 880px) { .ca-float1, .ca-float2 { display: none; } }

    .ca-suggest { display: flex; gap: 8px; flex-wrap: wrap; padding: 0 18px 12px; }
    .ca-suggest span { font-size: 11.5px; color: #6b675f; background: #fff; border: 1px solid #E2DED4; border-radius: 999px; padding: 6px 13px; }

    /* ---- founder profile links ---- */
    .f-name { color: inherit; text-decoration: none; }
    .f-name:hover { color: var(--gold); }
    .f-more { display: inline-block; color: var(--gold); font-weight: 600; font-size: 14.5px; text-decoration: none; margin: 2px 0 12px; }
    .f-more:hover { text-decoration: underline; }
    .sec-sub { text-align: center; color: var(--muted); font-size: 16px; margin: 10px auto 0; max-width: 560px; }
