:root {
  --paper: #f3eddf;
  --paper-2: #e8dfcf;
  --ink: #171813;
  --muted: #68675f;
  --green: #173e32;
  --green-deep: #0e2b23;
  --mint: #b9d8c1;
  --signal: #ef5a32;
  --signal-dark: #c9371c;
  --yellow: #f1d96b;
  --blue: #3d50c8;
  --white: #fffdf8;
  --line: rgba(23, 24, 19, 0.18);
  --mono: "DM Mono", monospace;
  --display: "Fraunces", Georgia, serif;
  --body: "Manrope", sans-serif;
  --page: min(1440px, calc(100vw - 64px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.035;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

::selection {
  color: var(--white);
  background: var(--signal);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

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

h1,
h2,
h3,
p,
dl,
dd {
  margin-top: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1200;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 900;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: var(--page);
  height: 78px;
  margin-inline: auto;
  border-bottom: 1px solid transparent;
  transition: height 280ms var(--ease), border-color 280ms ease, background 280ms ease,
    backdrop-filter 280ms ease;
}

.site-header.scrolled {
  width: 100%;
  height: 66px;
  padding-inline: max(32px, calc((100vw - 1440px) / 2));
  border-color: var(--line);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-family: var(--display);
  font-size: 21px;
  font-weight: 650;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 31px;
  height: 31px;
  margin-right: 10px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.desktop-nav {
  display: flex;
  gap: 30px;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  padding-block: 10px;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-link {
  justify-self: end;
  padding: 10px 0;
  border-bottom: 1px solid currentColor;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.header-link span {
  display: inline-block;
  margin-left: 5px;
  transition: transform 200ms var(--ease);
}

.header-link:hover span {
  transform: translate(3px, -3px);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 128px max(32px, calc((100vw - 1440px) / 2)) 72px;
  overflow: hidden;
  background:
    radial-gradient(circle at 11% 8%, rgba(239, 90, 50, 0.11), transparent 26%),
    radial-gradient(circle at 88% 74%, rgba(23, 62, 50, 0.13), transparent 28%),
    linear-gradient(rgba(23, 24, 19, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 24, 19, 0.045) 1px, transparent 1px), var(--paper);
  background-size: auto, auto, 34px 34px, 34px 34px, auto;
}

.hero::after {
  position: absolute;
  top: 100px;
  left: 50%;
  width: 1px;
  height: calc(100% - 160px);
  content: "";
  background: linear-gradient(transparent, var(--line) 8%, var(--line) 92%, transparent);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 0.92fr);
  gap: clamp(56px, 7vw, 124px);
  align-items: center;
  width: 100%;
  max-width: 1440px;
  min-height: calc(100svh - 200px);
  margin-inline: auto;
}

.hero-copy {
  padding-right: 20px;
}

.eyebrow-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  margin-bottom: clamp(28px, 4vw, 52px);
}

.eyebrow,
.open-badge {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 7px 10px;
  color: var(--white);
  background: var(--ink);
}

.open-badge {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}

.open-badge i,
.live-indicator i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #46a96e;
  box-shadow: 0 0 0 4px rgba(70, 169, 110, 0.14);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  50% {
    box-shadow: 0 0 0 7px rgba(70, 169, 110, 0);
  }
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 28px;
  font-family: var(--display);
  font-size: clamp(58px, 6.2vw, 106px);
  font-weight: 650;
  line-height: 0.91;
  letter-spacing: -0.058em;
}

.hero h1 em,
.manifesto h2 em,
.section-heading h2 em,
.robustness-copy h3 em,
.access-card h2 em {
  color: var(--signal);
  font-weight: 500;
}

.hero-deck {
  max-width: 650px;
  margin-bottom: 20px;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.55;
}

.hero-deck strong {
  font-weight: 700;
}

.authors {
  max-width: 680px;
  margin-bottom: 30px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.8;
}

.hero-actions,
.access-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  transition: color 220ms ease, background 220ms ease, box-shadow 220ms ease, transform 220ms var(--ease);
}

.button span {
  font-size: 15px;
  transition: transform 220ms var(--ease);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button:hover span {
  transform: translate(2px, -1px);
}

.button-primary {
  color: var(--white);
  background: var(--ink);
  box-shadow: 5px 5px 0 var(--signal);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 2px 2px 0 var(--signal);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.24);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  color: var(--white);
  background: var(--ink);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 690px;
  margin: clamp(40px, 6vh, 72px) 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hero-stats div {
  padding-right: 20px;
}

.hero-stats div + div {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.hero-stats dt {
  margin-bottom: 2px;
  font-family: var(--display);
  font-size: clamp(26px, 2.1vw, 36px);
  font-weight: 650;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.hero-stats dd {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.experiment-wrap {
  position: relative;
  max-width: 600px;
  margin-left: auto;
  transform: rotate(1.35deg);
}

.experiment-shadow {
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 1px solid rgba(23, 24, 19, 0.3);
  background: var(--signal);
  transform: rotate(-2.2deg);
}

.experiment-card {
  position: relative;
  padding: clamp(24px, 3vw, 38px);
  border: 1.5px solid var(--ink);
  background: #fbf8f0;
  box-shadow: 0 20px 60px rgba(23, 24, 19, 0.13);
}

.experiment-card::before {
  position: absolute;
  top: -10px;
  right: 84px;
  width: 76px;
  height: 22px;
  content: "";
  background: rgba(241, 217, 107, 0.7);
  transform: rotate(-3deg);
}

.experiment-topline,
.experiment-heading,
.experiment-result {
  display: flex;
  justify-content: space-between;
}

.experiment-topline {
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.07em;
}

.live-indicator {
  display: flex;
  gap: 8px;
  align-items: center;
}

.experiment-heading {
  gap: 20px;
  align-items: start;
  margin: 24px 0 20px;
}

.experiment-heading p,
.experiment-question {
  margin-bottom: 4px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.experiment-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(28px, 2.2vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.score-chip {
  min-width: 98px;
  padding: 9px 10px;
  border: 1px solid var(--ink);
  text-align: right;
}

.score-chip span {
  display: block;
  font-family: var(--mono);
  font-size: 7px;
  text-transform: uppercase;
}

.score-chip strong {
  display: block;
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.2;
}

.experiment-question {
  margin-bottom: 12px;
  text-transform: none;
}

.constraint-stack {
  display: grid;
  gap: 7px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.constraint-stack li {
  display: grid;
  grid-template-columns: 35px 1fr;
  align-items: center;
  min-height: 46px;
  padding: 7px 12px 7px 0;
  border: 1px solid rgba(23, 24, 19, 0.16);
  background: var(--white);
  transition: transform 420ms var(--ease), background 220ms ease, border-color 220ms ease;
}

.constraint-stack li:nth-child(2n) {
  background: #f1eee5;
}

.constraint-stack.shuffling li {
  border-color: var(--signal);
  background: #fff0e9;
}

.constraint-stack b {
  align-self: stretch;
  display: grid;
  place-items: center;
  margin-right: 10px;
  border-right: 1px solid var(--line);
  color: var(--signal-dark);
  font-family: var(--mono);
  font-size: 9px;
}

.constraint-stack span {
  font-size: 12px;
  line-height: 1.35;
}

.experiment-result {
  align-items: center;
  margin-top: 17px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.result-label {
  display: block;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.experiment-result strong {
  font-size: 13px;
}

.delta {
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--muted);
  background: var(--paper-2);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.delta.negative {
  color: var(--signal-dark);
  background: #ffdcd2;
}

.shuffle-button {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  color: var(--white);
  background: var(--green);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms ease;
}

.shuffle-button:hover,
.shuffle-button:focus-visible {
  background: var(--signal);
  box-shadow: 1px 1px 0 var(--ink);
  transform: translate(3px, 3px);
}

.shuffle-icon {
  display: inline-block;
  font-size: 17px;
  transition: transform 440ms var(--ease);
}

.shuffle-button:hover .shuffle-icon {
  transform: rotate(180deg);
}

.experiment-footnote {
  margin: 14px 0 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  line-height: 1.5;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 1px;
  height: 24px;
  overflow: hidden;
  background: rgba(23, 24, 19, 0.2);
}

.scroll-cue i::after {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--ink);
  animation: scroll-line 1.8s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: translateY(-100%); }
  50%, 100% { transform: translateY(100%); }
}

.section-pad {
  padding: clamp(92px, 11vw, 170px) max(32px, calc((100vw - 1440px) / 2));
}

.section-kicker {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto clamp(52px, 7vw, 96px);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-kicker span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.section-kicker p {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 0;
}

.section-kicker p::after {
  width: 110px;
  height: 1px;
  content: "";
  background: currentColor;
  opacity: 0.4;
}

.section-kicker.light {
  color: rgba(255, 255, 255, 0.62);
}

.manifesto {
  position: relative;
  background: var(--paper-2);
}

.manifesto::before {
  position: absolute;
  top: 0;
  right: max(32px, calc((100vw - 1440px) / 2));
  left: max(32px, calc((100vw - 1440px) / 2));
  height: 1px;
  content: "";
  background: var(--line);
}

.manifesto-grid,
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  gap: clamp(48px, 8vw, 130px);
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
}

.manifesto h2,
.section-heading h2 {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(46px, 5.7vw, 86px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.052em;
}

.manifesto-copy {
  align-self: end;
}

.manifesto-copy > p,
.section-heading > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.margin-note {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--ink);
}

.margin-note span {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.margin-note p {
  margin: 10px 0 0;
  font-family: var(--display);
  font-size: 20px;
  font-style: italic;
  line-height: 1.5;
}

.benchmark {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 35%, rgba(185, 216, 193, 0.08), transparent 25%),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px), var(--green-deep);
  background-size: auto, 46px 46px, 46px 46px, auto;
}

.section-heading {
  align-items: end;
  margin-bottom: clamp(64px, 8vw, 110px);
}

.light-heading h2 em {
  color: var(--yellow);
}

.light-heading > p {
  color: rgba(255, 255, 255, 0.62);
}

.benchmark-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(500px, 1.28fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: stretch;
  max-width: 1440px;
  margin-inline: auto;
}

.distribution-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 560px;
  padding: 50px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.035);
}

.distribution-chart {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 340px);
  aspect-ratio: 1;
  margin: 0 auto 42px;
  border-radius: 50%;
  background: conic-gradient(
    var(--signal) 0 60%,
    var(--yellow) 60% 85%,
    var(--mint) 85% 93%,
    #7d8ed8 93% 100%
  );
  box-shadow: 0 0 0 13px rgba(255, 255, 255, 0.035), 0 26px 60px rgba(0, 0, 0, 0.24);
  transform: rotate(-90deg);
}

.distribution-chart::after {
  position: absolute;
  inset: 36px;
  border-radius: 50%;
  content: "";
  background: var(--green-deep);
}

.chart-core {
  position: relative;
  z-index: 1;
  text-align: center;
  transform: rotate(90deg);
}

.chart-core strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 650;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.chart-core span {
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.distribution-caption {
  max-width: 380px;
  text-align: center;
}

.distribution-caption span {
  color: var(--yellow);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.distribution-caption p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.category-list {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.category-row {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr 110px;
  gap: 28px;
  align-items: center;
  min-height: 140px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: padding 320ms var(--ease), color 220ms ease;
}

.category-row::before {
  position: absolute;
  inset: 0 -20px;
  z-index: 0;
  content: "";
  background: rgba(255, 255, 255, 0.04);
  opacity: 0;
  transform: scaleX(0.96);
  transition: opacity 220ms ease, transform 320ms var(--ease);
}

.category-row:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.category-row > * {
  position: relative;
  z-index: 1;
}

.category-number {
  color: var(--yellow);
  font-family: var(--display);
  font-size: 34px;
  font-style: italic;
}

.category-row h3 {
  margin: 0 0 7px;
  font-family: var(--display);
  font-size: clamp(25px, 2.3vw, 36px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.category-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.category-glyph {
  justify-self: end;
  width: 88px;
  height: 58px;
  color: var(--mint);
}

.line-glyph {
  display: flex;
  gap: 12px;
  align-items: center;
}

.line-glyph::before {
  position: absolute;
  width: 75px;
  height: 1px;
  content: "";
  background: currentColor;
}

.line-glyph i {
  z-index: 1;
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: var(--green-deep);
}

.seat-glyph {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  align-items: center;
}

.seat-glyph i {
  height: 33px;
  border: 1px solid currentColor;
  border-radius: 20px 20px 4px 4px;
}

.seat-glyph i:nth-child(3) {
  background: currentColor;
}

.tree-glyph {
  position: relative;
}

.tree-glyph::before,
.tree-glyph::after {
  position: absolute;
  content: "";
  background: currentColor;
}

.tree-glyph::before {
  top: 14px;
  left: 43px;
  width: 1px;
  height: 28px;
}

.tree-glyph::after {
  top: 41px;
  left: 20px;
  width: 48px;
  height: 1px;
}

.tree-glyph i {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.tree-glyph i:first-child { top: 0; left: 37px; }
.tree-glyph i:nth-child(2) { right: 12px; bottom: 0; }
.tree-glyph i:last-child { bottom: 0; left: 12px; }

.code-glyph {
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  font-family: var(--mono);
  font-size: 17px;
}

.benchmark-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1440px;
  margin: clamp(70px, 9vw, 120px) auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.benchmark-specs div {
  padding: 26px 24px;
}

.benchmark-specs div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.benchmark-specs span,
.benchmark-specs strong {
  display: block;
}

.benchmark-specs span {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.benchmark-specs strong {
  font-family: var(--display);
  font-size: 23px;
  font-weight: 500;
}

.results {
  background: var(--paper);
}

.leaderboard-shell {
  max-width: 1440px;
  margin-inline: auto;
  border: 1px solid var(--ink);
  background: rgba(255, 253, 248, 0.52);
  box-shadow: 12px 12px 0 var(--paper-2);
}

.leaderboard-toolbar {
  display: flex;
  justify-content: space-between;
  min-height: 76px;
  border-bottom: 1px solid var(--ink);
}

.metric-tabs {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}

.metric-tabs::-webkit-scrollbar {
  display: none;
}

.metric-tab {
  flex: 0 0 auto;
  padding: 0 19px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease;
}

.metric-tab:hover,
.metric-tab:focus-visible,
.metric-tab.active {
  color: var(--white);
  background: var(--ink);
}

.metric-note {
  align-self: center;
  max-width: 260px;
  margin: 0 24px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  line-height: 1.5;
  text-align: right;
}

.leaderboard-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
}

.leaderboard {
  display: grid;
  gap: 11px;
  min-height: 600px;
  padding: 34px 42px 38px;
  border-right: 1px solid var(--ink);
}

.leaderboard-row {
  display: grid;
  grid-template-columns: 28px minmax(140px, 210px) 1fr 60px;
  gap: 15px;
  align-items: center;
  transition: order 500ms var(--ease), transform 300ms var(--ease), opacity 300ms ease;
}

.leaderboard-rank {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
}

.leaderboard-name {
  overflow: hidden;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.leaderboard-bar-track {
  position: relative;
  height: 19px;
  overflow: hidden;
  background: var(--paper-2);
}

.leaderboard-bar {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: var(--green);
  transition: width 750ms var(--ease), background 350ms ease;
}

.leaderboard-row:nth-child(1) .leaderboard-bar {
  background: var(--signal);
}

.leaderboard-value {
  font-family: var(--display);
  font-size: 19px;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.leaderboard-insight {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px 34px;
  background: var(--ink);
  color: var(--white);
}

.insight-label,
.insight-mini {
  color: var(--yellow);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.leaderboard-insight > strong {
  display: block;
  margin: 20px 0 14px;
  font-family: var(--display);
  font-size: 70px;
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.06em;
}

.leaderboard-insight p {
  margin: 0;
  color: rgba(255, 255, 255, 0.59);
  font-size: 12px;
}

.insight-rule {
  margin: 36px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.insight-mini {
  margin-bottom: 10px;
  line-height: 1.5;
}

.leaderboard-source {
  display: flex;
  justify-content: space-between;
  padding: 15px 20px;
  border-top: 1px solid var(--ink);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.findings {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 6%, rgba(239, 90, 50, 0.14), transparent 25%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.025) 25%, transparent 25%) 0 0 / 18px 18px,
    #171813;
}

.failure-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  max-width: 1440px;
  margin-inline: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.failure-card {
  min-height: 350px;
  padding: clamp(32px, 4vw, 60px);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.015);
}

.failure-card:last-child {
  grid-column: 2;
}

.failure-primary {
  grid-row: span 2;
  min-height: 700px;
  background: var(--signal);
}

.failure-index {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.07em;
}

.failure-stat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: end;
  margin: clamp(60px, 8vw, 115px) 0 32px;
}

.failure-stat strong {
  font-family: var(--display);
  font-size: clamp(100px, 12vw, 180px);
  font-weight: 500;
  line-height: 0.7;
  letter-spacing: -0.07em;
}

.failure-stat sup {
  font-family: var(--mono);
  font-size: 0.19em;
  letter-spacing: 0;
  vertical-align: top;
}

.failure-stat span {
  max-width: 180px;
  font-family: var(--display);
  font-size: 21px;
  font-style: italic;
  line-height: 1.2;
}

.failure-card > p {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.failure-primary > p {
  color: rgba(255, 255, 255, 0.82);
}

.cascade-viz {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 56px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cascade-viz span {
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.cascade-viz .bad-node {
  color: var(--signal);
  background: var(--white);
}

.compact-stat {
  display: block;
  margin: 42px 0 24px;
}

.compact-stat strong {
  display: block;
  margin-bottom: 22px;
  font-size: clamp(76px, 7vw, 112px);
}

.compact-stat span {
  display: block;
  max-width: 300px;
  font-size: 18px;
}

.robustness-block {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(50px, 8vw, 130px);
  max-width: 1440px;
  margin: clamp(92px, 11vw, 160px) auto 0;
  padding-top: clamp(62px, 7vw, 100px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.robustness-copy > span {
  color: var(--yellow);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.07em;
}

.robustness-copy h3 {
  margin: 28px 0;
  font-family: var(--display);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.05em;
}

.robustness-copy p {
  max-width: 440px;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}

.impact-chart {
  padding: 35px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.035);
}

.impact-axis {
  display: flex;
  justify-content: space-between;
  margin: 0 57px 20px 190px;
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--mono);
  font-size: 8px;
}

.impact-row {
  display: grid;
  grid-template-columns: 165px 1fr 46px;
  gap: 20px;
  align-items: center;
  min-height: 68px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.impact-row > div:first-child strong,
.impact-row > div:first-child span {
  display: block;
}

.impact-row > div:first-child strong {
  font-size: 11px;
}

.impact-row > div:first-child span {
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--mono);
  font-size: 8px;
}

.impact-track {
  position: relative;
  height: 15px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06) 49.7%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.06) 50.3%);
}

.impact-track i {
  position: absolute;
  top: 2px;
  bottom: 2px;
  width: calc(var(--impact) / 2);
}

.impact-track .negative {
  right: 50%;
  background: var(--signal);
}

.impact-track .positive {
  left: 50%;
  background: var(--mint);
}

.impact-row > b {
  color: var(--signal);
  font-family: var(--mono);
  font-size: 11px;
  text-align: right;
}

.impact-row > b.positive-value {
  color: var(--mint);
}

.impact-note {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--mono);
  font-size: 8px;
  text-align: right;
  text-transform: uppercase;
}

.method {
  background: var(--paper-2);
}

.method-pipeline {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  max-width: 1440px;
  margin-inline: auto;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.method-pipeline article {
  position: relative;
  min-height: 350px;
  padding: 32px 22px;
}

.method-pipeline article > span {
  font-family: var(--mono);
  font-size: 9px;
}

.method-symbol {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  margin: 50px 0 28px;
}

.source-symbol {
  position: relative;
}

.source-symbol i {
  position: absolute;
  width: 55px;
  height: 68px;
  border: 1px solid var(--ink);
  background: var(--paper-2);
}

.source-symbol i:first-child { transform: rotate(-9deg) translate(-10px, 2px); }
.source-symbol i:nth-child(2) { transform: rotate(7deg) translate(10px, 0); }
.source-symbol i:last-child { background: var(--white); }

.scan-symbol {
  position: relative;
  border: 1px solid var(--ink);
}

.scan-symbol::before,
.scan-symbol::after {
  position: absolute;
  content: "";
  background: var(--signal);
}

.scan-symbol::before {
  right: 10px;
  left: 10px;
  height: 2px;
  animation: scan 2.4s ease-in-out infinite;
}

.scan-symbol::after {
  top: 14px;
  bottom: 14px;
  left: 45px;
  width: 1px;
  opacity: 0.4;
}

@keyframes scan {
  0%, 100% { top: 14px; }
  50% { top: 74px; }
}

.structure-symbol {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.structure-symbol i {
  width: 76px;
  height: 18px;
  border: 1px solid var(--ink);
}

.structure-symbol i:nth-child(2) {
  width: 52px;
  background: var(--yellow);
}

.verify-symbol {
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-family: var(--display);
  font-size: 43px;
}

.method-pipeline h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 30px;
  font-weight: 500;
}

.method-pipeline p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.pipeline-arrow {
  align-self: center;
  font-family: var(--display);
  font-size: 31px;
  font-style: normal;
}

.access {
  background: var(--paper);
}

.access-card {
  position: relative;
  max-width: 1440px;
  min-height: 620px;
  margin-inline: auto;
  padding: clamp(45px, 7vw, 100px);
  overflow: hidden;
  color: var(--white);
  background: var(--blue);
  box-shadow: 15px 15px 0 var(--signal);
}

.access-card::before {
  position: absolute;
  inset: 20px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  content: "";
}

.access-eyebrow {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.access-card h2 {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin: 42px 0 24px;
  font-family: var(--display);
  font-size: clamp(64px, 9vw, 132px);
  font-weight: 500;
  line-height: 0.82;
  letter-spacing: -0.07em;
}

.access-card h2 em {
  color: var(--yellow);
}

.access-card > p {
  position: relative;
  z-index: 1;
  max-width: 610px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.access-actions {
  position: relative;
  z-index: 1;
}

.inverse-button {
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 5px 5px 0 var(--ink);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
  background: transparent;
}

.button-light:hover {
  color: var(--blue);
  background: var(--white);
}

.citation-block {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  max-width: 830px;
  margin-top: 54px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.08);
}

.citation-block code {
  color: rgba(255, 255, 255, 0.66);
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.6;
}

.citation-block button {
  flex: 0 0 auto;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--white);
  background: transparent;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.citation-block button:hover,
.citation-block button:focus-visible {
  color: var(--blue);
  background: var(--white);
}

.access-orbit {
  position: absolute;
  top: 50%;
  right: -80px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  transform: translateY(-50%);
}

.access-orbit::before,
.access-orbit::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  content: "";
}

.access-orbit::before { inset: 85px; }
.access-orbit::after { inset: 175px; }

.access-orbit i {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 1px solid var(--white);
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.08);
}

.access-orbit i:first-child { top: 44px; left: 90px; }
.access-orbit i:nth-child(2) { right: 66px; bottom: 100px; background: var(--yellow); }
.access-orbit i:last-child { top: 235px; left: 235px; background: var(--mint); }

.site-footer {
  padding: 72px max(32px, calc((100vw - 1440px) / 2)) 28px;
  color: var(--white);
  background: var(--green-deep);
}

.footer-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  max-width: 1440px;
  margin-inline: auto;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-brand {
  font-size: 34px;
}

.footer-brand .brand-mark {
  width: 43px;
  height: 43px;
}

.footer-top > p {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--display);
  font-size: 19px;
  font-style: italic;
  text-align: right;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.45fr;
  gap: 70px;
  max-width: 1440px;
  margin-inline: auto;
  padding: 46px 0 80px;
}

.footer-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--yellow);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid a {
  margin: 0;
  color: rgba(255, 255, 255, 0.53);
  font-size: 11px;
  line-height: 1.8;
}

.footer-links a {
  display: block;
  width: fit-content;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  max-width: 1440px;
  margin-inline: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.38);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1600;
  padding: 12px 16px;
  border: 1px solid var(--white);
  color: var(--white);
  background: var(--ink);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 220ms ease, transform 220ms var(--ease);
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.js [data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 4px;
}

@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(430px, 0.85fr);
    gap: 55px;
  }

  .hero::after {
    display: none;
  }

  .hero h1 {
    font-size: clamp(57px, 7vw, 82px);
  }

  .benchmark-grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 45px;
  }

  .distribution-card {
    padding: 36px;
  }

  .leaderboard-layout {
    grid-template-columns: minmax(0, 1fr) 250px;
  }

  .leaderboard {
    padding-inline: 28px;
  }

  .leaderboard-row {
    grid-template-columns: 24px minmax(120px, 175px) 1fr 55px;
  }

  .leaderboard-insight {
    padding-inline: 28px;
  }

  .leaderboard-insight > strong {
    font-size: 58px;
  }

  .impact-row {
    grid-template-columns: 135px 1fr 42px;
    gap: 14px;
  }

  .impact-axis {
    margin-left: 150px;
  }
}

@media (max-width: 960px) {
  :root {
    --page: calc(100vw - 48px);
  }

  .desktop-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 76px;
  }

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

  .hero h1 {
    max-width: 760px;
    font-size: clamp(62px, 10vw, 94px);
  }

  .experiment-wrap {
    width: min(100% - 14px, 660px);
    margin: 0 auto 45px;
  }

  .scroll-cue {
    display: none;
  }

  .manifesto-grid,
  .section-heading {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .manifesto-copy,
  .section-heading > p {
    max-width: 660px;
  }

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

  .distribution-card {
    min-height: auto;
    padding: 60px 30px;
  }

  .distribution-chart {
    width: min(70vw, 340px);
  }

  .leaderboard-toolbar {
    display: block;
  }

  .metric-tabs {
    min-height: 62px;
    border-bottom: 1px solid var(--line);
  }

  .metric-note {
    max-width: none;
    padding: 13px 0;
    text-align: left;
  }

  .leaderboard-layout {
    grid-template-columns: 1fr;
  }

  .leaderboard {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .leaderboard-insight {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px 35px;
    align-items: center;
  }

  .leaderboard-insight > strong {
    grid-row: 2 / span 2;
    font-size: 70px;
  }

  .leaderboard-insight > p:first-of-type {
    align-self: end;
  }

  .insight-rule {
    display: none;
  }

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

  .failure-primary {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 560px;
  }

  .failure-card:last-child {
    grid-column: auto;
  }

  .failure-stat strong {
    font-size: clamp(100px, 20vw, 170px);
  }

  .compact-stat strong {
    font-size: clamp(68px, 11vw, 94px);
  }

  .robustness-block {
    grid-template-columns: 1fr;
  }

  .method-pipeline {
    grid-template-columns: 1fr 1fr;
    border-bottom: 0;
  }

  .method-pipeline article {
    min-height: 320px;
    border-bottom: 1px solid var(--ink);
  }

  .method-pipeline article:nth-of-type(odd) {
    border-right: 1px solid var(--ink);
  }

  .pipeline-arrow {
    display: none;
  }

  .access-orbit {
    top: auto;
    right: -180px;
    bottom: -260px;
    transform: none;
  }

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

@media (max-width: 640px) {
  :root {
    --page: calc(100vw - 32px);
  }

  html {
    scroll-padding-top: 70px;
  }

  .site-header {
    height: 66px;
  }

  .site-header.scrolled {
    padding-inline: 16px;
  }

  .brand {
    font-size: 18px;
  }

  .brand-mark {
    width: 27px;
    height: 27px;
    margin-right: 8px;
  }

  .header-link {
    display: none;
  }

  .hero {
    padding: 102px 16px 76px;
  }

  .hero-grid,
  .hero-copy,
  .hero-deck,
  .authors,
  .hero-actions {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }

  .authors {
    overflow-wrap: anywhere;
  }

  .eyebrow-row {
    margin-bottom: 32px;
  }

  .hero h1 {
    margin-bottom: 24px;
    max-width: 100%;
    font-size: clamp(48px, 14.25vw, 66px);
    line-height: 0.94;
  }

  .hero h1 em {
    font-size: 0.96em;
  }

  .hero-deck {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
    max-width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    margin-top: 48px;
    padding-top: 0;
    border-top: 0;
  }

  .hero-stats div,
  .hero-stats div + div {
    display: flex;
    align-items: end;
    justify-content: space-between;
    padding: 14px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero-stats dd {
    margin-bottom: 4px;
  }

  .experiment-wrap {
    width: calc(100% - 10px);
    transform: rotate(0.6deg);
  }

  .experiment-shadow {
    inset: 9px -9px -9px 9px;
  }

  .experiment-card {
    padding: 20px;
  }

  .experiment-heading {
    display: block;
  }

  .score-chip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 17px;
    text-align: left;
  }

  .experiment-heading h2 {
    font-size: 31px;
  }

  .constraint-stack li {
    min-height: 50px;
  }

  .section-pad {
    padding: 88px 16px;
  }

  .section-kicker {
    margin-bottom: 50px;
  }

  .manifesto h2,
  .section-heading h2 {
    font-size: clamp(43px, 13vw, 60px);
  }

  .manifesto-copy > p,
  .section-heading > p {
    font-size: 15px;
  }

  .distribution-card {
    padding: 45px 18px;
  }

  .distribution-chart::after {
    inset: 29px;
  }

  .category-row {
    grid-template-columns: 64px 1fr;
    gap: 16px;
    min-height: 135px;
  }

  .category-number {
    font-size: 27px;
  }

  .category-row h3 {
    font-size: 25px;
  }

  .category-glyph {
    display: none;
  }

  .benchmark-specs {
    grid-template-columns: 1fr 1fr;
  }

  .benchmark-specs div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .benchmark-specs div:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .benchmark-specs strong {
    font-size: 19px;
  }

  .leaderboard-shell {
    margin-inline: 0;
    box-shadow: 7px 7px 0 var(--paper-2);
  }

  .metric-note {
    margin-inline: 14px;
  }

  .leaderboard {
    gap: 14px;
    min-height: 575px;
    padding: 28px 15px;
  }

  .leaderboard-row {
    grid-template-columns: 20px minmax(100px, 1fr) 1.25fr 47px;
    gap: 8px;
  }

  .leaderboard-name {
    font-size: 8px;
  }

  .leaderboard-bar-track {
    height: 14px;
  }

  .leaderboard-value {
    font-size: 16px;
  }

  .leaderboard-insight {
    display: block;
  }

  .leaderboard-insight > strong {
    font-size: 58px;
  }

  .insight-rule {
    display: block;
  }

  .leaderboard-source {
    display: grid;
    gap: 5px;
  }

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

  .failure-primary,
  .failure-card,
  .failure-card:last-child {
    grid-column: auto;
    min-height: auto;
  }

  .failure-primary {
    padding-bottom: 60px;
  }

  .failure-stat {
    display: block;
    margin: 75px 0 30px;
  }

  .failure-stat strong {
    display: block;
    margin-bottom: 30px;
    font-size: 32vw;
  }

  .failure-stat span {
    display: block;
    max-width: 260px;
  }

  .compact-stat {
    margin-top: 46px;
  }

  .compact-stat strong {
    font-size: 24vw;
  }

  .cascade-viz {
    flex-wrap: wrap;
  }

  .impact-chart {
    padding: 24px 18px;
  }

  .impact-axis {
    margin-left: 0;
    margin-right: 0;
  }

  .impact-row {
    grid-template-columns: 1fr 43px;
    gap: 6px 12px;
    padding: 13px 0;
  }

  .impact-track {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .impact-row > b {
    grid-column: 2;
    grid-row: 1;
  }

  .method-pipeline {
    grid-template-columns: 1fr;
  }

  .method-pipeline article,
  .method-pipeline article:nth-of-type(odd) {
    min-height: 285px;
    padding-inline: 8px;
    border-right: 0;
  }

  .method-symbol {
    margin-top: 36px;
  }

  .access-card {
    min-height: 720px;
    padding: 50px 28px;
    box-shadow: 8px 8px 0 var(--signal);
  }

  .access-card::before {
    inset: 12px;
  }

  .access-card h2 {
    margin-top: 34px;
    font-size: clamp(58px, 19vw, 84px);
  }

  .citation-block {
    display: block;
  }

  .citation-block button {
    margin-top: 16px;
  }

  .access-orbit {
    opacity: 0.4;
  }

  .footer-top {
    display: grid;
    gap: 30px;
  }

  .footer-top > p {
    text-align: left;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 54px;
  }

  .footer-bottom {
    display: grid;
    gap: 8px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .js [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

  .site-header {
    position: absolute;
  }

  .scroll-progress,
  .scroll-cue,
  .toast {
    display: none !important;
  }

  .benchmark,
  .findings,
  .access-card,
  .site-footer {
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }
}
