
  /* ══════════════════════════════════════════════════════════════════
     Gyromesh — v2 flagship. Deep Mesh, dark-committed (the brand's default
     world). Palette is blue-black ground + a cyan→blue gyroscope accent;
     every colour painted explicitly so the page holds on any host ground.
     ══════════════════════════════════════════════════════════════════ */
  :root {
    /* Light canvas — v1's Deep Mesh light palette. */
    --ground:    #ffffff;
    --ground-2:  #eef1f7;
    --surface:   #f4f6fa;
    --surface-2: #eef1f7;
    --surface-3: #e6ebf3;
    --line:      rgba(16,26,43,0.10);
    --line-2:    rgba(16,26,43,0.16);

    --ink:    #101a2b;
    --muted:  #41506a;
    --faint:  #5d6b82;

    --cyan:        #1e4bb8;
    --cyan-bright: #315acb;
    --blue:        #315acb;
    --core:        #315acb;
    --violet:      #2f5fc0;
    --on-accent:   #ffffff;

    --pos:  #136c34;
    --warn: #b26a12;
    --crit: #b42318;

    --sweep: linear-gradient(115deg, #315acb 0%, #1e4bb8 52%, #0a7189 100%);
    --sweep-soft: linear-gradient(115deg, rgba(30,75,184,0.10), rgba(10,113,137,0.10));

    --mesh: radial-gradient(circle at 1px 1px, rgba(16,26,43,0.06) 1px, transparent 0);

    /* Geist + Geist Mono (Vercel, OFL) — free neo-grotesques close to ABC Diatype. */
    --f-display: 'Geist', system-ui, sans-serif;
    --f-body: 'Geist', system-ui, sans-serif;
    --f-mono: 'Geist Mono', ui-monospace, monospace;

    --step--1: clamp(0.78rem, 0.75rem + 0.15vw, 0.86rem);
    --step-0:  clamp(0.95rem, 0.9rem + 0.25vw, 1.05rem);
    --step-1:  clamp(1.1rem, 1rem + 0.5vw, 1.3rem);
    --step-2:  clamp(1.3rem, 1.15rem + 0.7vw, 1.65rem);
    --step-3:  clamp(1.55rem, 1.3rem + 1.4vw, 2.3rem);
    --step-4:  clamp(1.85rem, 1.45rem + 2vw, 3.1rem);
    --step-5:  clamp(2.25rem, 1.55rem + 3.2vw, 4.3rem);

    --edge: clamp(20px, 4vw, 80px);
    --maxw: 1452px;
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; scroll-padding-top: 84px; }
  @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

  body {
    margin: 0;
    background: var(--ground);
    color: var(--ink);
    font-family: var(--f-body);
    font-size: var(--step-0);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  /* Dark mode — toggled from the top bar. Redefines the canvas tokens to a
     deep-navy palette (the dark blocks keep their own, so the page reads as
     one dark world). */
  body.theme-dark {
    color-scheme: dark;
    --ground: #0b111e; --ground-2: #0e1524; --surface: #131d30; --surface-2: #182338; --surface-3: #1e2a42;
    --line: rgba(140,170,220,0.13); --line-2: rgba(140,170,220,0.22);
    --ink: #e8edf4; --muted: #9fb0cc; --faint: #6f82a4;
    --cyan: #5ac2ec; --cyan-bright: #8fdcf1; --blue: #4fb8e8; --core: #315acb; --violet: #a5dcf2; --on-accent: #06101c;
    --sweep: linear-gradient(115deg, #8fdcf1 0%, #4fb8e8 52%, #6a5bf2 100%);
    --sweep-soft: linear-gradient(115deg, rgba(79,184,232,0.14), rgba(106,91,242,0.14));
    --mesh: radial-gradient(circle at 1px 1px, rgba(140,170,220,0.10) 1px, transparent 0);
    --pos: #34d399; --crit: #f87171;
    background: var(--ground);
  }

  h1, h2, h3 { font-family: var(--f-display); text-wrap: balance; margin: 0; line-height: 1.06; letter-spacing: -0.02em; overflow-wrap: break-word; }
  p { margin: 0; }
  a { color: inherit; text-decoration: none; }

  /* Content spans 84% of the viewport — 8% gutter each side — rather than a
     fixed max width, so it scales with the screen. Phones widen to avoid a
     cramped column. */
  .wrap { width: 84%; margin-inline: auto; }
  @media (max-width: 700px) { .wrap { width: 90%; } }
  .eyebrow {
    font-family: var(--f-mono); font-size: var(--step--1); font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase; color: var(--cyan);
    display: inline-flex; align-items: center; gap: 0.6em;
  }
  .eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--cyan); opacity: 0.7; }
  .grad { background: var(--sweep); -webkit-background-clip: text; background-clip: text; color: transparent; }
  .muted { color: var(--muted); }

  section { position: relative; padding-block: clamp(48px, 6vw, 88px); }

  /* "Light canvas, dark impact" — the hero, closing CTA and footer become
     deep-navy blocks (v1's ink-band palette, where the accent flips to cyan).
     Overriding the tokens recolours every component inside the block. */
  .dark-block {
    --ground: #0f1723; --ground-2: #0f1723; --surface: #172234; --surface-2: #1b283c; --surface-3: #22314a;
    --line: rgba(232,237,244,0.12); --line-2: rgba(232,237,244,0.20);
    --ink: #e8edf4; --muted: #94a3b8; --faint: #6b7d96;
    --cyan: #4fb8e8; --cyan-bright: #73cfde; --blue: #4fb8e8; --core: #315acb; --violet: #a5dcf2; --on-accent: #06101c;
    --sweep: linear-gradient(115deg, #73cfde 0%, #4fb8e8 52%, #315acb 100%);
    --sweep-soft: linear-gradient(115deg, rgba(79,184,232,0.14), rgba(49,90,203,0.16));
    --mesh: radial-gradient(circle at 1px 1px, rgba(232,237,244,0.10) 1px, transparent 0);
    --pos: #34d399; --crit: #f87171;
    background: var(--ground); color: var(--ink);
  }
  .lede { color: var(--muted); font-size: var(--step-1); max-width: 82ch; line-height: 1.55; }
  .kicker { max-width: 30ch; }

  /* ── reveal motion ─────────────────────────────────────────────── */
  .rise { opacity: 0; transform: translateY(22px); transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1); }
  .rise.in { opacity: 1; transform: none; }
  .rise[data-d="1"] { transition-delay: 0.08s; }
  .rise[data-d="2"] { transition-delay: 0.16s; }
  .rise[data-d="3"] { transition-delay: 0.24s; }
  .rise[data-d="4"] { transition-delay: 0.32s; }
  @media (prefers-reduced-motion: reduce) {
    .rise { opacity: 1; transform: none; transition: none; }
  }

  /* ── nav ───────────────────────────────────────────────────────── */
  .nav {
    position: sticky; top: 0; z-index: 50;
    backdrop-filter: blur(14px);
    background: color-mix(in srgb, var(--ground) 78%, transparent);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, background 0.3s;
  }
  .nav.stuck { border-bottom-color: var(--line); background: color-mix(in srgb, var(--ground) 90%, transparent); }
  .nav__in { display: flex; align-items: center; justify-content: space-between; height: 68px; }
  .brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--f-display); font-weight: 800; font-size: 1.14rem; letter-spacing: -0.02em; }
  .nav__mark { height: 28px; width: auto; display: block; }
  .footer__mark { height: 26px; width: auto; display: block; }
  .brand .dot { color: var(--cyan); }
  .nav__right { display: flex; align-items: center; gap: clamp(14px, 2vw, 26px); }
  .nav__links { display: flex; gap: 28px; align-items: center; }
  .nav__links a { font-size: var(--step--1); color: var(--muted); font-weight: 500; transition: color 0.2s; }
  .nav__links a:hover { color: var(--ink); }
  .navcta { display: inline-flex; align-items: center; gap: 8px; font-family: var(--f-mono); font-size: var(--step--1); font-weight: 600; letter-spacing: 0.02em; color: #06101c; background: #5ac2ec; padding: 9px 15px; border-radius: 9px; transition: transform 0.2s, box-shadow 0.2s; }
  .navcta svg { width: 15px; height: 15px; }
  .navcta:hover { color: #06101c; transform: translateY(-1px); box-shadow: 0 8px 22px -6px rgba(90,194,236,0.55); }
  .nav__toggle { display: none; width: 40px; height: 40px; padding: 0; border: 1px solid var(--line-2); background: transparent; border-radius: 9px; cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 4px; }
  .nav__toggle span { width: 18px; height: 2px; background: var(--ink); border-radius: 2px; }
  .theme-sw { position: relative; flex: none; width: 44px; height: 26px; padding: 0; border: none; border-radius: 999px; background: var(--surface-2); cursor: pointer; transition: background 0.3s; }
  .theme-sw:hover .theme-sw__knob { box-shadow: 0 3px 10px rgba(6,16,28,0.4); }
  .theme-sw:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }
  .theme-sw__knob { position: absolute; top: 2px; left: 2px; width: 22px; height: 22px; border-radius: 50%; background: #5ac2ec; color: #06101c; display: grid; place-items: center; box-shadow: 0 2px 6px rgba(6,16,28,0.28); transition: transform 0.34s cubic-bezier(.34,1.4,.5,1); }
  .theme-sw__knob svg { width: 13px; height: 13px; grid-area: 1 / 1; }
  body.theme-dark .theme-sw__knob { transform: translateX(18px); }
  .ic-moon { display: none; }
  body.theme-dark .ic-sun { display: none; }
  body.theme-dark .ic-moon { display: block; }
  @media (prefers-reduced-motion: reduce) { .theme-sw__knob { transition: none; } }
  .nav__mobile { display: none; }
  @media (max-width: 760px) {
    .nav__links { display: none; }
    .navcta { padding: 9px; }
    .navcta__txt { display: none; }
    .nav__toggle { display: flex; }
    .nav__mobile { display: block; position: absolute; top: 100%; left: 0; right: 0; overflow: hidden; max-height: 0; transition: max-height 0.3s ease; background: color-mix(in srgb, var(--ground) 97%, transparent); backdrop-filter: blur(12px); box-shadow: 0 22px 44px -22px rgba(6,16,28,0.32); }
    .nav__mobile.open { max-height: 360px; border-top: 1px solid var(--line); }
    .nav__mobile a { display: block; padding: 13px clamp(20px, 8vw, 40px); color: var(--muted); font-size: var(--step-0); border-bottom: 1px solid var(--line); transition: color 0.2s, background 0.2s; }
    .nav__mobile a:hover { color: var(--ink); background: rgba(30,75,184,0.05); }
  }
  @media (max-width: 480px) { .brand { font-size: 1.02rem; } }
  /* WhatsApp — persistent contact button, bottom-right on every screen. */
  .wa-fab { position: fixed; right: clamp(16px, 3vw, 34px); bottom: clamp(16px, 3vw, 34px); z-index: 91;
    width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
    background: #5ac2ec; color: #06101c; border: none;
    box-shadow: 0 10px 28px -10px rgba(90,194,236,0.6);
    transition: transform 0.2s, box-shadow 0.2s; }
  .wa-fab:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 16px 40px -10px rgba(90,194,236,0.8); }
  .wa-fab svg { width: 31px; height: 31px; }
  @media (prefers-reduced-motion: reduce) { .wa-fab:hover { transform: none; } }

  /* ── buttons ───────────────────────────────────────────────────── */
  .btn {
    display: inline-flex; align-items: center; gap: 9px; cursor: pointer;
    font-family: var(--f-mono); font-size: var(--step--1); font-weight: 600; letter-spacing: 0.01em;
    padding: 13px 22px; border-radius: 10px; border: 1px solid transparent;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
  }
  /* Primary CTA uses v2's cyan fill everywhere (fixed, not theme-flipped). */
  .btn--primary { background: #5ac2ec; color: #06101c; }
  .btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(63,116,242,0.42); }
  .btn--ghost { border-color: var(--line-2); color: var(--ink); background: rgba(122,152,208,0.04); }
  .btn--ghost:hover { border-color: var(--cyan); color: var(--cyan-bright); }
  .btn svg { width: 15px; height: 15px; }

  /* ── gyroscope motif ───────────────────────────────────────────── */
  .gyro { display: block; }
  .gyro .ring { fill: none; stroke-linecap: round; transform-origin: 130px 130px; }
  @keyframes spin { to { transform: rotate(360deg); } }
  @keyframes spinr { to { transform: rotate(-360deg); } }
  .gyro .r1 { animation: spin 26s linear infinite; }
  .gyro .r2 { animation: spinr 34s linear infinite; }
  .gyro .r3 { animation: spin 46s linear infinite; }
  @media (prefers-reduced-motion: reduce) { .gyro .ring { animation: none !important; } }

  /* ── hero ──────────────────────────────────────────────────────── */
  .hero { padding: clamp(48px, 7vw, 92px) 0 clamp(56px, 7vw, 100px); background:
      radial-gradient(120% 90% at 78% 8%, rgba(63,116,242,0.16), transparent 55%),
      radial-gradient(90% 70% at 8% 100%, rgba(106,91,242,0.10), transparent 60%),
      var(--ground); }
  .hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 68px); align-items: center; }
  .hero h1 { font-size: var(--step-5); font-weight: 800; margin-top: 22px; }
  .hero h1 .b { display: block; color: var(--muted); font-weight: 600; font-size: 0.62em; letter-spacing: -0.015em; margin-top: 0.35em; line-height: 1.08; }
  .hero__sub { margin-top: 26px; max-width: 42rem; }
  .hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
  .hero__trust { margin-top: 30px; display: flex; align-items: center; gap: 12px; font-size: var(--step--1); color: var(--faint); font-family: var(--f-mono); flex-wrap: wrap; }
  .hero__trust b { color: var(--muted); font-weight: 500; }
  @media (max-width: 900px) {
    /* Stack in reading order: headline → pitch → answer box → CTAs. Both
       wrappers go display:contents so every piece can be ordered individually. */
    .hero__grid { grid-template-columns: 1fr; }
    .hero__textcol, .hero__body { display: contents; }
    .hero__head { order: 1; }
    .hero__sub { order: 2; }
    .hero__viz { order: 3; margin-top: 14px; }
    .hero__cta { order: 4; }
    .hero__trust { order: 5; }
  }

  /* ── hero mirror — the assistant window ────────────────────────────
     Ported 2026-09-12 from v1's SceneAnswerbox + VisibilityMirror (archive/
     website/v1/src/components/): generic chat chrome — window dots, a typed
     consumer bubble, an assistant turn with avatar, shopping-result rows, a
     dead input pill — with NO real assistant's branding and NO real rival
     names (redaction bars; inspire-never-copy). The hero is a dark block,
     so the window wears v1's "nocturnal" mapping: --surface ground, cyan
     accents. Everything inside speaks one size (--step--1). */
  /* min-width:0 — the grid column must NOT grow to fit the nowrap title bar
     (it made the window 70px wider on Sports than on Cosmetics). */
  .hero__viz { min-width: 0; }
  .mirrorwrap { position: relative; }
  .mirrorwrap > .scenebox, .mirrorwrap > .mirror-tabs { position: relative; z-index: 1; }
  /* two slow orbit rings behind the window — the gyroscope, quietly */
  .mirrorwrap::before, .mirrorwrap::after {
    content: ""; position: absolute; top: 50%; left: 50%; pointer-events: none; z-index: 0;
    border: 1px solid color-mix(in srgb, var(--cyan) 28%, transparent); border-radius: 50%;
  }
  .mirrorwrap::before { width: 116%; height: 80%; animation: gm-orbit 70s linear infinite; }
  .mirrorwrap::after { width: 104%; height: 92%; border-color: color-mix(in srgb, var(--cyan) 16%, transparent); animation: gm-orbit 110s linear infinite reverse; }
  @keyframes gm-orbit { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(360deg); } }
  .scenebox { position: relative; min-width: 0; }
  .chatw {
    position: relative; z-index: 1; min-width: 0; max-width: 100%; overflow: hidden;
    background: linear-gradient(180deg, var(--surface-2), var(--surface));
    border: 1px solid color-mix(in srgb, var(--cyan) 25%, var(--line-2));
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(6,12,24,0.34), 0 0 64px -10px color-mix(in srgb, var(--cyan) 45%, transparent);
  }
  .chatw__bar {
    display: flex; align-items: center; gap: 10px; min-width: 0; overflow: hidden;
    padding: 10px 14px; background: var(--surface-3); border-bottom: 1px solid var(--line);
    font-size: var(--step--1); color: var(--muted); white-space: nowrap;
  }
  /* phones: let the honesty label drop to a second line rather than clip */
  @media (max-width: 480px) { .chatw__bar { white-space: normal; flex-wrap: wrap; row-gap: 2px; } }
  .chatw__dots { display: flex; gap: 5px; }
  .chatw__dots span { width: 8px; height: 8px; border-radius: 50%; background: var(--line-2); }
  .chatw__cat { color: var(--cyan); display: inline-block; margin-left: -6px; }
  .chatw__bar-note { margin-left: auto; color: var(--faint); }
  .chatw__body { padding: 12px 14px 10px; display: grid; gap: 9px; }
  /* grid/flex children default to min-width:auto — with nowrap row meta that
     widened the whole body past the card on phones (clipped at 390px) */
  .chatw__body > *, .chatw__turn, .chatw__line { min-width: 0; }
  /* the bubble is sized by an invisible ghost of the FULL question; the typed
     text overlays it, so the card never resizes while typing */
  .chatw__user {
    position: relative; justify-self: end; max-width: 88%;
    background: var(--sweep-soft); color: var(--ink);
    padding: 7px 12px; border-radius: 14px 14px 4px 14px; font-size: var(--step--1);
  }
  .chatw__user-ghost { visibility: hidden; }
  .chatw__user-live { position: absolute; inset: 7px 12px; }
  .chatw__turn { display: flex; gap: 10px; align-items: flex-start; }
  .chatw__avatar {
    flex: none; width: 26px; height: 26px; border-radius: 8px; display: flex; align-items: center; justify-content: center;
    background: var(--surface-3); border: 1px solid var(--line-2); color: var(--cyan);
  }
  .chatw__avatar svg, .chatw__send svg, .chatw__prod-thumb svg { width: 13px; height: 13px; }
  .chatw__msg { display: grid; gap: 6px; padding-top: 2px; min-width: 0; flex: 1; position: relative; }
  .chatw__line {
    display: flex; align-items: baseline; gap: 10px; font-size: var(--step--1); color: var(--muted);
    opacity: 0; transform: translateX(-14px); transition: opacity 0.45s ease-out, transform 0.45s ease-out;
  }
  .chatw__line.is-in { opacity: 1; transform: none; }
  .chatw__line em { font-style: normal; color: var(--faint); margin-left: auto; white-space: nowrap; }
  .chatw__line--you { color: var(--ink); border-top: 1px solid var(--line); padding-top: 6px; }
  .chatw__line--you em { color: var(--crit); }
  /* shopping-agent result rows: redacted thumb + name bar, the engine's
     REASON for the pick, a Buy pill that flips to Ordered when the agent
     completes the purchase */
  .chatw__prod { align-items: center; background: var(--surface-3); border: 1px solid var(--line); border-radius: 10px; padding: 6px 9px; }
  .chatw__prod-thumb {
    width: 24px; height: 24px; flex: none; display: inline-flex; align-items: center; justify-content: center;
    border-radius: 6px; border: 1px solid var(--line); background: var(--surface-2); color: var(--cyan);
  }
  .chatw__prod-name { display: inline-block; height: 12px; border-radius: 4px; background: var(--faint); opacity: 0.55; flex: none; }
  .chatw__prod-meta { color: var(--faint); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
  .chatw__buy, .chatw__ordered { margin-left: auto; font-weight: 500; font-size: var(--step--1); white-space: nowrap; flex: none; }
  .chatw__buy { color: var(--cyan); border: 1px solid var(--cyan); border-radius: 999px; padding: 2px 11px; }
  .chatw__ordered { color: var(--pos); }
  @keyframes gm-prodflash { from { background-color: color-mix(in srgb, var(--pos) 20%, transparent); } }
  .chatw__prod--done { animation: gm-prodflash 1.1s ease-out; }
  .chatw__think { position: absolute; top: 8px; left: 0; display: flex; gap: 5px; }
  .chatw__think span { width: 6px; height: 6px; border-radius: 50%; background: var(--faint); animation: gm-think 1s ease-in-out infinite; }
  .chatw__think span:nth-child(2) { animation-delay: 0.15s; }
  .chatw__think span:nth-child(3) { animation-delay: 0.3s; }
  @keyframes gm-think { 0%, 100% { opacity: 0.25; transform: translateY(0); } 40% { opacity: 1; transform: translateY(-3px); } }
  .chatw__cursor { display: inline-block; width: 2px; height: 1em; background: currentColor; vertical-align: text-bottom; margin-left: 2px; animation: gm-blink 0.9s steps(1) infinite; }
  @keyframes gm-blink { 50% { opacity: 0; } }
  /* the measure, inside the window — the same 12 the report dial moves */
  .chatw__meter { display: grid; gap: 7px; padding-top: 2px; opacity: 0; transform: translateX(-14px); transition: opacity 0.45s ease-out, transform 0.45s ease-out; }
  .chatw__meter.is-in { opacity: 1; transform: none; }
  .chatw__meter-top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; font-size: var(--step--1); color: var(--faint); }
  .chatw__meter-val { font-family: var(--f-display); font-weight: 600; font-size: var(--step-2); color: var(--cyan); font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }
  .chatw__track { height: 7px; border-radius: 999px; background: var(--line-2); overflow: hidden; }
  .chatw__fill { height: 100%; width: 0; border-radius: 999px; background: linear-gradient(135deg, var(--cyan), var(--cyan-bright)); transition: width 1s cubic-bezier(.2,.7,.2,1); }
  .chatw__input {
    margin: 2px 14px 10px; display: flex; align-items: center; gap: 10px; padding: 4px 4px 4px 14px;
    border: 1px solid var(--line-2); border-radius: 999px; background: var(--surface-3); color: var(--faint); font-size: var(--step--1);
  }
  .chatw__caret { width: 2px; height: 1em; flex: none; background: var(--faint); animation: gm-blink 1.1s steps(1) infinite; }
  .chatw__send { margin-left: auto; flex: none; width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--cyan); color: var(--on-accent); }
  /* industry pills below the window — controls, so the body face; the
     selected one wears the button family's active look */
  .mirror-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
  .mirror-tab {
    font-family: var(--f-body); font-size: var(--step--1); font-weight: 500; color: var(--muted);
    background: none; border: 1px solid var(--line); border-radius: 999px; padding: 5px 14px; cursor: pointer;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
  }
  .mirror-tab:hover { color: var(--ink); border-color: var(--faint); }
  .mirror-tab.is-active { color: var(--cyan); border-color: var(--cyan); background: var(--sweep-soft); font-weight: 600; }
  @media (prefers-reduced-motion: reduce) {
    .mirrorwrap::before, .mirrorwrap::after { animation: none; transform: translate(-50%, -50%); }
    .chatw__line, .chatw__meter { transition: none; }
    .chatw__cursor, .chatw__caret, .chatw__think span, .chatw__prod--done { animation: none; }
    .chatw__fill { transition: none; }
  }

  /* ── stats ─────────────────────────────────────────────────────── */
  .stats { background: var(--ground-2); border-block: 1px solid var(--line); }
  .stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
  .stat { background: var(--surface); padding: 30px 26px; }
  .stat__i { width: 24px; height: 24px; color: var(--cyan); margin-bottom: 16px; }
  .stat--pos .stat__i { color: var(--cyan-bright); }
  .stat__v { font-family: var(--f-display); font-weight: 800; font-size: var(--step-3); letter-spacing: -0.03em; line-height: 1; }
  .stat--pos .stat__v { color: var(--cyan-bright); }
  .stat__t { margin-top: 12px; font-weight: 600; font-size: var(--step-0); }
  .stat__l { margin-top: 7px; color: var(--muted); font-size: 0.86rem; line-height: 1.5; }
  .stat__s { display: inline-block; margin-top: 13px; font-family: var(--f-mono); font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--faint); transition: color 0.2s; }
  a.stat__s { border-bottom: 1px solid var(--line-2); padding-bottom: 1px; }
  a.stat__s:hover { color: var(--cyan); border-bottom-color: var(--cyan); }
  .stats__foot { margin-top: 26px; display: flex; gap: 18px; align-items: baseline; flex-wrap: wrap; color: var(--muted); font-size: 0.92rem; }
  .stats__foot .b2b { font-family: var(--f-display); font-weight: 700; color: var(--ink); font-size: var(--step-1); letter-spacing: -0.01em; }
  .stats__foot .b2b em { color: var(--cyan); font-style: normal; }
  @media (max-width: 860px) { .stats__grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 460px) { .stats__grid { grid-template-columns: 1fr; } }

  /* ── section head ──────────────────────────────────────────────── */
  .shead { max-width: 74rem; margin-bottom: clamp(38px, 5vw, 62px); }
  .shead h2 { font-size: var(--step-4); font-weight: 800; margin-top: 18px; }
  .shead p { margin-top: 20px; }

  /* ── gap: human vs agent ───────────────────────────────────────── */
  .split { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .col { border: 1px solid var(--line); border-radius: 16px; padding: 26px; background: var(--surface); }
  .col--agent { border-color: var(--line-2); background:
      linear-gradient(180deg, rgba(47,111,224,0.10), var(--surface)); box-shadow: inset 0 0 0 1px rgba(47,111,224,0.14); }
  .col__h { display: flex; align-items: center; gap: 11px; font-family: var(--f-mono); font-size: var(--step--1); text-transform: uppercase; letter-spacing: 0.1em; color: var(--faint); margin-bottom: 20px; }
  .col--agent .col__h { color: var(--cyan); }
  .col__h svg { width: 18px; height: 18px; }
  .col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
  .col li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.94rem; color: var(--muted); }
  .col li::before { content: ""; flex: none; width: 6px; height: 6px; border-radius: 2px; margin-top: 8px; background: var(--faint); }
  .col--agent li { color: var(--ink); }
  .col--agent li::before { background: var(--cyan); box-shadow: 0 0 10px rgba(90,194,236,0.7); }
  .penalties { display: grid; gap: 16px; margin-top: 18px; }
  .penalty { border: 1px solid var(--line); border-left: 2px solid var(--warn); border-radius: 12px; padding: 18px 20px; background: var(--surface); }
  .penalty--crit { border-left-color: var(--crit); }
  .penalty h4 { font-family: var(--f-display); font-weight: 700; font-size: var(--step-0); margin: 0 0 6px; }
  .penalty p { color: var(--muted); font-size: 0.9rem; line-height: 1.55; }
  .gapgrid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: start; }
  .baseline { margin-top: 22px; border: 1px dashed var(--line-2); border-radius: 12px; padding: 16px 18px; font-size: 0.9rem; color: var(--muted); }
  .baseline b { color: var(--ink); }
  @media (max-width: 880px) { .gapgrid { grid-template-columns: 1fr; } }
  @media (max-width: 560px) { .split { grid-template-columns: 1fr; } }

  /* ── forces ────────────────────────────────────────────────────── */
  .forces { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .force { border: 1px solid var(--line); border-radius: 16px; padding: 26px; background: var(--surface); position: relative; overflow: hidden; transition: transform 0.3s, border-color 0.3s; }
  .force:hover { transform: translateY(-4px); border-color: var(--line-2); }
  .force__n { font-family: var(--f-mono); font-size: 0.72rem; color: var(--cyan); letter-spacing: 0.1em; }
  .force h3 { font-size: var(--step-1); font-weight: 700; margin: 12px 0 10px; }
  .force p { color: var(--muted); font-size: 0.92rem; line-height: 1.55; }
  .force__ico { position: absolute; top: 22px; right: 22px; width: 22px; height: 22px; color: var(--faint); }
  .principle { margin-top: 24px; border-radius: 18px; padding: clamp(28px, 4vw, 44px); background: var(--sweep-soft); border: 1px solid var(--line-2); display: grid; grid-template-columns: auto 1fr; gap: 30px; align-items: center; }
  .principle h3 { font-size: var(--step-2); font-weight: 800; }
  .principle p { margin-top: 12px; color: var(--muted); max-width: 62ch; }
  @media (max-width: 820px) { .forces { grid-template-columns: 1fr; } .principle { grid-template-columns: 1fr; gap: 20px; } }

  /* ── the report (product panel) ────────────────────────────────── */
  .report { background:
      radial-gradient(90% 60% at 50% 0%, rgba(63,116,242,0.10), transparent 60%), var(--ground-2);
    border-top: 1px solid var(--line); }
  .panel {
    border: 1px solid var(--line-2); border-radius: 20px; overflow: hidden;
    background: linear-gradient(180deg, var(--surface-2), var(--surface));
    box-shadow: 0 40px 90px -46px rgba(22,42,92,0.20);
  }
  .panel__bar { display: flex; align-items: center; justify-content: space-between; padding: 15px 20px; border-bottom: 1px solid var(--line); background: rgba(28,58,128,0.045); }
  .panel__bar .l { display: flex; align-items: center; gap: 11px; font-family: var(--f-mono); font-size: 0.76rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
  .panel__bar .tag { font-family: var(--f-mono); font-size: 0.68rem; color: var(--faint); border: 1px solid var(--line); padding: 3px 9px; border-radius: 20px; }
  .panel__top { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 1px; background: var(--line); }
  .pcell { background: var(--surface); padding: 26px; }
  .dial { display: flex; align-items: center; gap: 22px; }
  .dial__num { font-family: var(--f-display); font-weight: 900; font-size: var(--step-4); line-height: 0.9; letter-spacing: -0.03em; }
  .dial__num small { display: block; font-family: var(--f-mono); font-size: 0.66rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); margin-top: 8px; }
  .dial__meta { font-size: 0.86rem; color: var(--muted); }
  .dial__meta .chip { display: inline-flex; align-items: center; gap: 6px; font-family: var(--f-mono); font-size: 0.68rem; color: var(--crit); border: 1px solid rgba(239,122,114,0.3); background: rgba(239,122,114,0.08); padding: 3px 8px; border-radius: 6px; margin-bottom: 10px; }

  .pblock__h { font-family: var(--f-mono); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); margin-bottom: 16px; }
  .bars { display: grid; gap: 12px; }
  .bar { display: grid; grid-template-columns: 68px 1fr 42px; align-items: center; gap: 12px; }
  .bar__k { font-size: 0.82rem; color: var(--muted); }
  .bar__track { height: 9px; border-radius: 5px; background: rgba(28,58,128,0.09); overflow: hidden; }
  .bar__fill { height: 100%; border-radius: 5px; width: 0; transition: width 1s cubic-bezier(.2,.7,.2,1); background: var(--cyan); }
  .bar__v { font-family: var(--f-mono); font-size: 0.76rem; color: var(--muted); text-align: right; font-variant-numeric: tabular-nums; }
  .bar--you .bar__k { color: var(--ink); font-weight: 600; }
  .bar--you .bar__fill { background: var(--sweep); box-shadow: 0 0 14px rgba(90,194,236,0.5); }
  .bar--you .bar__v { color: var(--cyan-bright); }

  .chapters { padding: 26px; border-top: 1px solid var(--line); }
  .chtabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
  .chtab { font-family: var(--f-mono); font-size: 0.74rem; letter-spacing: 0.02em; color: var(--muted); border: 1px solid var(--line); background: transparent; padding: 8px 13px; border-radius: 8px; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; gap: 8px; }
  .chtab .no { color: var(--faint); }
  .chtab:hover { border-color: var(--line-2); color: var(--ink); }
  .chtab.on { color: var(--on-accent); background: var(--cyan); border-color: var(--cyan); }
  .chtab.on .no { color: var(--on-accent); opacity: 0.7; }
  .chpane { display: none; }
  .chpane.on { display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr); gap: 30px; align-items: start; animation: fade 0.4s ease; }
  @keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
  .chnum { font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cyan); }
  .chh { font-family: var(--f-display); font-weight: 700; font-size: var(--step-1); letter-spacing: -0.01em; margin: 12px 0; }
  .chlead { color: var(--muted); font-size: 0.94rem; line-height: 1.6; }
  .chsubs { display: grid; gap: 14px; margin-top: 20px; }
  .sub { display: flex; gap: 12px; align-items: flex-start; }
  .sub__i { flex: none; width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center; background: rgba(90,194,236,0.1); color: var(--cyan); border: 1px solid var(--line); }
  .sub__i svg { width: 16px; height: 16px; }
  .sub__t { font-weight: 600; font-size: 0.9rem; color: var(--ink); }
  .sub__d { color: var(--muted); font-size: 0.83rem; line-height: 1.5; margin-top: 2px; }
  .chshot { margin: 0; }
  .chshot img { width: 100%; height: auto; display: block; border: 1px solid var(--line-2); border-radius: 12px; background: #fff; }
  .chshot figcaption { margin-top: 10px; font-family: var(--f-mono); font-size: 0.68rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--faint); }
  /* Report chapters as alternating text/image rows, each exhibit on a soft
     accent-gradient card (the ChatGPT-style layout, in v3's own palette). */
  .rrows { display: grid; gap: clamp(44px, 6vw, 92px); }
  .rrow { display: grid; grid-template-columns: 1fr 1.06fr; gap: clamp(28px, 4vw, 60px); align-items: center; }
  .rrow:nth-child(even) .chinfo { order: 2; }
  .rrow .chshot { margin: 0; background: radial-gradient(120% 130% at 22% 0%, #263a72 0%, #141d33 52%, #0d1526 100%); border: 1px solid rgba(140,170,220,0.16); border-radius: 22px; padding: clamp(18px, 3vw, 40px); }
  .rrow .chshot img { border-radius: 10px; border: 1px solid rgba(255,255,255,0.14); box-shadow: 0 30px 70px -24px rgba(0,0,0,0.6); }
  .rrow .chshot figcaption { text-align: center; color: rgba(220,230,245,0.62); }
  @media (max-width: 820px) {
    .rrow { grid-template-columns: 1fr; gap: 22px; }
    .rrow:nth-child(even) .chinfo { order: 0; }
  }
  @media (max-width: 780px) { .chpane.on { grid-template-columns: 1fr; gap: 20px; } .chshot { order: -1; } }

  .recos { padding: 0 26px 26px; }
  .reco { display: grid; grid-template-columns: 26px 1fr auto; gap: 14px; align-items: center; padding: 14px 0; border-top: 1px solid var(--line); }
  .reco__r { font-family: var(--f-mono); font-weight: 600; color: var(--cyan); }
  .reco__t { font-size: 0.9rem; }
  .reco__lift { font-family: var(--f-mono); font-size: 0.74rem; color: var(--pos); border: 1px solid rgba(69,201,155,0.28); background: rgba(69,201,155,0.08); padding: 3px 9px; border-radius: 6px; white-space: nowrap; }

  /* ── maturity loop ─────────────────────────────────────────────── */
  .loop { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
  .stage { border: 1px solid var(--line); border-radius: 14px; padding: 22px 18px; background: var(--surface); position: relative; }
  .stage--soon { border-style: dashed; }
  .stage--end { border-color: rgba(69,201,155,0.35); background: linear-gradient(180deg, rgba(69,201,155,0.07), var(--surface)); }
  .stage__ico { width: 22px; height: 22px; color: var(--cyan); margin-bottom: 14px; }
  .stage--end .stage__ico { color: var(--pos); }
  .stage__n { font-family: var(--f-mono); font-size: 0.72rem; color: var(--cyan); letter-spacing: 0.08em; display: flex; align-items: center; justify-content: space-between; }
  .stage--end .stage__n { color: var(--pos); }
  .pill { font-family: var(--f-mono); font-size: 0.6rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--warn); border: 1px solid rgba(226,169,85,0.35); padding: 2px 7px; border-radius: 20px; }
  .stage h3 { font-size: var(--step-0); font-weight: 700; margin: 14px 0 8px; letter-spacing: -0.01em; }
  .stage p { color: var(--muted); font-size: 0.82rem; line-height: 1.5; }
  .loopcap { margin-top: 20px; text-align: center; font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); }
  @media (max-width: 960px) { .loop { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 480px) { .loop { grid-template-columns: 1fr; } }

  /* ── operational code ──────────────────────────────────────────── */
  .code { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .rule { display: flex; gap: 18px; border: 1px solid var(--line); border-radius: 16px; padding: 26px; background: var(--surface); transition: border-color 0.3s, transform 0.3s; }
  .rule:hover { border-color: var(--line-2); transform: translateY(-3px); }
  .rule__i { flex: none; width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; background: var(--sweep-soft); border: 1px solid var(--line-2); color: var(--cyan); }
  .rule__i svg { width: 21px; height: 21px; }
  .rule h3 { font-family: var(--f-display); font-weight: 700; font-size: var(--step-1); }
  .rule p { margin-top: 9px; color: var(--muted); font-size: 0.92rem; line-height: 1.55; }
  @media (max-width: 720px) { .code { grid-template-columns: 1fr; } }

  /* ── about ─────────────────────────────────────────────────────── */
  .about { background: var(--ground-2); border-block: 1px solid var(--line); }
  .aboutgrid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 5vw, 60px); align-items: start; }
  .aboutgrid .mission { font-family: var(--f-display); font-weight: 700; font-size: var(--step-2); letter-spacing: -0.015em; line-height: 1.24; color: var(--ink); text-wrap: balance; }
  .aboutgrid .sup { color: var(--muted); font-size: var(--step-0); line-height: 1.62; }
  @media (max-width: 820px) { .aboutgrid { grid-template-columns: 1fr; gap: 22px; } }

  /* ── close ─────────────────────────────────────────────────────── */
  .close { text-align: center; background:
      radial-gradient(80% 90% at 50% 0%, rgba(63,116,242,0.18), transparent 60%), var(--ground); }
  .close h2 { font-size: var(--step-4); font-weight: 800; margin-inline: auto; white-space: nowrap; }
  @media (max-width: 760px) { .close h2 { white-space: normal; font-size: var(--step-3); } }
  .close p { margin: 20px auto 0; max-width: 66ch; }
  .close .btn { margin-top: 34px; }
  .close__sub { margin-top: 16px; font-family: var(--f-mono); font-size: 0.74rem; letter-spacing: 0.06em; color: var(--faint); text-transform: uppercase; }

  /* ── footer ────────────────────────────────────────────────────── */
  footer { border-top: 1px solid var(--line); padding-block: 40px; color: var(--faint); }
  .foot__in { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; font-size: 0.84rem; }
  .foot__in .brand { font-size: 1rem; }
  .foot__legal { margin-top: 14px; display: flex; gap: 18px; font-size: 0.82rem; }
  .foot__legal a { color: var(--muted); }
  .foot__legal a:hover { color: var(--ink); }

  /* ── modal + form ──────────────────────────────────────────────── */
  .modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px; background: rgba(16,25,46,0.5); backdrop-filter: blur(6px); animation: mfade 0.25s ease; }
  .modal[hidden] { display: none; }
  @keyframes mfade { from { opacity: 0; } to { opacity: 1; } }
  .modal__panel { position: relative; width: min(560px, 100%); max-height: 90vh; overflow-y: auto; background: linear-gradient(180deg, var(--surface-2), var(--surface)); border: 1px solid var(--line-2); border-radius: 18px; padding: clamp(24px, 4vw, 40px); box-shadow: 0 50px 120px -36px rgba(22,42,92,0.28); animation: mrise 0.3s cubic-bezier(.2,.7,.2,1); }
  @keyframes mrise { from { opacity: 0; transform: translateY(16px) scale(0.985); } to { opacity: 1; transform: none; } }
  .modal__panel:focus { outline: none; }
  .modal__close { position: absolute; top: 15px; right: 15px; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 8px; border: 1px solid var(--line); background: transparent; color: var(--muted); cursor: pointer; transition: color 0.2s, border-color 0.2s; }
  .modal__close:hover { color: var(--ink); border-color: var(--line-2); }
  .modal h3 { font-family: var(--f-display); font-weight: 800; font-size: var(--step-2); margin: 14px 0 8px; }
  .modal__sub { color: var(--muted); font-size: 0.92rem; margin-bottom: 22px; }
  .cf { display: grid; gap: 15px; }
  .cf__row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
  .cf__field { display: grid; gap: 6px; }
  .cf__label { font-family: var(--f-mono); font-size: 0.66rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
  .cf__input { font-family: var(--f-body); font-size: 0.92rem; color: var(--ink); background: var(--ground-2); border: 1px solid var(--line-2); border-radius: 9px; padding: 11px 13px; transition: border-color 0.2s; width: 100%; }
  .cf__input::placeholder { color: var(--faint); }
  .cf__input:focus { outline: none; border-color: var(--cyan); }
  textarea.cf__input { resize: vertical; min-height: 92px; }
  .cf__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
  .cf__actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 4px; }
  .cf__hint { font-size: 0.78rem; color: var(--faint); }
  .cf__err { color: var(--crit); font-size: 0.86rem; margin: 0; }
  .cf__done { text-align: center; padding: 24px 0; }
  .cf__done p { color: var(--muted); margin-top: 8px; }
  @media (max-width: 480px) { .cf__row { grid-template-columns: 1fr; } }
  .meshbg { isolation: isolate; }
  .meshbg::after {
    content: ""; position: absolute; inset: 0; pointer-events: none; z-index: -1;
    background-image: var(--mesh); background-size: 26px 26px; opacity: 0.5;
    -webkit-mask-image: radial-gradient(120% 80% at 50% 30%, #000, transparent 75%);
    mask-image: radial-gradient(120% 80% at 50% 30%, #000, transparent 75%);
  }
  :focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 4px; }

      /* ── GyroScoreChart ── */
      /* ── GyroScoreChart — proof of motion, interactive ────────────────
         Ported 2026-09-12 from v1 (src/components/GyroScoreChart.jsx):
         representative data with the real chart's grammar — a Day/Week/Month
         toggle, per-point value + delta labels (thinned when dense), round-
         number gridlines, a hover crosshair + tooltip on full-height hit-
         bands, an emphasised endpoint. Inline SVG so it survives a PDF
         render, same reason as the source. Score climbs 12 → 58 in every
         mode — the same 12 the hero mirror's meter shows, so the two
         exhibits read as one arc. */
      .gsc { margin-top: clamp(28px, 4vw, 44px); background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: clamp(18px, 2.6vw, 26px); }
      .gsc__head { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 14px; margin-bottom: 6px; }
      .gsc__kpi-lbl { font-family: var(--f-mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); }
      .gsc__kpi-row { display: flex; align-items: baseline; gap: 10px; margin-top: 4px; }
      .gsc__kpi-val { font-family: var(--f-display); font-weight: 800; font-size: var(--step-3); letter-spacing: -0.02em; color: var(--ink); }
      .gsc__kpi-delta { font-family: var(--f-mono); font-size: 0.78rem; color: var(--pos); }
      .gsc__toggle { display: flex; gap: 4px; background: var(--ground-2); border: 1px solid var(--line); border-radius: 10px; padding: 3px; }
      .gsc__toggle-btn { font-family: var(--f-mono); font-size: 0.72rem; font-weight: 600; color: var(--muted); background: none; border: none; border-radius: 7px; padding: 6px 12px; cursor: pointer; }
      .gsc__toggle-btn.is-active { color: var(--on-accent); background: var(--cyan); }
      .gsc__frame { position: relative; margin-top: 10px; }
      .gsc__svg { width: 100%; height: auto; display: block; overflow: visible; }
      .gsc__grid { stroke: var(--line); stroke-width: 1; }
      .gsc__gridlbl { font-family: var(--f-mono); font-size: 9px; fill: var(--faint); }
      .gsc__area { pointer-events: none; }
      .gsc__line { fill: none; stroke: var(--cyan); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
      .gsc__xlbl { font-family: var(--f-mono); font-size: 9px; fill: var(--faint); }
      .gsc__dot { fill: var(--surface); stroke: var(--cyan); stroke-width: 2; }
      .gsc__dot--end { fill: var(--cyan); stroke: var(--surface); stroke-width: 2; }
      .gsc__ptval { font-family: var(--f-mono); font-size: 10px; font-weight: 600; fill: var(--muted); }
      .gsc__ptdelta { font-family: var(--f-mono); font-size: 8px; }
      .gsc__ptdelta--up { fill: var(--pos); }
      .gsc__ptdelta--down { fill: var(--crit); }
      .gsc__cross { stroke: var(--line-2); stroke-width: 1; stroke-dasharray: 3 3; }
      .gsc__hoverdot { fill: var(--cyan-bright); stroke: var(--surface); stroke-width: 2; }
      .gsc__tooltip { position: absolute; pointer-events: none; background: var(--ground-2); border: 1px solid var(--line-2); border-radius: 8px; padding: 8px 11px; font-size: 0.78rem; white-space: nowrap; box-shadow: 0 10px 26px rgba(6,12,24,0.28); }
      .gsc__tt-lbl { font-family: var(--f-mono); font-size: 0.62rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--faint); margin-bottom: 4px; }
      .gsc__tt-row { display: flex; align-items: center; gap: 6px; color: var(--muted); }
      .gsc__tt-swatch { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); flex: none; }
      .gsc__tt-row strong { color: var(--ink); margin-left: 2px; }
      .gsc__tt-delta { margin-top: 3px; font-family: var(--f-mono); font-size: 0.7rem; }
      .gsc__tt-delta--up { color: var(--pos); }
      .gsc__tt-delta--down { color: var(--crit); }
      .gsc__cap { margin-top: 12px; font-size: 0.82rem; color: var(--faint); }
      @media (prefers-reduced-motion: reduce) { .gsc__line, .gsc__area { transition: none !important; } }
