/* ═══════════════════════════════════════════════════════════
   PENNYPAD
   Hero: proportional Figma scale system — every desktop length
   is calc(<figma number> * var(--k)) and --k is ALWAYS a LENGTH.
   Below the hero: an editorial document — hairlines, eyebrows,
   no floating chrome.
   ═══════════════════════════════════════════════════════════ */

/* ── FONTS — Figtree (metric stand-in for TT Hoves) ── */
@font-face {
  font-family: 'Figtree'; font-style: normal; font-weight: 400; font-display: swap;
  src: url(https://fonts.gstatic.com/s/figtree/v9/_Xms-HUzqDCFdgfMm4S9DaRvzig.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
                 U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
                 U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Figtree'; font-style: normal; font-weight: 500; font-display: swap;
  src: url(https://fonts.gstatic.com/s/figtree/v9/_Xms-HUzqDCFdgfMm4S9DaRvzig.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
                 U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
                 U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Figtree'; font-style: normal; font-weight: 600; font-display: swap;
  src: url(https://fonts.gstatic.com/s/figtree/v9/_Xms-HUzqDCFdgfMm4S9DaRvzig.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
                 U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
                 U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Figtree'; font-style: normal; font-weight: 400; font-display: swap;
  src: url(https://fonts.gstatic.com/s/figtree/v9/_Xms-HUzqDCFdgfMm4q9DaRvziissg.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
                 U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
                 U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Figtree'; font-style: normal; font-weight: 600; font-display: swap;
  src: url(https://fonts.gstatic.com/s/figtree/v9/_Xms-HUzqDCFdgfMm4q9DaRvziissg.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
                 U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
                 U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ══════════════════ TOKENS ══════════════════ */
:root {
  --white: #ffffff;
  --black: #000000;
  --ink: #0a0a0b;
  --ink-2: #59626f;
  --ink-3: #8c94a2;
  --ink-4: #aab2be;
  --line: rgba(10, 10, 11, 0.09);
  --line-soft: rgba(10, 10, 11, 0.055);
  --tint-1: #fbf8f3;
  --tint-2: #f5efe4;
  --glass: rgba(0, 0, 0, 0.1);
  --glass-soft: rgba(0, 0, 0, 0.08);

  --radius-media: 30;
  --radius-panel: 18;
  --radius-button: 14;
  --radius-pill: 12;

  --font: 'Figtree', 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --mono: ui-monospace, 'SF Mono', SFMono-Regular, Menlo, Consolas, monospace;
  --track-tight: -0.02em;
  --track-display: -0.05em;
  --ease-panel: cubic-bezier(0.42, 0.02, 0.05, 0.97);

  --up: #7ce9a5;          /* on the dark hero glass */
  --down: #ff9184;
  --up-ink: #12a150;      /* on white */
  --down-ink: #c9333a;

  --gutter: 20px;          /* LENGTH */
  --design-w: 1685;        /* UNITLESS — divisor, never a length */
  --section-inset: 10;
  --media-h: 737;
  --hero-chrome: 336;
  --media-min: 675;
  --viewport-h: 100vh;

  /* length / unitless number = LENGTH ✅ */
  --page-scale: calc((100vw - 2 * var(--gutter)) / var(--design-w));
  --hero-scale: min(var(--page-scale),
                    calc(var(--viewport-h) / (var(--media-min) + var(--hero-chrome))));
  --k: var(--page-scale);

  --maxw: 1180px;
}

@supports (height: 1svh) { :root { --viewport-h: 100svh; } }

@supports (width: 1cqw) {
  body { container-type: inline-size; }
  .page {
    --page-scale: calc((100cqw - 2 * var(--gutter)) / var(--design-w));
    --hero-scale: min(var(--page-scale),
                      calc(var(--viewport-h) / (var(--media-min) + var(--hero-chrome))));
    --k: var(--page-scale);
  }
}

/* ══════════════════ RESET ══════════════════ */
*, *::before, *::after { box-sizing: border-box; }
/* `overflow-x: hidden` on <body> turns body into a scroll container, which kills
   every `position: sticky` inside it. `clip` contains the same overflow without
   creating a scroll container, so the pinned sections keep working. */
html { text-size-adjust: 100%; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}
img, video { display: block; max-width: 100%; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }
h1, h2, h3 { margin: 0; }
p { margin: 0; }
::selection { background: var(--ink); color: #fff; }
:focus-visible {
  outline: max(2px, calc(2 * var(--k))) solid currentColor;
  outline-offset: max(2px, calc(2 * var(--k)));
}
.page { position: relative; margin-inline: var(--gutter); }

/* ══════════════════ HERO PRIMITIVES ══════════════════ */
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: calc(40 * var(--k));
  padding: calc(12 * var(--k)) calc(18 * var(--k));
  border: 0;
  border-radius: calc(var(--radius-pill) * var(--k));
  background: var(--glass);
  color: var(--white);
  font-size: calc(16 * var(--k));
  font-weight: 500;
  line-height: 1;
  letter-spacing: var(--track-tight);
  white-space: nowrap;
}
.pill--light { background: var(--white); color: var(--black); }

.icon-button {
  display: grid;
  place-items: center;
  width: calc(63 * var(--k));
  height: calc(63 * var(--k));
  border-radius: calc(var(--radius-button) * var(--k));
  flex: none;
}
.icon-button--soft { background: var(--glass-soft); }
.icon-button img { width: calc(31 * var(--k)); height: calc(31 * var(--k)); }

.ticker-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: calc(72 * var(--k));
  height: calc(56 * var(--k));
  padding: 0 calc(10 * var(--k));
  border-radius: calc(14 * var(--k));
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  font-family: var(--mono);
  font-size: calc(17 * var(--k));
  font-weight: 500;
  line-height: 1;
  flex: none;
}
.is-up { color: var(--up); opacity: 1; }
.is-down { color: var(--down); opacity: 1; }

/* ══════════════════ HERO ══════════════════ */
.hero {
  --k: var(--hero-scale);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: var(--viewport-h);
  padding-block: calc(11 * var(--k)) calc(74 * var(--k));
}
.hero__media {
  position: relative;
  flex: 1 1 auto;
  min-height: calc(var(--media-min) * var(--k));
  margin-inline: calc(var(--section-inset) * var(--page-scale));
  border-radius: calc(var(--radius-media) * var(--k));
  overflow: hidden;
  background: #020202;
}
.hero__zoom {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform-origin: 50% 42%;
}
html.continuous-motion .hero__zoom {
  animation: hero-push 5.2s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes hero-push {
  from { transform: scale(1); }
  to   { transform: scale(1.238); }
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: #020202;
  opacity: 0.2;
}

/* ── NAV ── */
.nav {
  position: absolute;
  left: calc(26 * var(--k));
  right: calc(25 * var(--k));
  top: calc(19 * var(--k));
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: calc(43 * var(--k));
  z-index: 3;
}
.brand {
  position: relative;
  width: calc(190 * var(--k));
  height: calc(43 * var(--k));
  flex: none;
}
.brand__mark {
  position: absolute;
  left: 0;
  top: 0;
  width: calc(43 * var(--k));
  height: calc(43 * var(--k));
  border-radius: calc(10 * var(--k));
  object-fit: cover;
}
.brand__name {
  position: absolute;
  left: calc(55 * var(--k));
  top: calc(6 * var(--k));
  color: var(--white);
  font-size: calc(34.08 * var(--k));
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: var(--track-display);
  white-space: nowrap;
}
.nav__menu {
  display: flex;
  gap: calc(1 * var(--k));
  width: auto;
  height: calc(40 * var(--k));
  -webkit-backdrop-filter: blur(calc(12.35 * var(--k)));
  backdrop-filter: blur(calc(12.35 * var(--k)));
}
.nav__link { transition: background 220ms var(--ease-panel); }
.nav__cta {
  width: auto;
  min-width: calc(140 * var(--k));
  transition: background 220ms var(--ease-panel);
}
.nav__cta--menu, .nav__toggle { display: none; }
.nav__x {
  width: calc(40 * var(--k));
  min-width: 0;
  padding: 0;
  flex: none;
}
.nav__x svg {
  width: calc(16 * var(--k));
  height: calc(16 * var(--k));
  display: block;
  flex: none;
}
.nav__x-label { display: none; }
.nav__link:hover { background: rgba(0, 0, 0, 0.22); }
.nav__cta:hover { background: rgba(255, 255, 255, 0.86); }

/* ── TICKER PANEL ── */
.finder {
  --finder-h: 388;
  --results-top: 83;
  --finder-half: calc(var(--finder-h) * var(--k) / 2);
  position: absolute;
  left: calc(50% + 8 * var(--k));
  top: clamp(calc(82 * var(--k) + var(--finder-half)),
             calc(100% * 339 / var(--media-h)),
             calc(100% - 159 * var(--k) - var(--finder-half)));
  width: calc(541 * var(--k));
  height: calc(var(--finder-h) * var(--k));
  border-radius: calc(var(--radius-panel) * var(--k));
  background: var(--glass);
  -webkit-backdrop-filter: blur(calc(16.85 * var(--k)));
  backdrop-filter: blur(calc(16.85 * var(--k)));
  overflow: hidden;
  transform: translate(-50%, -50%);
  transition: height var(--finder-dur, 600ms) var(--ease-panel),
              top var(--finder-dur, 600ms) var(--ease-panel);
  z-index: 2;
}
.finder[data-state='collapsed']   { --finder-h: 83;  --results-top: 83; }
.finder[data-state='suggestions'] { --finder-h: 223; --results-top: 223; }
.finder[data-state='results']     { --finder-h: 388; --results-top: 83; }
.finder[data-state='full']        { --finder-h: 528; --results-top: 223; }

.finder__roles, .finder__results {
  transition: opacity 320ms var(--ease-panel), visibility 320ms;
}
.finder[data-state='collapsed'] .finder__roles,
.finder[data-state='collapsed'] .finder__results,
.finder[data-state='suggestions'] .finder__results,
.finder[data-state='results'] .finder__roles {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.finder__bar {
  position: absolute;
  left: calc(10 * var(--k));
  top: calc(10 * var(--k));
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(521 * var(--k));
  height: calc(63 * var(--k));
}
.finder__field {
  position: relative;
  display: flex;
  align-items: center;
  gap: calc(20 * var(--k));
  width: calc(340 * var(--k));
  height: calc(63 * var(--k));
}
.finder__input {
  width: calc(257 * var(--k));
  border: 0;
  padding: 0;
  background: none;
  color: var(--white);
  font-size: calc(26 * var(--k));
  font-weight: 500;
  line-height: 1;
  letter-spacing: var(--track-tight);
  appearance: none;
  -webkit-appearance: none;
}
.finder__input::placeholder { color: var(--white); opacity: 0.4; }
.finder__input::-webkit-search-cancel-button { display: none; }
.finder.is-demo .finder__input::placeholder { opacity: 0; }

.finder__demo {
  position: absolute;
  left: calc(83 * var(--k));
  top: calc(19 * var(--k));
  display: none;
  align-items: baseline;
  color: var(--white);
  font-size: calc(26 * var(--k));
  font-weight: 500;
  line-height: 1;
  letter-spacing: var(--track-tight);
  pointer-events: none;
  white-space: nowrap;
}
.finder.is-demo .finder__demo { display: flex; }
.finder__demo-hint { opacity: 0.4; }
.finder__demo-typed::after {
  content: '';
  display: inline-block;
  width: calc(2 * var(--k));
  height: calc(24 * var(--k));
  margin-left: calc(3 * var(--k));
  background: var(--white);
  vertical-align: calc(-3 * var(--k));
  animation: caret 1s steps(1) infinite;
}
.finder:not(.is-typing) .finder__demo-typed::after { animation: none; opacity: 0; }
@keyframes caret { 0%, 50% { opacity: 1 } 50.01%, 100% { opacity: 0 } }

.country { position: relative; flex: none; }
.country__toggle {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: calc(11 * var(--k));
  width: auto;
  min-width: calc(149 * var(--k));
  height: calc(31 * var(--k));
  padding: 0 calc(16 * var(--k));
  border: 0;
  background: none;
  cursor: pointer;
}
.country__icon { width: calc(31 * var(--k)); height: calc(31 * var(--k)); flex: none; }
.country__label {
  white-space: nowrap;
  color: var(--white);
  font-size: calc(26 * var(--k));
  font-weight: 500;
  line-height: 1;
  letter-spacing: var(--track-tight);
}
.country__menu {
  position: absolute;
  right: 0;
  top: calc(41 * var(--k));
  z-index: 2;
  margin: 0;
  padding: calc(6 * var(--k));
  list-style: none;
  width: calc(180 * var(--k));
  border-radius: calc(var(--radius-pill) * var(--k));
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(calc(16.85 * var(--k)));
  backdrop-filter: blur(calc(16.85 * var(--k)));
}
.country__option {
  padding: calc(9 * var(--k)) calc(12 * var(--k));
  border-radius: calc(8 * var(--k));
  color: var(--white);
  font-size: calc(18 * var(--k));
  font-weight: 500;
  line-height: 1;
  letter-spacing: var(--track-tight);
  cursor: pointer;
}
.country__option:hover,
.country__option[aria-selected='true'] { background: rgba(255, 255, 255, 0.16); }

.finder__roles {
  position: absolute;
  left: calc(10 * var(--k));
  top: calc(83 * var(--k));
  display: flex;
  flex-direction: column;
  gap: calc(5 * var(--k));
  width: calc(519 * var(--k));
}
.pill--row {
  width: calc(519 * var(--k));
  justify-content: flex-start;
  cursor: pointer;
  transition: background 200ms var(--ease-panel);
}
.role:hover { background: rgba(0, 0, 0, 0.16); }
.role[aria-pressed='true'] { background: rgba(255, 255, 255, 0.2); }

.finder__results {
  position: absolute;
  left: calc(10 * var(--k));
  top: calc(var(--results-top) * var(--k));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(5 * var(--k));
  width: calc(519 * var(--k));
  transition: top var(--finder-dur, 600ms) var(--ease-panel),
              opacity 320ms var(--ease-panel), visibility 320ms;
}
.expert {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(519 * var(--k));
  height: calc(80 * var(--k));
  padding: calc(12 * var(--k)) calc(18 * var(--k));
  border-radius: calc(var(--radius-pill) * var(--k));
  background: var(--glass);
}
.expert__who { display: flex; align-items: center; gap: calc(13 * var(--k)); }
.expert__id, .expert__terms { display: flex; flex-direction: column; gap: calc(6 * var(--k)); }
.expert__terms { align-items: flex-end; }
.expert__name, .expert__rate {
  color: var(--white);
  font-size: calc(20 * var(--k));
  font-weight: 500;
  line-height: 1;
  letter-spacing: var(--track-tight);
}
.expert__rate { font-family: var(--mono); }
.expert__meta, .expert__type {
  color: var(--white);
  font-size: calc(16 * var(--k));
  font-weight: 400;
  line-height: 1;
  letter-spacing: var(--track-tight);
}
.expert__meta { opacity: 0.5; }
.expert__type { opacity: 0.6; }
.finder__count {
  margin: 0;
  padding: calc(10 * var(--k)) 0;
  color: var(--white);
  font-size: calc(20 * var(--k));
  font-weight: 500;
  line-height: 1;
  letter-spacing: var(--track-tight);
}

/* ── CTA ── */
.cta {
  position: absolute;
  left: 50%;
  bottom: calc(76 * var(--k));
  display: flex;
  width: calc(252 * var(--k));
  height: calc(63 * var(--k));
  transform: translateX(-50%);
  z-index: 2;
}
.cta__label, .cta__go {
  display: grid;
  place-items: center;
  height: calc(63 * var(--k));
  border-radius: calc(var(--radius-button) * var(--k));
  background: var(--white);
  color: var(--black);
  transition: background 220ms var(--ease-panel);
}
.cta__label {
  width: calc(189 * var(--k));
  font-size: calc(19 * var(--k));
  font-weight: 500;
  letter-spacing: var(--track-tight);
}
.cta__go { width: calc(63 * var(--k)); }
.cta__go img { width: calc(21.2067 * var(--k)); height: calc(21.2067 * var(--k)); }
.cta__label:hover, .cta__go:hover { background: rgba(255, 255, 255, 0.86); }

/* ── HERO FOOT ── */
.hero__foot {
  position: relative;
  flex: none;
  height: auto;
  min-height: calc(180 * var(--k));
  margin-top: calc(71 * var(--k));
}
.hero__title {
  position: absolute;
  left: calc(57 * var(--k));
  top: 0;
  width: calc(945 * var(--k));
  margin: 0;
  font-size: calc(84 * var(--k));
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: var(--track-display);
}
.hero__aside {
  position: absolute;
  right: calc(35 * var(--k));
  top: calc(17 * var(--k));
  width: calc(437 * var(--k));
}
.ticker-strip {
  display: flex;
  flex-wrap: wrap;
  gap: calc(8 * var(--k));
  min-height: calc(56 * var(--k));
  align-items: center;
}
.ticker-chip {
  display: inline-flex;
  align-items: center;
  height: calc(40 * var(--k));
  padding: 0 calc(16 * var(--k));
  border: calc(1.2 * var(--k)) solid rgba(10, 10, 11, 0.16);
  border-radius: calc(var(--radius-pill) * var(--k));
  font-family: var(--mono);
  font-size: calc(17 * var(--k));
  font-weight: 500;
  line-height: 1;
}
.hero__lede {
  width: calc(437 * var(--k));
  margin: calc(43 * var(--k)) 0 0;
  font-size: calc(25 * var(--k));
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: var(--track-display);
  color: var(--ink-2);
}

/* ═══════════════════════════════════════════════════════════
   BELOW THE HERO — the document
   ═══════════════════════════════════════════════════════════ */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.wrap--narrow { max-width: 840px; }

.section { position: relative; padding: 104px 0; }
.section-head { max-width: 680px; margin-bottom: 52px; }
.section-head h2 { margin-top: 14px; }
.section-head .lede { margin-top: 18px; }
.section-note { margin-top: 24px; font-size: 13px; color: var(--ink-3); max-width: 620px; }

.eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-3);
}
h2 {
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.035em;
}
h3 {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.lede {
  font-size: clamp(16px, 1.35vw, 18.5px);
  line-height: 1.6;
  letter-spacing: -0.011em;
  color: var(--ink-2);
}
.lede + .lede { margin-top: 16px; }

.section--tint {
  background: linear-gradient(180deg, var(--tint-1) 0%, var(--tint-2) 100%);
  border-radius: 28px;
}

/* ── buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 0 24px;
  border-radius: 12px;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
  transition: transform 180ms cubic-bezier(.2,.8,.3,1), background 180ms, box-shadow 180ms;
}
.btn-dark { background: var(--ink); color: #fff; box-shadow: 0 10px 26px -12px rgba(10,10,11,.55); }
.btn-dark:hover { background: #22242a; transform: translateY(-1px); }
.btn-ghost { background: none; color: var(--ink); box-shadow: inset 0 0 0 1px var(--line); }
.btn-ghost:hover { background: rgba(10,10,11,.04); transform: translateY(-1px); }

/* ── the swap: COIN/SOL → COIN/GMEx ── */
.pairs {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  margin-bottom: 56px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--line-soft);
}
.pair-label {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.pair-formula {
  display: block;
  margin-top: 14px;
  font-family: var(--mono);
  font-size: clamp(26px, 3.1vw, 40px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}
.pair p { margin-top: 12px; font-size: 14.5px; color: var(--ink-2); }
.pair--old .pair-formula { color: var(--ink-4); text-decoration: line-through; text-decoration-thickness: 2px; }
.pair-arrow {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px var(--line);
}
.pair-arrow img { width: 20px; height: 20px; }

/* ── figures ── */
.figure {
  margin: 0 0 56px;
  border-radius: 22px;
  overflow: hidden;
  background: var(--tint-2);
}
.figure img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16 / 7; }
.figure--tall { margin-bottom: 28px; }
.figure--tall img { aspect-ratio: 4 / 3; }
.figure--closer { margin-bottom: 44px; }
.figure--closer img { aspect-ratio: 21 / 8; }

/* ── the ticker catalogue ── */
.ticks {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px 28px;
}
.tick { transition: transform 300ms cubic-bezier(.2,.8,.3,1); }
.tick:hover { transform: translateY(-3px); }
.tick-line { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.tick-line b {
  font-family: var(--mono);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.tick-line i {
  font-style: normal;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-4);
}
.tick-quote { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-top: 9px; }
.tick-quote em {
  font-style: normal;
  font-family: var(--mono);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.035em;
}
.tick-quote u {
  text-decoration: none;
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 500;
}
.tick-quote u.up { color: var(--up-ink); }
.tick-quote u.down { color: var(--down-ink); }
.tick > span {
  display: block;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ── steps ── */
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.step { padding-top: 30px; border-top: 1px solid var(--line-soft); }
.step-n {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.step h3 { margin-bottom: 9px; }
.step p { font-size: 14.5px; line-height: 1.6; color: var(--ink-2); letter-spacing: -0.008em; }

/* ── three cards ── */
.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.card-art {
  border-radius: 18px;
  overflow: hidden;
  background: rgba(10, 10, 11, 0.05);
  margin-bottom: 20px;
}
.card-art img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.card h3 { margin-bottom: 8px; }
.card p { font-size: 14.5px; line-height: 1.6; color: var(--ink-2); }

/* ── split + facts ── */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}
.split h2 { margin-top: 14px; }
.split .lede:first-of-type { margin-top: 18px; }
.note { margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--line-soft); }
.note p { font-size: 13.5px; line-height: 1.62; color: var(--ink-2); }
.note b { color: var(--ink); font-weight: 600; }
.facts { display: grid; }
.fact {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
}
.fact span { font-size: 14px; color: var(--ink-2); }
.fact b {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.015em;
  text-align: right;
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
}

/* ── ledger ── */
.ledger { overflow-x: auto; }
.ledger-row {
  display: grid;
  grid-template-columns: minmax(96px, 1.1fr) minmax(88px, 1fr) repeat(3, minmax(84px, 0.8fr));
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--line-soft);
  font-size: 14px;
}
.ledger-row:first-child { border-top: 0; }
.ledger-head {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.ledger-head span:nth-child(n + 3) { text-align: right; }
.ledger-row .who { font-family: var(--mono); font-size: 14px; font-weight: 600; }
.ledger-row .pair-cell { font-family: var(--mono); font-size: 13.5px; color: var(--ink-2); }
.ledger-row .num {
  font-family: var(--mono);
  font-size: 13.5px;
  font-variant-numeric: tabular-nums;
  color: var(--ink-2);
  text-align: right;
}
.ledger-row .num.up { color: var(--up-ink); }
.ledger-row .num.down { color: var(--down-ink); }

/* ── closer ── */
.section--closer { padding-bottom: 96px; }
.closer { text-align: center; }
.closer h2 { font-size: clamp(32px, 4.4vw, 58px); letter-spacing: -0.042em; }
.closer h2 em { font-style: normal; color: var(--ink-3); }
.closer-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 32px; }

/* ── faq ── */
.faq { border-top: 1px solid var(--line-soft); }
.faq details { border-bottom: 1px solid var(--line-soft); }
.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  font-size: 17.5px;
  font-weight: 500;
  letter-spacing: -0.022em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '';
  width: 11px;
  height: 11px;
  flex: none;
  border-right: 1.6px solid var(--ink-4);
  border-bottom: 1.6px solid var(--ink-4);
  transform: rotate(45deg) translateY(-3px);
  transition: transform 250ms;
}
.faq details[open] summary::after { transform: rotate(225deg) translateY(-3px); }
.faq p { padding: 0 60px 26px 0; font-size: 15px; line-height: 1.65; color: var(--ink-2); }

/* ── footer ── */
.footer { padding: 64px 0 56px; border-top: 1px solid var(--line-soft); }
.footer-in { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-size: 19px; font-weight: 600; letter-spacing: -0.03em; }
.footer-brand img { width: 24px; height: 24px; border-radius: 6px; object-fit: cover; }
.footer-in p { margin-top: 10px; font-size: 13px; color: var(--ink-3); }
.footer-links { display: flex; flex-wrap: wrap; gap: 26px; font-size: 13.5px; color: var(--ink-3); }
.footer-links a:hover { color: var(--ink); }
.footer-fine {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
  font-size: 12px;
  line-height: 1.6;
  color: var(--ink-4);
  max-width: 760px;
}

/* ══════════════════ ENTRANCE (fails open) ══════════════════ */
html.entrance-pending .hero__zoom { transform: scale(1.14); }
html.entrance-pending .nav,
html.entrance-pending .finder,
html.entrance-pending .cta,
html.entrance-pending .hero__title,
html.entrance-pending .hero__aside { opacity: 0; }

html.entrance-playing .hero__zoom { animation: entrance-settle 1500ms var(--ease-panel) both; }
html.entrance-playing .nav        { animation: rise 760ms var(--ease-panel) 120ms both; }
html.entrance-playing .finder     { animation: panel-in 900ms var(--ease-panel) 240ms both; }
html.entrance-playing .cta        { animation: rise 760ms var(--ease-panel) 420ms both; }
html.entrance-playing .hero__title{ animation: rise 860ms var(--ease-panel) 300ms both; }
html.entrance-playing .hero__aside{ animation: rise 860ms var(--ease-panel) 420ms both; }

@keyframes entrance-settle { from { transform: scale(1.14); } to { transform: scale(1); } }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes panel-in {
  from { opacity: 0; transform: translate(-50%, calc(-50% + 26px)) scale(0.985); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

/* ═══════════════════════════════════════════════════════════
   MOTION — reveal, words, sparkline draw, scroll scrubs
   Timings and easing lifted from the anythingpad reference.
   Everything fails OPEN: the hidden state only exists once JS
   has installed the scroll loop (html.motion-ready).
   ═══════════════════════════════════════════════════════════ */
:root { --ease-motion: cubic-bezier(.2, .7, .2, 1); }

html.motion-ready .reveal:not(.in) { opacity: 0; transform: translateY(18px); }
.reveal.in { opacity: 1; transform: none; transition: opacity .7s, transform .7s var(--ease-motion); }

html.motion-ready .word:not(.in) { opacity: 0; transform: translateY(0.5em); }
.word { display: inline-block; }
.word.in { opacity: 1; transform: none; transition: opacity .55s, transform .55s var(--ease-motion); }

html.motion-ready .draw:not(.in) { stroke-dasharray: 1; stroke-dashoffset: 1px; }
.draw.in { stroke-dashoffset: 0; transition: stroke-dashoffset 1.5s cubic-bezier(.35, 0, .15, 1); }

/* ── word-by-word statement ── */
.statement { padding: 84px 0 96px; }
.statement-copy {
  max-width: 980px;
  font-size: clamp(26px, 3.45vw, 46px);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.035em;
  color: var(--ink-3);
}
.statement-copy .word.lead { color: var(--ink); }

/* ── sparklines in the ticker cards ── */
.spark { width: 100%; height: 30px; margin-top: 12px; display: block; }
.spark--up { color: var(--up-ink); }
.spark--down { color: var(--down-ink); }

/* ── scroll-scrubbed proof ── */
.scrub { padding: 0; }
.scrub-track { position: relative; height: 280vh; }
.scrub-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  align-content: center;
}
.scrub-title { margin: 14px 0 52px; }
.bars { display: grid; gap: 22px; max-width: 900px; }
.bar-row {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) 96px;
  align-items: center;
  gap: 20px;
}
.bar-name { font-family: var(--mono); font-size: 15px; font-weight: 600; }
.bar-track {
  display: block;
  height: 14px;
  border-radius: 999px;
  background: rgba(10, 10, 11, 0.07);
  overflow: hidden;
}
.bar-fill { display: block; height: 100%; width: 0; border-radius: 999px; }
.bar-fill--coin { background: var(--ink); }
.bar-fill--stock { background: var(--ink-4); }
.bar-val {
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 600;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.verdict {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
  max-width: 900px;
}
.verdict-num {
  display: block;
  font-family: var(--mono);
  font-size: clamp(44px, 6.4vw, 88px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--ink-3);
  transition: color .35s var(--ease-motion);
}
.verdict-num.up { color: var(--up-ink); }
.verdict-num.down { color: var(--down-ink); }
.verdict-label { display: block; margin-top: 14px; font-size: 15px; color: var(--ink-2); }

/* ── ticker tape ── */
.tape { padding: 0; }
.tape-track { position: relative; height: 240vh; }
.tape-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
/* the band itself is centred in the pinned screen — not the whole viewport */
.tape-stage::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: min(44vh, 300px);
  transform: translateY(-50%);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(180deg, #fff 0%, var(--tint-1) 50%, #fff 100%);
}
.tape-label {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  margin-top: min(-22vh, -150px);
  padding: 18px 8vw 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.tape-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 72px;
  padding-inline: 8vw;
  white-space: nowrap;
  will-change: transform;
}
.tape-item {
  font-family: var(--mono);
  font-size: clamp(30px, 4.6vw, 64px);
  font-weight: 500;
  letter-spacing: -0.045em;
  color: var(--ink);
}
.tape-item u { text-decoration: none; }
.tape-item u.up { color: var(--up-ink); }
.tape-item u.down { color: var(--down-ink); }

/* ═══════════════════════════════════════════════════════════
   TABLET — 700px … 1080px
   ═══════════════════════════════════════════════════════════ */
@media (min-width: 700px) and (max-width: 1080px) {
  .page {
    --tablet-inset: clamp(16px, 2.5vw, 28px);
    --tablet-section-gap: clamp(72px, 10vw, 108px);
    margin-inline: var(--tablet-inset);
  }
  .hero {
    --k: clamp(0.72px, calc((100vw - 2 * var(--tablet-inset)) / 1080), 1px);
    min-height: auto;
    padding-block: 10px var(--tablet-section-gap);
  }
  .hero__media {
    flex: none;
    min-height: 0;
    height: clamp(720px, 90svh, 820px);
    margin-inline: 0;
    border-radius: clamp(20px, 3vw, 30px);
  }
  .nav {
    left: clamp(18px, 3vw, 28px);
    right: clamp(18px, 3vw, 28px);
    top: clamp(16px, 2.4vw, 24px);
    height: 48px;
  }
  .brand { width: 190px; height: 43px; }
  .brand__mark { width: 43px; height: 43px; }
  .brand__name { left: 55px; top: 6px; font-size: 34px; }
  .nav > .nav__cta { display: none; }

  .nav__toggle {
    display: grid;
    position: relative;
    z-index: 4;
    place-content: center;
    gap: 7px;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: 14px;
    background: var(--glass);
    color: var(--white);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    cursor: pointer;
  }
  .nav__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 240ms var(--ease-panel);
  }
  .nav__toggle[aria-expanded='true'] span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .nav__toggle[aria-expanded='true'] span:last-child  { transform: translateY(-4.5px) rotate(-45deg); }

  .nav__menu {
    position: absolute;
    z-index: 3;
    right: 0;
    top: 58px;
    display: grid;
    gap: 6px;
    width: min(320px, calc(100vw - 2 * var(--tablet-inset) - 36px));
    height: auto;
    padding: 8px;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.28);
    -webkit-backdrop-filter: blur(22px);
    backdrop-filter: blur(22px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top right;
    transition: opacity 220ms var(--ease-panel), transform 220ms var(--ease-panel), visibility 220ms;
  }
  .nav__menu.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav__link, .nav__cta--menu {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    min-height: 48px;
    height: auto;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 16px;
  }
  .nav__cta--menu { justify-content: center; margin-top: 2px; }
  .nav__x { width: 100%; padding: 14px 16px; gap: 10px; }
  .nav__x svg { width: 17px; height: 17px; }
  .nav__x-label { display: inline; }

  .finder {
    left: 50%;
    top: 46%;
    width: min(calc(541 * var(--k)), calc(100% - 48px));
  }
  .cta { bottom: clamp(36px, 6vw, 60px); }

  .hero__foot {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(240px, 0.7fr);
    align-items: start;
    height: auto;
    min-height: 0;
    column-gap: clamp(32px, 6vw, 72px);
    margin-top: clamp(48px, 7vw, 72px);
    padding-inline: clamp(18px, 4vw, 44px);
  }
  .hero__title, .hero__aside { position: static; width: auto; }
  .hero__title { font-size: clamp(50px, 7.4vw, 74px); line-height: 0.94; }
  .hero__aside { padding-top: 8px; }
  .ticker-strip { min-height: 0; gap: 8px; }
  .ticker-chip { height: 40px; padding: 0 15px; font-size: 16px; border-width: 1.2px; }
  .hero__lede { width: auto; margin-top: 26px; font-size: clamp(18px, 2.3vw, 24px); }

  .section { padding: 84px 0; }
  .statement { padding: 68px 0 76px; }
  .scrub-track { height: 240vh; }
  .tape-track { height: 200vh; }
  .ticks { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px 24px; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 28px; }
  .cards { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .figure img { aspect-ratio: 16 / 8; }
}

/* ── NARROW TABLET — 700px … 860px ── */
@media (min-width: 700px) and (max-width: 860px) {
  .hero__foot { grid-template-columns: 1fr; row-gap: 38px; }
  .hero__aside {
    display: grid;
    grid-template-columns: 215px minmax(0, 1fr);
    align-items: center;
    gap: 28px;
    padding-top: 0;
  }
  .hero__lede { margin: 0; }
  .cards { grid-template-columns: 1fr; gap: 28px; }
  .card { display: grid; grid-template-columns: 200px minmax(0, 1fr); gap: 22px; align-items: center; }
  .card-art { margin-bottom: 0; }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE — ≤ 699px
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 699px) {
  .page {
    --mobile-inset: clamp(12px, 4vw, 20px);
    --mobile-section-gap: clamp(64px, 18vw, 88px);
    margin-inline: var(--mobile-inset);
  }
  .hero {
    --k: 1px;
    min-height: auto;
    padding-block: 8px var(--mobile-section-gap);
  }
  .hero__media {
    flex: none;
    min-height: 0;
    height: clamp(640px, 88svh, 760px);
    margin-inline: 0;
    border-radius: clamp(18px, 6vw, 26px);
  }
  .nav {
    left: 16px;
    right: 16px;
    top: max(14px, env(safe-area-inset-top));
    height: 46px;
  }
  .brand { width: 170px; height: 40px; }
  .brand__mark { width: 40px; height: 40px; }
  .brand__name { left: 51px; top: 6px; font-size: 29px; }
  .nav > .nav__cta { display: none; }

  .nav__toggle {
    display: grid;
    position: relative;
    z-index: 4;
    place-content: center;
    gap: 7px;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    border-radius: 14px;
    background: var(--glass);
    color: var(--white);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    cursor: pointer;
  }
  .nav__toggle span {
    display: block;
    width: 21px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 240ms var(--ease-panel);
  }
  .nav__toggle[aria-expanded='true'] span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .nav__toggle[aria-expanded='true'] span:last-child  { transform: translateY(-4.5px) rotate(-45deg); }

  .nav__menu {
    position: absolute;
    z-index: 3;
    right: 0;
    top: 56px;
    display: grid;
    gap: 6px;
    width: min(300px, calc(100vw - 2 * var(--mobile-inset) - 32px));
    height: auto;
    padding: 8px;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(22px);
    backdrop-filter: blur(22px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top right;
    transition: opacity 220ms var(--ease-panel), transform 220ms var(--ease-panel), visibility 220ms;
  }
  .nav__menu.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav__link, .nav__cta--menu {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    min-height: 48px;
    height: auto;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 16px;
  }
  .nav__cta--menu { justify-content: center; margin-top: 2px; }
  .nav__x { width: 100%; padding: 14px 16px; gap: 10px; }
  .nav__x svg { width: 17px; height: 17px; }
  .nav__x-label { display: inline; }

  .finder {
    left: 50%;
    top: 45%;
    width: calc(100% - 24px);
    border-radius: 16px;
  }
  .finder[data-state='collapsed']   { height: 72px; }
  .finder[data-state='suggestions'] { height: 218px; }
  .finder[data-state='results']     { height: 344px; }
  .finder[data-state='full']        { height: 490px; }

  .finder__bar { left: 8px; top: 8px; width: calc(100% - 16px); height: 56px; }
  .finder__field { gap: 12px; width: min(58%, 230px); height: 56px; }
  .finder .icon-button { width: 48px; height: 48px; border-radius: 12px; }
  .finder .icon-button img { width: 24px; height: 24px; }
  .finder__input, .finder__demo { font-size: clamp(16px, 4.5vw, 19px); }
  .finder__input { width: calc(100% - 60px); }
  .finder__demo { left: 60px; top: 18px; }
  .finder__demo-typed::after { width: 2px; height: 17px; margin-left: 2px; vertical-align: -2px; }

  .country__toggle { gap: 7px; width: auto; min-width: 104px; height: 36px; padding: 0 8px; }
  .country__icon { width: 25px; height: 25px; }
  .country__label { font-size: clamp(15px, 4vw, 18px); }
  .country__menu { top: 40px; width: 150px; padding: 6px; border-radius: 12px; }
  .country__option { min-height: 42px; padding: 12px 10px; font-size: 15px; border-radius: 8px; }

  .finder__roles, .finder__results { left: 8px; top: 72px; gap: 4px; width: calc(100% - 16px); }
  .finder[data-state='full'] .finder__results { top: 218px; }
  .pill--row { justify-content: flex-start; width: 100%; height: 42px; padding: 12px 14px; font-size: 15px; }
  .expert { width: 100%; height: 76px; padding: 10px 12px; border-radius: 12px; }
  .expert__who { gap: 10px; }
  .ticker-badge { min-width: 56px; height: 44px; border-radius: 11px; font-size: 13px; }
  .expert__id, .expert__terms { gap: 5px; }
  .expert__name, .expert__rate { font-size: clamp(13px, 3.6vw, 15px); }
  .expert__meta, .expert__type { font-size: clamp(11px, 3vw, 13px); }
  .finder__count { padding: 9px 0; font-size: 14px; }

  .cta { bottom: max(24px, env(safe-area-inset-bottom)); width: 224px; height: 56px; }
  .cta__label, .cta__go { height: 56px; border-radius: 14px; }
  .cta__label { width: 168px; font-size: 17px; }
  .cta__go { width: 56px; }
  .cta__go img { width: 20px; height: 20px; }

  .hero__foot {
    display: grid;
    gap: clamp(30px, 8vw, 42px);
    height: auto;
    min-height: 0;
    margin-top: clamp(42px, 11vw, 58px);
    padding-inline: clamp(4px, 2vw, 10px);
  }
  .hero__title, .hero__aside { position: static; width: auto; }
  .hero__title { font-size: clamp(38px, 10.5vw, 54px); line-height: 0.96; }
  .ticker-strip { min-height: 0; gap: 8px; }
  .ticker-chip { height: 38px; padding: 0 14px; font-size: 15px; border-width: 1.2px; }
  .hero__lede { width: auto; margin-top: 22px; font-size: clamp(17px, 4.6vw, 20px); line-height: 1.35; }

  .wrap { padding: 0 12px; }
  .section { padding: 68px 0; }
  .section-head { margin-bottom: 36px; }
  .section--tint { border-radius: 20px; padding-inline: 10px; }

  .pairs {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 40px;
    padding-bottom: 36px;
  }
  .pair-arrow { transform: rotate(45deg); }
  .figure { margin-bottom: 36px; border-radius: 16px; }
  .figure img { aspect-ratio: 5 / 4; }
  .figure--closer img { aspect-ratio: 4 / 3; }

  .ticks { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px 20px; }
  .tick-quote em { font-size: 21px; }
  .spark { height: 24px; margin-top: 10px; }
  .statement { padding: 56px 0 62px; }
  .statement-copy { font-size: clamp(23px, 6.6vw, 30px); line-height: 1.22; }
  .scrub-track { height: 200vh; }
  .scrub-stage { height: 100svh; }
  .scrub-title { margin-bottom: 34px; }
  .bars { gap: 16px; }
  .bar-row { grid-template-columns: 72px minmax(0, 1fr) 68px; gap: 12px; }
  .bar-name, .bar-val { font-size: 12.5px; }
  .bar-track { height: 11px; }
  .verdict { margin-top: 36px; padding-top: 22px; }
  .tape-track { height: 170vh; }
  .tape-stage { height: 100svh; }
  .tape-stage::before { height: min(34vh, 220px); }
  .tape-label { margin-top: min(-17vh, -110px); padding: 14px 14vw 0; font-size: 10.5px; }
  .tape-row { gap: 40px; padding-inline: 14vw; }
  .steps { grid-template-columns: 1fr; gap: 0; }
  .step { padding: 26px 0 0; }
  .cards { grid-template-columns: 1fr; gap: 30px; }
  .split { grid-template-columns: 1fr; gap: 36px; }

  .ledger-row {
    grid-template-columns: minmax(78px, 1fr) minmax(62px, 0.8fr) repeat(3, minmax(56px, 0.7fr));
    gap: 8px;
    padding: 13px 0;
    font-size: 12.5px;
  }
  .ledger-row .who { font-size: 12.5px; }
  .ledger-row .pair-cell, .ledger-row .num { font-size: 11.5px; }
  .ledger-head { font-size: 9.5px; letter-spacing: 0.06em; }

  .faq summary { font-size: 16px; padding: 20px 0; }
  .faq p { padding-right: 20px; font-size: 14.5px; }
  .closer-actions { flex-direction: column; }
  .closer-actions .btn { width: 100%; }
  .footer { padding: 48px 0 40px; }
  .footer-in { flex-direction: column; gap: 24px; }
}

/* ══════════════════ REDUCED MOTION ══════════════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.continuous-motion .hero__zoom { animation: none; }
  html.entrance-playing .hero__zoom,
  html.entrance-playing .nav,
  html.entrance-playing .finder,
  html.entrance-playing .cta,
  html.entrance-playing .hero__title,
  html.entrance-playing .hero__aside { animation: none; }
  .reveal, .finder, .finder__results, .nav__menu, .tick, .btn { transition: none; }
  html.motion-ready .reveal:not(.in),
  html.motion-ready .word:not(.in) { opacity: 1; transform: none; }
  html.motion-ready .draw:not(.in) { stroke-dasharray: none; stroke-dashoffset: 0; }
  .reveal.in, .word.in, .draw.in, .verdict-num { transition: none; }
  .scrub-track, .tape-track { height: auto; }
  .scrub-stage, .tape-stage { position: static; height: auto; padding: 72px 0; }
}
