/* ==========================================================================
   SQUEEZE — design system
   Reference language: Swiss neo-grotesque, medium weight, tight tracking,
   product-UI windows embedded in cards, one pale accent, alternating
   white / near-black sections.
   ========================================================================== */

:root {
  /* surface */
  --paper:      #ffffff;
  --paper-2:    #f7f7f7;
  --paper-3:    #f2f2f2;
  --paper-4:    #e5e5e5;
  --ink:        #262626;
  --ink-pure:   #141414;

  /* text */
  --t-1:  rgba(38, 38, 38, 1);
  --t-2:  rgba(38, 38, 38, 0.60);
  --t-3:  rgba(38, 38, 38, 0.45);
  --t-4:  rgba(38, 38, 38, 0.28);

  /* on dark */
  --d-1:  rgba(255, 255, 255, 0.94);
  --d-2:  rgba(255, 255, 255, 0.55);
  --d-3:  rgba(255, 255, 255, 0.38);
  --d-4:  rgba(255, 255, 255, 0.16);

  /* lines */
  --line:    rgba(38, 38, 38, 0.08);
  --line-2:  rgba(38, 38, 38, 0.16);
  --line-d:  rgba(255, 255, 255, 0.12);

  /* accent — pale ember */
  --tint:    #ffdcd3;
  --tint-2:  #ffede8;
  --hot:     #e5484d;
  --up:      #22a04a;
  --amber:   #febc2e;

  /* mac chrome */
  --tl-red:    #ff5f57;
  --tl-amber:  #febc2e;
  --tl-green:  #28c840;

  /* type */
  --sans: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "JetBrains Mono", "SF Mono", ui-monospace, Menlo, Consolas, monospace;

  /* geometry */
  --r-card:  18px;
  --r-in:    14px;
  --r-sm:    8px;
  --r-xs:    6px;
  --pill:    999px;

  --shell: 88%;
  --shell-max: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--paper);
  color: var(--t-1);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection { background: var(--tint); color: var(--ink); }

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; border: 0; background: none; cursor: pointer; }
img, svg { display: block; max-width: 100%; }

/* ---------- layout ---------------------------------------------------- */

.shell {
  width: var(--shell);
  max-width: var(--shell-max);
  margin-inline: auto;
}

.section { padding: 110px 0 130px; }
.section--tight { padding: 90px 0 100px; }

/* fixed nav clearance for in-page anchors */
[id] { scroll-margin-top: 86px; }

.dark {
  background: var(--ink);
  color: var(--d-1);
}
.dark .tag { background: rgba(255,255,255,0.09); color: var(--d-2); }
.dark .lede { color: var(--d-2); }
.dark .eyebrow { color: var(--d-3); }

/* ---------- type ------------------------------------------------------ */

h1, h2, h3, h4 { font-weight: 500; }

.h-display {
  font-size: clamp(46px, 8.4vw, 109px);
  line-height: 1.0;
  letter-spacing: -0.030em;
}

.h-1 {
  font-size: clamp(31px, 4.3vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.020em;
}

.h-2 {
  font-size: clamp(23px, 2.7vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.020em;
}

.h-3 {
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.lede {
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.55;
  color: var(--t-2);
}

.small { font-size: 14.5px; line-height: 1.5; color: var(--t-2); }
.micro { font-size: 12.5px; line-height: 1.45; color: var(--t-3); }

.mono {
  font-family: var(--mono);
  font-weight: 450;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}

.eyebrow {
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: var(--t-3);
}

.tag {
  display: inline-block;
  padding: 8px 13px;
  border-radius: var(--pill);
  background: var(--paper-3);
  font-size: 13px;
  letter-spacing: -0.005em;
  color: var(--t-2);
}

.hot { color: var(--hot); }
.up  { color: var(--up); }

/* ---------- provenance badges -------------------------------------------
   Every panel on this page is labelled: either it renders live chain data,
   or it is a mockup of something not yet built. No unlabelled middle ground. */

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 9px; border-radius: var(--pill);
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0;
  white-space: nowrap;
}
.badge--live { background: rgba(34,160,74,.10); color: #1a6b33; }
.badge--live .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--up); animation: pulse 2s ease-in-out infinite; }
.badge--mock { background: var(--paper-3); color: var(--t-3); }

.win__badge { margin-left: auto; }
.win__bar .win__title { margin-right: 0; }

.srcnote {
  margin-top: 14px; font-size: 12px; color: var(--t-3);
}
.srcnote a { border-bottom: 1px solid var(--line-2); }
.srcnote a:hover { color: var(--t-1); border-bottom-color: var(--t-2); }

.statusgrid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.statuscard {
  border: 1px solid var(--line); border-radius: var(--r-card); padding: 24px;
}
.statuscard h3 { font-size: 18px; letter-spacing: -.016em; margin-top: 12px; }
.statuscard p { font-size: 14px; color: var(--t-2); margin-top: 7px; }

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

/* ---------- nav ------------------------------------------------------- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  height: 66px;
  display: flex;
  align-items: center;
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(255,255,255,0.72);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom-color: var(--line);
}

.nav__in {
  width: var(--shell);
  max-width: var(--shell-max);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 16px;
  letter-spacing: -0.02em;
}
.brand__mark {
  width: 21px; height: 21px;
  flex: none;
  color: var(--ink); /* curves follow text color; the dot stays brand-red */
}
.brand__dot {
  transform-box: fill-box;
  transform-origin: center;
  animation: pinch 3.4s ease-in-out infinite;
}
@keyframes pinch { 0%, 100% { transform: scale(1); } 50% { transform: scale(.55); } }

.nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14.5px;
  color: var(--t-2);
  margin-left: 8px;
}
.nav__links a { transition: color .2s ease; }
.nav__links a:hover { color: var(--t-1); }

.soon {
  font-size: 10.5px;
  padding: 2px 6px;
  border-radius: var(--r-xs);
  background: var(--paper-3);
  color: var(--t-3);
  margin-left: 5px;
  vertical-align: 1.5px;
}

.nav__right { margin-left: auto; display: flex; align-items: center; gap: 10px; }

.addr {
  display: flex; align-items: center; gap: 7px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  font-size: 12.5px;
  color: var(--t-2);
  transition: border-color .2s ease, background .2s ease;
}
.addr:hover { border-color: var(--line-2); background: var(--paper-2); }
.addr .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--up); flex: none; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 17px;
  border-radius: var(--pill);
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  letter-spacing: -0.01em;
  transition: transform .18s cubic-bezier(.2,.7,.3,1), opacity .18s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-1px); opacity: .9; }
.btn:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--t-1);
  border: 1px solid var(--line-2);
}
.btn--ghost:hover { background: var(--paper-2); opacity: 1; }

.btn--lg { padding: 14px 24px; font-size: 15.5px; }

.dark .btn { background: #fff; color: var(--ink); }
.dark .btn--ghost { background: transparent; color: var(--d-1); border-color: var(--d-4); }

/* ---------- hero ------------------------------------------------------ */

.hero {
  min-height: 100vh;
  min-height: 100svh;
  padding-top: 66px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 372px);
  gap: 56px;
  align-items: center;
}

.hero__sub {
  margin-top: 26px;
  max-width: 30ch;
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--t-2);
}

.hero__cta { margin-top: 34px; display: flex; gap: 10px; flex-wrap: wrap; }

.scrollcue {
  position: absolute;
  left: 50%; bottom: 30px;
  transform: translateX(-50%);
  font-size: 12px;
  color: var(--t-3);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scrollcue span {
  width: 1px; height: 26px;
  background: linear-gradient(to bottom, var(--line-2), transparent);
  animation: cue 2.2s ease-in-out infinite;
}
@keyframes cue { 0%,100% { opacity: .3; transform: scaleY(.6); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } }

/* squeeze gauge (hero right) */
.gauge {
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: var(--paper);
  padding: 22px;
  box-shadow: 0 1px 2px rgba(38,38,38,.03), 0 12px 40px -18px rgba(38,38,38,.18);
}
.gauge__top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.gauge__tk { font-size: 15px; letter-spacing: -0.02em; }
.gauge__score {
  font-size: 52px; line-height: 1;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}
.gauge__label { font-size: 12px; color: var(--t-3); margin-top: 2px; }

.bars { margin-top: 20px; display: grid; gap: 11px; }
.bar__row { display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: center; font-size: 12.5px; color: var(--t-2); }
.bar__track { grid-column: 1 / -1; height: 4px; border-radius: 4px; background: var(--paper-3); overflow: hidden; }
.bar__fill {
  height: 100%; border-radius: 4px; background: var(--ink);
  transform-origin: left; transform: scaleX(0);
  transition: transform 1.1s cubic-bezier(.2,.7,.3,1);
}
.bar__fill--hot { background: var(--hot); }

.watch {
  margin-top: 20px;
  display: flex; align-items: center; gap: 9px;
  padding: 11px 14px;
  border-radius: var(--r-in);
  background: var(--tint-2);
  border: 1px solid rgba(229,72,77,.14);
  font-size: 13px;
  color: var(--hot);
}
.watch .pulse {
  width: 7px; height: 7px; border-radius: 50%; background: var(--hot); flex: none;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .35; transform: scale(.75); } }

/* ---------- statement + marquee --------------------------------------- */

.statement {
  font-size: clamp(26px, 3.5vw, 42px);
  line-height: 1.22;
  letter-spacing: -0.024em;
  max-width: 20ch;
}
.statement .dim { color: var(--t-4); }

.rotor {
  display: inline-grid;
  vertical-align: bottom;
  overflow: hidden;
  height: 1.22em;
}
.rotor > i {
  grid-area: 1 / 1;
  font-style: normal;
  opacity: 0;
  transform: translateY(70%);
  transition: opacity .45s ease, transform .55s cubic-bezier(.2,.7,.3,1);
  white-space: nowrap;
  background: var(--tint);
  border-radius: var(--r-sm);
  padding: 0 .18em;
  margin: 0 -.18em;
}
.rotor > i.on { opacity: 1; transform: translateY(0); }
.rotor > i.off { opacity: 0; transform: translateY(-70%); }

.marquee {
  margin-top: 64px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__row { display: flex; width: max-content; animation: slide 34s linear infinite; }
.marquee:hover .marquee__row { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }

.chip {
  display: flex; align-items: center; gap: 9px;
  margin-right: 10px;
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  font-size: 13.5px;
  color: var(--t-2);
  white-space: nowrap;
}
.chip b { font-weight: 500; color: var(--t-1); }
.chip .si { font-family: var(--mono); font-size: 12px; color: var(--hot); }

/* ---------- app windows ----------------------------------------------- */

.win {
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: var(--paper);
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(38,38,38,.03), 0 24px 60px -30px rgba(38,38,38,.28);
}
.win__bar {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
}
.win__dots { display: flex; gap: 6px; }
.win__dots i { width: 10px; height: 10px; border-radius: 50%; display: block; }
.win__dots i:nth-child(1) { background: var(--tl-red); }
.win__dots i:nth-child(2) { background: var(--tl-amber); }
.win__dots i:nth-child(3) { background: var(--tl-green); }
.win__title {
  flex: 1; text-align: center;
  font-size: 12px; color: var(--t-3);
  font-family: var(--mono); letter-spacing: -0.01em;
  margin-right: 42px;
}
.win__body { padding: 18px; }
.win__body--flush { padding: 0; }

.dark .win { border-color: var(--d-4); background: #1e1e1e; box-shadow: none; }
.dark .win__bar { background: rgba(255,255,255,.045); border-bottom-color: var(--d-4); }
.dark .win__title { color: var(--d-3); }

/* tape table */
.tape { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.tape th {
  text-align: right;
  font-weight: 500;
  font-size: 11.5px;
  color: var(--t-3);
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.tape th:first-child, .tape td:first-child { text-align: left; }
.tape td {
  text-align: right;
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--t-2);
  white-space: nowrap;
}
.tape tr:last-child td { border-bottom: 0; }
.tape td:first-child { font-family: var(--sans); font-size: 13.5px; color: var(--t-1); }
.tape tbody tr { transition: background .2s ease; }
.tape tbody tr:hover { background: var(--paper-2); }

.score {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 34px; padding: 3px 7px;
  border-radius: var(--r-xs);
  background: var(--paper-3);
  color: var(--t-1);
  font-size: 12px;
}
.score--hi { background: var(--tint); color: #8f2a2e; }
.score--mid { background: #fff3d6; color: #8a6100; }

/* short ticket */
.ticket__row { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 11px 0; }
.ticket__row + .ticket__row { border-top: 1px solid var(--line); }
.ticket__k { font-size: 13px; color: var(--t-2); }
.ticket__v { font-family: var(--mono); font-size: 13px; }

.seg { display: flex; gap: 4px; padding: 3px; background: var(--paper-3); border-radius: var(--r-sm); }
.seg button {
  padding: 5px 11px; border-radius: var(--r-xs);
  font-size: 12.5px; color: var(--t-2);
  transition: background .18s ease, color .18s ease;
}
.seg button.on { background: var(--paper); color: var(--t-1); box-shadow: 0 1px 2px rgba(38,38,38,.08); }

input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 4px; border-radius: 4px;
  background: var(--paper-3);
  outline: none; cursor: grab;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 17px; height: 17px; border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line-2);
  box-shadow: 0 1px 4px rgba(38,38,38,.2);
  cursor: grab;
}
input[type="range"]::-moz-range-thumb {
  width: 17px; height: 17px; border-radius: 50%;
  background: var(--paper); border: 1px solid var(--line-2);
  box-shadow: 0 1px 4px rgba(38,38,38,.2); cursor: grab;
}

.hf {
  margin-top: 14px; padding: 13px 14px;
  border-radius: var(--r-in);
  background: var(--paper-2);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.hf__v { font-family: var(--mono); font-size: 20px; letter-spacing: -0.02em; }

/* ---------- how it works ---------------------------------------------- */

.hiw { display: grid; grid-template-columns: minmax(0, 380px) minmax(0, 1fr); gap: 72px; align-items: start; }

.steps { display: grid; gap: 4px; position: sticky; top: 100px; }
.step {
  padding: 20px 0;
  border-top: 1px solid var(--line);
  cursor: pointer;
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step__h { display: flex; align-items: center; gap: 12px; }
.step__n { font-family: var(--mono); font-size: 12px; color: var(--t-4); }
.step__t { font-size: 19px; letter-spacing: -0.018em; transition: color .25s ease; }
.step__b {
  font-size: 14.5px; color: var(--t-2); line-height: 1.5;
  margin-top: 8px; margin-left: 30px;
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .4s cubic-bezier(.2,.7,.3,1), opacity .3s ease, margin-top .4s ease;
  opacity: 0;
}
.step__b > span { overflow: hidden; }
.step.on .step__b { grid-template-rows: 1fr; opacity: 1; }
.step:not(.on) .step__b { margin-top: 0; }
.step:not(.on) .step__t { color: var(--t-3); }

.panes { position: relative; min-height: 430px; }
.pane {
  position: absolute; inset: 0;
  opacity: 0; transform: translateY(14px) scale(.985);
  pointer-events: none;
  transition: opacity .45s ease, transform .55s cubic-bezier(.2,.7,.3,1);
}
.pane.on { opacity: 1; transform: none; pointer-events: auto; }

/* utilization curve */
.curve { width: 100%; height: 190px; display: block; }
.curve__grid line { stroke: var(--line); stroke-width: 1; }
.curve__path { fill: none; stroke: var(--ink); stroke-width: 2; stroke-linecap: round; }
.curve__area { fill: url(#cg); }
.curve__kink { stroke: var(--hot); stroke-width: 1; stroke-dasharray: 3 3; }

/* ---------- terminal (dark) ------------------------------------------- */

.dark-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 18px;
}

.term {
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.75;
  padding: 20px 22px;
  min-height: 340px;
  color: var(--d-2);
  overflow-x: auto;
}
.term .l { display: block; opacity: 0; transform: translateY(6px); white-space: pre; }
.term .l.in { opacity: 1; transform: none; transition: opacity .3s ease, transform .3s ease; }
.term .c-dim { color: var(--d-3); }
.term .c-hot { color: #ff7a7f; }
.term .c-up  { color: #4ade80; }
.term .c-am  { color: var(--amber); }
.term .c-w   { color: var(--d-1); }
.caret { display: inline-block; width: 7px; height: 15px; background: var(--d-1); vertical-align: -2px; animation: blink 1.05s steps(1) infinite; }
@keyframes blink { 0%,49% { opacity: 1; } 50%,100% { opacity: 0; } }

.formula {
  font-family: var(--mono);
  font-size: 13px;
  line-height: 2.05;
  color: var(--d-2);
  padding: 22px;
  white-space: nowrap;
  overflow-x: auto;
}
.formula b { font-weight: 450; color: var(--d-1); }
.formula .w { color: var(--amber); }

/* ---------- feature cards --------------------------------------------- */

.cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.card {
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 26px;
  background: var(--paper);
  display: flex; flex-direction: column;
  min-height: 330px;
  transition: border-color .25s ease, transform .35s cubic-bezier(.2,.7,.3,1);
  will-change: transform;
}
.card:hover { border-color: var(--line-2); transform: translateY(-2px); }
.card__b { margin-top: 9px; font-size: 14.5px; color: var(--t-2); max-width: 42ch; }
.card__art { margin-top: auto; padding-top: 26px; }

.mini {
  border: 1px solid var(--line);
  border-radius: var(--r-in);
  background: var(--paper-2);
  padding: 14px;
}

.bubble {
  border-radius: 16px 16px 16px 6px;
  background: var(--paper-3);
  padding: 11px 14px;
  font-size: 13.5px;
  color: var(--t-1);
  max-width: 82%;
}
.bubble--me {
  border-radius: 16px 16px 6px 16px;
  background: var(--ink); color: #fff;
  margin-left: auto;
}

.kv { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; font-size: 13px; }
.kv + .kv { border-top: 1px solid var(--line); }
.kv span:last-child { font-family: var(--mono); font-size: 12.5px; }

.spark { width: 100%; height: 54px; display: block; }
.spark path { fill: none; stroke: var(--hot); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- risk ------------------------------------------------------ */

.risk { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0 56px; }
.risk__i { padding: 24px 0; border-top: 1px solid var(--line); }
.risk__t { font-size: 17px; letter-spacing: -0.016em; display: flex; align-items: center; gap: 10px; }
.risk__t .sev {
  font-family: var(--mono); font-size: 10.5px;
  padding: 3px 7px; border-radius: var(--r-xs);
  background: var(--tint-2); color: var(--hot);
}
.risk__t .sev--m { background: #fff3d6; color: #8a6100; }
.risk__b { margin-top: 7px; font-size: 14.5px; color: var(--t-2); }

/* ---------- faq -------------------------------------------------------- */

.faq { max-width: 800px; }
.q { border-top: 1px solid var(--line); }
.q:last-child { border-bottom: 1px solid var(--line); }
.q__h {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 0;
  text-align: left;
  font-size: 18px;
  letter-spacing: -0.016em;
}
.q__ico { position: relative; width: 13px; height: 13px; flex: none; }
.q__ico::before, .q__ico::after {
  content: ""; position: absolute; background: var(--t-2); border-radius: 2px;
  transition: transform .35s cubic-bezier(.2,.7,.3,1), opacity .25s ease;
}
.q__ico::before { left: 0; right: 0; top: 6px; height: 1.5px; }
.q__ico::after  { top: 0; bottom: 0; left: 6px; width: 1.5px; }
.q.on .q__ico::after { transform: rotate(90deg); opacity: 0; }
.q__a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .42s cubic-bezier(.2,.7,.3,1);
}
.q.on .q__a { grid-template-rows: 1fr; }
.q__a > div { overflow: hidden; }
.q__a p { padding-bottom: 26px; font-size: 15.5px; color: var(--t-2); max-width: 68ch; }

/* ---------- cta band + footer ----------------------------------------- */

.band { padding: 120px 0; text-align: center; }
.band__t { font-size: clamp(38px, 6.2vw, 78px); line-height: 1.02; letter-spacing: -0.032em; }

.foot { border-top: 1px solid var(--line-d); padding: 46px 0 40px; }
.foot__in { display: flex; flex-wrap: wrap; gap: 26px; justify-content: space-between; align-items: center; }
.foot__links { display: flex; gap: 22px; font-size: 14px; color: var(--d-2); }
.foot__links a:hover { color: var(--d-1); }
.foot__note { font-size: 12px; color: var(--d-3); max-width: 62ch; margin-top: 26px; line-height: 1.6; }

/* ---------- reveal ----------------------------------------------------- */

.rv { opacity: 0; transform: translateY(20px); }
.rv.in {
  opacity: 1; transform: none;
  transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .8s cubic-bezier(.2,.7,.3,1);
}
.rv-2.in { transition-delay: .08s; }
.rv-3.in { transition-delay: .16s; }
.rv-4.in { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .rv { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive -------------------------------------------------- */

@media (max-width: 1000px) {
  .hero__grid { grid-template-columns: 1fr; gap: 44px; }
  .hero { min-height: auto; padding: 130px 0 90px; }
  .scrollcue { display: none; }
  .hiw { grid-template-columns: 1fr; gap: 40px; }
  .steps { position: static; }
  .panes { min-height: 400px; }
  .cards { grid-template-columns: 1fr; }
  .risk { grid-template-columns: 1fr; gap: 0; }
  .nav__links { display: none; }
  .dark-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  :root { --shell: 90%; }
  body { font-size: 16px; }
  .section { padding: 76px 0 84px; }
  .statement { max-width: none; }
  .win__body { padding: 14px; }
  .tape th:nth-child(3), .tape td:nth-child(3),
  .tape th:nth-child(5), .tape td:nth-child(5) { display: none; }
  .addr { display: none; }
  .band { padding: 84px 0; }
  .card { min-height: 0; padding: 22px; }
  .panes { min-height: 460px; }
}
