/* ═══════════════════════════════════════════════════════════
   BEARWORKS AGENTS — landing
   Warm cream canvas punctuated by three deep-green movements
   (hero · voice · close). Neon only ever appears on green;
   on cream the accent is deep forest, which actually passes
   contrast. Geist throughout, display at weight 300.
   ═══════════════════════════════════════════════════════════ */

/* Self-hosted (both are variable fonts — one file covers their whole
   weight range) instead of the Google Fonts CDN: removes a render-blocking
   cross-origin stylesheet fetch from the critical path. */
@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url("/fonts/geist-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Geist Mono";
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url("/fonts/geist-mono-latin.woff2") format("woff2");
}

:root {
  color-scheme: light;

  /* Cream stack */
  --cream:    #faf8f4;
  --linen:    #f2eee7;
  --stone:    #e4ded4;
  --hair:     #e7e1d8;

  /* Ink — warm, faint green bias, never pure black */
  --ink:      #14170f;
  --graphite: #45483e;
  --smoke:    #6b6d63;   /* body + all secondary text — 4.55:1 on linen */
  --ash:      #a09d93;   /* hairlines and marks ONLY — fails text contrast */

  /* Green movements */
  --night:    #051a10;
  --night-2:  #08240f;
  --forest:   #0a3d26;

  /* Sparks */
  --neon:     #a8ff00;
  --gold:     #e3c46a;
  --teal:     #4fd1b0;

  --pass:     #1d7d45;
  --fail:     #c23f29;
  --warn:     #986100;

  --gutter: 32px;
  --max: 1180px;
  --band: clamp(56px, 6vw, 92px);
}

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Geist", ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.shell { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.mono { font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace; }
p { margin: 0; }
a { color: inherit; }
a:focus-visible, summary:focus-visible {
  outline: 2px solid var(--forest); outline-offset: 3px; border-radius: 8px;
}
.green a:focus-visible, .on-dark a:focus-visible { outline-color: var(--neon); }

/* ── Type ───────────────────────────────────────────── */
.display {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 300; line-height: 1.02; letter-spacing: -.035em;
  text-wrap: balance; margin: 0;
}
h2.sec {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 300; line-height: 1.06; letter-spacing: -.03em;
  text-wrap: balance; margin: 0;
}
h3 { font-size: 20px; font-weight: 500; letter-spacing: -.015em; line-height: 1.3; margin: 0; }
.lede { font-size: clamp(17px, 1.5vw, 19px); line-height: 1.55; color: var(--smoke); max-width: 56ch; margin: 0; }
.body { color: var(--smoke); max-width: 60ch; }

.eyebrow {
  font-family: "Geist", ui-sans-serif, system-ui, sans-serif; font-size: 15px;
  font-weight: 500; letter-spacing: -.005em; color: var(--smoke); margin: 0;
}
.eyebrow .tick { color: var(--forest); }

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 44px; padding: 0 22px; border-radius: 9999px;
  font: 500 15px/1 "Geist", system-ui, sans-serif; letter-spacing: -.005em;
  text-decoration: none; white-space: nowrap; border: 1px solid transparent;
  cursor: pointer; transition: background .18s, border-color .18s, color .18s;
}
.btn:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(10,61,38,.28); }
.btn-fill {
  background: var(--ink); color: var(--cream); position: relative; isolation: isolate;
  --shine-c: rgba(255,255,255,.95);
  box-shadow: 0 1px 2px rgba(20,23,15,.10);
}
.btn-fill:hover { background: var(--forest); box-shadow: 0 4px 14px -6px rgba(20,23,15,.45); }
/* Highlight travelling around the border ring — needs @property to animate the
   conic angle; without it the rule is inert and the button just doesn't shine. */
@property --shine {
  syntax: "<angle>"; inherits: false; initial-value: 0deg;
}
.btn-fill::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px;
  pointer-events: none; opacity: 0; transition: opacity .22s;
  filter: drop-shadow(0 0 var(--shine-glow, 0px) var(--shine-c, #fff));
  background: conic-gradient(from var(--shine),
    transparent 0deg, transparent 20deg,
    var(--shine-c, rgba(255,255,255,.95)) 46deg, transparent 74deg, transparent 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
}
.btn-fill:hover::after, .btn-fill:focus-visible::after {
  opacity: 1; animation: shine 1.4s linear infinite;
}
@keyframes shine { to { --shine: 360deg; } }
@media (prefers-reduced-motion: reduce) {
  .btn-fill:hover::after, .btn-fill:focus-visible::after { animation: none; opacity: .55; }
}
.btn-line { background: var(--cream); color: var(--ink); border-color: var(--stone); }
.btn-line:hover { border-color: var(--ink); }
/* 44px meets the WCAG 2.5.5 minimum tap-target size — this is the one CTA
   still on screen in the fixed nav bar on mobile, where .bar-nav is hidden. */
.btn-sm { height: 44px; padding: 0 18px; font-size: 14px; }

/* On green movements */
.on-dark .btn-fill { background: var(--neon); color: #04150d; --shine-c: #ffffff; --shine-glow: 5px; }
.on-dark .btn-fill:hover { background: #bcff33; }
.on-dark .btn-line { background: transparent; color: #eef3ea; border-color: rgba(238,243,234,.22); }
.on-dark .btn-line:hover { border-color: var(--neon); color: var(--neon); }
.on-dark .btn:focus-visible { box-shadow: 0 0 0 3px rgba(168,255,0,.35); }

/* ── Nav ────────────────────────────────────────────── */
nav.bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  background: transparent; border-bottom: 1px solid transparent;
  transition: background .32s, border-color .32s, backdrop-filter .32s;
}
/* At the very top the bar is invisible, so the green reads full-bleed.
   As soon as you scroll it picks up a translucent night-green so hero copy
   sliding underneath stays legible; past the hero it flips to cream. */
nav.bar.scrolled {
  background: rgba(5,26,16,.78); border-bottom-color: rgba(238,243,234,.1);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
nav.bar.stuck {
  background: rgba(250,248,244,.84); border-bottom-color: var(--hair);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
nav.bar .bar-nav a { color: rgba(238,243,234,.78); }
nav.bar .bar-nav a:hover { color: #fff; background: rgba(238,243,234,.1); }
nav.bar .brand .mark { fill: var(--neon); }
nav.bar .brand .word { fill: #fff; }
nav.bar .btn-line { background: transparent; color: #eef3ea; border-color: rgba(238,243,234,.24); }
nav.bar .btn-line:hover { border-color: var(--neon); color: var(--neon); }
nav.bar .btn-fill { background: var(--neon); color: #04150d; --shine-c: #ffffff; --shine-glow: 5px; }
nav.bar .btn-fill:hover { background: #bcff33; }
nav.bar .menu-toggle { color: rgba(238,243,234,.78); }
nav.bar .menu-toggle:hover { color: #fff; background: rgba(238,243,234,.1); }

nav.bar.stuck .bar-nav a { color: var(--smoke); }
nav.bar.stuck .bar-nav a:hover { color: var(--ink); background: rgba(20,23,15,.05); }
nav.bar.stuck .brand .mark { fill: var(--forest); }
nav.bar.stuck .brand .word { fill: var(--ink); }
nav.bar.stuck .btn-line { background: var(--cream); color: var(--ink); border-color: var(--stone); }
nav.bar.stuck .btn-line:hover { border-color: var(--ink); color: var(--ink); }
nav.bar.stuck .btn-fill { background: var(--ink); color: var(--cream); --shine-c: rgba(255,255,255,.95); }
nav.bar.stuck .btn-fill:hover { background: var(--forest); }
nav.bar.stuck .menu-toggle { color: var(--smoke); }
nav.bar.stuck .menu-toggle:hover { color: var(--ink); background: rgba(20,23,15,.05); }
nav.bar .bar-nav a, nav.bar .brand path, nav.bar .btn, nav.bar .menu-toggle {
  transition: color .32s, background .32s, border-color .32s, fill .32s;
}

/* ── Mobile menu ────────────────────────────────────── */
.menu-toggle {
  display: none; width: 40px; height: 40px; flex: none; border: 0; border-radius: 8px;
  background: transparent; color: inherit; cursor: pointer;
  align-items: center; justify-content: center;
}
.menu-toggle svg { width: 22px; height: 22px; }
.menu-toggle .i-close { display: none; }
.menu-toggle[aria-expanded="true"] .i-open { display: none; }
.menu-toggle[aria-expanded="true"] .i-close { display: block; }
.menu-toggle:focus-visible { outline: 2px solid var(--forest); outline-offset: 2px; }
.on-dark .menu-toggle:focus-visible, nav.bar .menu-toggle:focus-visible { outline-color: var(--neon); }

.mobile-menu {
  position: fixed; top: 64px; left: 0; right: 0; z-index: 59;
  background: var(--cream); border-bottom: 1px solid var(--hair);
  box-shadow: 0 16px 34px -20px rgba(20,23,15,.35);
  display: flex; flex-direction: column; padding: 6px var(--gutter) 14px;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a {
  display: block; padding: 14px 2px; font-size: 17px; color: var(--ink);
  text-decoration: none; border-bottom: 1px solid var(--hair);
}
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu a:focus-visible { outline: 2px solid var(--forest); outline-offset: -2px; border-radius: 6px; }

@media (max-width: 900px) { .menu-toggle { display: flex; } }
@media (min-width: 901px) { .mobile-menu { display: none !important; } }
.bar-in { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter);
  height: 64px; display: flex; align-items: center; gap: 32px; }
.brand { display: inline-flex; align-items: center; text-decoration: none; flex: none; }
.brand .bw-logo { height: 21px; width: auto; display: block; }
.brand .mark { fill: var(--neon); }
.brand .word { fill: var(--ink); }
.bar-nav { display: flex; gap: 12px; margin-right: auto; }
.bar-nav a { display: inline-flex; align-items: center; height: 36px; padding: 0 10px;
  border-radius: 8px; font-size: 15px; color: var(--smoke); text-decoration: none; transition: color .16s, background .16s; }
.bar-nav a:hover { color: var(--ink); background: rgba(20,23,15,.05); }
.bar-act { display: flex; gap: 8px; flex: none; }
@media (max-width: 900px) { .bar-nav { display: none; } }

/* ── Green movement shell ───────────────────────────── */
.green {
  position: relative; isolation: isolate; overflow: hidden;
  background: var(--night); color: #eef3ea;
}
.green > .shell { position: relative; z-index: 3; }
.green::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(115% 85% at 76% 6%,  rgba(79,209,176,.20) 0%, transparent 56%),
    radial-gradient(85% 65% at 88% 12%,  rgba(227,196,106,.15) 0%, transparent 46%),
    radial-gradient(110% 75% at 10% 92%, rgba(79,209,176,.13) 0%, transparent 55%),
    radial-gradient(60% 55% at 4% 96%,   rgba(227,196,106,.13) 0%, transparent 44%),
    linear-gradient(165deg, #082a19 0%, #051a10 52%, #04160e 100%);
}
.green .stars { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; }
.green .ring {
  position: absolute; border: 1px solid rgba(227,196,106,.12);
  border-radius: 50%; z-index: 1; pointer-events: none;
}
/* The logo's spark, blown up as a watermark and cropped by the panel's
   rounded corner. Neon at .12 reads as a glow, not a graphic. */
.star-mark {
  position: absolute; z-index: 1; pointer-events: none;
  left: -66px; bottom: -78px; width: 360px; height: auto;
  fill: var(--neon); opacity: .12;
}
@media (max-width: 700px) { .star-mark { width: 210px; left: -46px; bottom: -54px; } }
.green .eyebrow { color: rgba(238,243,234,.62); }
.green .eyebrow .tick { color: var(--neon); }
.green .lede, .green .body { color: rgba(238,243,234,.66); }

/* Every green movement except the hero floats as a rounded panel on the cream
   page; overflow:hidden on .green already clips to the new corners. */
.green.inset > .shell { padding-inline: 24px; --rail-bleed: 24px; }
.green.inset {
  width: calc(100% - var(--gutter) * 2);
  max-width: calc(var(--max) - var(--gutter) * 2);
  margin-inline: auto;
  border-radius: 24px;
}
/* The footer is the one neighbour with no padding of its own to give the last
   panel room. */
footer.foot { margin-top: var(--band); }
.green.inset + .green.inset { margin-top: var(--band); }
@media (max-width: 640px) {
  /* Two nested insets would eat a phone's width, so the panel hugs the edge
     and gives its padding back to the content. */
  .green.inset { width: calc(100% - 20px); border-radius: 16px; }
  .green.inset > .shell { padding-inline: 20px; --rail-bleed: 20px; }
}

/* ── Hero ───────────────────────────────────────────── */
.hero { padding: clamp(118px,12vw,160px) 0 clamp(60px,7vw,96px); }
.hero-note {
  margin-top: 26px; display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(238,243,234,.60);
}
.hero-note i { width: 5px; height: 5px; border-radius: 50%; background: var(--neon); flex: none; }

/* ── Bands ──────────────────────────────────────────── */
.band { padding: var(--band) 0; }
.band-tight { padding: clamp(36px,4vw,52px) 0; }
.band-linen { background: var(--linen); }
.rule-top { border-top: 1px solid var(--hair); }

.head { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.head.centred { align-items: center; text-align: center; }
.head.vhead { position: relative; }
.head.vhead .vnav { position: absolute; right: 0; bottom: 0; }
@media (max-width: 720px) { .head.vhead .vnav { position: static; margin-top: 20px; } }
.head.centred .lede { text-align: center; max-width: 52ch; }

/* ── Marquee ────────────────────────────────────────── */
.marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 56px; width: max-content; animation: slide 42s linear infinite; }
@keyframes slide { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }
.marquee:hover .marquee-track { animation-play-state: paused; }
.logo-slot {
  width: 132px; height: 40px; flex: none; border: 1px dashed var(--stone);
  border-radius: 8px; display: grid; place-items: center;
  font: 400 11px/1 "Geist Mono", monospace; letter-spacing: .12em;
  color: var(--smoke); text-transform: uppercase;
}

/* ── Product tabs: labelled columns over one stage ───── */
.ptabs {
  background: var(--cream); border: 1px solid var(--hair);
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 1px 2px rgba(20,23,15,.03), 0 24px 60px -46px rgba(20,23,15,.4);
}
.tabs-strip { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); }
.tab {
  position: relative; display: flex; flex-direction: column; gap: 8px; align-items: flex-start;
  text-align: left; padding: 24px 24px 26px; cursor: pointer;
  background: transparent; border: 0; border-left: 1px solid var(--hair);
  font-family: inherit; transition: background .18s;
}
.tab:first-child { border-left: 0; }
.tab:hover { background: var(--linen); }
/* The active column is marked by a rule along its top edge, the way a real
   tab connects to the panel below it. */
.tab::before {
  content: ""; position: absolute; top: 0; left: -1px; right: 0; height: 2px;
  background: transparent; transition: background .2s;
}
.tab[aria-selected="true"]::before { background: var(--ink); }
.tab[aria-selected="true"] { background: var(--cream); }
.tab:focus-visible { outline: none; box-shadow: inset 0 0 0 2px rgba(10,61,38,.4); }

.tab-t {
  font-size: 19px; font-weight: 400; letter-spacing: -.018em; line-height: 1.25;
  color: var(--smoke); transition: color .18s;
}
.tab[aria-selected="true"] .tab-t { color: var(--ink); }
.tab-d { font-size: 14px; line-height: 1.5; color: var(--smoke); }

.tabpanels {
  position: relative; border-top: 1px solid var(--hair);
  overflow: hidden;
  /* The colour is the fallback if the image never arrives, and it also fills
     the gap while it decodes. */
  background: #061c11 url("img/product-stage.jpg?v=2") center / cover no-repeat;
  /* Height is set per-tab by JS to match whichever panel is active, so the
     Observe pane doesn't inherit the taller screenshots' empty space. */
  transition: height .32s ease;
}
/* A light vignette only — this image is already dark through the middle where
   the mock sits, so it needs settling at the edges, not knocking back. */
.tabpanels::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(4,18,11,.22) 0%, rgba(4,18,11,0) 38%, rgba(4,18,11,.30) 100%);
}
@media (max-width: 700px) { .tabpanels { background-image: url("img/product-stage-sm.jpg?v=2"); } }
/* Panels stack directly on top of one another (absolute, out of flow) so each
   one's natural height is independent — JS reads it and animates the shared
   container to match whichever tab is active. */
.tabpanel {
  position: absolute; top: 0; left: 0; right: 0; z-index: 1;
  padding: clamp(14px,4vw,56px);
  opacity: 0; visibility: hidden; transform: translateY(3px);
  transition: opacity .24s ease, transform .24s ease, visibility 0s linear .24s;
}
.tabpanel.on {
  opacity: 1; visibility: visible; transform: none;
  transition: opacity .24s ease, transform .24s ease, visibility 0s;
}
@media (prefers-reduced-motion: reduce) {
  .tabpanel, .tabpanel.on { transition: opacity .01s; transform: none; }
  .tabpanels { transition: none; }
}
/* Real product screens, captured at 1440×900 @2x from the Agents module.
   The app has its own chrome, so the frame is only an edge and a shadow. */
.shot { display: block; max-width: 940px; margin: 0 auto; border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(238,243,234,.14); box-shadow: 0 30px 70px -30px rgba(0,0,0,.75); background: #0d0f0d; }
.shot img { display: block; width: 100%; height: auto; }

/* ── UI pane (built, not a screenshot) ──────────────── */
.tabpanel .pane { max-width: 620px; margin: 0 auto; box-shadow: 0 24px 60px -28px rgba(0,0,0,.6); }
.pane {
  background: #fff; border: 1px solid var(--hair); border-radius: 16px;
  overflow: hidden; box-shadow: 0 1px 2px rgba(20,23,15,.04), 0 18px 40px -32px rgba(20,23,15,.35);
}
.pane-bar {
  display: flex; align-items: center; gap: 8px; padding: 12px 16px;
  border-bottom: 1px solid var(--hair);
  font: 400 11px/1 "Geist Mono", monospace; letter-spacing: .11em;
  text-transform: uppercase; color: var(--smoke);
}
.pane-bar i { width: 6px; height: 6px; border-radius: 50%; background: var(--forest); flex: none; }
.pane-body { padding: 18px; display: flex; flex-direction: column; gap: 12px; }

.chip {
  display: inline-flex; align-items: center; gap: 4px;
  font: 500 11px/1 "Geist Mono", monospace; letter-spacing: .09em; text-transform: uppercase;
  padding: 5px 9px; border-radius: 9999px; white-space: nowrap;
}
.chip-pass { background: rgba(47,143,87,.11); color: var(--pass); }
.chip-fail { background: rgba(200,69,47,.10); color: var(--fail); }
.chip-warn { background: rgba(169,114,12,.11); color: var(--warn); }
.chip-mute { background: rgba(20,23,15,.06); color: var(--smoke); }
.call { display: grid; grid-template-columns: auto auto 1fr; align-items: center; column-gap: 10px; row-gap: 6px;
  padding: 12px 0; border-bottom: 1px solid var(--hair); }
.call:last-child { border-bottom: 0; }
.call-t { font-size: 12px; color: var(--ash); letter-spacing: .04em; }
.call p { grid-column: 1 / -1; font-size: 13.5px; line-height: 1.5; color: var(--smoke); }
@media (min-width: 861px) { .call p { grid-column: 3; } }

@media (max-width: 860px) {
  .tab { padding: 16px 12px 18px; align-items: center; }
  .tab-t { font-size: 15px; }
  .tab-d { display: none; }
}

/* ── Hero orb + its live CTA ─────────────────────────── */
.hero-grid {
  display: grid; grid-template-columns: minmax(0,1.15fr) minmax(0,.85fr);
  gap: clamp(32px,5vw,72px); align-items: center;
}
.hero-copy .display { max-width: 15ch; }
.hero-copy .lede { max-width: 52ch; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.hero-orb { position: relative; }
#orb { width: min(100%, 440px); aspect-ratio: 1; margin: 0 auto; border-radius: 50%; position: relative; --overscan: 1.4; }
/* The halo canvas is drawn larger than its box and centred on it (the
   module reads --overscan): the ring then fills the box and its bloom fades
   out past the edge instead of being clipped by it. No CSS glow behind it —
   the ring has an empty middle, and a glow would light up the hole. */
.halo {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  line-height: 0; pointer-events: none;
}
.halo canvas { display: block; width: 100%; height: 100%; }
/* Fallback if WebGL or the Three.js CDN is unavailable — a still ring in
   the same palette, so the hero never shows an empty square. */
#orb.fallback {
  background:
    radial-gradient(closest-side at 50% 64%, rgba(43,158,116,.5) 0%, transparent 46%),
    radial-gradient(closest-side, transparent 68%, #74c62a 72%, rgba(168,232,58,.55) 76%, transparent 90%);
}
/* Liquid glass, four layers — blur alone reads as frosted plastic: body darkens
   the orb behind it, rim bends light at the edge, ring catches top-left/bottom-
   right, sheen sits across the upper third. */
.orb-cta {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  display: flex; align-items: center; gap: 18px;
  padding: 12px 12px 12px 28px; border-radius: 9999px; border: 0;
  cursor: pointer; isolation: isolate; max-width: min(86%, 340px);
  /* The tint + brightness drop is what keeps white text legible over the
     orb's palest zone (#f2ffd0) — 6.5:1 there, better everywhere else. */
  background: rgba(6,18,10,.26);
  backdrop-filter: blur(18px) saturate(1.7) brightness(.55);
  -webkit-backdrop-filter: blur(18px) saturate(1.7) brightness(.55);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.34),
    inset 0 -1px 0 rgba(255,255,255,.10),
    0 20px 44px -20px rgba(0,0,0,.72),
    0 3px 10px -6px rgba(0,0,0,.55);
  transition: transform .22s cubic-bezier(.2,0,.2,1), box-shadow .22s, background .22s;
}
/* Rim lens — a narrow band that samples the backdrop sharper and brighter
   than the body, which is what an actual glass edge does to light. */
.orb-cta-glass {
  position: absolute; inset: 0; border-radius: inherit; pointer-events: none; z-index: 1;
  backdrop-filter: blur(1px) brightness(1.45) saturate(1.6);
  -webkit-backdrop-filter: blur(1px) brightness(1.45) saturate(1.6);
  padding: 4px;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
}
/* Specular ring — brightest where a light above-left would catch the bevel. */
.orb-cta::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  pointer-events: none; z-index: 2;
  background: linear-gradient(135deg,
    rgba(255,255,255,.72) 0%, rgba(255,255,255,.14) 30%, rgba(255,255,255,0) 52%,
    rgba(255,255,255,.20) 74%, rgba(255,255,255,.62) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
}
/* Sheen across the top third. */
.orb-cta::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; z-index: 2;
  background: linear-gradient(180deg, rgba(255,255,255,.15) 0%, rgba(255,255,255,.04) 40%, transparent 58%);
}
.orb-cta > .orb-cta-text, .orb-cta > .orb-cta-icon { position: relative; z-index: 3; }
.orb-cta:hover {
  transform: translate(-50%,calc(-50% - 2px));
  background: rgba(6,18,10,.20);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.46),
    inset 0 -1px 0 rgba(255,255,255,.14),
    0 26px 52px -22px rgba(0,0,0,.75),
    0 3px 10px -6px rgba(0,0,0,.55);
}
.orb-cta:active { transform: translate(-50%,-50%) scale(.985); }
.orb-cta:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(168,255,0,.5), 0 20px 44px -20px rgba(0,0,0,.72); }
.orb-cta-text { display: flex; flex-direction: column; gap: 3px; text-align: left; min-width: 0; }
.orb-cta-text b { font: 500 17px/1.25 "Geist", sans-serif; letter-spacing: -.015em; color: #fff; }
.orb-cta-text i {
  font: 400 14px/1.3 "Geist", sans-serif; font-style: normal; white-space: nowrap;
  color: rgba(255,255,255,.92);   /* holds 4.7:1 over the orb's palest zone */
}
.orb-cta-icon {
  width: 48px; height: 48px; border-radius: 50%; flex: none; display: grid; place-items: center;
  background: var(--neon); color: #04150d; transition: background .2s;
  box-shadow: 0 2px 10px -3px rgba(168,255,0,.6), inset 0 1px 0 rgba(255,255,255,.5);
}
.orb-cta-icon svg { width: 18px; height: 18px; }
.orb-cta.live .orb-cta-icon { background: #ff6a4d; color: #2a0d06; box-shadow: 0 2px 10px -3px rgba(255,106,77,.6), inset 0 1px 0 rgba(255,255,255,.45); }
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: minmax(0,1fr); }
  .hero-orb { margin-top: 12px; }
}
@media (max-width: 560px) {
  /* The box is narrow here, so the ring grows a little to keep the pill
     inside its hole. */
  #orb { --overscan: 1.6; }
  .orb-cta { gap: 12px; padding: 8px 8px 8px 18px; max-width: 94%; }
  .orb-cta-text b { font-size: 15px; }
  .orb-cta-text i { font-size: 12px; }
  .orb-cta-icon { width: 40px; height: 40px; }
  .orb-cta-icon svg { width: 16px; height: 16px; }
}

/* ── Voices carousel ────────────────────────────────── */
.vnav { display: flex; gap: 8px; margin-top: 4px; }
.varrow {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; cursor: pointer;
  background: rgba(238,243,234,.06); border: 1px solid rgba(238,243,234,.16);
  color: rgba(238,243,234,.8); transition: background .18s, border-color .18s, color .18s, opacity .18s;
}
.varrow svg { width: 18px; height: 18px; }
.varrow:hover { background: rgba(238,243,234,.12); border-color: var(--neon); color: var(--neon); }
.varrow:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(168,255,0,.35); }
.varrow[disabled] { opacity: .3; pointer-events: none; }

/* The rail bleeds past the shell so a partial card signals "more this way",
   and the mask keeps that cut from reading as a clipping bug. */
.vrail-wrap {
  margin-right: calc(var(--rail-bleed, var(--gutter)) * -1);
  -webkit-mask-image: linear-gradient(90deg, #000 0, #000 88%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0, #000 88%, transparent 100%);
}
.vrail {
  display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 4px var(--gutter) 4px 0; scrollbar-width: none; -ms-overflow-style: none;
}
.vrail::-webkit-scrollbar { display: none; }

.vcard {
  flex: 0 0 clamp(236px, 23vw, 280px); scroll-snap-align: start; min-height: 288px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  text-align: center; padding: 26px 24px 26px; border-radius: 16px; cursor: pointer;
  background: rgba(238,243,234,.045); border: 1px solid rgba(238,243,234,.12);
  transition: background .22s, border-color .22s, transform .22s;
}
.vcard:hover, .vcard.playing { background: rgba(238,243,234,.09); border-color: rgba(168,255,0,.4); }
.vcard:hover { transform: translateY(-2px); }
.vcard:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(168,255,0,.35); }

/* One shared WebGL context renders all five of these — see the module script. */
.vorb-wrap { position: relative; width: 152px; height: 152px; display: block; }
.vorb { width: 152px; height: 152px; border-radius: 50%; display: block; position: relative; }

/* Same glass recipe as the hero CTA, scaled down: the brightness drop is what
   keeps a white glyph legible over the palest part of any palette. */
.vplay {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; isolation: isolate;
  background: rgba(6,18,10,.18);
  backdrop-filter: blur(10px) saturate(1.7) brightness(.62);
  -webkit-backdrop-filter: blur(10px) saturate(1.7) brightness(.62);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.38),
    inset 0 -1px 0 rgba(255,255,255,.10),
    0 8px 20px -8px rgba(0,0,0,.65);
  transition: transform .22s cubic-bezier(.2,0,.2,1), background .22s;
}
.vplay::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%; padding: 1px; pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.72) 0%, rgba(255,255,255,.12) 34%,
    rgba(255,255,255,0) 55%, rgba(255,255,255,.2) 76%, rgba(255,255,255,.6) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
}
.vplay::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%; pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.18) 0%, rgba(255,255,255,.04) 44%, transparent 62%);
}
.vplay svg { width: 20px; height: 20px; position: relative; z-index: 2; }
.vplay .i-play { margin-left: 2px; }
.vplay .i-stop { display: none; }
.vcard:hover .vplay { transform: translate(-50%,-50%) scale(1.07); background: rgba(6,18,10,.12); }
.vcard.playing .vplay { background: rgba(6,18,10,.12); }
.vcard.playing .i-play { display: none; }
.vcard.playing .i-stop { display: block; }

.vname { font-size: 17px; font-weight: 500; line-height: 1.3; letter-spacing: -.015em; color: #fff; }
.vrole { font-size: 13px; line-height: 1.45; color: rgba(238,243,234,.62); }
.vcta {
  padding-top: 12px; display: inline-flex; align-items: center; gap: 8px;
  justify-content: center;
  font-size: 13px; font-weight: 500; color: rgba(238,243,234,.55); transition: color .18s;
}
.vcta i { font-style: normal; font-size: 10px; color: var(--neon); }
.vcard:hover .vcta, .vcard.playing .vcta { color: var(--neon); }

.vcard-make { cursor: default; background: transparent; border-style: dashed; }
.vcard-make:hover { transform: none; }
.vcard-make .vrole { display: flex; align-items: center; }
@media (max-width: 560px) { .vcard { flex-basis: 78%; } }

/* ── Charts ─────────────────────────────────────────── */
.chart-head {
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: clamp(24px,3vw,52px); align-items: end; margin-bottom: 32px;
}
.chart-head-side { padding-bottom: 4px; }
@media (max-width: 860px) { .chart-head { grid-template-columns: minmax(0,1fr); align-items: start; } }

.charts { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 20px; }
@media (max-width: 900px) { .charts { grid-template-columns: minmax(0,1fr); } }

.chart-card { margin: 0; display: flex; flex-direction: column; gap: 16px; }
.chart-frame { position: relative; border: 1px solid var(--hair); border-radius: 8px; padding: 18px 20px; background: var(--cream); }
.chart { display: block; width: 100%; height: auto; overflow: visible; }

.chart .grid line { stroke: var(--stone); stroke-width: 1; stroke-dasharray: 4 5; }
.chart .axis { stroke: var(--ink); stroke-width: 1; }
.chart .ylab text, .chart .xlab text {
  font-family: "Geist Mono", monospace; fill: var(--smoke); letter-spacing: .04em;
  font-size: calc(11px * var(--sf, 1));
}
.chart .ylab text { text-anchor: end; }
.chart .xlab text { letter-spacing: .11em; }
.chart .dlab { font-family: "Geist", sans-serif; font-weight: 500; fill: var(--ink); font-size: calc(13px * var(--sf, 1)); }
.chart .pts circle { fill: var(--cream); stroke: #0a3d26; stroke-width: 2; transition: r .14s; }
.chart .pts circle:hover, .chart .pts circle.hot { r: 7; }
.chart .bar-n { fill: #c9c2b4; stroke: var(--ink); stroke-width: 1; }
.chart .bar-a { fill: #0a3d26; stroke: var(--ink); stroke-width: 1; }
.chart .bars path { transition: opacity .16s; cursor: default; }
.chart .bars:hover path { opacity: .55; }
.chart .bars path:hover { opacity: 1; }
.chart .vlab rect { fill: var(--cream); stroke: var(--ink); stroke-width: 1; }
.chart .vlab text { font-family: "Geist", sans-serif; font-weight: 500; fill: var(--ink); text-anchor: middle; font-size: calc(13px * var(--sf, 1)); }

/* Draw-in on first view, all as a transition off one .drawn class — reduced-motion
   is just "add the class with no transition". */
.chart .line { stroke-dasharray: var(--len, 0); stroke-dashoffset: var(--len, 0);
  transition: stroke-dashoffset 1.3s cubic-bezier(.22,.61,.36,1); }
.chart .area { opacity: 0; transition: opacity .85s ease .3s; }
.chart .pts circle { opacity: 0; transition: opacity .35s ease, r .14s; }
.chart .dlab, .chart .vlab { opacity: 0; transition: opacity .5s ease; }
.chart .bars path { transform: scaleY(0); transform-origin: 0px 300px;
  transition: transform .8s cubic-bezier(.2,0,.2,1), opacity .16s; }

.chart.drawn .line { stroke-dashoffset: 0; }
.chart.drawn .area { opacity: 1; }
.chart.drawn .pts circle { opacity: 1; }
.chart.drawn .dlab { opacity: 1; transition-delay: 1.05s; }
.chart.drawn .vlab { opacity: 1; transition-delay: .7s; }
.chart.drawn .bars path { transform: scaleY(1); }
.chart.drawn .pts circle:nth-child(1) { transition-delay: .18s }
.chart.drawn .pts circle:nth-child(2) { transition-delay: .38s }
.chart.drawn .pts circle:nth-child(3) { transition-delay: .55s }
.chart.drawn .pts circle:nth-child(4) { transition-delay: .72s }
.chart.drawn .pts circle:nth-child(5) { transition-delay: .88s }
.chart.drawn .pts circle:nth-child(6) { transition-delay: 1.02s }
.chart.drawn .bars path:nth-child(2) { transition-delay: .12s }
.chart.drawn .bars path:nth-child(3) { transition-delay: .24s }
@media (prefers-reduced-motion: reduce) {
  .chart .line, .chart .area, .chart .pts circle, .chart .dlab,
  .chart .vlab, .chart .bars path { transition: none; }
}

.chart-card figcaption { display: flex; flex-direction: column; gap: 4px; }
.chart-card figcaption b { font-size: clamp(17px,1.8vw,21px); font-weight: 400; letter-spacing: -.018em; }
.chart-card figcaption span { font-size: 15px; color: var(--smoke); }

.chart-tip {
  position: fixed; z-index: 70; pointer-events: none; transform: translate(-50%,-100%);
  background: var(--ink); color: var(--cream); border-radius: 8px; padding: 8px 11px;
  font-size: 13px; line-height: 1.35; white-space: nowrap;
  box-shadow: 0 10px 26px -14px rgba(20,23,15,.7);
}
.chart-tip b { display: block; font-weight: 500; }
.chart-tip span { color: rgba(250,248,244,.6); font-size: 12px; }

/* ── Pricing ────────────────────────────────────────── */
.eyebrow .pill {
  display: inline-block; margin-left: 10px; padding: 3px 9px 4px; border-radius: 9999px;
  font-size: 12px; font-weight: 500; line-height: 1; color: var(--forest);
  background: rgba(10,61,38,.08); vertical-align: 1px;
}
.price-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.price-card {
  background: #fff; border: 1px solid var(--hair); border-radius: 16px; padding: 26px 26px 24px;
  display: flex; flex-direction: column; gap: 10px;
  box-shadow: 0 1px 2px rgba(20,23,15,.04), 0 18px 40px -32px rgba(20,23,15,.35);
}
.price-compare { grid-column: span 2; }
.price-k { font-size: 13px; color: var(--smoke); }
.price-v {
  font-size: clamp(40px,4.4vw,60px); font-weight: 300; letter-spacing: -.035em; line-height: 1;
  color: var(--ink); font-variant-numeric: tabular-nums; display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
}
.price-v small { font-size: 15px; font-weight: 400; letter-spacing: -.005em; color: var(--smoke); }
.price-v .lt { font-size: .6em; color: var(--smoke); margin-right: -6px; }
.price-t { font-size: 17px; font-weight: 500; letter-spacing: -.015em; line-height: 1.3; }
.price-d { font-size: 15px; line-height: 1.5; color: var(--smoke); }
/* Every card ends in a small piece of live UI. They only run while the grid
   is on screen (.live, set by the page script). */
.ui { margin-top: auto; padding-top: 18px; align-self: stretch; }

/* Latency: two lanes and a clocked gap between them. Lengths are set by the
   page script as --l / --w, in percent of the lane. */
.ui-lat { display: flex; flex-direction: column; gap: 6px; }
.lat-lane { display: grid; grid-template-columns: 40px minmax(0,1fr); align-items: center; gap: 10px; font-size: 11px; color: var(--smoke); }
.lat-lane > div { position: relative; height: 20px; border-radius: 5px; background: rgba(20,23,15,.05); }
.lat-lane > .lat-axis { height: 18px; background: none; }
.lat-blk {
  position: absolute; top: 3px; bottom: 3px; left: var(--l, 0%); width: var(--w, 0%); border-radius: 3px;
  background: repeating-linear-gradient(90deg, #c9c2b4 0 3px, rgba(201,194,180,.35) 3px 5px);
}
.lat-blk.is-ai { background: repeating-linear-gradient(90deg, var(--forest) 0 3px, rgba(10,61,38,.45) 3px 5px); }
.lat-gap {
  position: absolute; top: 9px; height: 0; left: var(--l, 0%); width: var(--w, 0%);
  border-top: 1px solid var(--forest); opacity: var(--o, 0); transition: opacity .2s;
}
.lat-gap::before, .lat-gap::after { content: ""; position: absolute; top: -4px; width: 1px; height: 8px; background: var(--forest); }
.lat-gap::before { left: 0; } .lat-gap::after { right: 0; }
.lat-gap b {
  position: absolute; left: 50%; top: 3px; transform: translateX(-50%); white-space: nowrap;
  font: 500 11px/1 "Geist Mono", monospace; letter-spacing: .02em; color: var(--forest);
  font-variant-numeric: tabular-nums;
}

/* Bill: users climb, the bill line stays flat. Both draw in, hold, fade. */
.ui-bill { position: relative; height: 96px; }
.ui-bill svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.bill-grid line { stroke: var(--hair); stroke-width: 1; vector-effect: non-scaling-stroke; }
.bill-users, .bill-cost {
  fill: none; stroke-width: 2; stroke-linecap: round; vector-effect: non-scaling-stroke;
  stroke-dasharray: 1; stroke-dashoffset: 1;
  animation: bill-draw 5.2s cubic-bezier(.3,0,.2,1) infinite paused;
}
.bill-users { stroke: #c9c2b4; }
.bill-cost { stroke: var(--forest); }
.bill-lbl {
  position: absolute; right: 0; padding: 3px 7px; border-radius: 9999px;
  font-size: 11px; font-weight: 500; line-height: 1; opacity: 0;
  animation: bill-lbl 5.2s linear infinite paused;
}
.bill-lbl-u { top: -6px; background: rgba(20,23,15,.06); color: var(--graphite); }
.bill-lbl-c { bottom: 8px; background: rgba(10,61,38,.1); color: var(--forest); }
.live .bill-users, .live .bill-cost, .live .bill-lbl { animation-play-state: running; }
@keyframes bill-draw {
  0% { stroke-dashoffset: 1; opacity: 1; } 48% { stroke-dashoffset: 0; opacity: 1; }
  90% { stroke-dashoffset: 0; opacity: 1; } 100% { stroke-dashoffset: 0; opacity: 0; }
}
@keyframes bill-lbl { 0%, 44% { opacity: 0; } 52%, 90% { opacity: 1; } 100% { opacity: 0; } }

/* Free tier: three steps tick through, then the total. Timing on --i. */
.ui-steps { display: flex; flex-direction: column; gap: 8px; }
.step { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--smoke); }
.step i {
  width: 16px; height: 16px; border-radius: 50%; flex: none; box-sizing: border-box;
  border: 1.5px solid var(--stone); position: relative;
}
.step i::after {
  content: ""; position: absolute; left: 4px; top: 1.5px; width: 4px; height: 7px;
  border: solid var(--cream); border-width: 0 1.5px 1.5px 0; transform: rotate(45deg); opacity: 0;
}
.step-total {
  display: flex; justify-content: space-between; align-items: baseline; margin-top: 4px; padding-top: 10px;
  border-top: 1px solid var(--hair); font-size: 13px; color: var(--smoke);
}
.step-total b { font-size: 15px; color: var(--ink); font-variant-numeric: tabular-nums; }
.step.done { color: var(--ink); }
.step.done i { background: var(--forest); border-color: var(--forest); }
.step.done i::after { opacity: 1; }
.step-total.done { color: var(--graphite); }
.step-total.done b { color: var(--forest); }
.step, .step i, .step-total, .step-total b { transition: color .25s, background .25s, border-color .25s; }

/* Quality: a sample playing. Bars are generated by the page script. */
.ui-eq { display: flex; align-items: center; gap: 12px; height: 44px; margin-bottom: 14px; }
.eq-play {
  width: 30px; height: 30px; border-radius: 50%; flex: none; display: grid; place-items: center;
  background: var(--ink); color: var(--cream);
}
.eq-play svg { width: 13px; height: 13px; margin-left: 1px; }
.eq-bars { flex: 1; display: flex; align-items: center; gap: 3px; height: 100%; }
.eq-bars i {
  flex: 1; height: var(--h, 30%); border-radius: 2px; background: var(--forest); opacity: .85;
  animation: eq var(--t, .9s) ease-in-out var(--d, 0s) infinite alternate paused;
}
.live .eq-bars i { animation-play-state: running; }
@keyframes eq { from { transform: scaleY(.35); } to { transform: scaleY(1.15); } }
.price-trust .btn { margin-top: 0; }

@media (prefers-reduced-motion: reduce) {
  .bill-users, .bill-cost { animation: none; stroke-dashoffset: 0; }
  .bill-lbl { animation: none; opacity: 1; }
  .eq-bars i { animation: none; }
}
/* Two bars, indexed: the neutral fill and one accent, same as the charts. */
.cbar { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; }
.cbar-row { display: grid; grid-template-columns: 84px minmax(0,1fr) 34px; align-items: center; gap: 12px; font-size: 13px; }
.cbar-row span { color: var(--smoke); }
.cbar-row b { font-weight: 500; text-align: right; font-variant-numeric: tabular-nums; }
.cbar-row i {
  display: block; height: 18px; border-radius: 4px; width: 0;
  background: #c9c2b4; border: 1px solid var(--ink);
  transition: width 1.1s cubic-bezier(.2,0,.2,1) .15s;
}
.cbar-row.is-us i { background: var(--forest); }
.cbar-row.is-us span, .cbar-row.is-us b { color: var(--ink); font-weight: 500; }
.rise.in .cbar-row i { width: var(--w); }
.price-note { font-size: 12px; color: var(--ash); margin-top: 2px; }
.price-trust { align-items: flex-start; }
.price-trust .price-d { color: var(--graphite); }
.price-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 11px 6px 9px; border-radius: 9999px; font-size: 12px; font-weight: 500; line-height: 1;
  color: var(--forest); background: rgba(10,61,38,.08);
}
.price-badge svg { width: 13px; height: 13px; }
@media (max-width: 900px) {
  .price-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .price-compare { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .price-grid { grid-template-columns: minmax(0,1fr); }
  .price-card { padding: 22px 20px 20px; }
  .cbar-row { grid-template-columns: 72px minmax(0,1fr) 30px; }
}
@media (prefers-reduced-motion: reduce) { .cbar-row i { transition: none; } }

/* ── Placeholder ────────────────────────────────────── */
.ph {
  border: 1px dashed var(--stone); border-radius: 16px; background: var(--linen);
  padding: 24px; display: flex; flex-direction: column; gap: 8px; justify-content: center; min-height: 180px;
}
.ph .t { font: 400 11px/1 "Geist Mono", monospace; letter-spacing: .14em; text-transform: uppercase; color: var(--forest); }
.ph .w { font-size: 15px; font-weight: 500; }
.ph .s { font-size: 13px; line-height: 1.5; color: var(--smoke); }

/* ── Close + footer ─────────────────────────────────── */
.close { padding: clamp(64px,7vw,108px) 0; text-align: center; }
.close .display { margin: 0 auto; max-width: 17ch; }
.close .lede { margin: 20px auto 0; text-align: center; }
.close .row { display: flex; gap: 12px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }

.foot .brand .mark { fill: var(--forest); }
.foot .brand .word { fill: var(--ink); }
footer.foot { background: var(--linen); border-top: 1px solid var(--hair); padding: 26px 0; }
.foot-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.foot-meta { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; font-size: 14px; color: var(--smoke); }
.foot-meta .mono { letter-spacing: .05em; }
@media (max-width: 620px) { .foot-row { flex-direction: column; align-items: flex-start; gap: 14px; } }

@media (max-width: 640px) {
  /* The ch caps are tuned for the desktop measure; on a 326px column they only
     add ragged breaks, so headings take the full width. */
  .display, h2.sec, .lede, .body { max-width: none !important; }
}

/* ── Reveal ─────────────────────────────────────────── */
.rise { opacity: 0; transform: translateY(15px); transition: opacity .68s cubic-bezier(.2,0,.2,1), transform .68s cubic-bezier(.2,0,.2,1); }
.rise.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rise { opacity: 1; transform: none; transition: none; } }
