
  :root {
    --bg: #161616;
    --raised: #212121;
    --raised-2: #292929;
    --line: #313131;
    --line-soft: #2a2a2a;
    --ink: #fafafa;
    --dim: #9a9a9a;
    --faint: #6e6e6e;
    /* Two-tier cherry: fills need mass, text needs luminance on #161616.
       --cherry-fill 3.5:1 on bg (never small text) · --cherry-text 5.5:1 (AA). */
    --cherry-fill: #cf2b41;
    --cherry-text: #ff4a5c;
    --grad: linear-gradient(100deg, #e2213f 0%, #c11f38 55%, #a50f28 100%);
    --building: #ffa31a;   /* the old brand orange, now a build-in-progress signal */
    --cherry: #cf2b41;
    --cherry-back: #8e1f2f;
    --cherry-stem: #b8762b;
    --w-display: 600;
    --on-grad: #ffffff;
    --mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, monospace;
    --z-nav: 10;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  @media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
  html, body { overflow-x: clip; }
  section, header.hero { scroll-margin-top: 76px; }
  :focus-visible { outline: 2px solid var(--cherry-text); outline-offset: 3px; border-radius: 6px; }
  .pill:focus-visible { outline-offset: 2px; }
  body {
    background: var(--bg);
    color: var(--ink);
    font: 400 1.0625rem/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; }
  h1, h2, h3 { text-wrap: balance; font-style: normal; }
  .wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
  .skip {
    position: absolute; left: -9999px; top: 0; z-index: 20;
    background: var(--grad); color: var(--on-grad); padding: 10px 16px;
    border-radius: 0 0 12px 0; font-weight: 600; text-decoration: none;
  }
  .skip:focus { left: 0; }


  /* ---------- nav ---------- */
  nav {
    position: sticky; top: 0; z-index: var(--z-nav);
    background: rgba(22,22,22,0.85);
    backdrop-filter: saturate(1.4) blur(16px);
    -webkit-backdrop-filter: saturate(1.4) blur(16px);
  }
  .nav-inner {
    display: flex; align-items: center; gap: 20px; position: relative;
    padding: 13px 24px; max-width: 1240px; margin: 0 auto;
  }
  .nav-center {
    position: absolute; left: 50%; transform: translateX(-50%);
    display: flex; align-items: center; gap: 26px;
  }
  .nav-center > a, .nav-center summary {
    text-decoration: none; color: var(--dim); font-size: 0.95rem; font-weight: 500;
    cursor: pointer; list-style: none;
  }
  .nav-center > a:hover, .nav-center summary:hover { color: var(--ink); }
  .nav-center a.app-link { color: var(--cherry-text); font-weight: 650; }
  .nav-right { display: flex; align-items: center; gap: 10px; margin-left: auto; }
  .icon-circle {
    width: 36px; height: 36px; border-radius: 999px;
    background: var(--raised); border: 1px solid var(--line);
    display: grid; place-items: center; color: var(--dim); text-decoration: none;
    transition: color 0.15s ease, border-color 0.15s ease;
  }
  .icon-circle:hover { color: var(--ink); border-color: #3a3a3a; }
  .icon-circle svg { width: 16px; height: 16px; fill: currentColor; }
  .pill.white { background: #ffffff; color: #111111; }
  .pill.white:hover { filter: brightness(0.94); }

  /* Resources dropdown */
  .dropdown { position: relative; }
  .dropdown summary::-webkit-details-marker { display: none; }
  
  .dropdown-panel {
    position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
    background: #161616; border: 1px solid var(--line); border-radius: 18px;
    padding: 14px; width: 340px; box-shadow: 0 24px 70px rgba(0,0,0,0.55);
    display: flex; flex-direction: column; gap: 4px; z-index: 20;
  }
  .menu-label {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--faint); padding: 6px 10px 4px;
  }
  .menu-row {
    display: flex; align-items: center; gap: 14px; text-decoration: none;
    padding: 10px; border-radius: 12px;
  }
  .menu-row:hover { background: var(--raised); }
  .menu-row .tile {
    width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
    background: var(--raised); border: 1px solid var(--line);
    display: grid; place-items: center; color: var(--dim); font-size: 1.05rem;
  }
  .menu-row b { display: block; font-size: 0.98rem; font-weight: 650; color: var(--ink); }
  .menu-row span { display: block; font-size: 0.85rem; color: var(--dim); }
  .wordmark { display: flex; align-items: center; gap: 9px; font-weight: 700; text-decoration: none; font-size: 1.15rem; letter-spacing: -0.01em; }
  .mark { width: 18px; height: 18px; flex: 0 0 auto; display: block; }
  /* Filled monochrome: survives 16px favicons and macOS template icons, where
     a green leaf + brown stem would turn to mush (and can't be a template at all). */
  .mark .fruit, .mark .leaf { fill: var(--cherry); stroke: none; }
  .mark .stem { fill: none; stroke: var(--cherry); stroke-width: 1.6; stroke-linecap: round; }

  .pill {
    white-space: nowrap; display: inline-flex; align-items: center; gap: 8px;
    text-decoration: none; font-weight: 700;
    background: var(--grad); color: var(--on-grad);
    padding: 10px 22px; border-radius: 999px; font-size: 0.98rem;
    transition: filter 0.15s ease, transform 0.15s ease;
  }
  .pill:hover { filter: brightness(1.06); }
  .pill:active { transform: scale(0.98); }
  .pill.big { padding: 14px 30px; font-size: 1.05rem; }
  .pill.glow { box-shadow: 0 0 40px rgba(207,43,65,0.42); }

  /* ---------- hero ---------- */
  header.hero { padding: 96px 0 64px; text-align: center; }
  .hero h1 {
    font-size: clamp(2.3rem, 4.6vw + 0.4rem, 3.5rem);
    line-height: 1.07; letter-spacing: -0.021em; font-weight: var(--w-display);
  }
  .hero p.lede {
    margin: 18px auto 40px; color: var(--dim); font-size: 1.125rem;
    max-width: 34rem; line-height: 1.55; font-weight: 400;
    letter-spacing: -0.003em; text-wrap: balance;
  }

  /* composer centerpiece */
  .composer {
    max-width: 780px; margin: 0 auto; text-align: left; position: relative;
    background: var(--raised); border: 1px solid var(--line);
    border-radius: 26px; padding: 22px 22px 16px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  }
  .composer textarea {
    width: 100%; background: transparent; border: 0; resize: none;
    color: var(--ink); font: inherit; font-size: 1.1rem; line-height: 1.5;
    min-height: 64px; outline: none; display: block;
  }
  .composer textarea::placeholder { color: var(--faint); }
  .composer-row { display: flex; align-items: center; gap: 10px; margin-top: 10px; }
  .mini-pill {
    display: inline-flex; align-items: center; gap: 7px;
    background: var(--raised-2); border: 1px solid var(--line);
    color: var(--dim); border-radius: 999px; padding: 7px 14px;
    font-size: 0.87rem; font-weight: 600;
  }
  .composer-row .go {
    margin-left: auto; border: 0; cursor: pointer;
    width: 40px; height: 40px; border-radius: 999px;
    background: var(--grad); color: var(--on-grad);
    display: grid; place-items: center; font-size: 1.1rem; font-weight: 800;
    transition: filter 0.15s ease, opacity 0.15s ease;
  }
  .composer-row .go:disabled { background: var(--raised-2); color: var(--faint); cursor: default; }
  .composer-row .go:not(:disabled):hover { filter: brightness(1.08); }

  .chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 26px auto 0; max-width: 780px; }
  .chip {
    display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
    background: var(--raised); border: 1px solid var(--line);
    color: var(--ink); border-radius: 999px; padding: 10px 18px;
    font: inherit; font-size: 0.93rem; font-weight: 600;
    transition: border-color 0.15s ease, background 0.15s ease;
  }
  .chip:hover { border-color: #3d3d3d; background: var(--raised-2); }
  .chips-more { display: flex; justify-content: center; margin-top: 10px; }
  .hero-note { margin-top: 30px; color: var(--faint); font-size: 0.9rem; font-family: var(--mono); }

  /* ---------- projects grid (proof) ---------- */
  section { padding: 84px 0; }
  .section-head { margin-bottom: 40px; }
  .section-head.center { text-align: center; }
  .section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); letter-spacing: -0.022em; font-weight: var(--w-display); line-height: 1.12; }
  .section-head p { margin: 12px auto 0; color: var(--dim); max-width: 40rem; font-size: 1.05rem; }
  .cards {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 230px));
    gap: 26px 22px; justify-content: center;
  }
  .card { min-width: 0; margin: 0; }
  .card .shot {
    background: var(--raised); border: 1px solid var(--line-soft); border-radius: 20px;
    overflow: hidden;
  }
  .card img { width: 100%; height: auto; display: block; }
  .card-meta {
    display: flex; align-items: center; gap: 8px; padding: 11px 4px 0;
  }
  .card-meta b { font-size: 0.94rem; font-weight: 600; }
  .card-meta span { margin-left: auto; color: var(--faint); font-size: 0.85rem; }
  .cards-note { text-align: center; margin-top: 24px; color: var(--faint); font-size: 0.9rem; }
  .cards-note .q { color: var(--dim); font-family: var(--mono); font-size: 0.85rem; }
  .cards-note .q::before { content: "“"; color: var(--cherry-text); }
  .cards-note .q::after { content: "”"; color: var(--cherry-text); }

  /* ---------- how it works ---------- */
  .steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
  .step {
    background: var(--raised); border: 1px solid var(--line-soft);
    border-radius: 18px; padding: 26px 24px;
  }
  .step h3 { font-size: 1.08rem; margin-bottom: 8px; font-weight: 700; }
  .step .n {
    display: inline-grid; place-items: center; width: 30px; height: 30px;
    background: var(--grad); color: var(--on-grad); border-radius: 10px;
    font-family: var(--mono); font-size: 0.9rem; font-weight: 700; margin-bottom: 16px;
  }
  .step p { color: var(--dim); font-size: 0.95rem; }
  figure.run { margin-top: 22px; }
  pre.run, pre.tree {
    font-family: var(--mono); font-size: 0.88rem; line-height: 1.85; color: var(--dim);
    background: var(--raised); border: 1px solid var(--line-soft); border-radius: 18px;
    padding: 24px 28px; overflow-x: auto;
  }
  pre.run .ok { color: #7fc86f; }
  pre.run .em { color: var(--building); }
  pre.run .err { color: #e0705e; }
  pre .c { color: var(--faint); }
  pre.tree .d { color: var(--cherry-text); }
  figure.run figcaption { margin-top: 12px; color: var(--faint); font-size: 0.88rem; text-align: center; }

  /* ---------- ownership ---------- */
  .own-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 48px; align-items: center; }
  .own-list { list-style: none; display: grid; gap: 18px; }
  .own-list li { padding-left: 34px; position: relative; color: var(--dim); font-size: 1rem; }
  .own-list li::before {
    content: "✓"; position: absolute; left: 0; top: 1px;
    width: 22px; height: 22px; border-radius: 8px;
    background: var(--grad); color: var(--on-grad);
    display: grid; place-items: center; font-size: 0.8rem; font-weight: 800;
  }
  .own-list li strong { color: var(--ink); font-weight: 650; }

  /* ---------- guardrails ---------- */
  dl.rails { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
  dl.rails > div {
    background: var(--raised); border: 1px solid var(--line-soft);
    border-radius: 18px; padding: 24px;
  }
  dl.rails dt { font-weight: 700; margin-bottom: 6px; font-size: 1.02rem; }
  dl.rails dd { color: var(--dim); font-size: 0.94rem; }

  /* ---------- pricing ---------- */
  .tiers { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
  .tier {
    background: var(--raised); border: 1px solid var(--line-soft); border-radius: 18px;
    padding: 26px 24px; display: flex; flex-direction: column; gap: 4px;
  }
  .tier.accent { border-color: rgba(207,43,65,0.6); }
  .tier h3 { font-size: 0.98rem; font-weight: 700; }
  .tier .price { font-size: 2rem; font-weight: var(--w-display); letter-spacing: -0.02em; margin-top: 6px; }
  .tier .price small { font-size: 0.9rem; font-weight: 500; color: var(--faint); letter-spacing: 0; }
  .tier .credits { font-family: var(--mono); font-size: 0.84rem; color: var(--cherry-text); margin: 6px 0 14px; }
  .tier p { color: var(--dim); font-size: 0.9rem; flex-grow: 1; }
  .pack {
    margin-top: 16px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
    background: var(--raised); border: 1px solid var(--line-soft); border-radius: 18px; padding: 18px 24px;
  }
  .pack .credits { font-family: var(--mono); font-size: 0.85rem; color: var(--cherry-text); }
  .pack p { color: var(--dim); font-size: 0.9rem; flex: 1; min-width: 200px; }
  .price-note { margin-top: 22px; color: var(--faint); font-size: 0.9rem; font-family: var(--mono); text-align: center; }

  /* ---------- faq ---------- */
  .faq { max-width: 46rem; margin: 0 auto; }
  .faq details { border-bottom: 1px solid var(--line-soft); }
  .faq summary {
    cursor: pointer; padding: 18px 0; font-weight: 650; font-size: 1.02rem;
    list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  }
  .faq summary::-webkit-details-marker { display: none; }
  .faq summary::after { content: "+" / ""; color: var(--cherry-text); font-family: var(--mono); font-size: 1.1rem; flex-shrink: 0; }
  .faq details[open] summary::after { content: "\2212" / ""; }
  .faq details p { padding: 0 0 20px; color: var(--dim); max-width: 42rem; }

  /* ---------- final cta / footer ---------- */
  .final { text-align: center; padding: 100px 0; }
  .final h2 { font-size: clamp(2rem, 4.6vw, 3rem); letter-spacing: -0.025em; font-weight: var(--w-display); }
  .final p { color: var(--dim); margin: 16px auto 34px; max-width: 32rem; font-size: 1.1rem; }
  .cta-alt { margin-top: 20px; font-size: 0.9rem; }
  .cta-alt a { color: var(--faint); text-underline-offset: 3px; }
  .cta-alt a:hover { color: var(--dim); }
  footer { border-top: 1px solid var(--line-soft); padding: 56px 0 40px; }
  .foot-grid {
    display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
    gap: 40px; margin-bottom: 40px;
  }
  .foot-brand p { margin-top: 14px; color: var(--dim); font-size: 0.95rem; max-width: 22rem; }
  .foot-col h4 {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--faint); margin-bottom: 16px;
  }
  .foot-col a { display: block; text-decoration: none; color: var(--dim); font-size: 0.95rem; padding: 6px 0; }
  .foot-col a:hover { color: var(--ink); }
  .foot-bottom {
    border-top: 1px solid var(--line-soft); padding-top: 24px;
    display: flex; gap: 16px; flex-wrap: wrap; color: var(--faint); font-size: 0.9rem;
  }
  @media (max-width: 760px) { .foot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

  /* ---------- reveal (enhancement only) ---------- */
  @media (prefers-reduced-motion: no-preference) {
    html.js-armed .reveal:not(.in) { opacity: 0.001; transform: translateY(14px); }
    .reveal { transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1); }
  }

  /* ---------- responsive ---------- */
  @media (max-width: 900px) {
    .own-grid { grid-template-columns: minmax(0, 1fr); gap: 36px; }
    .steps, dl.rails { grid-template-columns: minmax(0, 1fr); }
    .tiers { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    header.hero { padding: 64px 0 48px; }
    section { padding: 60px 0; }
  }
  @media (max-width: 760px) { .nav-links a.nav-plain { display: none; } }
  @media (max-width: 560px) { .tiers { grid-template-columns: minmax(0, 1fr); } }
  @media (max-width: 480px) {
    .wordmark span { display: none; }
    .nav-inner { gap: 12px; }
    .nav-links a.pill { padding: 8px 16px; font-size: 0.9rem; }
    .banner { font-size: 0.84rem; padding: 8px 16px; }
  }

  /* ---------- subpages ---------- */
  .page-head { padding: 72px 0 8px; text-align: center; }
  .page-head h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); letter-spacing: -0.025em; font-weight: var(--w-display); }
  .page-head p { margin: 14px auto 0; color: var(--dim); max-width: 40rem; font-size: 1.1rem; }
  @media (max-width: 860px) { .nav-center { display: none; } }

  /* ---------- account modal ---------- */
  .modal-backdrop {
    position: fixed; inset: 0; z-index: 50;
    background: rgba(0,0,0,0.6);
    display: none; align-items: center; justify-content: center; padding: 24px;
  }
  .modal-backdrop.open { display: flex; }
  .modal {
    background: #1e1e1e; border: 1px solid var(--line);
    border-radius: 24px; padding: 40px 36px 28px; width: 100%; max-width: 460px;
    position: relative; text-align: center;
    box-shadow: 0 40px 120px rgba(0,0,0,0.6);
  }
  .modal .close {
    position: absolute; top: 18px; right: 18px; border: 0; background: transparent;
    color: var(--dim); font-size: 1.2rem; cursor: pointer; line-height: 1;
    width: 32px; height: 32px; border-radius: 999px;
  }
  .modal .close:hover { color: var(--ink); background: var(--raised-2); }
  .modal .app-tile {
    width: 64px; height: 64px; border-radius: 18px; margin: 0 auto 22px;
    background: var(--raised-2); border: 1px solid var(--line);
    display: grid; place-items: center;
  }
  .modal .app-tile img { width: 40px; height: 40px; border-radius: 10px; }
  .modal h2 { font-size: 1.65rem; font-weight: var(--w-display); letter-spacing: -0.02em; }
  .modal .sub { color: var(--dim); margin: 10px 0 26px; font-size: 1.02rem; }
  .modal .stack { display: grid; gap: 12px; }
  .modal .btn-row {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%; border-radius: 999px; padding: 14px 20px; cursor: pointer;
    font: inherit; font-weight: 650; font-size: 1rem; text-decoration: none;
    border: 0;
  }
  .modal .btn-row.primary { background: #ffffff; color: #111111; }
  .modal .btn-row.primary:hover { filter: brightness(0.94); }
  .modal .btn-row.secondary {
    background: var(--raised); color: var(--ink); border: 1px solid var(--line);
  }
  .modal .btn-row.secondary:hover { border-color: #3d3d3d; }
  .modal .fine { margin-top: 22px; color: var(--faint); font-size: 0.85rem; }

  /* rotating hero word */
  .rotator-wrap { display: inline-block; }
  #rotator {
    display: inline-block; border-bottom: 4px solid #4a4a4a; padding-bottom: 2px;
    transition: opacity 0.26s ease, transform 0.26s ease;
  }
  #rotator.out { opacity: 0; transform: translateY(10px); }
  /* ---------- spotlight (Rork Max pattern) ---------- */
  .spotlight { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr); gap: 48px; align-items: center; }
  .spot-copy h2 { font-size: clamp(1.8rem, 3.8vw, 2.6rem); letter-spacing: -0.022em; font-weight: var(--w-display); }
  .spot-copy p { margin: 14px 0 28px; color: var(--dim); font-size: 1.1rem; max-width: 30rem; }
  .spot-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
  .pill.ghost { background: var(--raised); color: var(--ink); border: 1px solid var(--line); font-weight: 600; }
  .pill.ghost:hover { filter: none; border-color: #3d3d3d; }
  .spot-shot { width: 100%; max-width: 300px; border-radius: 24px; border: 1px solid var(--line); justify-self: center; box-shadow: 0 0 60px rgba(207,43,65,0.22); }
  @media (max-width: 760px) { .spotlight { grid-template-columns: minmax(0, 1fr); } .spot-shot { max-width: 240px; } }

  /* ---------- Meet Morello player ---------- */
  .meet .section-head h2 { font-size: clamp(2rem, 4.5vw, 3rem); }
  .player {
    position: relative; display: grid; grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px; align-items: center;
    background: var(--raised); border: 1px solid var(--line-soft); border-radius: 24px;
    padding: 40px;
  }
  .player pre.run { background: transparent; border: 0; padding: 0; margin: 0; font-size: 0.95rem; line-height: 2.1; }
  .player .pl { display: block; opacity: 0.06; transition: opacity 0.5s ease; }
  .player .pl.on { opacity: 1; }
  .player-shot {
    width: 190px; height: auto; border-radius: 18px; border: 1px solid var(--line);
    opacity: 0; transform: translateY(10px) scale(0.98);
    transition: opacity 0.7s ease, transform 0.7s ease;
    box-shadow: 0 0 50px rgba(207,43,65,0.3);
  }
  .player-shot.on { opacity: 1; transform: none; }
  .player-pause {
    position: absolute; right: 18px; bottom: 14px; border: 0; cursor: pointer;
    background: transparent; color: var(--faint); font-size: 0.9rem;
  }
  .player-pause:hover { color: var(--ink); }
  .player-note { text-align: center; margin-top: 16px; color: var(--faint); font-size: 0.9rem; }
  @media (max-width: 700px) {
    .player { grid-template-columns: minmax(0, 1fr); padding: 26px; }
    .player-shot { width: 150px; justify-self: center; }
  }
  @media (prefers-reduced-motion: reduce) { .player .pl, .player-shot { opacity: 1; transform: none; } }

  /* ---------- modal inputs ---------- */
  .m-input {
    width: 100%; background: var(--raised); border: 1px solid var(--line);
    border-radius: 999px; padding: 14px 20px; color: var(--ink);
    font: inherit; font-size: 1rem; outline: none; text-align: center;
  }
  .m-input:focus { border-color: var(--cherry-text); }
  .m-done-copy { color: var(--dim); font-size: 0.98rem; margin-bottom: 4px; }
  /* Resources chevron */
  .dropdown summary::after { content: "▾"; margin-left: 7px; font-size: 0.8em; opacity: 0.7; }
  /* refer modal */
  .modal.refer { text-align: left; }
  .modal.refer h2 { font-size: 1.4rem; }
  .refer-how { display: grid; gap: 12px; margin: 22px 0; }
  .refer-how > div { display: flex; gap: 12px; align-items: baseline; color: var(--dim); font-size: 0.95rem; }
  .refer-how .n {
    flex-shrink: 0; width: 24px; height: 24px; border-radius: 999px; display: grid; place-items: center;
    border: 1px solid var(--line); color: var(--ink); font-size: 0.8rem; font-weight: 700;
  }
  .refer-link { display: grid; gap: 10px; }
  .refer-link input {
    width: 100%; background: var(--bg); border: 1px solid var(--line); border-radius: 12px;
    padding: 12px 16px; color: var(--dim); font-family: var(--mono); font-size: 0.88rem;
  }
  /* ---------- signed-in dashboard ---------- */
  #dash { display: flex; min-height: calc(100vh - 62px); }
  .dash-side {
    width: 250px; flex-shrink: 0; display: flex; flex-direction: column; gap: 10px;
    padding: 22px 16px; border-right: 1px solid var(--line-soft); background: var(--bg);
  }
  .dash-side .wordmark { font-size: 1.3rem; margin-bottom: 8px; }
  .dash-label { color: var(--faint); font-size: 0.85rem; margin-top: 10px; }
  .dash-row { padding: 10px 12px; border-radius: 10px; color: var(--ink); font-weight: 600; cursor: default; }
  .dash-row.active { background: var(--raised-2); }
  .dash-search {
    background: transparent; border: 1px solid var(--line); border-radius: 12px;
    padding: 10px 14px; color: var(--dim); font: inherit; font-size: 0.9rem;
  }
  .dash-flex { flex: 1; }
  .dash-refer {
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    background: var(--raised); border: 1px solid var(--line); border-radius: 14px;
    padding: 14px 16px; color: var(--ink); font: inherit; text-align: left; cursor: pointer;
  }
  .dash-refer small { color: var(--faint); }
  .dash-refer:hover { border-color: #3d3d3d; }
  .dash-signout { background: none; border: 0; color: var(--faint); font: inherit; font-size: 0.85rem; cursor: pointer; text-align: left; padding: 4px 6px; }
  .dash-signout:hover { color: var(--dim); }
  .dash-main { flex: 1; padding: 34px 40px; }
  .dash-head { display: flex; align-items: center; gap: 18px; margin-bottom: 30px; }
  .dash-head h2 { font-size: 1.7rem; font-weight: 800; letter-spacing: -0.02em; }
  .dash-credits { margin-left: auto; font-family: var(--mono); font-size: 0.88rem; color: var(--cherry-text); }
  .dash-empty {
    max-width: 420px; display: grid; gap: 12px; justify-items: start;
    background: var(--raised); border: 1px dashed var(--line); border-radius: 20px; padding: 32px;
  }
  .dash-empty img { border-radius: 12px; }
  .dash-empty p { color: var(--dim); font-size: 0.95rem; }
  @media (max-width: 700px) { .dash-side { display: none; } }
  /* modal state visibility + plain link button */
  .modal .stack[hidden] { display: none !important; }
  .modal .btn-row.plain { background: none; border: 0; color: var(--faint); font-weight: 500; font-size: 0.9rem; padding: 6px; }
  .modal .btn-row.plain:hover { color: var(--dim); }
  /* signed-in: keep hero+composer+spotlight, hide pure marketing sections */
  body.signed-in #meet, body.signed-in #gallery, body.signed-in .final { display: none; }
  body.signed-in header.hero { padding: 44px 0 30px; }
  body.signed-in nav { display: none; }
  .dash-main { overflow-y: auto; }
  /* founder headline */
  .founder-wrap { display: inline-flex; align-items: center; gap: 0.18em; border-bottom: 5px solid #4a4a4a; padding-bottom: 0.06em; transition: opacity 0.26s ease; white-space: nowrap; }
  .founder-wrap.out { opacity: 0; }
  .founder-wrap img { width: 0.95em; height: 0.95em; border-radius: 999px; object-fit: cover; }
  /* composer round buttons */
  .round-btn { width: 36px; height: 36px; border-radius: 999px; border: 1px solid var(--line); background: var(--raised-2); color: var(--dim); font-size: 1.1rem; cursor: pointer; display: grid; place-items: center; }
  .round-btn:hover { color: var(--ink); border-color: #3d3d3d; }
  .round-btn.mic { margin-left: auto; font-size: 0.9rem; }
  .composer-row .go { margin-left: 0; }
  .mini-pill .caret { font-size: 0.8em; opacity: 0.7; }
  /* phone peek at the fold */
  .phone-peek { margin-top: 60px; display: flex; justify-content: center; height: 240px; overflow: hidden; }
  .peek-frame { width: 300px; border-radius: 44px 44px 0 0; border: 10px solid #6d2230; border-bottom: 0; overflow: hidden; box-shadow: 0 -10px 80px rgba(207,43,65,0.18); }
  .peek-frame img { display: block; width: 100%; }
  body.signed-in .phone-peek { display: none; }
  #dash[hidden] { display: none !important; }

  /* ---------- pricing: billing toggle + feature lists ---------- */
  .bill-toggle {
    display: flex; gap: 4px; width: fit-content; margin: 0 auto 34px;
    background: var(--raised); border: 1px solid var(--line); border-radius: 999px; padding: 4px;
  }
  .bt { border: 0; background: transparent; color: var(--dim); font: inherit; font-size: 0.93rem; font-weight: 600; padding: 8px 18px; border-radius: 999px; cursor: pointer; }
  .bt.active { background: var(--raised-2); color: var(--ink); }
  .bt .save { color: var(--cherry-text); font-size: 0.82rem; margin-left: 4px; }
  .tier-sub { color: var(--dim); font-size: 0.88rem; min-height: 2.6em; margin-top: 2px; }
  .price .was { color: var(--faint); font-size: 1.15rem; font-weight: 600; margin-right: 8px; }
  .feat { list-style: none; padding: 0; margin: 6px 0 18px; display: grid; gap: 9px; flex-grow: 1; }
  .feat li { position: relative; padding-left: 24px; color: var(--dim); font-size: 0.9rem; }
  .feat li b { color: var(--ink); font-weight: 650; }
  .feat li::before { content: "✓"; position: absolute; left: 0; color: var(--cherry-text); font-weight: 700; }
  .tier-cta { display: flex; justify-content: center; text-align: center; }

  /* ---------- signed-in greeting (Lovable pattern) ---------- */
  .dash-greet { text-align: center; padding: 30px 0 26px; }
  .dash-news {
    display: inline-flex; align-items: center; gap: 10px; text-decoration: none;
    background: var(--raised); border: 1px solid var(--line); border-radius: 999px;
    padding: 7px 16px 7px 7px; color: var(--dim); font-size: 0.9rem; font-weight: 500;
  }
  .dash-news:hover { border-color: #3d3d3d; color: var(--ink); }
  .news-tag { background: var(--grad); color: var(--on-grad); border-radius: 999px; padding: 3px 10px; font-size: 0.78rem; font-weight: 700; }
  .dash-greet h1 { margin-top: 22px; font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 800; letter-spacing: -0.022em; }
  body.signed-in header.hero h1, body.signed-in header.hero .lede { display: none; }
  body.signed-in header.hero { padding: 8px 0 26px; }

  /* ---------- pricing: Rork-style tiers ---------- */
  .tiers { align-items: stretch; }
  .tier .price { display: flex; align-items: baseline; gap: 2px; margin: 10px 0 18px; }
  .feat .fi { width: 17px; height: 17px; flex-shrink: 0; display: inline-grid; place-items: center; }
  .feat .fi svg { width: 15px; height: 15px; fill: var(--cherry-text); }
  .feat li { display: flex; align-items: flex-start; gap: 11px; padding-left: 0; }
  .feat li::before { content: none; }
  .tier.max {
    background:
      radial-gradient(120% 80% at 50% -10%, rgba(207,43,65,0.28), transparent 60%),
      linear-gradient(180deg, #241016 0%, #1a0d11 100%);
    border-color: transparent;
  }
  .tier.max { border: 1px solid rgba(226,33,63,0.55); box-shadow: 0 0 50px rgba(207,43,65,0.12); }
  .tier.max h3, .tier.max .price, .tier.max .feat li b { color: #fff; }
  .tier.max .tier-sub, .tier.max .feat li { color: var(--dim); }
  .tier.max .price small { color: var(--faint); }
  .tier.max .price .was { color: var(--faint); }
  .tier.max .feat .fi svg { fill: var(--cherry-text); }
  .tier.max .pill.white { background: #fff; color: #171717; }
  .price-note a { color: var(--dim); text-underline-offset: 3px; }
  .price-note a:hover { color: var(--ink); }

  /* ---------- pricing: header block / feature list split ---------- */
  .tier { padding: 0; overflow: hidden; }
  .tier-top { padding: 26px 24px 22px; display: flex; flex-direction: column; position: relative; }
  .tier-top .tier-cta { margin-top: 18px; }
  .tier .feat { padding: 22px 24px 26px; margin: 0; border-top: 1px solid var(--line-soft); }
  .tier.max .feat { border-top-color: rgba(226,33,63,0.25); }
  .tier .price { margin: 12px 0 8px; }
  .badge {
    position: absolute; top: 18px; right: 20px;
    background: var(--grad); color: var(--on-grad);
    font-size: 0.7rem; font-weight: 800; letter-spacing: 0.03em;
    padding: 4px 10px; border-radius: 999px; text-transform: uppercase;
  }
  .tier.accent { border-color: rgba(207,43,65,0.55); background: linear-gradient(180deg, rgba(207,43,65,0.08), transparent 45%), var(--raised); }
  .tier.accent .tier-cta { background: var(--grad); color: var(--on-grad); border: 0; }
  /* a page-head already supplies the top breathing room */
  .page-head + section { padding-top: 30px; }


  /* ---------- three-card section: one big simple thing per card ---------- */
  .trio-head { max-width: 46rem; margin-bottom: 44px; }
  .trio-head h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 800; letter-spacing: -0.024em; line-height: 1.1; }
  .trio-head p { margin-top: 14px; color: var(--dim); font-size: 1.05rem; max-width: 34rem; }
  .trio { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
  .tcard {
    background: var(--raised); border: 1px solid var(--line-soft); border-radius: 22px;
    display: flex; flex-direction: column; overflow: hidden;
  }
  /* the art panel: a soft cherry glow, one oversized element bleeding off the edge */
  .tcard .art {
    position: relative; height: 260px; padding: 34px 0 0 34px; overflow: hidden;
    background: radial-gradient(90% 70% at 20% 10%, rgba(207,43,65,0.22), transparent 65%), #1c1c1c;
  }
  .tcard .art > * { position: relative; z-index: 1; }

  .art-input {
    background: #0f0f0f; border: 1px solid var(--line); border-radius: 16px;
    padding: 22px 24px; font-size: 1.15rem; color: var(--ink);
    width: 125%; height: 150px; box-shadow: 0 20px 50px rgba(0,0,0,.55);
  }
  .caret { display: inline-block; width: 2px; height: 1.05em; background: var(--cherry-text);
           vertical-align: -3px; margin-left: 3px; animation: blink 1.1s steps(2) infinite; }
  @keyframes blink { 50% { opacity: 0 } }

  .art-steps { display: grid; gap: 12px; width: 118%; }
  .art-steps .step {
    display: flex; align-items: center; gap: 13px;
    background: #0f0f0f; border: 1px solid var(--line); border-radius: 14px;
    padding: 16px 20px; font-size: 1rem; color: var(--ink); box-shadow: 0 14px 40px rgba(0,0,0,.45);
  }
  .art-steps i { font-style: normal; font-size: 0.95rem; }
  .art-steps .done i { color: #7fc86f; }
  .art-steps .live { color: var(--dim); }
  .art-steps .live i { color: var(--building); }

  .art-files { display: grid; gap: 4px; width: 120%;
    background: #0f0f0f; border: 1px solid var(--line); border-radius: 16px;
    padding: 12px; box-shadow: 0 20px 50px rgba(0,0,0,.55); }
  .frow { display: flex; align-items: center; gap: 12px; padding: 11px 14px; border-radius: 10px;
          font-size: 1rem; color: var(--dim); }
  .frow i { font-style: normal; color: var(--faint); font-size: 1.05rem; }
  .frow.on { background: var(--raised-2); color: var(--ink); }
  .frow.on i { color: var(--cherry-text); }
  .frow.dim { opacity: 0.45; }

  .tcard .body { padding: 26px 28px 30px; }
  .tcard .body b { display: block; font-size: 1.05rem; font-weight: 700; margin-bottom: 9px; }
  .tcard .body p { color: var(--dim); font-size: 0.95rem; line-height: 1.6; }
  @media (prefers-reduced-motion: reduce) { .caret { animation: none } }
  @media (max-width: 860px) { .trio { grid-template-columns: minmax(0, 1fr); } .tcard .art { height: 230px; } }

  /* ---------- bigger wordmark ---------- */
  .wordmark { font-size: 1.32rem; gap: 11px; }
  .mark { width: 26px; height: 26px; }
  .dash-side .wordmark { font-size: 1.32rem; }
  .foot-brand .wordmark { font-size: 1.15rem; }
  .foot-brand .mark { width: 22px; height: 22px; }

  /* ---------- composer "+" template menu ---------- */
  .plus-wrap { position: relative; }
  .plus-menu {
    position: absolute; bottom: calc(100% + 12px); left: 0; width: 268px; z-index: 30;
    background: #1b1b1b; border: 1px solid var(--line); border-radius: 16px;
    padding: 8px; box-shadow: 0 24px 70px rgba(0,0,0,0.6);
  }
  .plus-menu[hidden] { display: none !important; }
  .pm-search { display: flex; align-items: center; gap: 10px; padding: 8px 12px 10px; border-bottom: 1px solid var(--line-soft); color: var(--faint); }
  .pm-search input { flex: 1; background: transparent; border: 0; outline: none; color: var(--ink); font: inherit; font-size: 0.95rem; }
  .pm-search input::placeholder { color: var(--faint); }
  .pm-list { max-height: 232px; overflow-y: auto; padding-top: 6px; }
  .pm-row {
    display: flex; align-items: center; gap: 12px; width: 100%; cursor: pointer;
    background: transparent; border: 0; color: var(--ink); font: inherit; font-size: 0.97rem;
    padding: 10px 12px; border-radius: 10px; text-align: left;
  }
  .pm-row i { font-style: normal; color: var(--faint); font-size: 0.9rem; }
  .pm-row:hover { background: var(--raised-2); }
  .pm-row:hover i { color: var(--cherry-text); }
  .pm-empty { padding: 12px; color: var(--faint); font-size: 0.9rem; }

  /* ---------- typing state: chips retreat, send arrow slides in ---------- */
  .chips, .chips-more {
    transition: opacity .28s ease, transform .28s cubic-bezier(.22,1,.36,1);
  }
  header.hero.typing .chips, header.hero.typing .chips-more {
    opacity: 0; transform: translateY(-6px); pointer-events: none;
  }
  .composer-row .go {
    transform: scale(.6) translateX(10px); opacity: 0; pointer-events: none;
    transition: transform .3s cubic-bezier(.22,1,.36,1), opacity .22s ease, filter .15s ease;
  }
  header.hero.typing .composer-row .go {
    transform: none; opacity: 1; pointer-events: auto;
  }
  .round-btn.mic svg { width: 17px; height: 17px; fill: none; stroke: currentColor;
    stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
  @media (prefers-reduced-motion: reduce) {
    .chips, .chips-more, .composer-row .go { transition: none; }
  }


  /* ---------- the Mac (drawn, not a fake screenshot) ---------- */
  .eyebrow { color: var(--cherry-text); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
  .spot-note { margin-top: 16px; color: var(--faint); font-size: 0.88rem; font-family: var(--mono); }
  .mac { justify-self: center; width: 100%; max-width: 430px; }
  .mac-screen { background: #101010; border: 1px solid var(--line); border-radius: 14px 14px 6px 6px; overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,.6), 0 0 70px rgba(207,43,65,.14); }
  .mac-bar { display: flex; gap: 6px; padding: 11px 13px; border-bottom: 1px solid var(--line-soft); }
  .mac-bar i { width: 9px; height: 9px; border-radius: 999px; background: #333; }
  .mac-body { display: grid; grid-template-columns: 78px 1fr; min-height: 208px; }
  .mac-side { border-right: 1px solid var(--line-soft); padding: 14px 10px; display: grid; gap: 9px; align-content: start; }
  .mac-side span { height: 9px; border-radius: 4px; background: #262626; }
  .mac-side span.w { background: #1e1e1e; }
  .mac-main { padding: 20px 18px; display: flex; flex-direction: column; justify-content: center; gap: 14px; }
  .mac-line.lg { height: 11px; width: 58%; border-radius: 5px; background: #2a2a2a; margin: 0 auto; }
  .mac-composer { background: #171717; border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; font-size: 0.92rem; color: var(--dim); }
  .mac-base { height: 9px; margin: 0 auto; width: 74%; border-radius: 0 0 10px 10px;
    background: linear-gradient(#242424, #141414); border: 1px solid var(--line); border-top: 0; }

  /* ---------- Meet Morello: give the device presence ---------- */
  .player { position: relative; }
  .player-glow { position: absolute; right: 4%; top: 50%; transform: translateY(-50%);
    width: 260px; height: 260px; border-radius: 999px; pointer-events: none;
    background: radial-gradient(circle, rgba(207,43,65,.3), transparent 68%); filter: blur(14px); }
  .player-shot { border-radius: 22px; border: 6px solid #0d0d0d;
    box-shadow: 0 0 0 1px var(--line), 0 26px 60px rgba(0,0,0,.6); }

  /* ---------- scroll-driven showcase ---------- */
  #beyond { padding: 0; position: relative; height: 420vh; }
  .beyond-sticky { position: sticky; top: 0; height: 100vh; display: flex; align-items: center; }
  .beyond-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 60px; align-items: center; width: 100%; }
  .beyond-copy h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); font-weight: 800; letter-spacing: -0.024em; line-height: 1.12; }
  .beyond-copy > p { margin: 15px 0 30px; color: var(--dim); font-size: 1.02rem; max-width: 31rem; }
  .acc-item { display: grid; padding: 15px 0 0; }
  .acc-t { font-size: 1.04rem; font-weight: 600; color: var(--faint); transition: color .35s ease; }
  .acc-item.is-open .acc-t { color: var(--ink); }
  .acc-item.is-done .acc-t { color: var(--dim); }
  .acc-d { color: var(--dim); font-size: 0.94rem; line-height: 1.6; max-width: 30rem;
    max-height: 0; opacity: 0; overflow: hidden;
    transition: max-height .45s cubic-bezier(.22,1,.36,1), opacity .3s ease, margin .45s ease; }
  .acc-item.is-open .acc-d { max-height: 110px; opacity: 1; margin-top: 8px; }
  .acc-bar { display: block; height: 1px; background: var(--line); margin-top: 16px; }
  .acc-fill { display: block; height: 1px; width: 0; background: var(--cherry-text); }

  .beyond-art { position: relative; height: 380px; border-radius: 24px; overflow: hidden;
    background: radial-gradient(85% 70% at 30% 12%, rgba(207,43,65,.20), transparent 66%), #191919;
    border: 1px solid var(--line-soft); }
  .bpane { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center;
    gap: 12px; padding: 40px; opacity: 0; transform: translateY(10px) scale(.99);
    transition: opacity .5s ease, transform .5s cubic-bezier(.22,1,.36,1); pointer-events: none; }
  .bpane.is-on { opacity: 1; transform: none; }
  .bline { background: #0f0f0f; border: 1px solid var(--line); border-radius: 12px; padding: 13px 17px;
    font-size: .93rem; color: var(--dim); display: flex; align-items: center; gap: 11px; }
  .bline.err { color: #e0705e; } .bline.fix { color: var(--building); } .bline.ok { color: #7fc86f; }
  .bline.on { color: var(--ink); border-color: rgba(226,33,63,.5); }
  .bline .dot { width: 7px; height: 7px; border-radius: 999px; background: var(--faint); flex: 0 0 auto; }
  .bline .dot.on { background: var(--cherry-text); }
  /* orbit */
  .orbit { position: relative; height: 100%; display: grid; place-items: center; }
  .orb-core { width: 74px; height: 74px; border-radius: 20px; display: grid; place-items: center;
    background: var(--grad); color: #fff; font-size: 1.7rem; box-shadow: 0 0 46px rgba(207,43,65,.45); }
  .orb { position: absolute; background: #0f0f0f; border: 1px solid var(--line); border-radius: 999px;
    padding: 8px 15px; font-size: .84rem; color: var(--dim); }
  .orb.o1 { top: 14%; left: 6%; } .orb.o2 { top: 26%; right: 4%; }
  .orb.o3 { bottom: 20%; left: 10%; } .orb.o4 { bottom: 12%; right: 12%; }
  /* meter */
  .meter { display: flex; align-items: baseline; gap: 12px; }
  .mnum { font-size: 3.6rem; font-weight: 800; letter-spacing: -.03em; }
  .mlab { color: var(--dim); font-size: .95rem; }
  /* own */
  .own { background: #0f0f0f; border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px; }
  .own-row { display: flex; align-items: center; gap: 12px; font-size: 1.02rem; }
  .own-row i { font-style: normal; color: var(--cherry-text); }
  .own-note { margin-top: 8px; color: var(--faint); font-size: .85rem; font-family: var(--mono); }

  @media (max-width: 900px) {
    #beyond { height: auto; }
    .beyond-sticky { position: static; height: auto; padding: 60px 0; }
    .beyond-grid { grid-template-columns: minmax(0,1fr); gap: 30px; }
    .beyond-art { height: 280px; }
    .acc-item .acc-d { max-height: 110px; opacity: 1; margin-top: 8px; }
    .acc-item .acc-t { color: var(--ink); }
    .spotlight { grid-template-columns: minmax(0,1fr); }
  }
  @media (prefers-reduced-motion: reduce) {
    #beyond { height: auto; }
    .beyond-sticky { position: static; height: auto; padding: 60px 0; }
    .bpane, .acc-d, .acc-t { transition: none; }
  }
  .stack-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
  .stack-grid span { background: #0f0f0f; border: 1px solid var(--line); border-radius: 11px;
    padding: 12px 14px; font-size: .88rem; color: var(--dim); text-align: center; }
  .spot-note a { color: var(--dim); text-underline-offset: 3px; }
  .spot-note a:hover { color: var(--ink); }
  .tier.max .tier-value { color: var(--dim); } .tier.max .tier-value b { color: #fff; }
  .pack { align-items: center; justify-content: space-between; }
  .pack-copy strong { display: block; font-size: 1.02rem; }
  .pack-copy .credits { display: block; margin: 3px 0 6px; }
  .pack-copy p { color: var(--dim); font-size: 0.9rem; max-width: 34rem; }
  .pack-buy { display: flex; align-items: center; gap: 16px; }
  .pack-price { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; }
  .app-hero { justify-self: center; display: grid; place-items: center; padding: 20px; }
  .app-hero img { width: 100%; max-width: 260px; height: auto; border-radius: 26%;
    box-shadow: 0 30px 80px rgba(0,0,0,.6), 0 0 90px rgba(207,43,65,.28); }

  /* ---------- chips: quiet pill, one thin coloured icon each ---------- */
  .chip {
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.09);
    color: var(--ink); font-size: 0.92rem; font-weight: 500;
    padding: 9px 16px 9px 12px; gap: 9px;
    transition: background .18s ease, border-color .18s ease, transform .18s ease;
  }
  .chip:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.16); transform: translateY(-1px); }
  .chip .ci { display: inline-grid; place-items: center; width: 18px; height: 18px; }
  .chip .ci svg { width: 16px; height: 16px; fill: none; stroke: var(--h);
    stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
  .chips-more { margin-top: 10px; }

  /* ---------- composer: mic sits right, send slides in beside it ---------- */
  .composer-row .go {
    width: 0; padding: 0; margin-left: 0; overflow: hidden; flex: 0 0 auto;
    opacity: 0; transform: scale(.5);
    transition: width .28s cubic-bezier(.22,1,.36,1), margin-left .28s cubic-bezier(.22,1,.36,1),
                opacity .2s ease, transform .28s cubic-bezier(.22,1,.36,1);
  }
  header.hero.typing .composer-row .go {
    width: 40px; margin-left: 10px; opacity: 1; transform: none;
  }
  @media (prefers-reduced-motion: reduce) { .composer-row .go { transition: none; } }

  /* ---------- pricing card rhythm ---------- */
  .tier-top { padding: 26px 24px 24px; gap: 0; }
  .tier-top h3 { font-size: 1.05rem; }
  .tier-sub { min-height: 2.9em; margin: 6px 0 0; }
  .tier .price { margin: 16px 0 0; min-height: 2.4rem; align-items: baseline; }
  .tier-top .tier-cta { margin-top: 22px; }
  .tier .feat { padding: 20px 24px 26px; gap: 13px; }
  /* icon column, so a wrapping label keeps its icon on the first line */
  .feat li { display: grid; grid-template-columns: 18px 1fr; gap: 11px; align-items: start; line-height: 1.5; }
  .feat .fi { height: 1.5em; width: 18px; display: grid; place-items: center; }
  .feat .fi svg { width: 15px; height: 15px; }
  /* subtitle occupies the same block on every card so the divider lines up */
  .tier-sub { height: 3.2em; min-height: 0; overflow: hidden; }
  .tier-top { display: flex; flex-direction: column; }
  .tier-top .tier-cta { margin-top: auto; }
  /* auth modal: providers + standard form */
  .btn-row.provider { background: #fff; color: #111; gap: 10px; }
  .btn-row.provider:hover { filter: brightness(.95); }
  .btn-row.provider svg { width: 18px; height: 18px; }
  #oauth-apple { background: #000; color: #fff; border: 1px solid var(--line); }
  #oauth-apple:hover { filter: none; border-color: #3a3a3a; }
  .modal .or { display: flex; align-items: center; gap: 12px; color: var(--faint); font-size: .85rem; margin: 2px 0; }
  .modal .or::before, .modal .or::after { content: ""; flex: 1; height: 1px; background: var(--line); }
  .m-input { text-align: left; }
  .m-swap, .m-alt { color: var(--faint); font-size: .88rem; margin-top: 2px; }
  .m-swap button, .m-alt button { background: none; border: 0; color: var(--cherry-text); font: inherit; cursor: pointer; padding: 0; }
  .m-swap button:hover, .m-alt button:hover { text-decoration: underline; text-underline-offset: 3px; }
  .m-err { color: #e0705e; font-size: .88rem; margin-top: 4px; }
  .chip { font-size: 0.88rem; padding: 8px 14px 8px 11px; }
