/* REDLINE. — one stylesheet, four pages. Tokens and contrast ratios: DESIGN.md. */

:root {
  --ground: #09090a;
  --ground-2: #111113;
  --ground-3: #18181b;
  --line: #2a2a2e;
  --ink: #edeae4;        /* 16.6:1 on ground */
  --ink-2: #a8a49e;      /* 8.0:1 on ground */
  --ink-3: #9a968f;      /* 6.8:1 on ground, 4.9:1 on the hottest glow — labels only */
  --red: #ff3b1f;        /* 5.7:1 on ground — signal only: redline, focus, live values */
  --red-deep: #7a1409;

  --display: 'Big Shoulders Display', 'Arial Narrow', sans-serif;
  --body: 'Geist', 'Segoe UI', system-ui, sans-serif;
  --mono: 'Geist Mono', ui-monospace, 'Cascadia Mono', monospace;

  --gutter: clamp(16px, 4vw, 56px);
  --max: 1440px;
  --hud-h: 64px;

  --load: 0;
  --heat: 0;
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font: 400 1.0625rem/1.6 var(--body);
  font-feature-settings: 'ss01';
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--hud-h);
  overflow-x: clip;
}
img, video, canvas, svg { display: block; max-width: 100%; }
figure { margin: 0; }
a { color: inherit; }
p { margin: 0 0 1em; }
h1, h2, h3 { margin: 0; font-weight: 900; }
button, input, select { font: inherit; color: inherit; }

:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

.sr-only {
  position: absolute !important; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip {
  position: absolute; left: var(--gutter); top: -60px; z-index: 60;
  background: var(--ink); color: var(--ground); padding: 12px 16px; min-height: 44px; font: 600 0.9rem var(--body);
}
.skip:focus { top: 12px; }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }

.label {
  font: 500 0.75rem/1.4 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.num { font-family: var(--mono); font-variant-numeric: tabular-nums; }
.hot { color: var(--red); }

/* ---------- header ---------- */
.site-head {
  position: fixed; inset: 0 0 auto; z-index: 40;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 10px var(--gutter);
  background: linear-gradient(rgba(9, 9, 10, 0.92), rgba(9, 9, 10, 0.72) 70%, rgba(9, 9, 10, 0));
  border-bottom: 1px solid transparent;
  transition: background-color 0.25s, border-color 0.25s;
}
.site-head[data-scrolled] { background: var(--ground); border-bottom-color: var(--line); }
.wordmark {
  display: inline-flex; align-items: center; min-height: 44px;
  font: 900 1.6rem/1 var(--display); letter-spacing: 0.02em; text-decoration: none; text-transform: uppercase;
}
.wordmark span { color: var(--red); }
.nav { display: flex; gap: clamp(4px, 2vw, 28px); }
.nav a {
  display: inline-flex; align-items: center; min-height: 44px; padding: 0 6px;
  font: 500 0.8125rem var(--mono); letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none;
  color: var(--ink-2);
}
.nav a:hover, .nav a[aria-current='page'] { color: var(--ink); }
.nav a[aria-current='page'] { box-shadow: inset 0 -2px 0 var(--red); }
.nav .home { display: none; }
@media (min-width: 720px) { .nav .home { display: inline-flex; } }

/* ---------- film / hero ---------- */
.film { position: relative; overflow: hidden; background: var(--ground); }
.film video, .film > img { width: 100%; height: 100%; object-fit: cover; }
.film-toggle {
  position: absolute; right: var(--gutter); bottom: 20px; z-index: 3;
  min-width: 44px; min-height: 44px; padding: 0 12px;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(9, 9, 10, 0.72); border: 1px solid var(--line); border-radius: 0;
  font: 500 0.7rem var(--mono); letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-2);
  cursor: pointer;
}
.film-toggle:hover { color: var(--ink); border-color: var(--ink-3); }

.hero {
  position: relative; min-height: 100svh; display: grid; align-items: end;
  padding: 96px 0 calc(var(--hud-h) + clamp(28px, 5vh, 64px));
}
.hero .film { position: absolute; inset: 0; }
.hero .film-toggle { bottom: calc(var(--hud-h) + 16px); }
.hero .film::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(9, 9, 10, 0.94) 0%, rgba(9, 9, 10, 0.78) 34%, rgba(9, 9, 10, 0.1) 70%),
    linear-gradient(0deg, rgba(9, 9, 10, 0.96) 0%, rgba(9, 9, 10, 0) 45%);
}
.hero .wrap { position: relative; z-index: 2; }
.hero h1 {
  font: 900 clamp(3.4rem, min(10vw, 16svh), 11rem)/0.84 var(--display);
  text-transform: uppercase; letter-spacing: -0.005em; max-width: 14ch;
}
.hero h1 .line { display: block; overflow: hidden; padding-bottom: 0.04em; }
.hero h1 .line > span { display: block; }
.hero .lede { max-width: 34rem; margin-top: clamp(16px, 3vh, 28px); color: var(--ink); font-size: clamp(1.05rem, 1.4vw, 1.2rem); }
.hero .lede b { font-weight: 600; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: clamp(16px, 3vh, 28px); }
.btn {
  display: inline-flex; align-items: center; gap: 10px; min-height: 48px; padding: 0 20px;
  font: 600 0.95rem var(--body); text-decoration: none; border: 1px solid var(--ink); background: var(--ink); color: var(--ground);
  cursor: pointer;
}
.btn:hover { background: #fff; }
.btn.ghost { background: transparent; color: var(--ink); border-color: rgba(237, 234, 228, 0.4); }
.btn.ghost:hover { border-color: var(--ink); }
.btn .arrow { font-family: var(--mono); }
.hint { margin-top: clamp(16px, 3.5vh, 36px); display: flex; align-items: center; gap: 12px; }
.hint::before { content: ''; width: 28px; height: 1px; background: var(--red); }

.page-hero { min-height: 82svh; }
.page-hero h1 { font-size: clamp(3rem, min(9vw, 17svh), 9.5rem); max-width: 15ch; }

/* ---------- stage: the one mechanism, full-bleed ---------- */
.stage { position: relative; height: 300vh; border-top: 1px solid var(--line); }
.stage-pin {
  position: sticky; top: 0; height: 100svh; overflow: hidden;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 36rem); align-items: center;
  padding: 88px var(--gutter) calc(var(--hud-h) + 24px);
}
/* the fan owns the frame: one square plate, sized off the viewport, hub left of centre */
.stage-fan { position: absolute; inset: 0; z-index: 0; }
.stage-fan .plate {
  --d: max(112svh, 64vw);
  position: absolute; width: var(--d); height: var(--d); max-width: none;
  left: calc(34vw - var(--d) / 2); top: calc(50svh - var(--d) / 2);
  -webkit-mask-image: radial-gradient(closest-side, #000 74%, transparent 100%);
  mask-image: radial-gradient(closest-side, #000 74%, transparent 100%);
}
.stage-pin::before { /* keeps the copy column on ground-dark, whatever the fan is doing */
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg, rgba(9, 9, 10, 0) 36%, rgba(9, 9, 10, 0.84) 56%, rgba(9, 9, 10, 0.95) 68%);
}
.stage-copy { position: relative; z-index: 2; grid-column: 2; }
.stage-copy h2 { font: 900 clamp(2.8rem, 5.4vw, 5.2rem)/0.9 var(--display); text-transform: uppercase; }
.stage-cue { margin: 14px 0 0; font: 900 clamp(1.5rem, 2.2vw, 2rem)/1 var(--display); text-transform: uppercase; letter-spacing: 0.02em; color: var(--ink); }
[data-state='redline'] .stage-cue { color: var(--red); }
.stage-copy > p:not(.stage-cue) { max-width: 30rem; color: var(--ink-2); margin-top: 16px; }
.gauge { margin-top: 24px; border-top: 1px solid var(--line); padding-top: 16px; }
.gauge-load { display: flex; align-items: baseline; gap: 14px; margin: 0; }
.gauge-load .big {
  font: 900 clamp(5rem, 11vw, 10rem)/0.8 var(--display); font-variant-numeric: tabular-nums;
  color: color-mix(in srgb, var(--ink) calc(100% - var(--load) * 100%), var(--red));
  min-width: 3.1ch;
}
.gauge-rows { display: grid; grid-template-columns: repeat(3, auto); justify-content: start; gap: 6px 28px; margin: 18px 0 0; }
.gauge-rows dt { font: 500 0.7rem var(--mono); letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); }
.gauge-rows dd { margin: 0; font: 500 1.35rem var(--mono); font-variant-numeric: tabular-nums; }
.stage-state { margin-top: 18px; }
.stage-state [data-t='state'] { color: var(--ink); }
[data-state='redline'] .stage-state [data-t='state'] { text-decoration: underline 2px var(--red); text-underline-offset: 4px; } /* red text is 4.0:1 on the hottest glow; ink + a red rule is not */
.stage-static { display: none; }

/* ---------- editorial rows ---------- */
.row {
  display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(16px, 3vw, 48px);
  align-items: center; padding: clamp(64px, 11vw, 160px) 0;
}
.row + .row { border-top: 1px solid var(--line); }
.row .media { grid-column: 1 / span 7; position: relative; }
.row .copy { grid-column: 9 / span 4; }
.row.flip .media { grid-column: 6 / span 7; grid-row: 1; }
.row.flip .copy { grid-column: 1 / span 4; grid-row: 1; }
.row.wide .media { grid-column: 1 / -1; }
.row.wide .copy { grid-column: 1 / span 6; }
.row .media img, .row .media video { width: 100%; height: auto; }
.row .media .film { aspect-ratio: 16 / 9; }
.row h2 {
  font: 900 clamp(2.4rem, 4.6vw, 4.4rem)/0.92 var(--display); text-transform: uppercase; margin-bottom: 20px;
}
.row h3 { font: 700 1.05rem/1.3 var(--body); margin: 28px 0 8px; }
.row .copy p { color: var(--ink-2); }
.row .copy p strong { color: var(--ink); font-weight: 600; }
.more {
  display: inline-flex; align-items: center; gap: 10px; min-height: 44px; margin-top: 8px;
  font: 500 0.8125rem var(--mono); letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none;
  border-bottom: 1px solid var(--red);
}
.caption { margin-top: 12px; }
.row.nine { align-items: start; }
.row.nine .nine-head { grid-column: 1 / span 5; margin-top: 36px; }
.row.nine .nine-list { grid-column: 7 / -1; margin-top: 36px; }

/* one number that carries a paragraph, set as type rather than a stat strip */
.figure-line { padding: clamp(72px, 12vw, 180px) 0; border-top: 1px solid var(--line); }
.figure-line .n {
  display: block; font: 900 clamp(5rem, 17vw, 16rem)/0.8 var(--display); font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.figure-line .n { margin-bottom: 0.14em; }   /* the comma's descender clears the label under it */
.figure-line p { max-width: 38rem; margin-top: 28px; color: var(--ink-2); font-size: 1.15rem; }
.figure-line p strong { color: var(--ink); font-weight: 600; }

/* ---------- spec table ---------- */
.spec { width: 100%; border-collapse: collapse; font-size: 0.98rem; }
.spec caption { text-align: left; padding-bottom: 16px; }
.spec th, .spec td { text-align: left; padding: 14px 12px 14px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.spec thead th { font: 500 0.72rem var(--mono); letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); }
.spec tbody th { font-weight: 500; color: var(--ink-2); width: 30%; }
.spec td { font-family: var(--mono); font-size: 0.95rem; font-variant-numeric: tabular-nums; white-space: nowrap; }
.spec td.diff { color: var(--red); }
.spec td.muted { color: var(--ink-2); }
.table-scroll { overflow-x: auto; }

/* against today: paired bars, real ratios */
.versus { display: grid; gap: 22px; margin-top: 12px; }
.versus div { display: grid; grid-template-columns: 9rem 1fr; gap: 6px 16px; align-items: center; }
.versus dt { grid-row: span 2; font-weight: 500; color: var(--ink-2); }
.versus dd { margin: 0; display: grid; grid-template-columns: 1fr 7.5rem; gap: 12px; align-items: center; font: 500 0.85rem var(--mono); }
.versus i { display: block; height: 10px; background: var(--ink); width: 100%; }
.versus .then i { background: var(--line); }
.versus .then { color: var(--ink-3); }

/* ---------- chart ---------- */
.chart-wrap { max-width: 880px; }
.chart { width: 100%; height: auto; overflow: visible; }
.chart .grid line { stroke: var(--line); stroke-width: 1; }
.chart .axis text { fill: var(--ink-3); font: 500 14px var(--mono); }
.chart .curve { fill: none; stroke: var(--ink); stroke-width: 2.5; stroke-linejoin: round; }
.chart .quiet { fill: rgba(237, 234, 228, 0.04); }
.chart .quiet-l { fill: var(--ink-3); font: 500 14px var(--mono); letter-spacing: 0.06em; text-transform: uppercase; }
.chart .mark { fill: var(--ground); stroke: var(--ink); stroke-width: 2; }
.chart .mark-l { fill: var(--ink-2); font: 500 14px var(--mono); }
.chart .now { fill: var(--red); stroke: var(--ground); stroke-width: 3; }

/* ---------- lists ---------- */
.bom { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.bom li { display: grid; grid-template-columns: 11rem 1fr; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.bom li span:first-child { font: 500 0.75rem/1.9 var(--mono); letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); }
.days { margin: 0; padding: 0; list-style: none; display: grid; gap: 0; border-top: 1px solid var(--line); }
.days li { display: grid; grid-template-columns: 7rem 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.days b { font: 600 0.8rem/1.9 var(--mono); letter-spacing: 0.06em; text-transform: uppercase; color: var(--red); }
.days p { margin: 0; color: var(--ink-2); }
.days p strong { color: var(--ink); font-weight: 600; }

/* ---------- order ---------- */
.order { border: 1px solid var(--line); padding: clamp(20px, 3vw, 36px); background: var(--ground-2); }
.order .price { font: 900 clamp(3.4rem, 7vw, 6rem)/0.9 var(--display); color: var(--ink) !important; margin: 8px 0 0; }
.order[data-holding] .field, .order[data-holding] [type='submit'], .order[data-holding] .fine { display: none; }
.field { display: grid; gap: 8px; margin-top: 20px; }
.field label, .field legend { font: 500 0.75rem var(--mono); letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-2); }
.field input, .field select {
  min-height: 48px; padding: 0 14px; background: var(--ground); border: 1px solid #4a4a50; border-radius: 0; color: var(--ink);
  width: 100%; min-width: 0;
}
.field input:focus-visible, .field select:focus-visible { outline: 2px solid var(--red); outline-offset: 1px; }
.order .btn { margin-top: 24px; width: 100%; justify-content: center; }
.order .fine { margin-top: 14px; font-size: 0.85rem; color: var(--ink-3); }
.held { margin-top: 20px; padding: 18px; border-left: 3px solid var(--red); background: var(--ground-3); }
.held p { margin: 0 0 10px; }
.linkish {
  background: none; border: 0; padding: 0; min-height: 44px; cursor: pointer;
  font: 500 0.8rem var(--mono); letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-2);
  text-decoration: underline; text-underline-offset: 4px;
}

/* ---------- next page: a band, not another close ---------- */
.next { border-top: 1px solid var(--line); }
.next a { display: grid; gap: 10px; padding-top: clamp(56px, 9vw, 120px); padding-bottom: clamp(56px, 9vw, 120px); text-decoration: none; }
.next-t { font: 900 clamp(3rem, 10vw, 9rem)/0.86 var(--display); text-transform: uppercase; justify-self: end; text-align: right; }
.next-t .arrow { font-family: var(--mono); font-weight: 400; color: var(--red); display: inline-block; transition: transform 0.3s; }
.next a:hover .arrow, .next a:focus-visible .arrow { transform: translateX(0.12em); }

/* ---------- close band + footer ---------- */
.close { padding: clamp(80px, 12vw, 180px) 0; border-top: 1px solid var(--line); }
.close h2 { font: 900 clamp(3rem, 9vw, 8.5rem)/0.86 var(--display); text-transform: uppercase; max-width: 12ch; }
.close h2 .price-line { display: block; margin-top: 0.2em; }   /* the $ rises above cap height */
.close p { max-width: 34rem; color: var(--ink-2); margin-top: 24px; }
.site-foot { border-top: 1px solid var(--line); padding: 48px 0 32px; color: var(--ink-2); font-size: 0.92rem; }
.site-foot .wrap { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; }
.site-foot ul { list-style: none; margin: 0; padding: 0; }
.site-foot li a { display: inline-flex; align-items: center; min-height: 44px; }
.site-foot .wordmark { font-size: 2.4rem; color: var(--ink); }
.site-foot .legal { grid-column: 1 / -1; margin-top: 16px; color: var(--ink-3); font-size: 0.82rem; }

/* ---------- HUD: the live readout, every page ---------- */
.hud {
  position: fixed; inset: auto 0 0; z-index: 45; height: var(--hud-h);
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: clamp(12px, 2.5vw, 40px);
  padding: 0 var(--gutter);
  background: var(--ground); border-top: 1px solid var(--line);
  font-family: var(--mono);
}
.hud::before { /* the load bar: a thin rail along the top edge, red past the redline */
  content: ''; position: absolute; left: 0; right: 0; top: -1px; height: 2px;
  background: linear-gradient(90deg, var(--ink-2) 0 85%, var(--red) 85% 100%);
  transform-origin: left; transform: scaleX(var(--load));
}
.hud::after { /* the redline tick itself */
  content: ''; position: absolute; left: 85%; top: -7px; width: 1px; height: 7px; background: var(--red);
}
.hud-state { margin: 0; display: flex; align-items: center; gap: 10px; min-width: 8.5rem;
  font: 600 0.75rem var(--mono); letter-spacing: 0.12em; text-transform: uppercase; }
.hud-state i { width: 8px; height: 8px; border-radius: 50%; background: var(--ink-3); }
[data-state='working'] .hud-state i { background: var(--ink); }
[data-state='redline'] .hud-state i { background: var(--red); box-shadow: 0 0 12px var(--red); }
[data-state='redline'] .hud-state span { color: var(--red); }
.hud-read { display: flex; gap: clamp(14px, 3vw, 44px); margin: 0; }
.hud-read div { display: flex; align-items: baseline; gap: 10px; }
.hud-read dt { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); }
.hud-read dd { margin: 0; font-size: 1.05rem; font-weight: 500; font-variant-numeric: tabular-nums; min-width: 5.2ch; }
.hud-toggle {
  min-height: 44px; min-width: 44px; padding: 0 12px; background: transparent; border: 1px solid var(--line);
  font: 500 0.7rem var(--mono); letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-2); cursor: pointer;
}
.hud-toggle:hover { color: var(--ink); border-color: var(--ink-3); }
.hud[data-off] .hud-read, .hud[data-off]::before { opacity: 0.35; }

/* the heat: one WebGL2 pass, added over the page with screen, never over the HUD */
.heat {
  position: fixed; inset: 0; width: 100%; height: 100%; z-index: 30; pointer-events: none;
  mix-blend-mode: screen; opacity: 0; transition: opacity 0.4s;
}
.heat.on { opacity: 1; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .row .media, .row.flip .media { grid-column: 1 / -1; grid-row: auto; }
  .row .copy, .row.flip .copy, .row.wide .copy, .row.nine .nine-head, .row.nine .nine-list { grid-column: 1 / -1; grid-row: auto; }
  .row.nine .nine-list { margin-top: 0; }
  .stage-pin { grid-template-columns: 1fr; align-content: end; gap: 12px; padding-top: 72px; }
  .stage-copy { grid-column: 1; }
  .stage-fan .plate { --d: max(104vw, 50svh); left: calc(50vw - var(--d) / 2); top: calc(29svh - var(--d) / 2); }
  .stage-pin::before { background: linear-gradient(180deg, rgba(9, 9, 10, 0) 34%, rgba(9, 9, 10, 0.86) 52%, rgba(9, 9, 10, 0.96) 62%); }
  .stage-copy h2 { font-size: clamp(2.2rem, 9vw, 3.4rem); }
  .stage-cue { font-size: 1.3rem; margin-top: 8px; }
  .stage-copy > p:not(.stage-cue) { font-size: 0.92rem; margin-top: 8px; }
  .gauge { margin-top: 14px; padding-top: 10px; }
  .gauge-load .big { font-size: clamp(4rem, 20vw, 6rem); }
  .gauge-rows dd { font-size: 1.05rem; }
  .site-foot .wrap { grid-template-columns: 1fr 1fr; }
  .site-foot .brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  :root { --hud-h: 58px; }
  .wordmark { font-size: 1.35rem; }
  .nav a { font-size: 0.75rem; padding: 0 4px; }
  .hero { padding-top: 96px; }
  .hero .film::after {
    background: linear-gradient(0deg, rgba(9, 9, 10, 0.97) 0%, rgba(9, 9, 10, 0.86) 48%, rgba(9, 9, 10, 0.2) 80%);
  }
  .hud { grid-template-columns: 1fr auto; gap: 10px; }
  .hud-state { display: none; }
  .hud-read { gap: 12px; justify-content: space-between; }
  .hud-read div { flex-direction: column; gap: 0; }
  .hud-read dt { font-size: 0.6rem; }
  .hud-read dd { font-size: 0.9rem; min-width: 0; }
  .hud-toggle { font-size: 0; padding: 0; width: 44px; }
  .hud-toggle::before { content: attr(data-short); font-size: 0.7rem; }
  .bom li, .days li { grid-template-columns: 1fr; gap: 4px; }
  .versus div { grid-template-columns: 1fr; }
  .versus dt { grid-row: auto; }
  .versus dd { grid-template-columns: 1fr 6.5rem; }
  .gauge-rows { grid-template-columns: repeat(3, auto); gap: 4px 16px; }
  .gauge-rows dd { font-size: 0.95rem; }
  .chart .axis text, .chart .quiet-l, .chart .mark-l { font-size: 24px; }   /* ≈ 12 px at phone width */
  .chart-wrap { padding-left: 12px; }   /* the y labels sit left of the plot, keep them inside the gutter */
  .spec th, .spec td { font-size: 0.82rem; padding-right: 8px; }
  .spec td { white-space: normal; }
  .spec td:nth-child(2) { min-width: 8.5rem; }
  .spec th:nth-child(4), .spec td:nth-child(4) { display: none; }   /* the bars above carry the difference */
}

/* ---------- reduced motion: no mechanism, no shader, a static frame ---------- */
@media (prefers-reduced-motion: reduce) {
  .hud, .heat, .film-toggle { display: none; }
  body { padding-bottom: 0; }
  .stage { height: auto; }
  .stage-pin { position: static; height: auto; grid-template-columns: 1fr; padding-bottom: 72px; }
  .stage-pin::before, .stage-cue { display: none; }
  .stage-copy { grid-column: 1; }
  .stage-live { display: none; }
  .stage-static { display: block; }
  .stage-fan { display: none; }
}
.stage-static .pair { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; max-width: 640px; }
.stage-static figure { margin: 0; }
.stage-static img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.stage-static figcaption { margin-top: 10px; font: 500 0.85rem/1.5 var(--mono); color: var(--ink-2); }
.stage-static figcaption b { display: block; color: var(--ink); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
