:root {
  --black: #050505;
  --black-soft: #0a0a0a;
  --paper: #f5f5f0;
  --muted: #8a8a84;
  --line: rgba(245, 245, 240, 0.16);
  --acid: #c6ff00;
  --display: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --mono: "Courier New", Courier, monospace;
  --page: clamp(22px, 4vw, 72px);
  --header-height: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--paper);
  font-family: var(--display);
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: var(--black);
  background: var(--acid);
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  transform: translateY(-160%);
  background: var(--acid);
  color: var(--black);
  font: 700 12px/1 var(--mono);
  text-transform: uppercase;
}

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

.page-noise {
  position: fixed;
  z-index: 90;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  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='.88' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.site-header {
  position: fixed;
  z-index: 80;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 180px auto 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 0 var(--page);
  border-bottom: 1px solid transparent;
  transition:
    background-color 350ms ease,
    border-color 350ms ease,
    backdrop-filter 350ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(16px);
}

.brand {
  width: 154px;
}

.brand img {
  width: 100%;
  height: auto;
}

.live-state,
.nav-links,
.header-action,
.eyebrow,
.hero-readout,
.image-stamp,
.image-coordinates,
.site-footer,
.step-number,
.log-row {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.live-state {
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}

.live-dot {
  width: 7px;
  height: 7px;
  background: var(--acid);
  box-shadow: 0 0 16px rgba(198, 255, 0, 0.8);
  animation: live-pulse 1.8s ease-in-out infinite;
}

.live-divider {
  color: var(--muted);
}

.nav-links {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(245, 245, 240, 0.7);
}

.nav-links a,
.text-action,
.inline-action,
.protocol-note a,
.site-footer a {
  transition: color 180ms ease;
}

.nav-links a:hover,
.text-action:hover,
.inline-action:hover,
.protocol-note a:hover,
.site-footer a:hover {
  color: var(--acid);
}

.header-action {
  padding: 12px 14px;
  border: 1px solid rgba(198, 255, 0, 0.6);
  color: var(--acid);
  transition:
    color 180ms ease,
    background-color 180ms ease;
}

.header-action:hover {
  background: var(--acid);
  color: var(--black);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--black);
}

.hero-media {
  --mx: 0px;
  --my: 0px;
  position: absolute;
  z-index: -2;
  inset: 0;
  overflow: hidden;
  background: #16130f;
}

.hero-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 47%;
  transform: scale(1.075) translate3d(var(--mx), var(--my), 0);
  filter: saturate(0.56) brightness(0.5) contrast(1.12);
  transition: filter 1.2s ease;
  will-change: transform;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.7) 34%, rgba(0, 0, 0, 0.2) 70%, rgba(0, 0, 0, 0.52) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, transparent 35%, rgba(0, 0, 0, 0.7) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(245, 245, 240, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 245, 240, 0.16) 1px, transparent 1px);
  background-size: 8.333vw 8.333vw;
  mask-image: linear-gradient(90deg, black, transparent 75%);
}

.hero-content {
  width: min(790px, 67vw);
  padding: clamp(150px, 18vh, 220px) var(--page) 150px;
}

.eyebrow {
  margin: 0 0 28px;
  color: rgba(245, 245, 240, 0.62);
}

.eyebrow span,
.acid {
  color: var(--acid);
}

.hero-title,
.section-intro h2,
.image-copy h2,
.log-heading h2,
.final-content h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 850;
  letter-spacing: -0.065em;
  line-height: 0.82;
  text-transform: uppercase;
}

.hero-title {
  position: relative;
  max-width: 740px;
  font-size: clamp(70px, 8.8vw, 144px);
}

.hero-title span {
  display: block;
}

.hero-copy {
  max-width: 560px;
  margin: 38px 0 0;
  color: rgba(245, 245, 240, 0.75);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.55;
}

.hero-copy strong {
  color: var(--paper);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 44px;
}

.primary-action {
  min-width: 250px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 19px 20px;
  background: var(--acid);
  color: var(--black);
  font: 800 13px/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 200ms var(--ease),
    box-shadow 200ms ease;
}

.primary-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(198, 255, 0, 0.18);
}

.action-arrow {
  font-size: 20px;
  transition: transform 200ms var(--ease);
}

.primary-action:hover .action-arrow {
  transform: translate(3px, -3px);
}

.text-action,
.inline-action,
.protocol-note a {
  font: 700 11px/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-readout {
  position: absolute;
  right: var(--page);
  bottom: 74px;
  display: grid;
  gap: 8px;
  padding-left: 18px;
  border-left: 1px solid var(--acid);
  color: rgba(245, 245, 240, 0.55);
}

.hero-readout strong {
  color: var(--paper);
}

.hero-index {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(245, 245, 240, 0.055);
  font-size: clamp(220px, 27vw, 470px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.1em;
  pointer-events: none;
}

.scroll-cue {
  position: absolute;
  left: var(--page);
  bottom: 27px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(245, 245, 240, 0.48);
  font: 700 9px/1 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-line {
  width: 64px;
  height: 1px;
  overflow: hidden;
  background: rgba(245, 245, 240, 0.25);
}

.scroll-line::after {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: var(--acid);
  animation: scroll-scan 1.8s ease-in-out infinite;
}

.hero-enter {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 900ms var(--ease),
    transform 900ms var(--ease);
}

body:not(.is-loading) .hero-enter {
  opacity: 1;
  transform: translateY(0);
}

body:not(.is-loading) .hero-enter-1 { transition-delay: 120ms; }
body:not(.is-loading) .hero-enter-2 { transition-delay: 220ms; }
body:not(.is-loading) .hero-enter-3 { transition-delay: 370ms; }
body:not(.is-loading) .hero-enter-4 { transition-delay: 500ms; }

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  color: var(--black);
}

.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 15px 0;
  animation: ticker 22s linear infinite;
  font: 900 13px/1 var(--mono);
  letter-spacing: 0.18em;
}

.ticker-track i {
  color: #78a000;
  font-style: normal;
}

.section {
  padding: clamp(110px, 15vw, 220px) var(--page);
}

.protocol {
  position: relative;
  background: var(--black-soft);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(240px, 0.7fr);
  align-items: end;
  column-gap: 8vw;
  margin-bottom: 92px;
}

.section-intro .eyebrow {
  grid-column: 1 / -1;
}

.section-intro h2,
.log-heading h2 {
  font-size: clamp(62px, 8vw, 138px);
}

.section-intro h2 span,
.final-content h2 span {
  color: var(--acid);
}

.section-lede {
  max-width: 430px;
  margin: 0 0 8px;
  color: rgba(245, 245, 240, 0.62);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.55;
}

.protocol-list {
  border-top: 1px solid var(--line);
}

.protocol-step {
  position: relative;
  display: grid;
  grid-template-columns: 90px minmax(260px, 1.15fr) minmax(240px, 0.85fr) 50px;
  align-items: center;
  gap: 20px;
  min-height: 145px;
  border-bottom: 1px solid var(--line);
}

.protocol-step h3 {
  margin: 0;
  font-size: clamp(28px, 3.5vw, 58px);
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.protocol-step p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.step-number {
  color: var(--acid);
}

.step-mark {
  justify-self: end;
  font-family: var(--mono);
  font-size: 32px;
}

.protocol-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 42px;
}

.protocol-rule {
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.protocol-note a {
  color: var(--muted);
}

.image-story {
  --room-progress: 0;
  min-height: 160vh;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(360px, 0.72fr);
  background: var(--paper);
  color: var(--black);
}

.image-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #c5b29b;
}

.image-stage > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(calc(1.08 - var(--room-progress) * 0.06));
  filter: saturate(calc(0.42 + var(--room-progress) * 0.58)) brightness(calc(0.68 + var(--room-progress) * 0.32));
  will-change: transform, filter;
}

.image-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 35%, rgba(0, 0, 0, 0.34));
  opacity: calc(0.85 - var(--room-progress) * 0.65);
}

.image-stamp,
.image-coordinates {
  position: absolute;
  margin: 0;
  color: rgba(245, 245, 240, 0.84);
  text-shadow: 0 1px 20px rgba(0, 0, 0, 0.35);
}

.image-stamp {
  top: 32px;
  left: 32px;
}

.image-coordinates {
  right: 32px;
  bottom: 32px;
  text-align: right;
  line-height: 1.6;
}

.image-crosshair {
  position: absolute;
  width: 16px;
  height: 16px;
  opacity: 0.55;
}

.image-crosshair::before,
.image-crosshair::after {
  content: "";
  position: absolute;
  background: var(--acid);
}

.image-crosshair::before {
  top: 7px;
  left: 0;
  width: 16px;
  height: 1px;
}

.image-crosshair::after {
  top: 0;
  left: 7px;
  width: 1px;
  height: 16px;
}

.image-crosshair-a {
  top: 26%;
  left: 28%;
}

.image-crosshair-b {
  right: 18%;
  bottom: 29%;
}

.image-copy {
  min-width: 0;
  min-height: 160vh;
  display: flex;
  align-items: center;
  padding: 12vh clamp(28px, 4vw, 70px);
  background: var(--paper);
}

.image-copy-inner {
  position: sticky;
  top: 24vh;
  width: 100%;
  min-width: 0;
  margin-bottom: 45vh;
}

.image-copy .eyebrow {
  color: rgba(5, 5, 5, 0.55);
}

.image-copy h2 {
  max-width: 480px;
  font-size: clamp(54px, 5.2vw, 92px);
}

.image-copy > div > p:not(.eyebrow) {
  max-width: 400px;
  margin: 30px 0 44px;
  color: rgba(5, 5, 5, 0.62);
  font-size: 18px;
  line-height: 1.55;
}

.canon-list {
  margin: 0 0 44px;
  border-top: 1px solid rgba(5, 5, 5, 0.2);
}

.canon-list div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(5, 5, 5, 0.2);
  font: 700 10px/1.2 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.canon-list dd {
  margin: 0;
  font-weight: 900;
}

.inline-action {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--black);
}

.change-log {
  background: var(--black-soft);
}

.log-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 30px;
  margin-bottom: 74px;
}

.log-heading .eyebrow {
  grid-column: 1 / -1;
}

.log-heading p:not(.eyebrow) {
  max-width: 340px;
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.log-table {
  border-top: 1px solid var(--line);
}

.log-row {
  display: grid;
  grid-template-columns: 0.45fr 0.7fr 2.2fr 0.8fr;
  align-items: center;
  gap: 20px;
  min-height: 86px;
  border-bottom: 1px solid var(--line);
}

.log-labels {
  min-height: 44px;
  color: var(--muted);
  font-size: 9px;
}

.log-row strong {
  font-family: var(--display);
  font-size: clamp(20px, 2.4vw, 38px);
  letter-spacing: -0.035em;
}

.log-status {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--acid);
}

.log-status i {
  width: 7px;
  height: 7px;
  background: currentColor;
  box-shadow: 0 0 14px currentColor;
}

.log-locked {
  color: rgba(245, 245, 240, 0.18);
}

.project-faq {
  background: var(--paper);
  color: var(--black);
}

.faq-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 6vw;
  margin-bottom: clamp(64px, 9vw, 120px);
}

.faq-heading .eyebrow {
  grid-column: 1 / -1;
  color: rgba(5, 5, 5, 0.55);
}

.faq-heading h2 {
  font-size: clamp(62px, 8vw, 138px);
}

.faq-heading h2 span {
  color: #78a000;
}

.faq-heading > p:not(.eyebrow) {
  max-width: 440px;
  margin: 0 0 10px;
  color: rgba(5, 5, 5, 0.62);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
}

.faq-list {
  border-top: 1px solid rgba(5, 5, 5, 0.2);
}

.faq-item {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  align-items: start;
  gap: 6vw;
  padding: 34px 0;
  border-bottom: 1px solid rgba(5, 5, 5, 0.2);
}

.faq-item h3,
.faq-item p {
  margin: 0;
}

.faq-item h3 {
  font-size: clamp(22px, 2.25vw, 36px);
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.faq-item p {
  max-width: 620px;
  color: rgba(5, 5, 5, 0.62);
  font-size: 17px;
  line-height: 1.6;
}

.faq-item[data-reveal]:nth-child(2) { transition-delay: 70ms; }
.faq-item[data-reveal]:nth-child(3) { transition-delay: 140ms; }
.faq-item[data-reveal]:nth-child(4) { transition-delay: 210ms; }

.final-cta {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 130px var(--page);
  background: var(--black);
}

.final-content {
  position: relative;
  z-index: 2;
}

.final-content h2 {
  max-width: 1050px;
  font-size: clamp(76px, 11vw, 190px);
}

.primary-action-large {
  min-width: min(440px, 100%);
  margin-top: 52px;
  padding: 24px;
}

.final-signal {
  position: absolute;
  right: -5vw;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(198, 255, 0, 0.075);
  font-family: var(--display);
  font-size: min(72vw, 920px);
  font-weight: 100;
  line-height: 0.8;
}

.site-footer {
  display: grid;
  grid-template-columns: 180px 1fr auto auto;
  align-items: center;
  gap: 30px;
  min-height: 110px;
  padding: 28px var(--page);
  border-top: 1px solid var(--line);
  background: var(--black);
  color: var(--muted);
}

.site-footer img {
  width: 150px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--paper);
}

.copyright {
  white-space: nowrap;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 900ms var(--ease),
    transform 900ms var(--ease);
}

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

.protocol-step[data-reveal]:nth-child(2) { transition-delay: 90ms; }
.protocol-step[data-reveal]:nth-child(3) { transition-delay: 180ms; }

.signal-block {
  position: absolute;
  z-index: 8;
  height: 3px;
  opacity: 0;
  pointer-events: none;
  background: var(--acid);
  box-shadow: 30px 0 rgba(245, 245, 240, 0.6);
}

.signal-block-a {
  top: 31%;
  left: 4%;
  width: 44%;
}

.signal-block-b {
  top: 56%;
  right: 0;
  width: 36%;
}

.signal-block-c {
  bottom: 18%;
  left: 31%;
  width: 22%;
}

.glitch-surface.signal-hit .signal-block {
  animation: signal-block 360ms steps(2, end) both;
}

.glitch-surface.signal-hit > img {
  animation: image-hit 360ms steps(2, end);
}

.glitch-title.signal-hit {
  animation: title-hit 340ms steps(2, end);
}

.glitch-title.signal-hit::before,
.glitch-title.signal-hit::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  white-space: normal;
}

.glitch-title.signal-hit::before {
  clip-path: inset(22% 0 58% 0);
  transform: translateX(-12px);
  color: var(--acid);
  opacity: 0.55;
}

.glitch-title.signal-hit::after {
  clip-path: inset(62% 0 14% 0);
  transform: translateX(10px);
  color: var(--paper);
  opacity: 0.35;
}

@keyframes live-pulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}

@keyframes scroll-scan {
  from { transform: translateX(-24px); }
  to { transform: translateX(64px); }
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

@keyframes signal-block {
  0% { opacity: 0; transform: translateX(-35px); }
  18% { opacity: 0.9; }
  48% { opacity: 0.35; transform: translateX(42px); }
  70% { opacity: 0.8; transform: translateX(-10px); }
  100% { opacity: 0; transform: translateX(0); }
}

@keyframes image-hit {
  0%, 100% { transform: scale(1.075) translate3d(var(--mx), var(--my), 0); }
  25% { transform: scale(1.082) translate3d(calc(var(--mx) - 10px), var(--my), 0); filter: saturate(0.7) brightness(0.58) contrast(1.4); }
  55% { transform: scale(1.078) translate3d(calc(var(--mx) + 13px), var(--my), 0); }
}

@keyframes title-hit {
  0%, 100% { transform: translateX(0); }
  30% { transform: translateX(-7px); }
  60% { transform: translateX(5px); }
}

@media (max-width: 1080px) {
  :root { --header-height: 76px; }

  .site-header {
    grid-template-columns: 150px auto 1fr;
    gap: 22px;
  }

  .nav-links { display: none; }
  .header-action { justify-self: end; }

  .hero-content {
    width: min(760px, 78vw);
  }

  .hero-title {
    font-size: clamp(70px, 10.5vw, 120px);
  }

  .section-intro {
    grid-template-columns: 1fr;
  }

  .section-lede {
    margin-top: 32px;
  }

  .protocol-step {
    grid-template-columns: 60px 1.15fr 0.85fr 40px;
  }

  .image-story {
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  }

  .site-footer {
    grid-template-columns: 160px 1fr auto;
  }

  .copyright { display: none; }
}

@media (max-height: 800px) and (min-width: 721px) {
  :root { --header-height: 70px; }

  .hero-content {
    padding-top: 102px;
    padding-bottom: 74px;
  }

  .hero-content .eyebrow {
    margin-bottom: 16px;
  }

  .hero-title {
    max-width: 660px;
    font-size: clamp(64px, 7.65vw, 108px);
  }

  .hero-copy {
    max-width: 520px;
    margin-top: 22px;
    font-size: 17px;
    line-height: 1.45;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .primary-action {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .hero-readout {
    bottom: 38px;
  }
}

@media (max-width: 720px) {
  :root {
    --page: 20px;
    --header-height: 68px;
  }

  .site-header {
    grid-template-columns: 132px 1fr;
    gap: 14px;
  }

  .brand { width: 128px; }
  .live-state { display: none; }

  .header-action {
    padding: 10px 11px;
    font-size: 9px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-media > img {
    object-position: center center;
    filter: saturate(0.52) brightness(0.42) contrast(1.12);
  }

  .hero-vignette {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.34) 30%, rgba(0, 0, 0, 0.85) 78%, rgba(0, 0, 0, 0.96) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.15));
  }

  .hero-content {
    width: 100%;
    padding: 132px var(--page) 190px;
  }

  .eyebrow {
    margin-bottom: 20px;
    font-size: 9px;
    line-height: 1.45;
  }

  .hero-title {
    max-width: 95vw;
    font-size: clamp(52px, 15.7vw, 72px);
    letter-spacing: -0.075em;
    line-height: 0.84;
  }

  .hero-copy {
    margin-top: 28px;
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    margin-top: 30px;
  }

  .primary-action {
    width: 100%;
  }

  .hero-readout {
    right: var(--page);
    bottom: 58px;
  }

  .hero-index,
  .scroll-cue {
    display: none;
  }

  .ticker-track {
    padding: 13px 0;
    gap: 24px;
    font-size: 10px;
  }

  .section {
    padding: 100px var(--page);
  }

  .section-intro {
    margin-bottom: 56px;
  }

  .section-intro h2,
  .log-heading h2 {
    font-size: clamp(54px, 17vw, 78px);
    line-height: 0.86;
  }

  .section-lede {
    margin-top: 28px;
    font-size: 16px;
  }

  .protocol-step {
    grid-template-columns: 38px 1fr 28px;
    gap: 14px;
    min-height: 142px;
    padding: 22px 0;
  }

  .protocol-step h3 {
    font-size: 30px;
    line-height: 0.95;
  }

  .protocol-step p {
    grid-column: 2 / 4;
    margin-top: -10px;
    font-size: 14px;
  }

  .step-mark {
    grid-column: 3;
    grid-row: 1;
    font-size: 24px;
  }

  .protocol-note {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 34px;
  }

  .image-story {
    min-height: auto;
    display: block;
  }

  .image-stage {
    position: relative;
    height: 72svh;
  }

  .image-stage > img {
    transform: scale(1.04);
  }

  .image-copy {
    min-height: auto;
    padding: 88px var(--page) 100px;
  }

  .image-copy-inner {
    position: relative;
    top: auto;
    margin: 0;
  }

  .image-copy h2 {
    font-size: clamp(50px, 14vw, 66px);
  }

  .log-heading {
    display: block;
    margin-bottom: 52px;
  }

  .log-heading p:not(.eyebrow) {
    margin-top: 28px;
  }

  .log-row {
    grid-template-columns: 46px 84px 1fr;
    min-height: 78px;
    gap: 10px;
    font-size: 9px;
  }

  .log-row > :last-child {
    display: none;
  }

  .log-row strong {
    font-size: 19px;
  }

  .faq-heading {
    display: block;
    margin-bottom: 56px;
  }

  .faq-heading h2 {
    font-size: clamp(54px, 17vw, 78px);
    line-height: 0.86;
  }

  .faq-heading > p:not(.eyebrow) {
    margin-top: 28px;
  }

  .faq-item {
    display: block;
    padding: 28px 0;
  }

  .faq-item p {
    margin-top: 14px;
    font-size: 15px;
  }

  .final-cta {
    min-height: 82svh;
    padding: 100px var(--page);
  }

  .final-content h2 {
    font-size: clamp(68px, 20vw, 94px);
    line-height: 0.84;
  }

  .primary-action-large {
    margin-top: 38px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    gap: 24px;
    min-height: 130px;
  }

  .site-footer img {
    width: 136px;
  }

  .site-footer p {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal], .hero-enter {
    opacity: 1;
    transform: none;
  }
}
