    /* Self-hosted fonts (latin subsets) — no render-blocking Google Fonts. */
    @font-face{font-family:'Chakra Petch';font-style:normal;font-weight:300;font-display:swap;src:url('assets/fonts/chakra-petch-300.woff2') format('woff2');}
    @font-face{font-family:'Chakra Petch';font-style:normal;font-weight:400;font-display:swap;src:url('assets/fonts/chakra-petch-400.woff2') format('woff2');}
    @font-face{font-family:'Chakra Petch';font-style:italic;font-weight:400;font-display:swap;src:url('assets/fonts/chakra-petch-400-italic.woff2') format('woff2');}
    @font-face{font-family:'Chakra Petch';font-style:normal;font-weight:500;font-display:swap;src:url('assets/fonts/chakra-petch-500.woff2') format('woff2');}
    @font-face{font-family:'Chakra Petch';font-style:normal;font-weight:600;font-display:swap;src:url('assets/fonts/chakra-petch-600.woff2') format('woff2');}
    @font-face{font-family:'Chakra Petch';font-style:normal;font-weight:700;font-display:swap;src:url('assets/fonts/chakra-petch-700.woff2') format('woff2');}
    /* JetBrains Mono ships as one variable font covering 400–700. */
    @font-face{font-family:'JetBrains Mono';font-style:normal;font-weight:400 700;font-display:swap;src:url('assets/fonts/jetbrains-mono-var.woff2') format('woff2');}
    /* Anton (OFL) — the hero display face only. One weight, latin subset. */
    @font-face{font-family:'Anton';font-style:normal;font-weight:400;font-display:swap;src:url('assets/fonts/anton-400.woff2') format('woff2');}

    :root {
      /* Bog (the signature theme) by default — pre-JS paint matches applyTheme. */
      --void:      #070b09;
      --base:      #0b1410;
      --elevated:  #0f1d18;
      --elevated2: #14271f;
      --border:    #1d3a2c;
      --border-soft: rgba(95,219,58,0.14);
      --accent:      #5fdb3a;
      --accent-bright:#88ee5e;
      --accent-deep:  #2e7a1e;
      --accent-rgb: 95 219 58;
      --accent-readable: #88ee5e;
      --accent-contrast: #06140a;
      --selection-bg: #5fdb3a;
      --selection-fg: #050807;
      --void-rgb: 7 11 9;
      --gold:    #C8A53E;
      /* --gold is readable as TEXT on dark surfaces only; on light themes it drops
         to ~2:1. --gold-readable darkens to a legible gold in light mode (see the
         [data-theme-mode="light"] override) — use it for gold text, keep --gold for
         backgrounds/gradient bars where dark text sits on it. */
      --gold-readable: var(--gold);
      --text:    #e8f5e9;
      --text-2:  #a3c4ae;
      --muted:   #607a68;
      --info:    #6bd1ff;
      --danger:  #ff8c4c;

      --ff: 'Chakra Petch', system-ui, sans-serif;
      --fm: 'JetBrains Mono', ui-monospace, monospace;

      --r-sm: 10px;
      --r-md: 14px;
      --r-lg: 20px;
      --r-xl: 28px;

      /* Restrained accent halo — one hero moment, not a site-wide neon wash. */
      --glow:  0 0 22px rgb(var(--accent-rgb) / 0.22);
      --soft:  0 18px 50px -18px rgb(0 0 0 / 0.8), 0 4px 18px rgb(0 0 0 / 0.5);
      --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
      --glide:  cubic-bezier(0.4, 0, 0.2, 1);
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--void);
      color: var(--text);
      font-family: var(--ff);
      overflow-x: hidden;
      line-height: 1.5;
      transition: background 0.6s var(--glide), color 0.6s var(--glide);
    }
    /* atmosphere: soft aurora that follows the active theme accent */
    body::before {
      content: '';
      position: fixed; inset: 0; z-index: 0; pointer-events: none;
      background:
        radial-gradient(60vw 60vw at 78% -10%, rgb(var(--accent-rgb) / 0.07), transparent 60%),
        radial-gradient(48vw 48vw at 8% 12%, rgb(var(--accent-rgb) / 0.045), transparent 60%),
        radial-gradient(70vw 50vw at 50% 120%, rgb(var(--accent-rgb) / 0.055), transparent 60%);
      transition: background 0.6s var(--glide);
    }
    /* Pond at night: index.js draws slow fireflies + expanding ripples here
       (id kept from the old matrix build so no page markup churn). */
    #matrix-bg {
      position: fixed; inset: 0; z-index: 0; opacity: 0.55; pointer-events: none;
    }
    :root[data-theme-mode="light"] #matrix-bg { opacity: 0.35; }
    /* Legible gold for text on light themes (clears AA 4.5:1 on every light
       surface; the bright --gold stays for backgrounds/gradient bars). */
    :root[data-theme-mode="light"] { --gold-readable: #7a5d14; }
    a { color: inherit; }
    img { display: block; }
    /* Keyboard users skip the canvas + nav; visually hidden until focused. */
    .skip-link {
      position: absolute; top: -60px; left: 1rem; z-index: 200;
      padding: .7rem 1.2rem; border-radius: 0 0 var(--r-sm) var(--r-sm);
      background: var(--accent); color: var(--accent-contrast);
      font-family: var(--fm); font-size: .8rem; font-weight: 700; text-decoration: none;
      transition: top .2s var(--glide);
    }
    .skip-link:focus { top: 64px; }
    #main:focus { outline: none; }
    ::selection { background: var(--selection-bg); color: var(--selection-fg); }

    .wrap { max-width: 1180px; margin: 0 auto; padding: 0 clamp(1.2rem, 4vw, 2.5rem); }

    /* ───────── NAV ───────── */
    /* body > nav only: footer columns are also <nav> and must stay in flow */
    body > nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: flex-start;
      /* Align nav contents to the 1180px content column on wide screens
         (gutter grows to match .wrap) while keeping the bar full-bleed. */
      padding: 0 max(clamp(1.2rem, 4vw, 2.5rem), calc((100% - 1440px) / 2 + clamp(1.2rem, 4vw, 2.5rem))); height: 64px;
      background: rgb(var(--void-rgb) / 0.72);
      backdrop-filter: blur(14px) saturate(140%);
      border-bottom: 1px solid var(--border-soft);
    }
    .logo { display: flex; align-items: center; gap: 0; font-weight: 700; letter-spacing: .08em; font-size: 1.02rem; text-transform: uppercase; text-decoration: none; color: var(--text); white-space: nowrap; }
    .logo .frog { width: 30px; height: 30px; border-radius: 9px; object-fit: cover; border: 1px solid var(--border); margin-right: 11px; }
    .logo .accent { color: var(--accent-readable); }
    /* Centered pill between the logo and the right cluster (Login + CTA). */
    .nav-links {
      display: flex; align-items: center; gap: 1.45rem; list-style: none; margin-inline: auto;
      padding: 7px 22px; border: 1px solid var(--border-soft); border-radius: 999px;
      background: rgb(var(--void-rgb) / 0.45);
    }
    .nav-links a { position: relative; color: var(--text-2); text-decoration: none; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; transition: color .2s; }
    .nav-links a:hover, .nav-links a.active { color: var(--accent-readable); }
    /* unmistakable "you are here" underline under the active top-nav item */
    .nav-links a.active::after {
      content: ''; position: absolute; left: 0; right: 0; bottom: -7px; height: 2px;
      background: var(--accent); border-radius: 2px;
    }
    .btn {
      display: inline-flex; align-items: center; gap: 9px; cursor: pointer;
      touch-action: manipulation;
      font-family: var(--ff); font-weight: 700; font-size: .82rem; letter-spacing: .07em; text-transform: uppercase;
      text-decoration: none; border: none; border-radius: 999px; padding: 11px 22px;
      transition: transform .18s var(--spring), box-shadow .25s var(--glide), background .25s, color .25s, border-color .2s;
    }
    .btn-primary { background: var(--accent); color: var(--accent-contrast); box-shadow: 0 6px 22px -6px rgb(var(--accent-rgb) / 0.6); }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 34px -8px rgb(var(--accent-rgb) / 0.7); }
    .btn-primary[disabled], .btn-primary.is-disabled { background: var(--elevated); color: var(--text-2); box-shadow: none; cursor: not-allowed; border: 1px solid var(--border); }
    .btn-primary.is-disabled:hover { transform: none; }
    .btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }
    .btn-ghost:hover { border-color: var(--accent); color: var(--accent-readable); transform: translateY(-1px); }
    .nav-cta { padding: 9px 18px; }
    /* Login/Account link in the bar's right cluster, beside the CTA. */
    .nav-login {
      color: var(--text-2); text-decoration: none; font-size: .8rem;
      letter-spacing: .1em; text-transform: uppercase; margin-right: 1.1rem;
      transition: color .2s; white-space: nowrap;
    }
    .nav-login:hover, .nav-login.active { color: var(--accent-readable); }
    .nav-drop .nav-login-m { display: none; }

    /* ───── "More" dropdown ───── */
    .nav-more { position: relative; }
    .nav-more-btn {
      display: inline-flex; align-items: center; gap: 5px;
      background: none; border: none; padding: 0; cursor: pointer;
      font-family: var(--ff); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
      color: var(--text-2); transition: color .2s;
    }
    .nav-more-btn::after { content: '▾'; font-size: .78em; transform: translateY(1px); }
    .nav-more:hover .nav-more-btn, .nav-more:focus-within .nav-more-btn,
    .nav-more-btn[aria-expanded="true"] { color: var(--accent-readable); }
    .nav-more.active .nav-more-btn { color: var(--accent-readable); }
    /* invisible hover bridge across the gap between the bar and the panel */
    .nav-more::before { content: ''; position: absolute; left: -12px; right: -12px; top: 100%; height: 16px; }
    .nav-drop {
      /* Centered under the "More" button; solid surface so page content never
         bleeds through (backdrop-filter isn't reliable everywhere). */
      position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
      min-width: 178px; z-index: 101;
      display: none; flex-direction: column; list-style: none; padding: .45rem 0;
      background: var(--base);
      border: 1px solid var(--border); border-radius: var(--r-sm);
      box-shadow: var(--soft);
    }
    .nav-more:hover .nav-drop, .nav-more:focus-within .nav-drop,
    .nav-more-btn[aria-expanded="true"] + .nav-drop { display: flex; }
    .nav-drop a { display: block; padding: .55rem 1.15rem; font-size: .76rem; }
    .nav-drop a:hover { background: rgb(var(--accent-rgb) / 0.08); }
    .nav-drop a.active::after { display: none; }

    @media (max-width: 1160px) {
      .nav-links { gap: 1rem; }
      .nav-links a { font-size: .72rem; letter-spacing: .07em; }
      .nav-cta { padding: 8px 14px; }
    }

    .soon-pill {
      display: inline-flex; align-items: center; gap: 7px;
      font-family: var(--fm); font-size: .62rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
      color: var(--accent-readable); background: rgb(var(--accent-rgb) / 0.10);
      border: 1px solid var(--border-soft); border-radius: 999px; padding: 4px 11px;
    }
    .soon-pill::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--accent-readable); animation: pulse 2s ease-in-out infinite; }
    @keyframes pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.5);opacity:.55} }

    /* ───────── HERO ───────── */
    .hero { position: relative; z-index: 1; padding: 108px 0 62px; }
    .hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 9px; margin-bottom: 1.5rem;
      font-family: var(--fm); font-size: .68rem; letter-spacing: .26em; text-transform: uppercase;
      color: var(--accent-readable); border: 1px solid var(--border-soft); border-radius: 999px; padding: 6px 14px;
    }
    .hero h1 {
      font-size: clamp(2.5rem, 4.8vw, 4.4rem); font-weight: 700; line-height: 1.02; letter-spacing: -.025em;
      margin-bottom: 1.4rem; text-wrap: balance;
    }
    /* The single sanctioned glow moment on the site. */
    .hero h1 .lit { color: var(--accent-readable); text-shadow: var(--glow); }
    .hero p.lede { font-size: 1.08rem; color: var(--text-2); max-width: 30rem; margin-bottom: 2rem; line-height: 1.65; }
    .hero-actions { display: flex; gap: 1.4rem; flex-wrap: wrap; align-items: center; margin-bottom: 1.6rem; }
    /* .link-more's default top margin is for prose flow — inside a CTA row it breaks vertical centering */
    .hero-actions .link-more { margin-top: 0; }
    .hero-trust { display: grid; grid-template-columns: repeat(2, minmax(0, max-content)); gap: .55rem 1.8rem; }
    .trust { display: flex; align-items: center; gap: 7px; font-family: var(--fm); font-size: .7rem; color: var(--muted); letter-spacing: .03em; }
    .trust::before { content: '✓'; color: var(--accent-readable); font-weight: 700; }

    /* ───────── POND HERO (homepage) ─────────
       Cinematic full-bleed pond scene: photo backdrop + theme-tinted overlay,
       Anton display headline, app window with the boss toad cutout in front,
       and a glass feature strip pinned at the bottom. The scene stays dark in
       every theme (the chrome recolours; the pond is the pond). */
    .hero-pond {
      position: relative; z-index: 1; overflow: hidden;
      display: flex; flex-direction: column; justify-content: center;
      min-height: clamp(680px, 96vh, 940px); padding: 120px 0 40px;
    }
    .hero-pond::before {
      content: ''; position: absolute; inset: 0; z-index: -2;
      background: url('assets/pond-hero.webp') center 60% / cover no-repeat;
      /* index.js rotates the pond's teal toward the active theme accent and
         desaturates for neutral palettes — one photo fits all 50 themes */
      filter: hue-rotate(var(--pond-hue, 0deg)) saturate(var(--pond-sat, 1));
      transition: filter .6s var(--glide);
    }
    /* Living pond: WebGL cinemagraph canvas above the still (instant paint /
       fallback), below the tint overlays. Same theme filter; fades in once
       the shader is running. */
    .hero-water {
      position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%;
      filter: hue-rotate(var(--pond-hue, 0deg)) saturate(var(--pond-sat, 1));
      opacity: 0; transition: opacity 1.2s var(--glide), filter .6s var(--glide);
      pointer-events: none;
    }
    .hero-water.is-live { opacity: 1; }
    .hero-pond::after {
      content: ''; position: absolute; inset: 0; z-index: -1;
      /* the night stays night in every theme — only the last stop melts into
         the page background so light themes get a clean handoff */
      background:
        radial-gradient(90vw 60vh at 72% 88%, rgb(var(--accent-rgb) / 0.09), transparent 60%),
        linear-gradient(100deg, rgb(0 0 0 / 0.5) 0%, transparent 46%),
        linear-gradient(180deg, rgb(4 8 6 / 0.88) 0%, rgb(4 8 6 / 0.46) 26%, rgb(4 8 6 / 0.26) 55%, rgb(4 8 6 / 0.86) 86%, var(--void) 100%);
    }
    .hero-pond .hero-grid { align-items: center; grid-template-columns: .92fr 1.08fr; }
    /* the scene is permanently dark — pin readable inks regardless of theme */
    .hero-pond .hero-eyebrow { color: var(--accent-bright); border-color: rgb(255 255 255 / 0.16); background: rgb(0 0 0 / 0.25); backdrop-filter: blur(4px); }
    .hero-pond h1 {
      font-family: 'Anton', var(--ff); font-weight: 400;
      font-size: clamp(3rem, 5.7vw, 5.4rem); line-height: 1.0; letter-spacing: .012em;
      text-transform: uppercase; color: #f4f8f3; white-space: nowrap;
      text-shadow: 0 4px 30px rgb(0 0 0 / 0.55);
      margin-bottom: 1.3rem;
    }
    .hero-pond h1 .lit { color: var(--accent-bright); text-shadow: 0 4px 30px rgb(0 0 0 / 0.55), 0 0 34px rgb(var(--accent-rgb) / 0.28); }
    .hero-pond p.lede { color: #cfe0cf; font-size: 1.14rem; text-shadow: 0 2px 12px rgb(0 0 0 / 0.6); }
    .hero-pond .btn-ghost { color: #eef4ee; border-color: rgb(255 255 255 / 0.28); background: rgb(0 0 0 / 0.25); backdrop-filter: blur(4px); }
    .hero-pond .btn-ghost:hover { border-color: var(--accent-bright); color: var(--accent-bright); }
    /* stage: app window behind, boss toad in front */
    .hero-stage { position: relative; min-height: 480px; }
    .hero-stage .hero-frame { position: relative; width: 106%; max-width: none; margin-bottom: 120px; animation: none; }
    .hero-boss {
      position: absolute; right: -2%; bottom: -110px; z-index: 3;
      width: min(80%, 640px); height: auto; pointer-events: none;
      /* keep the grounding shadow subtle — a heavy blur paints a dark band
         along the chair's straight edge that reads as a box seam in the water */
      filter: drop-shadow(0 12px 18px rgb(0 0 0 / 0.30));
      /* the cutout's straight bottom edge dissolves into the water */
      -webkit-mask-image: linear-gradient(180deg, #000 76%, transparent 96%);
      mask-image: linear-gradient(180deg, #000 76%, transparent 96%);
    }
    /* glass feature strip */
    .hero-strip {
      position: relative; z-index: 4; margin-top: clamp(2rem, 4vh, 3.4rem);
      display: grid; grid-template-columns: repeat(4, 1fr);
      border: 1px solid rgb(255 255 255 / 0.12); border-radius: var(--r-xl);
      background: rgb(7 11 9 / 0.66); backdrop-filter: blur(12px) saturate(130%);
    }
    .strip-item { display: flex; align-items: center; gap: 1rem; padding: 1.3rem 1.5rem; }
    .strip-item + .strip-item { border-left: 1px solid rgb(255 255 255 / 0.10); }
    .strip-item svg { width: 30px; height: 30px; flex: none; color: var(--accent-bright); }
    .strip-item b { display: block; font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #f2f7f2; margin-bottom: 3px; }
    .strip-item span { display: block; font-family: var(--fm); font-size: .72rem; line-height: 1.45; color: #b9cbb9; }
    @media (max-width: 1160px) {
      .hero-boss { width: 78%; }
    }
    @media (max-width: 920px) {
      .hero-pond { min-height: 0; padding-top: 100px; }
      .hero-pond .hero-grid { grid-template-columns: 1fr; }
      .hero-stage { min-height: 0; margin-top: .6rem; }
      .hero-stage .hero-frame { margin-bottom: 96px; }
      .hero-boss { right: 0; bottom: -70px; width: min(68%, 420px); }
      .hero-strip { grid-template-columns: 1fr 1fr; }
      .strip-item + .strip-item { border-left: none; }
      .strip-item:nth-child(even) { border-left: 1px solid rgb(255 255 255 / 0.10); }
      .strip-item:nth-child(n+3) { border-top: 1px solid rgb(255 255 255 / 0.10); }
    }
    @media (max-width: 560px) {
      .hero-pond h1 { font-size: clamp(2.3rem, 12vw, 3rem); }
      .hero-stage .hero-frame { width: 100%; }
      .hero-strip { grid-template-columns: 1fr; }
      .strip-item:nth-child(even) { border-left: none; }
      .strip-item + .strip-item { border-top: 1px solid rgb(255 255 255 / 0.10); }
    }

    /* framed app window */
    .frame {
      position: relative; border-radius: var(--r-lg); overflow: hidden;
      border: 1px solid var(--border); background: var(--base);
      box-shadow: var(--soft);
    }
    .frame::after { content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; box-shadow: inset 0 0 0 1px rgb(var(--accent-rgb) / 0.08); }
    .frame-bar { display: flex; align-items: center; gap: 7px; padding: 11px 15px; background: var(--elevated); border-bottom: 1px solid var(--border); }
    .dot { width: 11px; height: 11px; border-radius: 50%; }
    .dot.r{background:#ff5f57} .dot.y{background:#febc2e} .dot.g{background:#28c840}
    .frame-name { margin-left: 10px; font-family: var(--fm); font-size: .68rem; color: var(--muted); letter-spacing: .06em; }
    .frame img { width: 100%; height: auto; display: block; }
    .hero-frame { animation: floaty 8s ease-in-out infinite; }
    @keyframes floaty { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
    .hero-badge {
      position: absolute; top: 16px; right: -10px; z-index: 3;
      background: var(--gold); color: #1a1206; font-family: var(--fm); font-weight: 700;
      font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; padding: 5px 12px; border-radius: 8px;
      transform: rotate(2.5deg); box-shadow: var(--soft);
    }

    /* ───────── SECTION SHELL ───────── */
    section { position: relative; z-index: 1; }
    .pad { padding: clamp(4rem, 9vw, 7rem) 0; }
    /* Numbered eyebrow: quiet mono chapter mark. */
    .eyebrow { display: flex; align-items: center; font-family: var(--fm); font-size: .66rem; letter-spacing: .3em; text-transform: uppercase; color: var(--accent-readable); margin-bottom: 1.1rem; }
    .h2 { font-size: clamp(1.8rem, 3.6vw, 2.9rem); font-weight: 700; line-height: 1.06; letter-spacing: -.02em; text-wrap: balance; }
    .sub { font-size: 1rem; color: var(--text-2); max-width: 34rem; margin-top: 1rem; line-height: 1.65; text-wrap: pretty; }
    .link-more {
      display: inline-flex; align-items: center; gap: 8px; margin-top: 1.6rem;
      font-family: var(--fm); font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
      color: var(--accent-readable); text-decoration: none;
      border-bottom: 1px solid rgb(var(--accent-rgb) / 0.35); padding-bottom: 3px;
      transition: border-color .2s var(--glide), gap .2s var(--glide);
    }
    .link-more::after { content: '→'; transition: transform .2s var(--spring); }
    .link-more:hover { border-color: var(--accent); gap: 12px; }
    .link-more:hover::after { transform: translateX(2px); }

    /* ───────── FEATURES ───────── */
    .feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 3rem; }
    .card {
      background: var(--elevated);
      border: 1px solid var(--border); border-radius: var(--r-md); padding: 1.6rem;
      position: relative; overflow: hidden; transition: border-color .25s var(--glide), background .25s var(--glide);
    }
    .card:hover { border-color: rgb(var(--accent-rgb) / 0.55); background: var(--elevated2); }
    /* Inline SVG icon in a quiet tinted tile — themes via currentColor. */
    .card .ico {
      display: grid; place-items: center; width: 40px; height: 40px; margin-bottom: 1rem;
      border-radius: 11px; color: var(--accent-readable);
      background: rgb(var(--accent-rgb) / 0.10); border: 1px solid rgb(var(--accent-rgb) / 0.18);
    }
    .card .ico svg { width: 20px; height: 20px; display: block; }
    .card h3 { font-size: 1.05rem; font-weight: 600; letter-spacing: -.01em; margin-bottom: .5rem; }
    .card p { font-size: .87rem; color: var(--text-2); line-height: 1.6; }
    .card .n { position: absolute; top: 1.15rem; right: 1.25rem; font-family: var(--fm); font-weight: 400; font-size: .7rem; letter-spacing: .1em; color: var(--muted); z-index: 0; pointer-events: none; }
    .card > :not(.n) { position: relative; z-index: 1; }
    a.card { display: block; text-decoration: none; color: inherit; }
    a.card .go {
      display: inline-block; margin-top: .8rem; font-family: var(--fm); font-size: .66rem;
      font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-readable);
      opacity: 0; transform: translateX(-4px); transition: opacity .25s var(--glide), transform .25s var(--spring);
    }
    a.card:hover .go { opacity: 1; transform: translateX(0); }

    /* ───────── SURFACE BUTTONS (homepage) ───────── */
    .surface-btns { display: grid; grid-template-columns: repeat(4, 1fr); gap: .7rem; margin-top: 2.4rem; }
    .sbtn {
      display: flex; align-items: center; gap: .8rem; padding: .7rem .95rem;
      border: 1px solid var(--border); border-radius: 12px; background: var(--elevated);
      color: var(--text); text-decoration: none;
      transition: border-color .2s var(--glide), background .2s var(--glide), transform .15s var(--spring);
    }
    .sbtn:hover { border-color: rgb(var(--accent-rgb) / 0.55); background: var(--elevated2); transform: translateY(-1px); }
    .sbtn .ico {
      display: grid; place-items: center; width: 34px; height: 34px; flex: none;
      border-radius: 9px; color: var(--accent-readable);
      background: rgb(var(--accent-rgb) / 0.10); border: 1px solid rgb(var(--accent-rgb) / 0.18);
    }
    .sbtn .ico svg { width: 17px; height: 17px; display: block; }
    .sbtn b { font-size: .92rem; font-weight: 600; letter-spacing: -.005em; }
    /* Themes chip: each swatch switches the theme in place. */
    .sbtn--themes { cursor: default; }
    .sbtn--themes a { color: inherit; text-decoration: none; }
    .sbtn--themes a:hover b { color: var(--accent-readable); }
    .mini-swatches { display: flex; gap: 5px; align-items: center; flex: none; }
    .mini-swatches button {
      width: 20px; height: 20px; border-radius: 6px; padding: 0; cursor: pointer;
      border: 1px solid rgb(255 255 255 / 0.18);
      transition: transform .15s var(--spring), box-shadow .2s var(--glide);
    }
    .mini-swatches button:hover { transform: scale(1.22); }
    .mini-swatches button[aria-pressed="true"] { box-shadow: 0 0 0 2px var(--void), 0 0 0 3.5px var(--text-2); }

    /* ───────── WALKTHROUGH ───────── */
    .tabs { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2.4rem; }
    .tab {
      font-family: var(--fm); font-size: .76rem; letter-spacing: .05em; cursor: pointer;
      padding: 9px 16px; border-radius: 999px; border: 1px solid var(--border); background: var(--elevated);
      color: var(--text-2); transition: all .2s var(--glide);
    }
    .tab:hover { color: var(--accent-readable); border-color: rgb(var(--accent-rgb) / 0.4); }
    .tab.active { background: var(--accent); color: var(--accent-contrast); border-color: var(--accent); font-weight: 700; }
    .panel { display: none; margin-top: 2rem; }
    .panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; animation: rise .5s var(--glide); }
    @keyframes rise { from{opacity:0;transform:translateY(14px)} to{opacity:1;transform:translateY(0)} }
    .panel .copy .kicker { font-family: var(--fm); font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--accent-readable); margin-bottom: .7rem; }
    .panel .copy h3 { font-size: clamp(1.4rem,2.6vw,2.1rem); font-weight: 700; line-height: 1.08; letter-spacing: -.015em; margin-bottom: .9rem; }
    .panel .copy p { font-size: .92rem; color: var(--text-2); line-height: 1.7; margin-bottom: 1.1rem; }
    .chips { display: flex; flex-wrap: wrap; gap: .5rem; }
    .chip { font-family: var(--fm); font-size: .68rem; padding: 5px 11px; border-radius: 999px; background: rgb(var(--accent-rgb) / 0.08); border: 1px solid var(--border-soft); color: var(--accent-readable); }
    .agent-badges { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.1rem; }
    .ab { display: inline-flex; align-items: center; gap: 7px; font-family: var(--fm); font-size: .72rem; padding: 6px 12px; border-radius: 9px; border: 1px solid var(--border); background: var(--elevated); }
    .ab b { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }

    /* ───────── JOURNEY STEPS (landing narrative) ───────── */
    /* Two-column step: copy + framed shot, alternating sides. Reuses .frame,
       eyebrow/.h2/.sub, .guide-mini-grid, .feature-strip, .chips. */
    .jstep + .jstep, .jband + .jstep, .jstep + .jband { border-top: 1px solid var(--border-soft); }
    .jstep-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.15fr); gap: clamp(2rem, 5vw, 3.4rem); align-items: center; }
    .jstep-copy { display: flex; flex-direction: column; gap: 1.3rem; }
    .jstep-copy .sub { margin-top: 0; max-width: 40rem; }
    .jstep-copy .guide-mini-grid, .jstep-copy .feature-strip { margin-top: 0; }
    .jstep-copy .link-more { margin-top: 0; align-self: flex-start; }
    .jstep-copy code { font-family: var(--fm); background: var(--void); color: var(--accent-readable); padding: 1px 6px; border-radius: 6px; font-size: .82em; overflow-wrap: anywhere; }
    .feature-strip code { background: var(--void); }
    /* Alternate sides: visual leads on even steps (desktop only). */
    .jstep--alt .jstep-visual { order: -1; }
    .jband { background: linear-gradient(180deg, transparent, rgb(var(--accent-rgb) / 0.04)); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
    .jband .guide-mini-grid { margin-top: 2rem; }
    .jband .theme-hint { margin-top: 1.3rem; }

    /* Ticket mock (no shot exists — built from theme tokens) */
    /* Sized to the same visual weight as the app-screenshot frames beside the
       other chapters — not a full-column billboard. */
    .ticket-frame { background: var(--base); max-width: 460px; }
    .ticket-mock { display: flex; flex-direction: column; gap: .55rem; padding: clamp(.9rem, 2.4vw, 1.3rem); }
    .ticket { border: 1px solid var(--border); border-radius: var(--r-sm); background: rgb(var(--void-rgb) / 0.32); padding: .7rem .85rem; }
    .ticket-top { display: flex; align-items: center; gap: .6rem; margin-bottom: .5rem; }
    .ticket-id { font-family: var(--fm); font-size: .72rem; color: var(--muted); letter-spacing: .06em; }
    .ticket-badge { font-family: var(--fm); font-size: .58rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; border-radius: 999px; padding: 3px 9px; border: 1px solid var(--border-soft); }
    .ticket-badge.is-open { color: var(--info); background: rgb(var(--accent-rgb) / 0.06); }
    .ticket-badge.is-work { color: var(--gold-readable); background: rgb(200 165 62 / 0.12); border-color: rgb(200 165 62 / 0.3); }
    .ticket-badge.is-done { color: var(--accent-contrast); background: var(--accent); border-color: var(--accent); }
    .ticket-title { font-size: .9rem; font-weight: 600; color: var(--text); line-height: 1.3; }
    .ticket-meta { font-family: var(--fm); font-size: .68rem; color: var(--muted); margin-top: .35rem; letter-spacing: .04em; }
    .ticket-foot { font-family: var(--fm); font-size: .68rem; color: var(--accent-readable); letter-spacing: .08em; text-transform: uppercase; text-align: center; padding-top: .5rem; }

    /* Voice supporting highlight */
    .voice-strip { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, .8fr); gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
    .voice-copy .sub { margin-top: 1rem; }
    .voice-toad { max-width: 260px; justify-self: end; }
    .voice-toad img { width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--r-lg); border: 1px solid var(--border); box-shadow: var(--soft); }

    /* ───────── THEME SHOWCASE ───────── */
    .theme-head { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
    .theme-count { font-family: var(--fm); font-size: clamp(2.4rem,6vw,4rem); font-weight: 700; color: var(--accent-readable); line-height: 1; }
    /* #themes shares the default .wrap width — a wider container here breaks the shared left edge across sections */
    /* Even swatch rows, no orphan wrap (auto-fill left 10+2 on the home strip).
       12-item strips (home/features) → 6 cols; the 50-theme galleries override
       --tg-cols to 10 (themes page) / 5 (docs article) so every row fills. */
    .theme-grid { display: grid; grid-template-columns: repeat(var(--tg-cols, 6), minmax(0, 1fr)); gap: .55rem; margin-top: 2rem; }
    #gallery .theme-grid { --tg-cols: 10; }
    .docs-article .theme-grid { --tg-cols: 5; }
    .swatch {
      cursor: pointer; border-radius: var(--r-sm); border: 1px solid var(--border); overflow: hidden;
      background: var(--elevated); transition: transform .2s var(--spring), border-color .2s, box-shadow .2s;
      color: var(--text); font: inherit; padding: 0; text-align: left; width: 100%;
    }
    .swatch:hover, .swatch.sel { transform: translateY(-3px); border-color: var(--sw-accent); box-shadow: 0 12px 30px -14px var(--sw-accent); }
    .swatch .strip { height: 36px; display: flex; }
    .swatch .strip i { flex: 1; display: block; }
    .swatch .meta { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 2px; min-height: 48px; padding: 7px 9px; }
    .swatch .nm { font-size: .74rem; font-weight: 600; line-height: 1.15; }
    .swatch .gp { font-family: var(--fm); font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); line-height: 1; }
    .theme-hint { font-family: var(--fm); font-size: .72rem; color: var(--muted); margin-top: 1.4rem; }
    .theme-hint b { color: var(--accent-readable); }

    /* ───────── TERMINAL (how it works) ───────── */
    .term { border-radius: var(--r-lg); border: 1px solid var(--border); overflow: hidden; background: var(--void); box-shadow: var(--soft); margin-top: 2.6rem; }
    .term-body { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px; background: var(--border); font-family: var(--fm); font-size: .78rem; }
    .term-col { background: var(--void); padding: 1.2rem 1.1rem; min-height: 190px; }
    .term-h { color: var(--gold-readable); font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 1rem; }
    .tl { display: flex; gap: 8px; margin-bottom: .5rem; opacity: 0; transform: translateY(4px); }
    .tl.show { animation: tlin .4s var(--glide) forwards; }
    @keyframes tlin { to { opacity: 1; transform: translateY(0); } }
    .tp { color: var(--accent-readable); flex-shrink: 0; }
    .tc { color: var(--text-2); } .ts { color: var(--accent-readable); } .ta { color: var(--info); } .to { color: var(--muted); }
    .cursor { display: inline-block; width: 7px; height: 1em; background: var(--accent-bright); vertical-align: -2px; animation: blink 1s steps(1) infinite; }
    @keyframes blink { 50% { opacity: 0; } }

    /* ───────── MOODS ───────── */
    .moods { display: grid; grid-template-columns: repeat(6,1fr); gap: .7rem; margin-top: 2.6rem; }
    .mood { position: relative; aspect-ratio: 1; border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--border); }
    .mood img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.72) saturate(.9); transition: transform .5s var(--glide), filter .3s; }
    .mood:hover img { transform: scale(1.07); filter: brightness(.95) saturate(1.1); }
    .mood .lbl { position: absolute; left: 0; right: 0; bottom: 0; padding: .7rem; font-family: var(--fm); font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-bright); background: linear-gradient(to top, rgb(0 0 0 / .85), transparent); }

    /* ───────── PRICING ───────── */
    .pricing { background: linear-gradient(180deg, transparent, rgb(var(--accent-rgb) / 0.03)); }
    .price-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: center; margin-top: 1rem; }
    .price-left h2 { font-size: clamp(1.9rem,4vw,3rem); font-weight: 700; line-height: 1.05; letter-spacing: -.02em; margin-bottom: 1.1rem; }
    .price-left p { color: var(--text-2); line-height: 1.7; margin-bottom: 1.3rem; max-width: 26rem; }
    .price-toad { margin: 1.7rem 0 0; max-width: 360px; }
    /* height:auto is load-bearing — the img carries width/height="512" attributes
       for layout stability; without this the 100% width + 512px height stretches it. */
    .price-toad img { width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; display: block; border-radius: var(--r-lg); border: 1px solid var(--border); box-shadow: var(--soft); }

    .price-card { border: 1px solid var(--border); border-radius: var(--r-lg); padding: 2.2rem; background: var(--elevated); position: relative; overflow: hidden; box-shadow: var(--soft); }
    .price-card::before { content:''; position:absolute; top:0; left:0; right:0; height:2px; background: var(--accent); }
    .price-amt { display: flex; align-items: flex-start; gap: 4px; }
    .price-amt .cur { font-size: 1.5rem; font-weight: 700; color: var(--accent-readable); margin-top: .6rem; }
    .price-amt .num { font-size: 4.6rem; font-weight: 700; line-height: 1; color: var(--accent-readable); }
    /* Pre-launch card headline — carries the visual weight the price figure would,
       so the card doesn't read as decapitated. */
    .price-headline { font-size: clamp(2rem, 4vw, 2.7rem); font-weight: 700; line-height: 1.04; letter-spacing: -.02em; color: var(--text); margin-bottom: .5rem; }
    .price-note { font-family: var(--fm); font-size: .72rem; color: var(--gold-readable); margin: 0 0 1.4rem; }
    .feat-list { list-style: none; margin-bottom: 1.6rem; }
    /* Block + absolute arrow (not flex): with display:flex the gap splits a li's
       inline <strong>/text chunks into separate flex items, injecting phantom
       spaces mid-sentence (e.g. changelog "50 themes , local-first"). */
    .feat-list li { display: block; position: relative; padding: .42rem 0 .42rem 24px; font-size: .84rem; color: var(--text); border-bottom: 1px solid rgb(var(--accent-rgb) / 0.06); }
    .feat-list li::before { content: '→'; position: absolute; left: 0; color: var(--accent-readable); font-weight: 700; }
    .buy-block { display: flex; flex-direction: column; gap: .8rem; }
    .buy-block > .btn-primary { justify-content: center; padding: 15px 22px; }
    .guarantee { font-family: var(--fm); font-size: .68rem; color: var(--muted); text-align: center; }

    /* waitlist */
    .waitlist { display: flex; gap: .5rem; margin-top: .4rem; }
    .waitlist input { flex: 1; background: var(--void); border: 1px solid var(--border); border-radius: 999px; color: var(--text); font-family: var(--fm); font-size: .82rem; padding: 12px 16px; outline: none; transition: border-color .2s; }
    .waitlist input:focus { border-color: var(--accent); }
    .waitlist .btn[disabled] { opacity: .65; cursor: wait; transform: none; }
    .hp-field { position: absolute; left: -10000px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
    .waitlist-msg { font-family: var(--fm); font-size: .72rem; color: var(--accent-readable); min-height: 1.1em; margin-top: .3rem; }

    /* guide page */
    .guide-page .hero { padding-bottom: 10px; }
    .guide-hero-grid {
      display: grid; grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr);
      align-items: center; gap: 2.5rem;
    }
    .guide-hero-copy { max-width: 760px; }
    .guide-hero-copy h1 {
      font-size: clamp(2.4rem, 5vw, 4rem);
      line-height: 1.02; letter-spacing: -.025em;
      margin: .8rem 0 1rem;
    }
    .guide-toc {
      display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.6rem;
    }
    .guide-toc a {
      font-family: var(--fm); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase;
      color: var(--text-2); text-decoration: none; padding: 8px 12px;
      border: 1px solid var(--border); border-radius: 999px; background: var(--elevated);
    }
    .guide-toc a:hover { color: var(--accent-readable); border-color: var(--accent); }
    .guide-hero-frame img { aspect-ratio: 16 / 9; object-fit: cover; }
    .guide-hub-section .wrap { max-width: 1320px; }
    .guide-card-grid {
      display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: .85rem; margin-top: 2.4rem;
    }
    .guide-card {
      min-height: 230px; display: flex; flex-direction: column; justify-content: space-between; gap: 1rem;
      padding: 1.35rem; border: 1px solid var(--border); border-radius: var(--r-md);
      background: var(--elevated);
      color: var(--text); text-decoration: none; position: relative; overflow: hidden;
      transition: border-color .24s var(--glide), background .24s var(--glide);
    }
    .guide-card:hover {
      border-color: rgb(var(--accent-rgb) / 0.55);
      background: var(--elevated2);
    }
    .guide-card--wide { grid-column: span 2; }
    .guide-card span {
      font-family: var(--fm); color: var(--muted);
      font-size: .72rem; font-weight: 400; letter-spacing: .12em; line-height: 1;
    }
    .guide-card h3 {
      font-size: 1.08rem; font-weight: 600; letter-spacing: -.01em;
    }
    .guide-card p {
      color: var(--text-2); font-size: .84rem; line-height: 1.65;
    }
    .guide-card b {
      font-family: var(--fm); font-size: .68rem; color: var(--accent-readable);
      letter-spacing: .08em; text-transform: uppercase;
    }
    .guide-detail-hero { padding-bottom: 8px; }
    /* Hero shares the site's 1180px content column so the title lines up with
       the nav, the steps below it, and the footer (was 980px centered, which
       shoved the hero ~90px right of everything else). */
    .guide-detail-hero .wrap { max-width: 1180px; }
    .guide-detail-hero h1 {
      font-size: clamp(1.9rem, 3.6vw, 3.1rem);
      line-height: 1.05; letter-spacing: -.02em; margin: .8rem 0 1rem;
    }
    .guide-back {
      display: inline-flex; align-items: center; gap: .45rem; margin-bottom: 1rem;
      font-family: var(--fm); font-size: .68rem; color: var(--muted);
      letter-spacing: .1em; text-transform: uppercase; text-decoration: none;
    }
    .guide-back:hover { color: var(--accent-readable); }
    .guide-back::before { content: '<'; color: var(--accent-readable); }
    /* Guide/feature sections read top-to-bottom: a constrained intro, then the
       screenshots lead at full width, then the detail tiles span the column
       below them. No more cramped text-left / pic-right split. */
    .guide-section { border-top: 1px solid var(--border-soft); }
    /* Consolidate the hero with the first content section so the page title and
       the first section heading read as one block — no big empty top band. */
    .guide-page main > section:first-child,
    .text-page main > section:first-child {
      padding-top: clamp(1.3rem, 2.8vw, 2.2rem); border-top: none;
    }
    /* when the lede is the last hero element (no buttons after), its 2rem
       bottom margin is wasted space — drop it so the hero hugs the content. */
    .hero .lede:last-child { margin-bottom: 0; }
    .guide-section .wrap {
      max-width: 1180px;
      display: flex; flex-direction: column; gap: 2.2rem;
    }
    .guide-head { max-width: 72ch; }
    .guide-section .eyebrow { margin-bottom: .55rem; }
    .guide-section h2 {
      font-size: clamp(1.5rem, 2.8vw, 2.2rem);
      line-height: 1.08; letter-spacing: -.015em; margin-bottom: .9rem;
    }
    .guide-section p { color: var(--text-2); font-size: .95rem; line-height: 1.75; }
    .guide-head p { max-width: 68ch; }
    .guide-shots { display: grid; gap: 1.2rem; }
    .guide-shots.two { grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); }
    .guide-shot-note {
      font-family: var(--fm); color: var(--muted); font-size: .68rem;
      letter-spacing: .06em; text-transform: uppercase; margin-top: .55rem;
    }
    .guide-page .frame img { aspect-ratio: 16 / 9; object-fit: cover; }
    .guide-detail { display: grid; gap: 1.3rem; }
    .guide-steps { display: grid; gap: .8rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .guide-step {
      display: grid; grid-template-columns: 32px 1fr; gap: .8rem; align-items: start;
      border: 1px solid var(--border); border-radius: var(--r-sm);
      background: rgb(var(--void-rgb) / 0.32); padding: .95rem;
    }
    /* Only the direct-child step number is the circular badge — NOT <b> used for
       emphasis inside the step description (which must stay inline bold text). */
    .guide-step > b {
      display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%;
      background: var(--accent); color: var(--accent-contrast); font-family: var(--fm); font-size: .72rem;
    }
    .guide-step p b, .guide-step span b { color: var(--text); font-weight: 600; }
    .guide-step span { color: var(--text); font-weight: 600; }
    .guide-step p { font-size: .82rem; margin-top: .18rem; line-height: 1.55; max-width: none; }
    /* Inline code in guide content (commands, URLs, model ids) — pill styling
       that wraps long values instead of overflowing. */
    .guide-section code, .guide-detail-hero code {
      font-family: var(--fm); background: var(--void); color: var(--accent-readable);
      padding: 1px 6px; border-radius: 6px; font-size: .82em; overflow-wrap: anywhere;
    }
    .guide-callout {
      border-left: 3px solid var(--accent); padding: .3rem 0 .3rem 1.1rem;
      margin-top: 0; color: var(--text-2); font-size: .92rem; max-width: 72ch;
    }
    /* Definition rows, not cards — boxed grids read as template filler.
       (Docs articles carry their own single-column variant in docs.css.) */
    .guide-mini-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      column-gap: 3.5rem; margin-top: 1.6rem;
      border-top: 1px solid var(--border-soft);
    }
    .guide-mini-grid div {
      display: grid; grid-template-columns: minmax(120px, 170px) 1fr;
      gap: 1rem; align-items: baseline;
      padding: .75rem .2rem;
      border-bottom: 1px solid var(--border-soft);
    }
    .guide-mini-grid b {
      color: var(--text); font-size: .88rem; font-weight: 600; letter-spacing: -.005em;
    }
    .guide-mini-grid span {
      color: var(--text-2); font-size: .84rem; line-height: 1.55;
    }
    .section-page .guide-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .section-page .guide-card { min-height: 190px; }
    .section-page .guide-section .wrap { max-width: 1160px; }
    .section-page .hero .lede { max-width: 42rem; }
    .section-hero-grid {
      display: grid; grid-template-columns: minmax(320px, .84fr) minmax(0, 1.16fr);
      align-items: center; gap: 2.5rem;
    }
    /* Section/guide hero headings sit in a narrow column — size + wrap so long
       uppercase words ("SCREENSHOTS.") never spill over the hero frame. */
    .section-hero-grid h1, .guide-hero-grid h1, .guide-hero-copy h1 {
      font-size: clamp(1.9rem, 3.4vw, 3.1rem);
      overflow-wrap: break-word; text-wrap: balance;
    }
    .feature-strip {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: .8rem; margin-top: 0;
    }
    .feature-strip div {
      border: 1px solid var(--border); border-radius: var(--r-sm);
      background: rgb(var(--void-rgb) / .32); padding: .95rem;
    }
    .feature-strip b {
      display: block; color: var(--accent-readable); font-family: var(--fm);
      font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: .3rem;
    }
    .feature-strip span { color: var(--text-2); font-size: .82rem; line-height: 1.5; }
    /* FAQ: chapter label (left) beside its accordion (right), tight rhythm
       with a divider between chapters instead of full-section gaps. */
    .faq-wrap .wrap { max-width: 1180px; }
    .faq-group {
      display: grid; grid-template-columns: minmax(180px, .72fr) minmax(0, 2.05fr);
      gap: clamp(1.1rem, 3.5vw, 2.8rem); align-items: start;
    }
    .faq-group + .faq-group {
      margin-top: clamp(1.6rem, 3vw, 2.6rem); padding-top: clamp(1.6rem, 3vw, 2.6rem);
      border-top: 1px solid var(--border-soft);
    }
    .faq-label { position: sticky; top: 88px; }
    .faq-label .eyebrow { margin-bottom: .5rem; }
    .faq-group h2 {
      font-size: clamp(1.25rem, 2.2vw, 1.7rem); font-weight: 600;
      letter-spacing: -.015em; line-height: 1.12; margin-bottom: 0;
    }
    /* Legal: compact header — one small title, tabs immediately, panels start
       high so switching tabs never needs a scroll back up. The main>:first-child
       hero-consolidation rule would shrink the top padding under the fixed nav,
       so this selector matches its specificity. */
    .legal-compact,
    .text-page main > section.legal-compact:first-child { padding: calc(64px + 2rem) 0 4rem; }
    .legal-title { font-size: 1.5rem; font-weight: 700; letter-spacing: -.01em; margin-bottom: 1.1rem; }

    /* Text/doc pages share the 1180px content column (left-aligned with the nav
       and the rest of the site); the heading + reading panel keep their own
       readable max-widths inside it instead of centering a narrow offset block. */
    .text-page .hero .wrap { max-width: 1180px; }
    .text-page .hero h1 { max-width: 760px; }
    .doc-section .wrap { max-width: 1180px; }
    .doc-panel {
      border: 1px solid var(--border); border-radius: var(--r-lg);
      background: var(--elevated);
      box-shadow: var(--soft); padding: clamp(1.3rem, 3vw, 2.4rem);
    }
    .doc-panel h2 {
      font-size: 1.15rem; font-weight: 600; letter-spacing: -.01em;
      margin: 2rem 0 .65rem; color: var(--text);
    }
    .doc-panel h2:first-child { margin-top: 0; }
    .doc-panel p,
    .doc-panel li { color: var(--text-2); font-size: .94rem; line-height: 1.75; }
    .doc-panel p { margin-bottom: .85rem; }
    .doc-panel ul { padding-left: 1.2rem; margin: .2rem 0 .8rem; }
    .doc-panel li { margin-bottom: .45rem; }
    .doc-panel strong,
    .doc-panel code { color: var(--text); }
    .doc-panel code {
      font-family: var(--fm); background: rgb(var(--void-rgb) / .42);
      border: 1px solid var(--border-soft); border-radius: 7px; padding: 1px 6px;
      font-size: .82em;
    }
    .doc-panel a { color: var(--accent-readable); }
    .doc-meta {
      font-family: var(--fm); font-size: .7rem; color: var(--muted);
      letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1.3rem;
    }
    .timeline { display: grid; gap: 1rem; margin-top: 2rem; }
    .release-card {
      border: 1px solid var(--border); border-radius: var(--r-md);
      background: var(--elevated);
      padding: clamp(1.2rem, 3vw, 1.8rem); position: relative; overflow: hidden;
    }
    .release-card::before {
      content: ''; position: absolute; inset: 0 auto 0 0; width: 2px;
      background: var(--accent);
    }
    .release-head {
      display: flex; align-items: center; gap: .8rem; flex-wrap: wrap; margin-bottom: .8rem;
    }
    .release-head b {
      font-family: var(--fm); font-size: 1.25rem; color: var(--accent-readable);
      text-transform: uppercase;
    }
    .release-tag {
      font-family: var(--fm); font-size: .64rem; letter-spacing: .12em; text-transform: uppercase;
      color: #1a1206; background: var(--gold); border-radius: 999px; padding: 4px 9px;
    }
    .release-date { font-family: var(--fm); font-size: .72rem; color: var(--muted); }
    .success-shell {
      min-height: 100vh; display: grid; place-items: center;
      padding: clamp(5rem, 10vw, 7rem) 1.2rem 3rem; position: relative; z-index: 1;
    }
    .success-card {
      width: min(100%, 720px); border: 1px solid var(--border); border-radius: var(--r-lg);
      background: var(--elevated);
      box-shadow: var(--soft); padding: clamp(1.5rem, 4vw, 2.8rem); overflow: hidden; position: relative;
    }
    .success-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: var(--accent);
    }
    .success-card .frog {
      width: 84px; height: 84px; border-radius: 18px; object-fit: cover;
      border: 1px solid var(--border); box-shadow: var(--soft); margin-bottom: 1.2rem;
    }
    .success-card h1 {
      font-size: clamp(2rem, 5vw, 2.8rem); line-height: 1.04; letter-spacing: -.02em;
      color: var(--text); margin-bottom: .65rem;
    }
    .success-card p { color: var(--text-2); line-height: 1.65; }
    .keybox { display: flex; gap: .5rem; align-items: stretch; margin: .5rem 0; }
    .key {
      flex: 1; min-height: 52px; display: flex; align-items: center; word-break: break-all;
      background: var(--void); border: 1px solid var(--border); border-radius: var(--r-sm);
      color: var(--accent-readable); font-family: var(--fm); font-size: .8rem; padding: 14px 16px;
    }
    .steps {
      border: 1px solid var(--border); border-radius: var(--r-md);
      background: rgb(var(--void-rgb) / .35); padding: 1.1rem; margin-top: 1rem;
    }
    .step { display: grid; grid-template-columns: 28px 1fr; gap: .75rem; padding: .5rem 0; }
    .steps .num {
      display: grid; place-items: center; width: 26px; height: 26px; border-radius: 8px;
      background: var(--accent); color: var(--accent-contrast); font-family: var(--fm);
      font-size: .68rem; font-weight: 700;
    }
    .pending { display: flex; align-items: center; gap: .6rem; color: var(--muted); }
    .spin {
      width: 14px; height: 14px; border: 2px solid var(--border);
      border-top-color: var(--accent); border-radius: 50%; animation: spin 1s linear infinite;
    }
    @keyframes spin { to { transform: rotate(360deg); } }
    .guide-related-section { padding-top: 0; }
    .guide-related-section .wrap { max-width: 1180px; }
    .guide-related {
      display: flex; flex-wrap: wrap; gap: .7rem;
      border-top: 1px solid var(--border-soft); padding-top: 1.6rem;
    }
    .guide-related a {
      font-family: var(--fm); color: var(--accent-readable); text-decoration: none;
      border: 1px solid var(--border); border-radius: 999px;
      background: var(--elevated); padding: 9px 14px;
      font-size: .68rem; letter-spacing: .08em; text-transform: uppercase;
    }
    .guide-related a:hover { border-color: var(--accent); }

    /* ───────── FAQ ───────── */
    .faq { display: flex; flex-direction: column; gap: .7rem; margin-top: 0; }
    details { border: 1px solid var(--border); border-radius: var(--r-md); background: var(--elevated); overflow: hidden; }
    summary { list-style: none; cursor: pointer; padding: 1.1rem 1.4rem; font-weight: 600; font-size: .92rem; display: flex; justify-content: space-between; gap: 1rem; align-items: center; transition: color .2s; }
    summary::-webkit-details-marker { display: none; }
    summary:hover { color: var(--accent-readable); }
    summary .arr { color: var(--accent-readable); font-family: var(--fm); transition: transform .3s var(--spring); }
    details[open] summary .arr { transform: rotate(90deg); }
    .faq-a { padding: 0 1.4rem 1.3rem; font-size: .86rem; color: var(--text-2); line-height: 1.7; }
    .faq-a code { font-family: var(--fm); background: var(--void); color: var(--accent-readable); padding: 1px 6px; border-radius: 6px; font-size: .8rem; }

    /* ───────── STATS BAND ───────── */
    .stats-band {
      position: relative; z-index: 1;
      border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft);
      background: linear-gradient(180deg, rgb(var(--accent-rgb) / 0.045), transparent);
    }
    .stats-row { display: grid; grid-template-columns: repeat(4, 1fr); }
    .stat { display: flex; align-items: baseline; justify-content: center; gap: .7rem; padding: 1.5rem .8rem; }
    .stat + .stat { border-left: 1px solid var(--border-soft); }
    .stat b {
      font-family: var(--fm); font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 700; line-height: 1;
      color: var(--accent-readable); font-variant-numeric: tabular-nums;
    }
    .stat span { font-family: var(--fm); font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }

    /* ───────── CTA BAND ───────── */
    .cta-band {
      position: relative; overflow: hidden;
      border-top: 1px solid var(--border-soft);
      background:
        radial-gradient(56vw 30rem at 50% 115%, rgb(var(--accent-rgb) / 0.13), transparent 70%),
        linear-gradient(180deg, transparent, rgb(var(--accent-rgb) / 0.03));
    }
    .cta-inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1.4rem; }
    .cta-inner h2 {
      font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 700;
      line-height: 1.02; letter-spacing: -.025em; text-wrap: balance;
    }
    .cta-inner h2 .lit { color: var(--accent-readable); }
    .cta-inner p { color: var(--text-2); max-width: 36rem; text-wrap: pretty; }
    /* Mascot marks the closing move — a small framed portrait, not a watermark. */
    .cta-toad { width: 72px; height: 72px; border-radius: 18px; object-fit: cover; border: 1px solid var(--border); box-shadow: var(--soft); }
    .cta-inner .hero-actions { justify-content: center; margin-bottom: 0; }

    /* ───────── FOOTER ───────── */
    footer { position: relative; z-index: 1; border-top: 1px solid var(--border-soft); padding: 3.2rem 0 2.4rem; background: rgb(var(--void-rgb) / 0.55); }
    .copy { font-family: var(--fm); font-size: .66rem; color: var(--muted); }
    .foot-grid {
      display: grid; grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
      gap: 2.2rem; align-items: start;
    }
    .foot-brand .brand { font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-readable); font-size: 1.05rem; }
    .foot-brand .tag { font-family: var(--fm); font-size: .7rem; color: var(--muted); margin: 6px 0 .55rem; }
    .foot-mail {
      display: inline-block; margin-bottom: 1.1rem; padding-bottom: 2px;
      font-family: var(--fm); font-size: .74rem; color: var(--muted); text-decoration: none;
      border-bottom: 1px solid var(--border-soft); transition: color .2s;
    }
    .foot-mail:hover { color: var(--accent-readable); }
    .foot-brand .copy { display: block; }
    .foot-col b {
      display: block; font-family: var(--fm); font-size: .64rem; font-weight: 700;
      letter-spacing: .2em; text-transform: uppercase; color: var(--text-2); margin-bottom: .85rem;
    }
    .foot-col ul { list-style: none; display: flex; flex-direction: column; gap: .25rem; }
    /* JS collapses the link columns into clickable dropdowns; no-JS keeps them open */
    html.js .foot-col b {
      cursor: pointer; user-select: none; margin-bottom: 0;
      display: inline-flex; align-items: center; gap: 8px;
    }
    html.js .foot-col b::after {
      content: '▾'; font-size: .9em; letter-spacing: 0; color: var(--muted);
      transform: rotate(-90deg); transition: transform .2s var(--glide);
    }
    html.js .foot-col.open b::after { transform: rotate(0deg); }
    html.js .foot-col b:hover, html.js .foot-col b:hover::after { color: var(--accent-readable); }
    html.js .foot-col ul { display: none; }
    html.js .foot-col.open ul { display: flex; margin-top: .85rem; animation: footdrop .22s var(--glide); }
    @keyframes footdrop { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
    .foot-col a {
      display: inline-block; padding: 4px 0;
      font-family: var(--fm); font-size: .74rem; color: var(--muted); text-decoration: none;
      letter-spacing: .05em; transition: color .2s;
    }
    .foot-col a:hover { color: var(--accent-readable); }
    html.js .fi { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--glide) var(--fi-delay, 0s), transform .7s var(--glide) var(--fi-delay, 0s); }
    html.js .fi.on { opacity: 1; transform: translateY(0); }
    @media print { html.js .fi { opacity: 1; transform: none; } }
    :focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }
    * { scrollbar-width: thin; scrollbar-color: var(--elevated2) var(--void); }
    ::-webkit-scrollbar { width: 11px; height: 11px; }
    ::-webkit-scrollbar-track { background: var(--void); }
    ::-webkit-scrollbar-thumb { background: var(--elevated2); border-radius: 8px; border: 2px solid var(--void); }
    ::-webkit-scrollbar-thumb:hover { background: var(--border); }
    .nav-toggle {
      display: none; flex-direction: column; justify-content: center; gap: 5px;
      width: 42px; height: 42px; padding: 0 9px; cursor: pointer;
      background: var(--elevated); border: 1px solid var(--border); border-radius: 10px;
    }
    .nav-toggle i { display: block; height: 2px; border-radius: 2px; background: var(--text); transition: transform .25s var(--glide), opacity .2s; }
    .nav-toggle[aria-expanded="true"] i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] i:nth-child(2) { opacity: 0; }
    .nav-toggle[aria-expanded="true"] i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    @media (max-width: 920px) {
      .hero-grid, .panel.active, .price-grid, .guide-hero-grid, .section-hero-grid, .jstep-grid, .voice-strip { grid-template-columns: 1fr; }
      .jstep--alt .jstep-visual { order: 0; }
      .voice-toad { justify-self: start; max-width: 220px; }
      /* thumbs-up toad on phones: full-width but short — a 16:9 cover CROP of the
         square art (face + thumb band), never a stretch */
      .price-toad { max-width: none; margin: 1.2rem 0 .4rem; }
      .price-toad img { aspect-ratio: 16 / 9; object-position: 50% 28%; }
      .guide-shots.two { grid-template-columns: 1fr; }
      .guide-steps { grid-template-columns: 1fr; }
      .hero-frame { animation: none; }
      .feat-grid { grid-template-columns: 1fr 1fr; }
      .surface-btns { grid-template-columns: 1fr 1fr; }
      .guide-card-grid { grid-template-columns: 1fr 1fr; }
      .section-page .guide-card-grid { grid-template-columns: 1fr 1fr; }
      .guide-card--wide { grid-column: auto; }
      .feature-strip { grid-template-columns: 1fr 1fr; }
      .guide-mini-grid { grid-template-columns: 1fr; }
      .theme-grid { --tg-cols: 4; }
      #gallery .theme-grid, .docs-article .theme-grid { --tg-cols: 5; }
      .faq-group { grid-template-columns: 1fr; gap: .9rem; }
      .faq-label { position: static; }
      .moods { grid-template-columns: repeat(3,1fr); }
      .term-body { grid-template-columns: 1fr; }
      .stats-row { grid-template-columns: 1fr 1fr; }
      .stat:nth-child(3) { border-left: none; }
      .stat:nth-child(n+3) { border-top: 1px solid var(--border-soft); }
      .foot-grid { grid-template-columns: 1fr 1fr; }
      .foot-brand { grid-column: 1 / -1; }
      .nav-toggle { display: flex; }
      .nav-links {
        position: fixed; top: 64px; left: 0; right: 0; z-index: 99;
        display: none; flex-direction: column; align-items: stretch; gap: 0; list-style: none;
        background: var(--void);
        border: none; border-radius: 0;
        border-bottom: 1px solid var(--border-soft); padding: .6rem 0 1rem;
        box-shadow: 0 24px 40px -18px rgb(0 0 0 / .7);
      }
      .nav-links.open { display: flex; }
      .nav-links a { display: block; padding: .85rem clamp(1.2rem, 4vw, 2.5rem); font-size: .82rem; }
      .nav-links a.active { background: rgb(var(--accent-rgb) / 0.08); box-shadow: inset 3px 0 0 var(--accent); }
      .nav-links a.active::after { display: none; }
      .nav-toggle { margin-left: auto; }
      .nav-more::before, .nav-more-btn { display: none; }
      .nav-drop {
        position: static; display: flex; min-width: 0; padding: 0;
        background: none; border: none; box-shadow: none; transform: none; left: auto;
      }
      .nav-login { display: none; }
      .nav-drop .nav-login-m { display: block; }
    }
    @media (max-width: 560px) {
      .feat-grid { grid-template-columns: 1fr; }
      .surface-btns { grid-template-columns: 1fr; }
      .guide-card-grid, .guide-mini-grid, .section-page .guide-card-grid, .feature-strip { grid-template-columns: 1fr; }
      .guide-mini-grid div { grid-template-columns: 1fr; gap: .15rem; }
      .moods { grid-template-columns: repeat(2,1fr); }
      .theme-grid, #gallery .theme-grid, .docs-article .theme-grid { --tg-cols: 2; }
      .swatch .strip { height: 42px; }
      .foot-grid { grid-template-columns: 1fr; gap: 1.6rem; }
      .stat { flex-direction: column; align-items: center; gap: .35rem; text-align: center; }
      .waitlist { flex-direction: column; }
    }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
    }
    .buy-trust { margin-top: 1.2rem; gap: .65rem 1.2rem; }
