/* ══════════════════════════════════════════════════════════════
   BLZ INO200 · "INSTRUMENT"
   A dark optical-instrument aesthetic: near-black ground, one cold
   accent, data set in mono, headlines in expanded Archivo.
   ══════════════════════════════════════════════════════════════ */

:root {
  /* ground */
  --ink-000: #04060A;
  --ink-100: #070B11;
  --ink-200: #0B111A;
  --ink-300: #111A25;
  --ink-400: #16222F;

  /* ink */
  --fg:      #E9F2F8;
  --fg-dim:  #92A6B7;
  --fg-mute: #6E8092;   /* ~4.98:1 on --ink-000, clears AA at small sizes */

  /* accent */
  --cy:      #5BE1FF;
  --cy-deep: #1798BE;
  --cy-glow: rgba(91, 225, 255, .35);
  --amber:   #FFC46B;

  --line:      rgba(125, 180, 214, .13);
  --line-soft: rgba(125, 180, 214, .07);

  --display: 'Archivo', system-ui, sans-serif;
  --body:    'Inter Tight', system-ui, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, monospace;

  --gut: clamp(20px, 5vw, 76px);
  --maxw: 1400px;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* ── reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--ink-000);
  color: var(--fg);
  font-family: var(--body);
  font-size: clamp(15px, .48vw + 13.4px, 17px);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
b, strong { font-weight: 600; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip {
  position: fixed; top: 10px; left: 10px; z-index: 999;
  padding: 10px 16px; background: var(--cy); color: #04060A;
  font: 600 13px/1 var(--mono); border-radius: 6px;
  transform: translateY(-200%); transition: transform .25s var(--ease);
}
.skip:focus { transform: none; }

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

/* film grain over the whole page — ties the WebGL and the DOM together */
.grain {
  position: fixed; inset: -50%; z-index: 60; pointer-events: none;
  opacity: .038; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 6s steps(6) infinite;
}
@keyframes grainShift {
  0%   { transform: translate(0,0) }
  16%  { transform: translate(-3%,-2%) }
  33%  { transform: translate(2%,-4%) }
  50%  { transform: translate(-2%,3%) }
  66%  { transform: translate(3%,1%) }
  83%  { transform: translate(-1%,-3%) }
}

/* ── typography primitives ─────────────────────────────────── */
.h2 {
  font-family: var(--display);
  font-variation-settings: 'wdth' 108, 'wght' 560;
  font-size: clamp(30px, 4.6vw, 68px);
  line-height: .98;
  letter-spacing: -.028em;
  text-wrap: balance;
}
.kicker {
  font: 500 11px/1 var(--mono);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cy);
  margin-bottom: 22px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font: 500 11px/1 var(--mono);
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--fg-dim);
  padding: 9px 15px 9px 12px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(8, 14, 22, .5);
  backdrop-filter: blur(10px);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cy);
  box-shadow: 0 0 0 0 var(--cy-glow);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 var(--cy-glow) }
  70%  { box-shadow: 0 0 0 9px rgba(91,225,255,0) }
  100% { box-shadow: 0 0 0 0 rgba(91,225,255,0) }
}

/* ── buttons ───────────────────────────────────────────────── */
.btn {
  --bg: transparent; --bd: var(--line); --tx: var(--fg);
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px;
  font: 500 14px/1 var(--body); letter-spacing: .005em;
  color: var(--tx);
  background: var(--bg);
  border: 1px solid var(--bd);
  border-radius: 100px;
  overflow: hidden;
  transition: color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease-out);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; transition: transform .35s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }
.btn::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(120% 160% at 50% 120%, var(--cy) 0%, var(--cy-deep) 55%, transparent 100%);
  transform: translateY(72%); opacity: 0;
  transition: transform .5s var(--ease-out), opacity .4s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  --bg: var(--cy); --bd: var(--cy); --tx: #03080D;
  font-weight: 600;
  box-shadow: 0 6px 34px -10px var(--cy-glow);
}
.btn--primary:hover { box-shadow: 0 12px 44px -10px var(--cy-glow); }
.btn--ghost { --bd: var(--line); }
.btn--ghost:hover { --bd: rgba(91,225,255,.5); color: var(--cy); }
.btn--sm { padding: 11px 19px; font-size: 13px; }
.btn--block { width: 100%; justify-content: center; margin-top: 4px; }

/* ── nav ───────────────────────────────────────────────────── */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 16px var(--gut);
  transition: background .45s var(--ease), border-color .45s var(--ease), padding .45s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(4, 6, 10, .72);
  backdrop-filter: blur(18px) saturate(1.2);
  border-bottom-color: var(--line);
  padding-top: 11px; padding-bottom: 11px;
}
.nav__mark { display: flex; align-items: center; gap: 12px; }
/* House mark first, product designation second — the page belongs to
   Bonesphere, the scanner is what it is about. */
.nav__logo { height: 13px; width: auto; flex: none; }
.nav__wordmark {
  font: 500 12px/1 var(--mono); letter-spacing: .16em; color: var(--fg-dim);
  padding-left: 12px; border-left: 1px solid var(--line);
}
@media (max-width: 620px) { .nav__wordmark { display: none; } }
.nav__links { display: flex; gap: 30px; }
.nav__links a {
  position: relative;
  font: 500 13px/1 var(--body);
  color: var(--fg-dim);
  padding: 6px 0;
  transition: color .28s var(--ease);
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--cy);
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease-out);
}
.nav__links a:hover { color: var(--fg); }
.nav__links a:hover::after,
.nav__links a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav__links a.is-active { color: var(--cy); }
@media (max-width: 940px) { .nav__links { display: none; } }

/* ══════════════════════════ HERO ══════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  padding: 140px var(--gut) clamp(56px, 8vh, 96px);
  overflow: hidden;
  isolation: isolate;
}
.hero__canvas {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%;
  opacity: 0; transition: opacity 1.4s var(--ease);
}
.hero__canvas.is-ready { opacity: 1; }
.hero__fallback { position: absolute; inset: 0; display: grid; place-items: center; z-index: -2; }
.hero__fallback img { width: min(70%, 760px); opacity: .8; }

/* faint vertical rules — the instrument-panel scaffold behind everything */
.hero__grid {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  display: grid; grid-template-columns: repeat(5, 1fr);
  padding: 0 var(--gut);
  max-width: var(--maxw); margin-inline: auto;
}
.hero__grid span { border-left: 1px solid var(--line-soft); }
.hero__grid span:last-child { border-right: 1px solid var(--line-soft); }

/* Scrim: seats the headline on solid ground while leaving the upper frame —
   where the arch lives — almost untouched. */
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    linear-gradient(to top,
      var(--ink-000) 0%,
      rgba(4,6,10,.97) 26%,
      rgba(4,6,10,.72) 42%,
      rgba(4,6,10,.18) 58%,
      transparent 74%),
    radial-gradient(140% 100% at 50% 0%, transparent 46%, rgba(4,6,10,.85) 100%);
}

.hero__inner {
  position: relative;
  width: 100%; max-width: var(--maxw); margin-inline: auto;
}
.hero__title {
  font-family: var(--display);
  font-variation-settings: 'wdth' 112, 'wght' 620;
  font-size: clamp(42px, 8.4vw, 132px);
  line-height: .90;
  letter-spacing: -.038em;
  margin: 26px 0 0;
}
.hero__title em {
  font-style: normal;
  color: var(--cy);
  font-variation-settings: 'wdth' 112, 'wght' 420;
}
.hero__title .line { display: block; overflow: hidden; padding-bottom: .04em; }
.hero__title .line > span {
  display: block;
  transform: translateY(105%);
  animation: riseIn 1.15s var(--ease-out) forwards;
}
.hero__title .line:nth-child(2) > span { animation-delay: .1s; }
@keyframes riseIn { to { transform: none } }

.hero__lead {
  max-width: 54ch; margin-top: 26px;
  color: var(--fg-dim);
  font-size: clamp(15px, 1.15vw, 19px);
  line-height: 1.58;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero__price {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 10px;
  margin-top: 26px;
  font-family: var(--mono);
}
.hero__price b {
  font-size: clamp(21px, 2vw, 27px); font-weight: 600;
  letter-spacing: -.01em;
}
.hero__price span {
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--fg-mute);
}

/* live telemetry panel */
.hud {
  position: absolute; right: var(--gut); bottom: clamp(56px, 8vh, 96px);
  width: 232px; padding: 16px 18px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(7, 11, 17, .62);
  backdrop-filter: blur(14px);
  font-family: var(--mono);
  opacity: 0; animation: fadeIn 1s var(--ease) .9s forwards;
}
@keyframes fadeIn { to { opacity: 1 } }
.hud__row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 10.5px; letter-spacing: .12em; padding: 3px 0;
}
.hud__row span { color: var(--fg-mute); }
.hud__row b { color: var(--cy); font-weight: 500; font-variant-numeric: tabular-nums; }
.hud__bar { height: 2px; background: var(--ink-300); margin: 10px 0 9px; overflow: hidden; }
.hud__bar i { display: block; height: 100%; width: 0%; background: var(--cy); box-shadow: 0 0 10px var(--cy-glow); }
.hud__note { font-size: 9.5px; line-height: 1.5; color: var(--fg-mute); letter-spacing: .04em; }
@media (max-width: 1100px) { .hud { display: none; } }

.scrollcue {
  position: absolute; left: 50%; bottom: 22px; translate: -50% 0;
  width: 22px; height: 36px; border: 1px solid var(--line); border-radius: 12px;
  display: grid; place-items: start center; padding-top: 7px;
}
.scrollcue span { width: 2px; height: 6px; border-radius: 2px; background: var(--cy); animation: cue 1.9s var(--ease) infinite; }
@keyframes cue { 0% { transform: translateY(0); opacity: 0 } 30% { opacity: 1 } 100% { transform: translateY(15px); opacity: 0 } }
@media (max-width: 700px) { .scrollcue { display: none } }

/* ══════════════════════════ METRICS ══════════════════════════ */
.metrics { border-block: 1px solid var(--line); background: var(--ink-100); }
.metrics__list {
  list-style: none; padding: 0; margin-inline: auto; max-width: var(--maxw);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.metrics__list li {
  padding: clamp(24px, 3.4vw, 44px) var(--gut);
  border-left: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 8px;
}
.metrics__list li:first-child { border-left: 0; }
.metrics__list b {
  font-family: var(--display);
  font-variation-settings: 'wdth' 100, 'wght' 500;
  font-size: clamp(30px, 3.6vw, 54px);
  line-height: 1; letter-spacing: -.03em;
  font-variant-numeric: tabular-nums;
}
.metrics__list span {
  font: 500 10.5px/1.4 var(--mono);
  letter-spacing: .16em; text-transform: uppercase; color: var(--fg-mute);
}
@media (max-width: 860px) {
  .metrics__list { grid-template-columns: repeat(2, 1fr); }
  .metrics__list li:nth-child(3) { border-left: 0; }
  .metrics__list li:nth-child(n+3) { border-top: 1px solid var(--line); }
}

/* ══════════════════════════ SECTIONS ══════════════════════════ */
.section {
  max-width: var(--maxw); margin-inline: auto;
  padding: clamp(64px, 7.4vw, 116px) var(--gut);
  scroll-margin-top: 84px;
}
.section__head { max-width: 760px; margin-bottom: clamp(38px, 4.4vw, 62px); }
.section__lead {
  margin-top: 22px; color: var(--fg-dim);
  font-size: clamp(15px, 1.05vw, 18px);
  max-width: 58ch;
}

/* ── stages ────────────────────────────────────────────────── */
.stages {
  list-style: none; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
}
.stage {
  background: var(--ink-100);
  padding: clamp(26px, 3vw, 42px);
  display: flex; flex-direction: column;
  transition: background .5s var(--ease);
}
.stage:hover { background: var(--ink-200); }
.stage__no {
  font: 500 10.5px/1 var(--mono); letter-spacing: .2em; color: var(--cy);
}
.stage__viz { margin: 22px 0 26px; }
.stage__viz svg { width: 100%; height: auto; overflow: visible; }
.stage h3 {
  font-family: var(--display);
  font-variation-settings: 'wdth' 104, 'wght' 560;
  font-size: clamp(20px, 1.7vw, 26px); letter-spacing: -.02em; line-height: 1.1;
  margin-bottom: 12px;
}
.stage p { color: var(--fg-dim); font-size: 15px; }
@media (max-width: 900px) { .stages { grid-template-columns: 1fr; } }

/* stage svg motion */
.proj-rays path { stroke: var(--cy); stroke-width: 1; fill: none; opacity: .30; }
.proj-surface { stroke: var(--fg); stroke-width: 1.6; fill: none; opacity: .5; }
.proj-src { fill: var(--cy); }
.stage.is-in .proj-rays path {
  animation: rayFlick 2.6s var(--ease) infinite;
}
.proj-rays path:nth-child(2) { animation-delay: .12s !important }
.proj-rays path:nth-child(3) { animation-delay: .24s !important }
.proj-rays path:nth-child(4) { animation-delay: .36s !important }
.proj-rays path:nth-child(5) { animation-delay: .48s !important }
.proj-rays path:nth-child(6) { animation-delay: .6s !important }
@keyframes rayFlick { 0%,100% { opacity: .18 } 50% { opacity: .75 } }

.cap-frame { stroke: var(--line); stroke-width: 1.4; fill: none; }
.cap-grid path { stroke: var(--line-soft); stroke-width: 1; }
.cap-trace {
  stroke: var(--cy); stroke-width: 1.8; fill: none;
  stroke-dasharray: 260; stroke-dashoffset: 260;
}
.stage.is-in .cap-trace { animation: traceDraw 3.4s var(--ease) infinite; }
@keyframes traceDraw { 0% { stroke-dashoffset: 260 } 55%,100% { stroke-dashoffset: 0 } }
.cap-dot { fill: var(--amber); }
.stage.is-in .cap-dot { animation: dotRun 3.4s var(--ease) infinite; }
@keyframes dotRun {
  0%   { transform: translate(0,0) }
  55%  { transform: translate(108px,-38px) }
  100% { transform: translate(108px,-38px) }
}

.mesh-tri path { stroke: var(--cy); stroke-width: 1.2; fill: rgba(91,225,255,.06); stroke-dasharray: 170; stroke-dashoffset: 170; }
.stage.is-in .mesh-tri path { animation: meshDraw 3.2s var(--ease) infinite; }
.mesh-tri path:nth-child(2) { animation-delay: .18s !important }
.mesh-tri path:nth-child(3) { animation-delay: .36s !important }
.mesh-tri path:nth-child(4) { animation-delay: .54s !important }
@keyframes meshDraw { 0% { stroke-dashoffset: 170 } 50%,100% { stroke-dashoffset: 0 } }
.mesh-pts circle { fill: var(--fg); }
.stage.is-in .mesh-pts circle { animation: ptPop 3.2s var(--ease) infinite; }
@keyframes ptPop { 0%,10% { r: 0 } 25%,100% { r: 2.6 } }

/* ── screen (video in an instrument bezel) ─────────────────── */
/* Capped at the source width so the footage renders about 1:1 — upscaling a
   864px capture across a 1300px column just makes it mushy. */
.screen { margin: 0 auto clamp(34px, 4.4vw, 60px); max-width: 900px; position: relative; }
/* Screen spill. Kept narrow on purpose: a glow wider than the column runs
   into the page's overflow clip and ends on a straight edge. */
.screen::before {
  content: ''; position: absolute; inset: 8% -2% -14%; z-index: -1; pointer-events: none;
  background: radial-gradient(60% 55% at 50% 55%, rgba(91,225,255,.16), transparent 72%);
  filter: blur(24px);
}
.screen__bezel {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--ink-200);
  overflow: hidden;
  box-shadow: 0 50px 110px -55px rgba(0,0,0,.98), 0 0 0 6px rgba(9,14,21,.6);
}
.screen__chrome {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--ink-100);
  font: 400 10.5px/1 var(--mono); letter-spacing: .13em;
  color: var(--fg-mute);
}
.screen__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cy); flex: none; }
.screen__path { flex: 1; text-transform: uppercase; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.screen__live {
  color: var(--amber); letter-spacing: .2em;
  display: inline-flex; align-items: center; gap: 6px;
}
.screen__live::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--amber);
  animation: recBlink 1.8s steps(1) infinite;
}
@keyframes recBlink { 0%,55% { opacity: 1 } 56%,100% { opacity: .15 } }
.screen__video {
  width: 100%; height: auto;
  /* the source footage is a bright UI; nudge it toward the page's ground */
  filter: saturate(1.05) contrast(1.03) brightness(.94);
}
/* a slow sweep across the panel — reads as a live readout, not a decal */
.screen__scan {
  position: absolute; inset: 38px 0 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(91,225,255,.10) 48%, transparent 100%);
  height: 34%;
  animation: screenSweep 7s var(--ease) infinite;
  mix-blend-mode: screen;
}
@keyframes screenSweep {
  0%   { transform: translateY(-40%); opacity: 0 }
  12%  { opacity: 1 }
  88%  { opacity: 1 }
  100% { transform: translateY(300%); opacity: 0 }
}
.screen figcaption {
  margin-top: 16px;
  font: 400 11.5px/1.6 var(--mono); letter-spacing: .07em; color: var(--fg-mute);
  max-width: 74ch;
}

/* ── plates (real scan evidence) ───────────────────────────── */
.plates {
  list-style: none; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.6vw, 22px);
}
.plate figure {
  margin: 0; height: 100%;
  border: 1px solid var(--line); border-radius: 12px;
  background: var(--ink-100);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .45s var(--ease), transform .45s var(--ease-out);
}
.plate figure:hover { border-color: rgba(91,225,255,.28); transform: translateY(-3px); }
.plate img {
  width: 100%; height: auto; display: block;
  border-bottom: 1px solid var(--line);
  transition: transform .8s var(--ease-out);
}
.plate figure:hover img { transform: scale(1.03); }
.plate figcaption { padding: 18px 20px 20px; display: grid; gap: 5px; }
.plate figcaption b {
  font-family: var(--display);
  font-variation-settings: 'wdth' 102, 'wght' 580;
  font-size: 17px; letter-spacing: -.015em;
}
.plate figcaption span { font-size: 13.5px; color: var(--fg-dim); }
@media (max-width: 880px) { .plates { grid-template-columns: 1fr; } }

/* ── split (film + prose) ──────────────────────────────────── */
.split {
  margin-top: clamp(44px, 5.5vw, 78px);
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: clamp(26px, 4vw, 62px); align-items: start;
}
.split__film { margin: 0; }
.split__film video {
  width: 100%; height: auto; display: block;
  border: 1px solid var(--line); border-radius: 12px;
  background: #000;
}
.split__film figcaption {
  margin-top: 14px; font: 400 11px/1.5 var(--mono); letter-spacing: .1em; color: var(--fg-mute);
}
.split__h {
  font-family: var(--display);
  font-variation-settings: 'wdth' 104, 'wght' 560;
  font-size: clamp(22px, 2.4vw, 34px); line-height: 1.05; letter-spacing: -.025em;
  margin-bottom: 18px;
}
.split__body p { color: var(--fg-dim); margin-bottom: 14px; font-size: 15.5px; }
.split__body p b { color: var(--fg); font-weight: 600; }
.detail { margin: 26px 0 0; }
.detail img {
  width: 100%; height: auto; border: 1px solid var(--line); border-radius: 10px;
}
.detail figcaption {
  margin-top: 10px; font: 400 10.5px/1.5 var(--mono); letter-spacing: .08em; color: var(--fg-mute);
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

/* ── module switcher ───────────────────────────────────────── */
.modules {
  display: grid; grid-template-columns: 250px minmax(0, 1fr);
  gap: clamp(20px, 2.6vw, 40px);
  align-items: start;
}
.modules__index { display: grid; gap: 1px; background: var(--line); border-block: 1px solid var(--line); }
.modules__index button {
  appearance: none; border: 0; width: 100%; text-align: left;
  background: var(--ink-000); color: var(--fg-dim);
  font: 500 13.5px/1.2 var(--body);
  padding: 12px 12px 12px 10px;
  display: flex; align-items: baseline; gap: 11px;
  cursor: pointer;
  transition: background .3s var(--ease), color .3s var(--ease), padding-left .3s var(--ease);
}
.modules__index button i {
  font: 400 10px/1 var(--mono); font-style: normal; letter-spacing: .12em;
  color: var(--fg-mute); flex: none;
  transition: color .3s var(--ease);
}
.modules__index button:hover { background: var(--ink-100); color: var(--fg); padding-left: 16px; }
.modules__index button[aria-selected="true"] {
  background: var(--ink-200); color: var(--cy);
  box-shadow: inset 2px 0 0 var(--cy);
  padding-left: 16px;
}
.modules__index button[aria-selected="true"] i { color: var(--cy); }

.modules__stage { position: sticky; top: 96px; }
.modules__frame {
  position: relative; isolation: isolate;
  border: 1px solid var(--line); border-radius: 14px;
  background: var(--ink-100);
  padding: clamp(14px, 1.6vw, 22px);
  overflow: hidden;
}
/* light spilling off a lit panel in a dark room */
.modules__frame::before {
  content: ''; position: absolute; inset: -30% -10% -10%; z-index: -1; pointer-events: none;
  background: radial-gradient(52% 46% at 50% 42%, rgba(91,225,255,.13), transparent 70%);
  filter: blur(20px);
}
.modules__tick {
  position: absolute; width: 13px; height: 13px; pointer-events: none;
  border: 1px solid var(--cy); opacity: .55;
}
.modules__tick--tl { top: 9px; left: 9px; border-right: 0; border-bottom: 0; }
.modules__tick--tr { top: 9px; right: 9px; border-left: 0; border-bottom: 0; }
.modules__tick--bl { bottom: 9px; left: 9px; border-right: 0; border-top: 0; }
.modules__tick--br { bottom: 9px; right: 9px; border-left: 0; border-top: 0; }
.modules__count {
  position: absolute; top: 12px; right: 30px; z-index: 2; pointer-events: none;
  font: 400 10px/1 var(--mono); letter-spacing: .16em; color: var(--fg-mute);
}
.modules__count b { color: var(--cy); font-weight: 500; }

.mod { margin: 0; }
.mod[hidden] { display: none; }
.mod img {
  width: 100%; height: auto; display: block;
  border-radius: 8px;
  border: 1px solid var(--line-soft);
  background: #F4F7FB;
  filter: brightness(.95) saturate(1.04);
  animation: modIn .55s var(--ease-out);
}
@keyframes modIn { from { opacity: 0; transform: scale(.985) } to { opacity: 1; transform: none } }
.mod figcaption {
  padding: 18px 6px 4px;
  display: grid; gap: 6px;
}
.mod figcaption b {
  font-family: var(--display);
  font-variation-settings: 'wdth' 104, 'wght' 580;
  font-size: clamp(18px, 1.6vw, 23px); letter-spacing: -.02em;
}
.mod figcaption span { color: var(--fg-dim); font-size: 14.5px; max-width: 68ch; }

@media (max-width: 900px) {
  .modules { grid-template-columns: 1fr; }
  .modules__stage { position: static; }
  .modules__index {
    display: flex; gap: 0; overflow-x: auto; background: none;
    border: 0; border-bottom: 1px solid var(--line);
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }
  .modules__index button {
    width: auto; white-space: nowrap; padding: 11px 15px;
    border-bottom: 2px solid transparent;
  }
  .modules__index button:hover,
  .modules__index button[aria-selected="true"] { padding-left: 15px; box-shadow: none; }
  .modules__index button[aria-selected="true"] { border-bottom-color: var(--cy); background: none; }
  .modules__index button i { display: none; }
}

/* ── specimen (annotated product) ──────────────────────────── */
.specimen { margin: 0; }
.specimen__stage {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    radial-gradient(90% 130% at 50% 50%, rgba(23, 152, 190, .09), transparent 68%),
    var(--ink-100);
  padding: clamp(40px, 7vw, 92px) clamp(20px, 4vw, 60px);
  overflow: hidden;
}
.specimen__stage::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(70% 70% at 50% 50%, #000 20%, transparent 78%);
}
.specimen__img {
  position: relative; width: 100%; height: auto;
  filter: drop-shadow(0 34px 60px rgba(0,0,0,.66));
}
.specimen__lines {
  position: absolute; inset: 0; width: 100%; height: 100%;
  fill: none; stroke: var(--cy); stroke-width: 1; opacity: .5;
}
.specimen__lines path { stroke-dasharray: 320; stroke-dashoffset: 320; }
.specimen.is-in .specimen__lines path { animation: leadDraw .9s var(--ease-out) forwards; }
.specimen__lines path:nth-child(2) { animation-delay: .12s !important }
.specimen__lines path:nth-child(3) { animation-delay: .24s !important }
.specimen__lines path:nth-child(4) { animation-delay: .36s !important }
@keyframes leadDraw { to { stroke-dashoffset: 0 } }

.specimen__notes { list-style: none; padding: 0; margin: 0; }
.specimen__notes li {
  position: absolute; left: var(--x); top: var(--y);
  transform: translate(-50%, -50%);
  display: flex; flex-direction: column; gap: 3px;
  text-align: center; white-space: nowrap;
  opacity: 0; translate: 0 8px;
  transition: opacity .6s var(--ease) var(--d, 0s), translate .6s var(--ease-out) var(--d, 0s);
}
.specimen.is-in .specimen__notes li { opacity: 1; translate: 0 0; }
.specimen__notes li:nth-child(1) { --d: .45s } .specimen__notes li:nth-child(2) { --d: .55s }
.specimen__notes li:nth-child(3) { --d: .65s } .specimen__notes li:nth-child(4) { --d: .75s }
.specimen__notes b { font: 600 12.5px/1 var(--body); }
.specimen__notes span { font: 400 10px/1.3 var(--mono); letter-spacing: .1em; color: var(--fg-mute); text-transform: uppercase; }
.specimen figcaption {
  margin-top: 18px;
  font: 400 11px/1.5 var(--mono); letter-spacing: .1em; color: var(--fg-mute);
}
@media (max-width: 820px) {
  .specimen__lines, .specimen__notes { display: none; }
}

/* ── tips ──────────────────────────────────────────────────── */
.tips { margin-top: clamp(56px, 7vw, 96px); }
.tips__title {
  font-family: var(--display);
  font-variation-settings: 'wdth' 104, 'wght' 540;
  font-size: clamp(20px, 2vw, 30px); letter-spacing: -.022em;
  margin-bottom: 28px;
}
.tips__list {
  list-style: none; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.tips__list li {
  padding: 26px 24px 28px;
  border: 1px solid var(--line); border-radius: 12px;
  background: var(--ink-100);
  position: relative; overflow: hidden;
  transition: border-color .4s var(--ease), transform .4s var(--ease-out);
}
.tips__list li::after {
  content: ''; position: absolute; inset: auto 0 0 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cy), transparent);
  transform: scaleX(0); transition: transform .55s var(--ease-out);
}
.tips__list li:hover { border-color: rgba(91,225,255,.3); transform: translateY(-3px); }
.tips__list li:hover::after { transform: scaleX(1); }
.tips__dim { font: 400 10.5px/1 var(--mono); letter-spacing: .14em; color: var(--cy); }
.tips__list b {
  display: block; margin: 12px 0 8px;
  font-family: var(--display);
  font-variation-settings: 'wdth' 100, 'wght' 600;
  font-size: 22px; letter-spacing: -.02em;
}
.tips__list p { color: var(--fg-dim); font-size: 14.5px; }
@media (max-width: 860px) { .tips__list { grid-template-columns: 1fr; } }

/* ── software ──────────────────────────────────────────────── */
.soft {
  margin-top: clamp(56px, 7vw, 100px);
  padding-top: clamp(44px, 5vw, 72px);
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 4vw, 64px); align-items: start;
}
.soft__shot { margin: 0; position: sticky; top: 96px; }
.soft__shot figcaption { margin-top: 14px; font: 400 11px/1.5 var(--mono); letter-spacing: .1em; color: var(--fg-mute); }

/* workflow rail */
.flux {
  padding: clamp(26px, 3vw, 40px);
  border: 1px solid var(--line); border-radius: 14px;
  background:
    radial-gradient(100% 70% at 0% 0%, rgba(23,152,190,.12), transparent 60%),
    linear-gradient(180deg, var(--ink-200), var(--ink-100));
  position: relative; overflow: hidden;
}
.flux::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(var(--line-soft) 1px, transparent 1px);
  background-size: 100% 34px;
  mask-image: linear-gradient(180deg, #000, transparent 80%);
}
.flux__title {
  position: relative;
  font: 500 10.5px/1 var(--mono); letter-spacing: .2em; text-transform: uppercase;
  color: var(--fg-mute); margin-bottom: 26px;
}
.flux__rail { list-style: none; padding: 0; margin: 0; position: relative; }
.flux__rail::before {
  content: ''; position: absolute; left: 13px; top: 12px; bottom: 24px; width: 1px;
  background: linear-gradient(180deg, var(--cy), rgba(91,225,255,.15));
  transform-origin: top; transform: scaleY(0);
  transition: transform 1.2s var(--ease-out) .15s;
}
.reveal.is-in .flux__rail::before { transform: scaleY(1); }
.flux__rail li {
  position: relative; padding: 0 0 30px 44px;
  display: grid; gap: 3px;
}
.flux__rail li:last-child { padding-bottom: 0; }
.flux__rail li::before {
  content: ''; position: absolute; left: 7px; top: 5px;
  width: 13px; height: 13px; border-radius: 50%;
  border: 1px solid var(--cy); background: var(--ink-000);
  box-shadow: 0 0 0 4px rgba(4,6,10,.9);
}
.flux__rail li::after {
  content: ''; position: absolute; left: 11px; top: 9px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--cy);
  opacity: 0; transform: scale(.4);
  transition: opacity .4s var(--ease) var(--fd), transform .5s var(--ease-out) var(--fd);
}
.flux__rail li:nth-child(1) { --fd: .35s } .flux__rail li:nth-child(2) { --fd: .6s }
.flux__rail li:nth-child(3) { --fd: .85s } .flux__rail li:nth-child(4) { --fd: 1.1s }
.reveal.is-in .flux__rail li::after { opacity: 1; transform: scale(1); }
.flux__no { font: 400 10px/1 var(--mono); letter-spacing: .18em; color: var(--cy); }
.flux__rail b {
  font-family: var(--display);
  font-variation-settings: 'wdth' 102, 'wght' 560;
  font-size: 19px; letter-spacing: -.015em;
}
.flux__meta { font: 400 12px/1.5 var(--mono); color: var(--fg-mute); letter-spacing: .03em; }
.flux__out {
  position: relative;
  margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 9px; flex-wrap: wrap;
}
.flux__out span { font: 500 10px/1 var(--mono); letter-spacing: .2em; text-transform: uppercase; color: var(--fg-mute); margin-right: 4px; }
.flux__out i {
  font: 500 11px/1 var(--mono); font-style: normal; letter-spacing: .12em;
  padding: 7px 11px; border: 1px solid var(--line); border-radius: 100px;
  color: var(--fg-dim);
}
.soft__list { list-style: none; padding: 0; display: grid; gap: 1px; background: var(--line); border-block: 1px solid var(--line); }
.soft__list li {
  background: var(--ink-000);
  padding: 17px 4px 17px 0;
  display: grid; gap: 4px;
  transition: background .35s var(--ease), padding-left .35s var(--ease);
}
.soft__list li:hover { background: var(--ink-100); padding-left: 14px; }
.soft__list b { font-size: 15px; font-weight: 600; }
.soft__list span { color: var(--fg-mute); font-size: 13.5px; }
@media (max-width: 940px) {
  .soft { grid-template-columns: 1fr; }
  .soft__shot { position: static; }
}

/* ── spec sheet ────────────────────────────────────────────── */
.specsheet { display: grid; grid-template-columns: 1.35fr .9fr; gap: clamp(28px, 4vw, 64px) clamp(28px, 4vw, 64px); align-items: start; }
.spec--feat { margin-top: clamp(28px, 3vw, 44px); }
.spec caption {
  text-align: left; padding: 0 8px 12px;
  font: 500 10.5px/1 var(--mono); letter-spacing: .2em; text-transform: uppercase;
  color: var(--fg-mute);
}
.spec--feat td { color: var(--cy); }
.spec { width: 100%; border-collapse: collapse; font-family: var(--mono); }
.spec tr { border-bottom: 1px solid var(--line); }
.spec tr:first-child { border-top: 1px solid var(--line); }
.spec th, .spec td { padding: 15px 8px; font-size: 13px; font-weight: 400; text-align: left; vertical-align: baseline; }
.spec th { color: var(--fg-dim); letter-spacing: .01em; }
.spec td { color: var(--fg); text-align: right; letter-spacing: .02em; }
.spec td i { font-style: normal; color: var(--fg-mute); }
.spec tr { transition: background .3s var(--ease); }
.spec tr:hover { background: var(--ink-100); }

.sysreq {
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--line); border-radius: 14px;
  background: linear-gradient(180deg, var(--ink-200), var(--ink-100));
  position: sticky; top: 96px;
}
.sysreq h3 {
  font-family: var(--display);
  font-variation-settings: 'wdth' 102, 'wght' 580;
  font-size: 19px; letter-spacing: -.015em; margin-bottom: 18px;
}
.sysreq dl { display: grid; gap: 1px; background: var(--line); border-block: 1px solid var(--line); margin-bottom: 16px; }
.sysreq dl > div { background: var(--ink-200); display: flex; justify-content: space-between; gap: 14px; padding: 11px 0; }
.sysreq dt { font: 400 11px/1.4 var(--mono); letter-spacing: .1em; text-transform: uppercase; color: var(--fg-mute); flex: none; }
.sysreq dd { margin: 0; font-size: 13px; text-align: right; color: var(--fg); }
.sysreq__note { font-size: 13.5px; color: var(--fg-dim); }
@media (max-width: 940px) {
  .specsheet { grid-template-columns: 1fr; }
  .sysreq { position: static; }
}

/* ── offer ─────────────────────────────────────────────────── */
.section--offer { padding-top: 0; }
.offer {
  display: grid; grid-template-columns: 1.1fr .8fr;
  gap: clamp(28px, 5vw, 80px); align-items: center;
  padding: clamp(40px, 6vw, 86px) clamp(24px, 4vw, 68px);
  border: 1px solid var(--line); border-radius: 20px;
  background:
    radial-gradient(90% 120% at 12% 0%, rgba(23,152,190,.14), transparent 62%),
    linear-gradient(180deg, var(--ink-200), var(--ink-100));
  position: relative; overflow: hidden;
}
.offer::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 64px 100%;
  mask-image: linear-gradient(90deg, #000, transparent 65%);
}
.offer__left { position: relative; }
.offer__points { list-style: none; padding: 0; margin-top: 30px; display: grid; gap: 11px; }
.offer__points li {
  position: relative; padding-left: 26px; color: var(--fg-dim); font-size: 15px;
}
.offer__points li::before {
  content: ''; position: absolute; left: 0; top: .58em;
  width: 11px; height: 1px; background: var(--cy);
}
.offer__card {
  position: relative;
  padding: clamp(26px, 3vw, 36px);
  border: 1px solid rgba(91,225,255,.24); border-radius: 16px;
  background: rgba(4, 8, 13, .78);
  backdrop-filter: blur(12px);
  box-shadow: 0 40px 90px -40px rgba(0,0,0,.95);
}
.offer__label { font: 500 10.5px/1 var(--mono); letter-spacing: .2em; text-transform: uppercase; color: var(--fg-mute); }
.offer__price { display: flex; align-items: baseline; gap: 9px; margin: 12px 0 6px; }
.offer__price b {
  font-family: var(--display);
  font-variation-settings: 'wdth' 100, 'wght' 620;
  font-size: clamp(42px, 5vw, 66px); line-height: .9; letter-spacing: -.04em;
  font-variant-numeric: tabular-nums;
}
.offer__price span { font: 500 15px/1 var(--mono); color: var(--fg-dim); letter-spacing: .06em; }
.offer__vat { font: 400 12px/1.5 var(--mono); color: var(--fg-mute); letter-spacing: .04em; }
.offer__card hr { border: 0; border-top: 1px solid var(--line); margin: 22px 0; }
.offer__inc { list-style: none; padding: 0; display: grid; gap: 9px; margin-bottom: 24px; }
.offer__inc li { position: relative; padding-left: 22px; font-size: 14px; color: var(--fg-dim); }
.offer__inc li::before {
  content: ''; position: absolute; left: 2px; top: .46em;
  width: 6px; height: 6px; border-radius: 50%;
  border: 1px solid var(--cy);
}
.offer__contact { margin-top: 16px; font: 400 12px/1.7 var(--mono); color: var(--fg-mute); text-align: center; }
.offer__contact a { color: var(--fg-dim); border-bottom: 1px solid var(--line); }
.offer__contact a:hover { color: var(--cy); border-color: var(--cy); }
@media (max-width: 900px) { .offer { grid-template-columns: 1fr; } }

/* ── footer ────────────────────────────────────────────────── */
.foot {
  border-top: 1px solid var(--line);
  padding: clamp(40px, 5vw, 64px) var(--gut) 40px;
  background: var(--ink-100);
}
.foot__row {
  max-width: var(--maxw); margin-inline: auto;
  display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between; align-items: flex-start;
}
.foot__logo { width: 150px; height: auto; margin-bottom: 14px; }
.foot__mark { font: 500 12px/1 var(--mono); letter-spacing: .16em; color: var(--cy); margin-bottom: 12px; }
.foot__by { font-size: 13px; line-height: 1.6; color: var(--fg-mute); }
.foot__nav { display: flex; flex-wrap: wrap; gap: 20px; }
.foot__nav a { font-size: 13px; color: var(--fg-dim); transition: color .3s var(--ease); }
.foot__nav a:hover { color: var(--cy); }
.foot__contact { display: grid; gap: 6px; font: 400 13px/1.5 var(--mono); }
.foot__contact a { color: var(--fg-dim); }
.foot__contact a:hover { color: var(--cy); }
.foot__fine {
  max-width: var(--maxw); margin: 40px auto 0;
  padding-top: 22px; border-top: 1px solid var(--line-soft);
  font-size: 11.5px; line-height: 1.6; color: var(--fg-mute); max-inline-size: 72ch;
}

/* ── reveal system ─────────────────────────────────────────────
   Gated behind .js so a failed script can never leave the page blank. */
.js .reveal {
  opacity: 0; translate: 0 18px;
  transition: opacity .8s var(--ease) var(--rd, 0s), translate .9s var(--ease-out) var(--rd, 0s);
}
.js .reveal.is-in { opacity: 1; translate: 0 0; }
.reveal[data-delay="1"] { --rd: .07s } .reveal[data-delay="2"] { --rd: .14s }
.reveal[data-delay="3"] { --rd: .21s } .reveal[data-delay="4"] { --rd: .28s }
.reveal[data-delay="5"] { --rd: .35s } .reveal[data-delay="6"] { --rd: .42s }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; translate: none !important; transition: none !important; }
  .hero__title .line > span { animation: none; transform: none; }
  .hud, .grain { animation: none; }
  .hud { opacity: 1; }
  .stage.is-in *, .specimen.is-in * { animation: none !important; }
  .specimen__lines path { stroke-dashoffset: 0; }
  .specimen__notes li { opacity: 1 !important; translate: none !important; }
  .mesh-pts circle { r: 2.6 }
  .cap-trace { stroke-dashoffset: 0 }
  .scrollcue span { animation: none }
  .screen__scan, .screen__live::before { animation: none; }
  .screen__scan { opacity: 0; }
  .mod img { animation: none; }
  .plate figure:hover img { transform: none; }
}

/* ══════════════════════════════════════════════════════════════
   CAMPANIE — atribuire, formular, consimțământ
   Added 11 August 2026, before the first paid traffic. Everything
   below serves one of three jobs: say where a figure came from,
   collect a phone number, or ask permission before measuring.
   ══════════════════════════════════════════════════════════════ */

/* One attribution, immediately under the figures it covers, so the
   30 s / 23 mm / 270 g band is sourced without repeating the note
   next to every number. */
.metrics__src {
  max-width: var(--maxw); margin: 0 auto; padding: 14px var(--gut) 0;
  font: 400 11px/1.5 var(--mono); letter-spacing: .08em;
  color: var(--fg-mute);
}

/* The software section lost its seven-point list — six of the seven
   repeated something already said. What is left is the one thing
   that appears nowhere else, set as running text beside the flow. */
.soft__aside { padding-top: 6px; }
.soft__p { color: var(--fg-dim); font-size: 15.5px; }

.offer__warranty {
  margin: -14px 0 24px; font-size: 13.5px; line-height: 1.6; color: var(--fg-mute);
}

/* ── the form ───────────────────────────────────────────────────
   It lives inside the price card, so the doctor never has to carry
   a number in their head to another part of the page. */
.lead { display: grid; gap: 14px; margin-bottom: 4px; }
.lead__title {
  font: 500 10.5px/1 var(--mono); letter-spacing: .2em; text-transform: uppercase;
  color: var(--fg-mute);
}
.lead__field { display: grid; gap: 6px; }
.lead__field label {
  font: 400 11px/1.4 var(--mono); letter-spacing: .1em; text-transform: uppercase;
  color: var(--fg-mute);
}
.lead__field input {
  width: 100%; padding: 13px 14px;
  font: 400 15px/1.3 var(--body); color: var(--fg);
  background: var(--ink-200);
  border: 1px solid var(--line); border-radius: 10px;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.lead__field input:hover { border-color: rgba(125, 180, 214, .26); }
.lead__field input:focus { outline: none; border-color: var(--cy); background: var(--ink-300); }
.lead__field.is-err input { border-color: #FF8A7A; }
.lead__err:empty { display: none; }
.lead__err { font: 400 12px/1.4 var(--body); color: #FF8A7A; }
.lead .btn { margin-top: 4px; justify-content: center; }
.lead__fine { font-size: 12px; line-height: 1.55; color: var(--fg-mute); text-align: center; }
.lead__done {
  display: block; padding: 13px 15px;
  border: 1px solid rgba(91,225,255,.32); border-radius: 10px;
  background: rgba(23,152,190,.10);
  font-size: 14px; line-height: 1.55; color: var(--fg-dim);
}
.lead__done b { color: var(--fg); }
.lead__done.is-err { border-color: rgba(255,138,122,.4); background: rgba(255,138,122,.08); }
.lead__done a { color: var(--cy); border-bottom: 1px solid rgba(91,225,255,.4); }

/* ── consent ────────────────────────────────────────────────────
   A bar, not a modal: the page opens on a WebGL hero that takes a
   beat to settle, and covering it with a dialog would make the first
   second of the page a permission request instead of the product. */
.consent {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  padding: 14px var(--gut) calc(14px + env(safe-area-inset-bottom));
  background: rgba(4, 6, 10, .93);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  transform: translateY(105%);
  transition: transform .45s var(--ease-out);
}
.consent.is-in { transform: none; }
.consent__sheet {
  max-width: var(--maxw); margin-inline: auto;
  display: flex; flex-wrap: wrap; gap: 14px 28px;
  align-items: center; justify-content: space-between;
}
.consent__copy { font-size: 13.5px; line-height: 1.6; color: var(--fg-dim); max-width: 76ch; }
.consent__copy a { color: var(--cy); border-bottom: 1px solid rgba(91,225,255,.35); }
.consent__actions { display: flex; gap: 10px; flex: none; }
.consent__btn {
  padding: 11px 20px; font: 500 13px/1 var(--body); cursor: pointer;
  color: var(--fg); background: transparent;
  border: 1px solid var(--line); border-radius: 100px;
  transition: border-color .25s var(--ease), color .25s var(--ease);
}
.consent__btn:hover { border-color: rgba(91,225,255,.5); color: var(--cy); }
.consent__btn--solid { background: var(--cy); border-color: var(--cy); color: #04060A; }
.consent__btn--solid:hover { color: #04060A; filter: brightness(1.08); }

.foot__consent {
  display: block; margin: 18px auto 0; padding: 0; cursor: pointer;
  background: none; border: 0; border-bottom: 1px solid var(--line);
  font: 400 11.5px/1.6 var(--mono); letter-spacing: .08em; color: var(--fg-mute);
}
.foot__consent:hover { color: var(--cy); border-color: var(--cy); }

@media (max-width: 640px) {
  /* The cover is composed so the primary button lands just above the
     fold on a 375px phone; a four-line banner sits on top of it. The
     sentence reads correctly with the middle clause and without it. */
  .consent__more { display: none; }
  .consent__sheet { gap: 12px; }
  .consent__actions { width: 100%; }
  .consent__btn { flex: 1; }
}
