  /* ══ Broadcast Desk tokens (mirrors web/src/styles.css) ══ */
  .cm {
    --canvas: #0f131a;
    --canvas-2: #0b0e14;
    --panel: #161c26;
    --panel-2: #1a2130;
    --panel-3: #10151d;
    --line: #242d3d;
    --line-2: #2c3648;
    --ink: #eaeef4;
    --mut: #939db0;
    --dim: #657083;
    --blue: #4d9fff;
    --blue-2: #3d84e8;
    --gold: #e8b64c;
    --green: #43c383;
    --red: #e5484d;
    --radius: 14px;
    --radius-sm: 9px;
    --font: "Helvetica Neue", "Avenir Next", -apple-system, BlinkMacSystemFont,
      "Segoe UI", Roboto, Arial, sans-serif;

    font-family: var(--font);
    color: var(--ink);
    background:
      radial-gradient(900px 520px at 78% -8%, rgba(77,159,255,0.10), transparent 60%),
      linear-gradient(180deg, var(--canvas) 0%, var(--canvas-2) 100%);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-size: 16px;
    line-height: 1.55;
    min-height: 100vh;
    overflow-x: hidden;
  }
  .cm *, .cm *::before, .cm *::after { box-sizing: border-box; margin: 0; padding: 0; }
  .cm ::selection { background: rgba(77,159,255,0.28); }
  .cm .wrap { max-width: 1140px; margin: 0 auto; padding: 0 28px; }
  .cm .tnum { font-variant-numeric: tabular-nums; }

  /* ── nav ── */
  .cm-nav {
    position: sticky; top: 0; z-index: 40;
    border-bottom: 1px solid transparent;
    backdrop-filter: saturate(140%) blur(10px);
    background: rgba(13,17,24,0.72);
    transition: border-color .2s;
  }
  .cm-nav.scrolled { border-bottom-color: var(--line); }
  .cm-nav .row { display: flex; align-items: center; gap: 28px; height: 62px; }
  .cm-brand { display: flex; align-items: center; gap: 11px; font-weight: 700; font-size: 17px; letter-spacing: -0.02em; }
  .cm-brand .mark {
    width: 24px; height: 24px; border-radius: 7px; flex: none;
    background: linear-gradient(135deg, #63aeff 0%, var(--blue-2) 100%);
    box-shadow: 0 3px 12px rgba(77,159,255,0.4);
    position: relative;
  }
  .cm-brand .mark::after {
    content: ""; position: absolute; inset: 0; margin: auto;
    width: 0; height: 0; border-style: solid;
    border-width: 5px 0 5px 8px; border-color: transparent transparent transparent #fff;
    left: 1px;
  }
  .cm-nav .links { display: flex; gap: 4px; margin-left: 8px; }
  .cm-nav .links a {
    color: var(--mut); text-decoration: none; font-size: 14px; font-weight: 500;
    padding: 8px 12px; border-radius: 8px; transition: color .15s, background .15s;
  }
  .cm-nav .links a:hover { color: var(--ink); background: rgba(255,255,255,0.03); }
  .cm-nav .spacer { flex: 1; }
  .cm-nav .ghost { color: var(--mut); text-decoration: none; font-size: 14px; font-weight: 500; padding: 8px 10px; }
  .cm-nav .ghost:hover { color: var(--ink); }

  /* ── buttons ── */
  .cm-btn {
    display: inline-flex; align-items: center; gap: 8px; justify-content: center;
    font: inherit; font-weight: 600; font-size: 14.5px; cursor: pointer;
    padding: 10px 18px; border-radius: var(--radius-sm);
    border: 1px solid transparent; text-decoration: none; white-space: nowrap;
    transition: transform .12s ease, box-shadow .2s, background .2s, border-color .2s;
  }
  .cm-btn:active { transform: translateY(1px); }
  .cm-btn.primary {
    color: #06121f; background: linear-gradient(180deg, #6fb2ff, var(--blue));
    box-shadow: 0 4px 16px rgba(77,159,255,0.34), inset 0 1px 0 rgba(255,255,255,0.35);
  }
  .cm-btn.primary:hover { box-shadow: 0 6px 22px rgba(77,159,255,0.48); }
  .cm-btn.ghost { color: var(--ink); background: var(--panel); border-color: var(--line-2); }
  .cm-btn.ghost:hover { border-color: var(--dim); background: var(--panel-2); }
  .cm-btn.lg { padding: 13px 24px; font-size: 15.5px; }
  .cm-btn:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }

  /* ── hero ── */
  .cm-hero { padding: 76px 0 92px; }
  .cm-hero .grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
  .cm-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11.5px; font-weight: 650; letter-spacing: 0.13em; text-transform: uppercase;
    color: var(--blue); margin-bottom: 20px;
  }
  .cm-eyebrow .pip { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 10px var(--blue); }
  .cm-hero h1 {
    font-size: clamp(40px, 5.6vw, 66px); line-height: 1.01; letter-spacing: -0.035em;
    font-weight: 700; text-wrap: balance; margin-bottom: 22px;
  }
  .cm-hero h1 .accent {
    background: linear-gradient(120deg, #8cc2ff, var(--blue) 60%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }
  .cm-hero .sub { font-size: 18px; color: var(--mut); max-width: 30em; line-height: 1.6; margin-bottom: 30px; }
  .cm-hero .cta-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
  .cm-hero .reassure { margin-top: 18px; font-size: 13.5px; color: var(--dim); display: flex; align-items: center; gap: 8px; }
  .cm-hero .reassure svg { width: 15px; height: 15px; color: var(--green); flex: none; }

  /* ── the making device ── */
  .cm-stage { display: flex; justify-content: center; }
  .cm-device-shell { position: relative; }
  .cm-device-shell .glow {
    position: absolute; inset: -12% -8% -8% -8%; z-index: 0; border-radius: 40px;
    background: radial-gradient(60% 55% at 50% 40%, rgba(77,159,255,0.22), transparent 70%);
    filter: blur(8px);
  }
  .cm-devlabel {
    position: relative; z-index: 2; text-align: center; margin-bottom: 14px;
    font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--dim); font-weight: 600;
    display: flex; align-items: center; gap: 8px; justify-content: center;
  }
  .cm-devlabel .live { color: var(--green); display: inline-flex; align-items: center; gap: 6px; }
  .cm-devlabel .live .rec { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); animation: cm-blink 1.5s infinite; }
  @keyframes cm-blink { 50% { opacity: .3; } }

  .cm-phone {
    position: relative; z-index: 2; width: 300px; aspect-ratio: 9 / 16;
    border-radius: 32px; padding: 9px;
    background: linear-gradient(160deg, #232c3b, #141a24);
    border: 1px solid var(--line-2);
    box-shadow: 0 30px 70px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.06);
  }
  .cm-screen {
    position: relative; width: 100%; height: 100%; border-radius: 24px; overflow: hidden;
    background: var(--panel-3); border: 1px solid #05080d;
  }
  .cm-scene { position: absolute; inset: 0; opacity: 0; transition: opacity .45s ease; padding: 18px 16px; display: flex; flex-direction: column; }
  .cm-scene.show { opacity: 1; }
  .cm-scene .tag {
    font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); font-weight: 700; margin-bottom: 12px;
    display: flex; align-items: center; gap: 7px; flex: none;
  }
  .cm-scene .tag .n { color: var(--dim); }

  /* idea */
  .cm-idea .topic { margin-top: 6px; font-size: 20px; font-weight: 650; line-height: 1.28; letter-spacing: -0.01em; min-height: 3.6em; }
  .cm-idea .caret, .cm-script .caret { display: inline-block; width: 2px; height: 1em; background: var(--blue); vertical-align: -2px; margin-left: 1px; animation: cm-blink 1s steps(1) infinite; }
  .cm-idea .meta { margin-top: auto; font-size: 12px; color: var(--dim); }

  /* script — real sentences typing */
  .cm-script .doc { font-size: 13.5px; line-height: 1.62; color: #d4dae6; white-space: pre-wrap; }
  .cm-script .doc .hook { color: var(--blue); }
  .cm-script .meta { margin-top: auto; font-size: 12px; color: var(--dim); }

  /* voice */
  .cm-voice .who { position: absolute; top: 18px; right: 16px; font-size: 11px; color: var(--dim); }
  .cm-voice .wave { display: flex; align-items: center; justify-content: center; gap: 4px; height: 66px; margin: 14px 0; flex: none; }
  .cm-voice .wave i { width: 4px; border-radius: 3px; background: linear-gradient(180deg, #6fb2ff, var(--blue-2)); animation: cm-eq 1s ease-in-out infinite; }
  @keyframes cm-eq { 0%,100%{ height: 12px } 50%{ height: 54px } }
  .cm-voice .caption { text-align: center; font-size: 14px; font-weight: 600; color: var(--ink); padding: 0 6px; }
  .cm-voice .timer { margin-top: auto; font-size: 12px; color: var(--dim); }

  /* visuals — richer scene tiles */
  .cm-vis .tiles { margin-top: 2px; display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
  .cm-vis .tile { aspect-ratio: 9/12; border-radius: 9px; position: relative; overflow: hidden; opacity: 0; transform: scale(.92); border: 1px solid rgba(255,255,255,0.06); }
  .cm-vis.show .tile { animation: cm-pop .5s forwards; }
  .cm-vis.show .tile:nth-child(1){ animation-delay:.1s } .cm-vis.show .tile:nth-child(2){ animation-delay:.45s }
  .cm-vis.show .tile:nth-child(3){ animation-delay:.8s } .cm-vis.show .tile:nth-child(4){ animation-delay:1.15s }
  @keyframes cm-pop { to { opacity: 1; transform: none; } }
  .cm-vis .tile .lbl { position: absolute; left: 7px; bottom: 6px; right: 7px; font-size: 9.5px; font-weight: 600; color: rgba(255,255,255,0.92); text-shadow: 0 1px 4px rgba(0,0,0,.6); line-height: 1.2; }
  .cm-vis .tile .scn { position: absolute; top: 6px; left: 7px; font-size: 9px; color: rgba(255,255,255,0.7); letter-spacing: .04em; }
  .cm-vis .t1{ background: radial-gradient(120% 90% at 30% 20%, #5b7bd6, #26305e 70%), #26305e } .cm-vis .t2{ background: radial-gradient(120% 90% at 70% 25%, #b06bc0, #3a2350 70%), #3a2350 }
  .cm-vis .t3{ background: radial-gradient(120% 90% at 40% 30%, #3fae9c, #16403a 70%), #16403a } .cm-vis .t4{ background: radial-gradient(120% 90% at 60% 20%, #d6a24e, #4a3418 70%), #4a3418 }
  .cm-vis .tile::before { content:""; position:absolute; left:0; right:0; bottom:0; height:44%; background: linear-gradient(180deg, transparent, rgba(0,0,0,.55)); }

  /* render */
  .cm-render { align-items: center; justify-content: center; text-align: center; }
  .cm-render .ring { position: relative; width: 96px; height: 96px; margin: auto auto 14px; }
  .cm-render .ring svg { transform: rotate(-90deg); }
  .cm-render .ring .pct { position: absolute; inset: 0; display: grid; place-items: center; font-size: 21px; font-weight: 650; letter-spacing: -0.02em; }
  .cm-render .cap { font-size: 12.5px; color: var(--mut); }

  /* playing — finished Short actually playing */
  .cm-play { padding: 0; }
  .cm-play .frame { position: absolute; inset: 0; opacity: 0; transition: opacity .5s ease; }
  .cm-play .frame.on { opacity: 1; }
  .cm-play .f1 { background: linear-gradient(165deg, #24407a 0%, #101a34 100%); }
  .cm-play .f2 { background: linear-gradient(165deg, #6a2f5e 0%, #1a1024 100%); }
  .cm-play .f3 { background: linear-gradient(165deg, #7a4a24 0%, #241608 100%); }
  .cm-play .f4 { background: linear-gradient(165deg, #24405a 0%, #0c1622 100%); }
  .cm-play .frame::before { content:""; position:absolute; inset:0; background: radial-gradient(70% 45% at 50% 32%, rgba(255,255,255,0.16), transparent 62%); }
  .cm-play .vig { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.25), transparent 30%, transparent 62%, rgba(0,0,0,.72)); z-index: 2; }
  .cm-play .cc { position: absolute; left: 14px; right: 14px; bottom: 58px; z-index: 3; text-align: center;
    font-size: 16px; font-weight: 700; line-height: 1.25; text-shadow: 0 2px 12px rgba(0,0,0,0.6); }
  .cm-play .cc .em { color: #ffd76b; }
  .cm-play .chip { position: absolute; top: 14px; left: 14px; z-index: 4; display: inline-flex; align-items: center; gap: 6px;
    font-size: 10.5px; font-weight: 700; color: #0a1a12; background: var(--green); padding: 4px 9px; border-radius: 20px;
    opacity: 0; transform: translateY(-4px); }
  .cm-play .chip.on { animation: cm-drop .4s forwards; }
  @keyframes cm-drop { to { opacity: 1; transform: none; } }
  .cm-play .hud { position: absolute; left: 14px; right: 14px; bottom: 16px; z-index: 4; }
  .cm-play .hud .time { display: flex; justify-content: space-between; font-size: 10px; color: rgba(255,255,255,0.8); margin-bottom: 6px; }
  .cm-play .hud .track { height: 3px; border-radius: 2px; background: rgba(255,255,255,0.25); overflow: hidden; }
  .cm-play .hud .track i { display: block; height: 100%; background: #fff; width: 0; }
  .cm-play .side { position: absolute; right: 12px; bottom: 92px; z-index: 4; display: flex; flex-direction: column; gap: 14px; align-items: center; color: #fff; }
  .cm-play .side .b { display: flex; flex-direction: column; align-items: center; gap: 3px; font-size: 9px; opacity: .92; }
  .cm-play .side .b svg { width: 20px; height: 20px; }

  /* autopilot — the AI intelligence, out loud */
  .cm-auto .tag { color: var(--green); }
  .cm-auto .h2 { font-size: 12.5px; color: var(--mut); margin-bottom: 15px; }
  .cm-auto .rows { display: flex; flex-direction: column; gap: 11px; }
  .cm-auto .r { display: flex; align-items: flex-start; gap: 10px; font-size: 12px; line-height: 1.32; color: #cdd4e0;
    opacity: 0; transform: translateX(-7px); }
  .cm-auto.show .r { animation: cm-slidein .42s forwards; }
  .cm-auto.show .r:nth-child(1){ animation-delay:.2s } .cm-auto.show .r:nth-child(2){ animation-delay:.85s }
  .cm-auto.show .r:nth-child(3){ animation-delay:1.5s } .cm-auto.show .r:nth-child(4){ animation-delay:2.15s }
  .cm-auto.show .r:nth-child(5){ animation-delay:2.8s }
  @keyframes cm-slidein { to { opacity: 1; transform: none; } }
  .cm-auto .r .i { width: 24px; height: 24px; border-radius: 7px; flex: none; display: grid; place-items: center;
    background: rgba(77,159,255,0.12); border: 1px solid rgba(77,159,255,0.2); color: var(--blue); margin-top: 1px; }
  .cm-auto .r .i svg { width: 13px; height: 13px; }
  .cm-auto .r b { color: #fff; font-weight: 650; }
  .cm-auto .r .em { color: var(--green); font-weight: 650; }

  /* earn — the money payoff */
  .cm-earn .tag { color: var(--gold); }
  .cm-earn .h2 { font-size: 12.5px; color: var(--mut); margin-bottom: 15px; }
  .cm-earn .stats { display: flex; flex-direction: column; gap: 9px; }
  .cm-earn .s { display: flex; align-items: center; justify-content: space-between;
    background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: 11px 14px; }
  .cm-earn .s .k { font-size: 11px; color: var(--mut); }
  .cm-earn .s .v { font-size: 21px; font-weight: 700; letter-spacing: -0.02em; }
  .cm-earn .s .v .up { font-size: 11px; color: var(--green); margin-left: 6px; font-weight: 700; letter-spacing: 0; }
  .cm-earn .s.money { border-color: rgba(232,182,76,0.4); background: linear-gradient(180deg, rgba(232,182,76,0.08), var(--panel)); }
  .cm-earn .s.money .v { color: var(--gold); }
  .cm-earn .exlabel { font-size: 10px; color: var(--dim); margin: 8px 0 2px; }
  .cm-earn .chart { margin-top: auto; height: 44px; overflow: hidden; }
  .cm-earn .chart svg { display: block; width: 100%; height: 44px; clip-path: inset(0 100% 0 0); }

  /* status strip */
  .cm-status { position: relative; z-index: 2; width: 300px; margin: 16px auto 0; }
  .cm-status .txt { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--mut); margin-bottom: 9px; }
  .cm-status .txt .d { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 8px var(--blue); flex: none; transition: background .3s, box-shadow .3s; }
  .cm-status.grown .txt .d { background: var(--green); box-shadow: 0 0 8px var(--green); }
  .cm-status .bar { height: 4px; border-radius: 3px; background: var(--panel-2); overflow: hidden; }
  .cm-status .bar i { display: block; height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--blue-2), #6fb2ff); width: 0; transition: width .5s linear; }
  .cm-status.grown .bar i { background: linear-gradient(90deg, #2ea36a, var(--green)); }

  /* ── section shell ── */
  .cm-sec { padding: 92px 0; border-top: 1px solid var(--line); }
  .cm-sec .head { max-width: 640px; margin-bottom: 52px; }
  .cm-kicker { font-size: 12px; font-weight: 650; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dim); margin-bottom: 14px; }
  .cm-sec h2 { font-size: clamp(27px, 3.4vw, 38px); letter-spacing: -0.028em; line-height: 1.08; font-weight: 700; text-wrap: balance; }
  .cm-sec .lede { margin-top: 16px; font-size: 17px; color: var(--mut); max-width: 42em; }

  /* how it works */
  .cm-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .cm-step { background: linear-gradient(180deg, var(--panel), var(--panel-3)); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 20px 24px; position: relative; }
  .cm-step .num { font-size: 12px; font-weight: 700; letter-spacing: 0.05em; color: var(--blue); font-variant-numeric: tabular-nums; }
  .cm-step h3 { margin: 14px 0 8px; font-size: 17px; font-weight: 650; letter-spacing: -0.01em; }
  .cm-step p { font-size: 14px; color: var(--mut); line-height: 1.55; }
  .cm-step .bar { position: absolute; left: 20px; right: 20px; top: 0; height: 2px; background: linear-gradient(90deg, var(--blue), transparent); opacity: .5; }

  /* features */
  .cm-feats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .cm-feat { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 22px 26px; transition: border-color .2s, transform .2s; }
  .cm-feat:hover { border-color: var(--line-2); transform: translateY(-2px); }
  .cm-feat .ic { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; margin-bottom: 16px;
    background: rgba(77,159,255,0.10); border: 1px solid rgba(77,159,255,0.22); color: var(--blue); }
  .cm-feat .ic svg { width: 21px; height: 21px; }
  .cm-feat h3 { font-size: 16.5px; font-weight: 650; letter-spacing: -0.01em; margin-bottom: 8px; }
  .cm-feat p { font-size: 14px; color: var(--mut); line-height: 1.56; }

  /* pricing */
  .cm-tiers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: stretch; }
  .cm-tier { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 20px; display: flex; flex-direction: column; }
  .cm-tier.feat { border-color: rgba(232,182,76,0.5); box-shadow: 0 0 0 1px rgba(232,182,76,0.25), 0 18px 40px rgba(0,0,0,0.35); position: relative; }
  .cm-tier .badge { position: absolute; top: -10px; left: 20px; font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    color: #1c1403; background: var(--gold); padding: 3px 9px; border-radius: 20px; }
  .cm-tier .name { font-size: 15px; font-weight: 650; }
  .cm-tier .blurb { font-size: 13px; color: var(--dim); margin-top: 4px; min-height: 2.6em; }
  .cm-tier .price { margin: 16px 0 4px; font-size: 30px; font-weight: 700; letter-spacing: -0.03em; }
  .cm-tier .price.gold { color: var(--gold); }
  .cm-tier .price small { font-size: 13px; font-weight: 500; color: var(--mut); letter-spacing: 0; }
  .cm-tier .atlaunch { font-size: 12px; color: var(--dim); margin-bottom: 18px; }
  .cm-tier ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 6px 0 22px; }
  .cm-tier li { display: flex; gap: 9px; font-size: 13.5px; color: var(--mut); line-height: 1.4; }
  .cm-tier li svg { width: 15px; height: 15px; color: var(--green); flex: none; margin-top: 2px; }
  .cm-tier .cta { margin-top: auto; }
  .cm-tier .cta .cm-btn { width: 100%; }

  /* faq */
  .cm-faq { display: grid; grid-template-columns: 1fr; gap: 0; max-width: 780px; }
  .cm-q { border-top: 1px solid var(--line); }
  .cm-q:last-child { border-bottom: 1px solid var(--line); }
  .cm-q button { display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%;
    font: inherit; color: var(--ink); background: none; border: none; cursor: pointer; text-align: left;
    padding: 20px 4px; font-size: 16.5px; font-weight: 550; letter-spacing: -0.01em; }
  .cm-q button:hover { color: #fff; }
  .cm-q .sign { flex: none; width: 20px; height: 20px; position: relative; color: var(--dim); transition: color .2s; }
  .cm-q button:hover .sign { color: var(--blue); }
  .cm-q .sign::before, .cm-q .sign::after { content:""; position:absolute; background: currentColor; border-radius: 2px; inset: 0; margin: auto; }
  .cm-q .sign::before { width: 13px; height: 2px; }
  .cm-q .sign::after { width: 2px; height: 13px; transition: transform .25s; }
  .cm-q.open .sign::after { transform: scaleY(0); }
  .cm-q .ans { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
  .cm-q .ans p { padding: 0 4px 22px; color: var(--mut); font-size: 15px; line-height: 1.6; max-width: 62ch; }

  /* final cta */
  .cm-final { text-align: center; padding: 100px 0; border-top: 1px solid var(--line);
    background: radial-gradient(700px 340px at 50% 0%, rgba(77,159,255,0.12), transparent 65%); }
  .cm-final h2 { font-size: clamp(30px, 4vw, 46px); letter-spacing: -0.03em; line-height: 1.05; font-weight: 700; text-wrap: balance; }
  .cm-final p { margin: 18px auto 30px; color: var(--mut); font-size: 18px; max-width: 30em; }
  .cm-final .reassure { margin-top: 18px; font-size: 13.5px; color: var(--dim); }

  /* footer */
  .cm-foot { border-top: 1px solid var(--line); padding: 40px 0 56px; }
  .cm-foot .row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
  .cm-foot .tag { color: var(--dim); font-size: 13.5px; }
  .cm-foot .links { display: flex; gap: 20px; margin-left: auto; }
  .cm-foot .links a { color: var(--mut); text-decoration: none; font-size: 13.5px; }
  .cm-foot .links a:hover { color: var(--ink); }
  .cm-foot .copy { color: var(--dim); font-size: 12.5px; margin-top: 20px; }

  /* responsive */
  @media (max-width: 900px) {
    .cm-hero .grid { grid-template-columns: 1fr; gap: 40px; }
    .cm-stage { order: -1; }
    .cm-steps { grid-template-columns: repeat(2, 1fr); }
    .cm-feats { grid-template-columns: 1fr 1fr; }
    .cm-tiers { grid-template-columns: 1fr 1fr; }
    .cm-nav .links { display: none; }
  }
  @media (max-width: 560px) {
    .cm .wrap { padding: 0 18px; }
    .cm-feats, .cm-tiers, .cm-steps { grid-template-columns: 1fr; }
    .cm-hero { padding: 48px 0 64px; }
    .cm-nav .row { gap: 12px; height: 56px; }
    .cm-nav .ghost { display: none; }
    .cm-nav .cm-btn.primary { padding: 9px 15px; font-size: 14px; }
  }
  @media (prefers-reduced-motion: reduce) {
    .cm *, .cm *::before, .cm *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  }

  /* ── legal / long-form pages (privacy, terms) ── */
  .cm-legal { padding: 54px 0 72px; }
  .cm-legal .wrap { max-width: 760px; }
  .cm-legal .back { display: inline-flex; align-items: center; gap: 7px; color: var(--mut);
    text-decoration: none; font-size: 13.5px; font-weight: 500; margin-bottom: 26px; }
  .cm-legal .back:hover { color: var(--ink); }
  .cm-legal .back svg { width: 15px; height: 15px; }
  .cm-legal h1 { font-size: clamp(28px, 4vw, 38px); letter-spacing: -0.03em; line-height: 1.08;
    font-weight: 700; }
  .cm-legal .eff { color: var(--dim); font-size: 13.5px; margin-top: 10px; }
  .cm-legal .lede { color: var(--mut); font-size: 17px; margin-top: 20px; }
  .cm-legal h2 { font-size: 19px; letter-spacing: -0.01em; font-weight: 650; margin: 38px 0 12px;
    padding-top: 26px; border-top: 1px solid var(--line); }
  .cm-legal h2:first-of-type { border-top: none; padding-top: 0; }
  .cm-legal p { color: var(--mut); font-size: 15.5px; margin: 12px 0; }
  .cm-legal ul { margin: 12px 0 12px 2px; list-style: none; }
  .cm-legal li { color: var(--mut); font-size: 15.5px; margin: 9px 0; padding-left: 20px; position: relative; }
  .cm-legal li::before { content: ""; position: absolute; left: 2px; top: 9px; width: 6px; height: 6px;
    border-radius: 50%; background: var(--blue); }
  .cm-legal a { color: var(--blue); text-decoration: none; }
  .cm-legal a:hover { text-decoration: underline; }
  .cm-legal strong { color: var(--ink); font-weight: 600; }
  .cm-legal .note { margin-top: 34px; padding: 16px 18px; border: 1px solid var(--line-2);
    border-radius: var(--radius-sm); background: var(--panel-3); color: var(--dim); font-size: 13.5px; }

  /* ── waitlist modal ── */
  .cm-modal[hidden] { display: none; }
  .cm-modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center;
    justify-content: center; padding: 20px; }
  .cm-modal-backdrop { position: absolute; inset: 0; background: rgba(6,9,13,0.72); backdrop-filter: blur(6px); }
  .cm-modal-card { position: relative; width: 100%; max-width: 430px; background: var(--panel);
    border: 1px solid var(--line-2); border-radius: var(--radius); padding: 34px 30px 30px;
    box-shadow: 0 24px 70px rgba(0,0,0,0.55); animation: cmPop .18s ease-out; }
  @keyframes cmPop { from { opacity: 0; transform: translateY(8px) scale(.98); } to { opacity: 1; transform: none; } }
  .cm-modal-x { position: absolute; top: 14px; right: 14px; width: 32px; height: 32px; display: grid;
    place-items: center; border: none; background: transparent; color: var(--dim); cursor: pointer; border-radius: 8px; }
  .cm-modal-x:hover { color: var(--ink); background: rgba(255,255,255,0.05); }
  .cm-modal-x svg { width: 18px; height: 18px; }
  .cm-modal h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }
  .cm-modal p { color: var(--mut); font-size: 14.5px; margin-top: 8px; }
  .cm-modal form { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
  .cm-modal input[type=email] { width: 100%; padding: 13px 15px; font: inherit; font-size: 15px;
    color: var(--ink); background: var(--panel-3); border: 1px solid var(--line-2);
    border-radius: var(--radius-sm); outline: none; transition: border-color .15s, box-shadow .15s; }
  .cm-modal input[type=email]:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(77,159,255,0.18); }
  .cm-modal .cm-btn { width: 100%; }
  .cm-modal .cm-btn[disabled] { opacity: .6; cursor: default; }
  .cm-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
  .cm-modal-msg { min-height: 17px; font-size: 13px; color: var(--red); }
  .cm-modal-done { text-align: center; }
  .cm-modal-check { width: 54px; height: 54px; margin: 4px auto 14px; border-radius: 50%; display: grid;
    place-items: center; background: rgba(67,195,131,0.14); color: var(--green); }
  .cm-modal-check svg { width: 26px; height: 26px; }
  .cm-modal-done .cm-btn { width: auto; margin-top: 18px; padding-inline: 26px; }
