@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/archivo/Archivo-Variable.woff2") format("woff2");
}

@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/newsreader/Newsreader-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "Newsreader";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/newsreader/Newsreader-Italic.woff2") format("woff2");
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/plex-mono/IBMPlexMono-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/plex-mono/IBMPlexMono-Medium.woff2") format("woff2");
}

:root {
  --ink: #0a0f1a;
  --panel: #111a2b;
  --panel-deep: #06090f;
  --sheet: #f4f2ed;
  --sheet-raised: #fbfaf7;
  --sheet-ink: #16202e;
  --text: #e8ecf2;
  --muted: #93a2b8;
  --muted-strong: #b7c1d0;
  --line-dark: rgba(255, 255, 255, 0.13);
  --line-sheet: #c9c8c2;
  --orange: #f97316;
  --orange-sheet: #c2410c;
  --hard: #2f9f68;
  --explained: #9a6a09;
  --flagged: #c8432c;
  --gap: #667482;
  --red: #b42318;
  --sans: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;
  --serif: "Newsreader", Georgia, serif;
  --mono: "IBM Plex Mono", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  background-color: var(--ink);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 40px 40px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

img,
svg {
  max-width: 100%;
}

code,
.brand,
.stats b,
.price-grid h3 {
  font-variant-numeric: tabular-nums;
}

.shell {
  width: min(1280px, calc(100% - 64px));
  margin-inline: auto;
}

.evidence-band {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background: #03060a;
  border-bottom: 1px solid #000;
  color: var(--muted-strong);
  padding: 7px 24px;
  text-align: center;
  font: 500 12px/1.45 var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.055em;
}

.evidence-band span {
  color: var(--orange);
  padding-inline: 9px;
}

nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(10, 15, 26, 0.97);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(12px);
}

.nav-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

nav.scrolled .nav-inner {
  min-height: 62px;
}

.brand {
  min-height: 44px;
  display: flex;
  align-items: center;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}

.brand strong,
.footer-brand strong {
  font-size: 22px;
  font-weight: 800;
}

.brand b,
.footer-brand b {
  font-size: 22px;
  color: var(--orange);
}

.brand i {
  height: 22px;
  width: 1px;
  background: var(--line-dark);
  margin: 0 14px;
}

.brand span {
  color: var(--muted);
  font: 500 12px/1.2 var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--muted-strong);
  font: 500 14px/1 var(--sans);
  text-decoration: none;
}

.nav-links a:hover {
  color: #fff;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 19px;
  border: 1px solid transparent;
  color: inherit;
  font: 700 15px/1.15 var(--sans);
  text-align: center;
  text-decoration: none;
  transition: color 120ms ease, background-color 120ms ease, border-color 120ms ease;
}

.button.primary {
  background: var(--orange);
  color: #171006;
}

.button.primary:hover {
  background: #ff8a34;
}

.button.outline {
  border-color: rgba(255, 255, 255, 0.34);
  background: transparent;
  color: var(--text);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
}

.button.outline:hover {
  border-color: var(--orange);
  color: #fff;
}

a:focus-visible,
.button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
  box-shadow: 0 0 0 5px var(--orange);
}

main {
  display: block;
}

.hero {
  min-height: calc(100svh - 108px);
  display: flex;
  flex-direction: column;
  padding-bottom: 34px;
}

.hero-ruler {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-dark);
  color: #f6a36b;
  font: 500 12px/1.4 var(--mono);
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.live {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  text-align: right;
}

.live i {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border: 1px solid #fff;
  border-radius: 50%;
  background: var(--orange);
}

.hero-grid {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(520px, 7fr);
  gap: clamp(44px, 5vw, 78px);
  align-items: center;
  padding: clamp(34px, 5vh, 58px) 0;
}

.hero-copy {
  min-width: 0;
}

.hero-copy h1 {
  max-width: 650px;
  margin: 0;
  color: #fff;
  font: 400 clamp(46px, 4.45vw, 64px)/1.01 var(--serif);
  letter-spacing: -0.018em;
  text-wrap: balance;
}

.hero-copy h1 em {
  color: var(--orange);
  font-style: normal;
}

.hero-copy > p:not(.micro) {
  max-width: 58ch;
  margin: 26px 0 30px;
  color: var(--muted-strong);
  font-size: 19px;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.text-link {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 10px 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--muted-strong);
  font: 500 13px/1.3 var(--mono);
  text-decoration: none;
}

.text-link:hover {
  border-color: var(--orange);
  color: #fff;
}

.micro {
  max-width: 66ch;
  margin: 22px 0 28px;
  color: var(--muted);
  font: 400 14px/1.6 var(--mono);
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 21px;
  border-top: 1px solid var(--line-dark);
}

.legend span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted-strong);
  font: 500 12px/1.3 var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.legend i,
.tape-row > i {
  width: 10px;
  height: 10px;
  display: block;
  flex: 0 0 auto;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.reviewed {
  background: var(--hard);
}

.explained {
  background: #c38913;
}

.flagged {
  background: var(--flagged);
}

.gap {
  background: var(--gap);
}

.data-tape {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--sheet);
  border: 1px solid #000;
  border-left: 3px solid var(--orange);
  color: var(--sheet-ink);
  box-shadow: none;
}

.data-tape::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.tape-head {
  min-height: 78px;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  padding: 17px 24px;
  border-bottom: 1px solid var(--line-sheet);
  background: var(--sheet-raised);
}

.tape-head small,
.coverage small {
  color: #596675;
  font: 500 12px/1.35 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tape-head h2 {
  margin: 5px 0 0;
  color: var(--sheet-ink);
  font: 700 19px/1.2 var(--sans);
}

.coverage {
  flex: 0 0 auto;
  text-align: right;
}

.coverage b {
  display: block;
  margin-top: 5px;
  padding: 4px 9px;
  border: 1px solid #a86424;
  color: #8a4b0f;
  font: 500 12px/1.3 var(--mono);
  text-transform: uppercase;
}

.tape-body {
  position: relative;
  overflow: hidden;
  padding: 8px 24px 18px;
}

.scanner {
  position: absolute;
  top: 12px;
  left: 24px;
  right: 24px;
  z-index: 2;
  height: 2px;
  background: var(--orange);
  opacity: 0.52;
  box-shadow: 0 0 10px rgb(239 106 0 / 28%);
  animation: scan 3.6s ease-in-out infinite alternate;
}

.tape-row {
  display: grid;
  grid-template-columns: 12px minmax(150px, 1.2fr) minmax(110px, 0.8fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 52px;
  padding: 11px 0;
  border-bottom: 1px solid #d6d5d0;
}

.tape-row span {
  color: var(--sheet-ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.tape-row code {
  overflow-wrap: anywhere;
  color: #596675;
  font: 400 13px/1.4 var(--mono);
}

.tape-row b {
  font: 500 12px/1.3 var(--mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.reviewed-state {
  color: #117449;
}

.explained-state {
  color: #815805;
}

.flagged-state {
  color: #b73522;
}

.gap-state {
  color: #586572;
}

.tape-foot {
  min-height: 48px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 12px 24px;
  border-top: 1px solid var(--line-sheet);
  background: #e9e6df;
  color: #596675;
  font: 500 12px/1.4 var(--mono);
  text-transform: uppercase;
}

.tape-foot strong {
  color: var(--orange-sheet);
  font-weight: 500;
}

.instrument {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 10px;
  margin-bottom: 72px;
  padding: 10px;
  background: var(--panel-deep);
  border: 1px solid #000;
}

.curve-panel,
.gate-panel {
  min-width: 0;
  padding: 28px 32px;
  background: var(--sheet);
  border: 1px solid #000;
  color: var(--sheet-ink);
}

.instrument-title {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: baseline;
  margin-bottom: 16px;
  color: #536170;
  font: 500 13px/1.4 var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.instrument-title b {
  color: var(--orange-sheet);
  font-size: 13px;
  font-weight: 500;
}

.curve {
  width: 100%;
  height: 152px;
  display: block;
  overflow: hidden;
}

.grid-lines line {
  stroke: #c8c8c3;
  stroke-width: 0.85;
}

.planned {
  fill: none;
  stroke: #5b6876;
  stroke-width: 2;
  stroke-dasharray: 5 5;
}

.physical {
  fill: none;
  stroke: var(--orange-sheet);
  stroke-width: 3;
}

.unknown {
  fill: none;
  stroke: #7f8994;
  stroke-width: 2;
  stroke-dasharray: 3 6;
}

.curve circle {
  fill: var(--orange-sheet);
}

.curve text {
  fill: #4f5c69;
  font: 500 12px var(--mono);
}

.curve .tracer {
  display: none;
}

.curve-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 10px;
  color: #536170;
  font: 500 12px/1.4 var(--mono);
  text-transform: uppercase;
}

.curve-legend span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.curve-legend i {
  width: 17px;
  display: inline-block;
}

.curve-legend .solid {
  height: 3px;
  background: var(--orange-sheet);
}

.curve-legend .dashed {
  border-top: 2px dashed #5b6876;
}

.gates {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 30px 4px 0;
}

.gates::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  left: 10px;
  height: 2px;
  background: #aeb3b5;
}

.gate {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.gate i {
  width: 20px;
  height: 20px;
  border: 3px solid var(--sheet);
  border-radius: 50%;
}

.gate.certified i {
  background: var(--hard);
  box-shadow: 0 0 0 2px #117449;
}

.gate.pending i {
  background: #c38913;
  box-shadow: 0 0 0 2px #815805;
}

.gate.missing i {
  background: var(--gap);
  box-shadow: 0 0 0 2px #586572;
}

.gate b {
  color: var(--sheet-ink);
  font: 500 14px/1.3 var(--mono);
}

.gate span {
  color: #536170;
  font: 500 12px/1.3 var(--mono);
  text-transform: uppercase;
}

.gate-panel p {
  max-width: 62ch;
  margin: 22px 0 0;
  color: #4b5866;
  font-size: 16px;
  line-height: 1.6;
}

.trust {
  background: #080d16;
  border-block: 1px solid #000;
}

.trust-inner {
  padding-block: 58px;
}

.trust h2 {
  max-width: 980px;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-wrap: balance;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  margin-top: 38px;
}

.trust-grid > div {
  padding: 5px 0 5px 20px;
  border-left: 2px solid var(--orange);
}

.trust-grid h3 {
  margin: 0;
  color: var(--text);
  font-size: 18px;
}

.trust-grid p {
  margin: 7px 0 0;
  color: var(--muted-strong);
  font-size: 16px;
  line-height: 1.6;
}

.source-chain {
  padding-block: 68px 86px;
}

.chain {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  color: var(--muted-strong);
  font: 500 13px/1.45 var(--mono);
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.chain i {
  width: 46px;
  height: 1px;
  background: var(--line-dark);
}

.chain strong {
  color: var(--orange);
  font-weight: 500;
}

.source-chain .micro {
  color: var(--muted-strong);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 42px;
  background: transparent;
  border: 0;
}

.stats > div {
  min-height: 128px;
  padding: 26px 24px;
  background: var(--sheet);
  border: 1px solid #000;
  color: var(--sheet-ink);
}

.stats b {
  display: block;
  font: 700 36px/1.05 var(--sans);
}

.stats span {
  display: block;
  margin-top: 10px;
  color: #596675;
  font: 500 13px/1.45 var(--mono);
  text-transform: uppercase;
}

.editorial {
  margin-block: 28px;
  padding: 76px 48px;
}

.editorial.compact {
  padding-top: 76px;
}

#how,
#inside,
.pricing {
  background: var(--sheet);
  border: 1px solid #000;
  color: var(--sheet-ink);
}

#engine,
.states-section,
.audience {
  background: rgba(17, 26, 43, 0.94);
  border: 1px solid #000;
  color: var(--text);
}

.section-head > span,
.kicker,
.final-cta > div > span {
  display: block;
  margin-bottom: 14px;
  color: var(--orange);
  font: 500 13px/1.35 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

#how .section-head > span,
#inside .section-head > span,
.pricing .section-head > span,
.honest .kicker {
  color: var(--orange-sheet);
}

.section-head h2,
.honest h2,
.final-cta h2 {
  max-width: 820px;
  margin: 0;
  color: inherit;
  font: 750 clamp(32px, 3.6vw, 46px)/1.08 var(--sans);
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.section-head > p {
  max-width: 66ch;
  margin: 17px 0 0;
  color: #4c5967;
  font-size: 18px;
  line-height: 1.65;
}

#engine .section-head > p,
.states-section .section-head > p,
.audience .section-head > p {
  color: var(--muted-strong);
}

.step-grid,
.four-grid {
  display: grid;
  margin-top: 44px;
  background: transparent;
  border: 0;
}

.step-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
}

.four-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.step-grid article,
.four-grid article {
  min-width: 0;
  padding: 26px 0 4px;
  background: transparent;
  border-top: 1px solid #343d46;
}

#engine .step-grid article,
#engine .four-grid article,
.states-section .four-grid article,
.audience .four-grid article {
  border-top-color: var(--line-dark);
}

.step-grid article > b {
  color: var(--orange-sheet);
  font: 500 34px/1 var(--mono);
}

article h3 {
  margin: 18px 0 10px;
  color: inherit;
  font-size: 21px;
  line-height: 1.25;
}

article p {
  max-width: 66ch;
  margin: 0;
  color: #4c5967;
  font-size: 16px;
  line-height: 1.62;
}

#engine article p,
.states-section article p,
.audience article p {
  color: var(--muted-strong);
}

.four-grid small,
.price-grid small {
  color: var(--orange-sheet);
  font: 500 13px/1.35 var(--mono);
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

#engine .four-grid small,
.states-section .four-grid small,
.audience .four-grid small {
  color: #f6a36b;
}

.state-grid article {
  position: relative;
  border-top: 3px solid transparent;
}

.state-grid article > i {
  width: 12px;
  height: 12px;
  display: block;
  margin-bottom: 18px;
  border: 1px solid #fff;
  border-radius: 50%;
}

.reviewed-card {
  border-top-color: #4ade80 !important;
}

.reviewed-card i {
  background: #4ade80;
}

.explained-card {
  border-top-color: #fbbf24 !important;
}

.explained-card i {
  background: #fbbf24;
}

.flagged-card {
  border-top-color: #f87171 !important;
}

.flagged-card i {
  background: #f87171;
}

.gap-card {
  border-top-color: #93a2b8 !important;
}

.gap-card i {
  background: #93a2b8;
}

.honest {
  margin-block: 28px;
  background: var(--sheet-raised);
  border-block: 1px solid #000;
  color: var(--sheet-ink);
}

.honest-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 74px;
  align-items: center;
  padding-block: 82px;
}

.honest ul {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.honest li {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: 16px;
  line-height: 1.55;
}

.honest li::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--hard);
}

blockquote {
  margin: 0;
  padding: 30px 30px;
  border: 1px solid #000;
  border-left: 3px solid var(--orange-sheet);
  background: #e9e6df;
  color: var(--sheet-ink);
  font: italic 24px/1.42 var(--serif);
}

.audience {
  margin-top: 56px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 44px;
}

.price-grid article {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  border: 1px solid #20252b;
  background: var(--sheet-raised);
  color: var(--sheet-ink);
}

.price-grid .featured {
  border-top: 4px solid var(--orange-sheet);
}

.price-grid h3 {
  margin: 15px 0 0;
  font-size: 34px;
  line-height: 1.1;
}

.price-grid .unit {
  margin: 6px 0 20px;
  color: #596675;
  font: 500 13px/1.4 var(--mono);
  text-transform: uppercase;
}

.price-grid ul {
  flex: 1;
  padding-left: 20px;
}

.price-grid li {
  margin: 10px 0;
  color: #3f4c59;
  font-size: 16px;
  line-height: 1.5;
}

.price-grid .button {
  margin-top: 18px;
}

.price-grid .button.outline {
  border-color: #4c5967;
  color: var(--sheet-ink);
}

.price-grid .button.outline:hover {
  border-color: var(--orange-sheet);
  color: #000;
}

.final-cta {
  margin-top: 58px;
  border-top: 1px solid var(--line-dark);
  background: #080d16;
  text-align: center;
}

.final-cta > div {
  padding-block: 84px;
}

.final-cta h2 {
  max-width: 880px;
  margin-inline: auto;
  color: #fff;
}

.final-cta p {
  max-width: 66ch;
  margin: 19px auto 30px;
  color: var(--muted-strong);
  font-size: 18px;
  line-height: 1.65;
}

.final-cta > div > div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

footer {
  border-top: 1px solid #000;
  background: #03060a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 54px;
  padding-block: 54px 42px;
}

.footer-brand strong,
.footer-brand b {
  font-size: 24px;
}

.footer-grid p {
  color: var(--muted);
  font: 400 14px/1.75 var(--mono);
}

.footer-grid a {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  color: #ff9a56;
  text-decoration: none;
}

.legal {
  max-width: 66ch;
  color: var(--muted-strong) !important;
  font-family: var(--sans) !important;
  font-size: 15px !important;
  line-height: 1.65 !important;
}

.footer-bottom {
  border-top: 1px solid var(--line-dark);
}

.footer-bottom > div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 18px;
  color: var(--muted);
  font: 500 13px/1.4 var(--mono);
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.reveal,
.reveal.in {
  opacity: 1;
  transform: none;
  transition: none;
}

@keyframes scan {
  0% {
    top: 12px;
  }
  100% {
    top: calc(100% - 14px);
  }
}

@media (max-width: 1040px) {
  .hero {
    min-height: auto;
  }

  .hero-grid,
  .instrument,
  .honest-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 38px;
  }

  .curve-panel {
    border-bottom: 1px solid #000;
  }

  .hero-ruler .live {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .trust-grid,
  .four-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .price-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .shell {
    width: min(100% - 44px, 720px);
  }

  .trust-grid,
  .step-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .editorial {
    padding-inline: 34px;
  }
}

@media (max-width: 600px) {
  body {
    background-size: 28px 28px;
    font-size: 17px;
  }

  .shell {
    width: calc(100% - 32px);
  }

  .evidence-band {
    min-height: 48px;
    padding: 8px 12px;
    font-size: 12px;
  }

  .evidence-band span {
    padding-inline: 4px;
  }

  .nav-inner {
    min-height: 60px;
  }

  nav.scrolled .nav-inner {
    min-height: 56px;
  }

  .brand i,
  .brand span,
  .nav-cta {
    display: none;
  }

  .brand strong,
  .brand b {
    font-size: 21px;
  }

  .hero {
    padding-bottom: 34px;
  }

  .hero-ruler {
    min-height: 52px;
    font-size: 13px;
    line-height: 1.45;
  }

  .hero-grid {
    padding: 34px 0 40px;
  }

  .hero-copy h1 {
    max-width: 12ch;
    font-size: clamp(38px, 12.2vw, 44px);
    line-height: 1.02;
  }

  .hero-copy > p:not(.micro) {
    margin-block: 24px 28px;
    font-size: 17px;
    line-height: 1.62;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
    min-height: 50px;
  }

  .text-link {
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.34);
    text-align: center;
  }

  .micro {
    font-size: 13px;
  }

  .legend {
    gap: 13px 16px;
  }

  .legend span {
    font-size: 12px;
  }

  .tape-head {
    min-height: 88px;
    align-items: flex-start;
    padding: 17px 18px;
  }

  .tape-head h2 {
    font-size: 18px;
  }

  .coverage small {
    display: none;
  }

  .coverage b {
    max-width: 78px;
    font-size: 12px;
    text-align: center;
  }

  .tape-body {
    padding: 8px 18px 16px;
  }

  .scanner {
    right: 18px;
    left: 18px;
  }

  .tape-row {
    grid-template-columns: 11px minmax(0, 1fr) auto;
    gap: 8px 10px;
    min-height: 66px;
  }

  .tape-row span {
    font-size: 14px;
  }

  .tape-row code {
    grid-column: 2;
    font-size: 12px;
  }

  .tape-row b {
    grid-row: 1;
    grid-column: 3;
    font-size: 12px;
  }

  .tape-foot {
    display: block;
    padding-inline: 18px;
    font-size: 12px;
  }

  .tape-foot strong {
    display: block;
    margin-top: 6px;
  }

  .instrument {
    margin-bottom: 52px;
    padding: 7px;
  }

  .curve-panel,
  .gate-panel {
    padding: 24px 18px;
  }

  .instrument-title {
    display: block;
    font-size: 12px;
  }

  .instrument-title b {
    display: block;
    margin-top: 6px;
    font-size: 12px;
  }

  .curve {
    height: 142px;
  }

  .curve text {
    transform: translateX(-28px);
  }

  .curve-legend {
    gap: 10px 16px;
    font-size: 12px;
  }

  .gate span {
    font-size: 12px;
  }

  .gates {
    display: grid;
    grid-template-columns: 1fr;
    gap: 13px;
    margin: 26px 0 0;
  }

  .gates::before {
    top: 10px;
    bottom: 10px;
    left: 9px;
    width: 2px;
    height: auto;
  }

  .gate {
    display: grid;
    grid-template-columns: 20px 34px minmax(0, 1fr);
    gap: 12px;
    justify-items: start;
  }

  .gate-panel p {
    font-size: 15px;
  }

  .trust-inner {
    padding-block: 48px;
  }

  .trust h2 {
    text-align: left;
  }

  .trust-grid {
    margin-top: 32px;
  }

  .trust-grid p {
    font-size: 15px;
  }

  .source-chain {
    padding-block: 50px 62px;
  }

  .chain {
    gap: 10px;
    justify-content: flex-start;
    font-size: 12px;
  }

  .chain i {
    width: 14px;
  }

  .source-chain .micro {
    font-size: 15px !important;
    text-align: left !important;
  }

  .stats,
  .four-grid,
  .step-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    gap: 8px;
  }

  .stats > div {
    min-height: 104px;
    padding: 22px;
  }

  .stats span {
    font-size: 12px;
  }

  .editorial {
    width: calc(100% - 24px);
    margin-block: 18px;
    padding: 56px 22px;
  }

  .editorial.compact {
    padding-top: 56px;
  }

  .section-head > span,
  .kicker,
  .final-cta > div > span {
    font-size: 12px;
  }

  .section-head h2,
  .honest h2,
  .final-cta h2 {
    font-size: clamp(30px, 9.4vw, 36px);
    line-height: 1.1;
  }

  .section-head > p,
  .final-cta p {
    font-size: 17px;
  }

  .step-grid,
  .four-grid,
  .price-grid {
    margin-top: 34px;
  }

  article h3 {
    font-size: 20px;
  }

  article p,
  .price-grid li {
    font-size: 15px;
  }

  .honest {
    margin-block: 18px;
  }

  .honest-grid {
    gap: 36px;
    padding-block: 58px;
  }

  .honest li {
    font-size: 15px;
  }

  blockquote {
    padding: 25px 23px;
    font-size: 21px;
  }

  .audience {
    margin-top: 36px;
  }

  .price-grid article {
    padding: 28px 22px;
  }

  .final-cta {
    margin-top: 38px;
  }

  .final-cta > div {
    padding-block: 64px;
  }

  .footer-grid {
    gap: 28px;
    padding-block: 46px 34px;
  }

  .footer-grid p {
    overflow-wrap: anywhere;
    font-size: 13px;
  }

  .legal {
    font-size: 15px !important;
  }

  .footer-bottom > div {
    display: block;
    font-size: 12px;
  }

  .footer-bottom span {
    display: block;
    margin: 6px 0;
  }
}

@media (forced-colors: active) {
  .data-tape,
  .instrument,
  .curve-panel,
  .gate-panel,
  .stats > div,
  .editorial,
  .price-grid article,
  blockquote,
  .button {
    border: 1px solid CanvasText;
  }

  .legend i,
  .tape-row > i,
  .state-grid article > i {
    forced-color-adjust: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .scanner {
    display: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
