:root {
  --coal: #090908;
  --coal-soft: #11110f;
  --ivory: #e8e1d2;
  --ivory-dim: #a8a197;
  --red: #d5221c;
  --red-dark: #9f1713;
  --line: rgba(232, 225, 210, 0.42);
  --line-soft: rgba(232, 225, 210, 0.18);
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  --sans: Inter, "Helvetica Neue", Arial, sans-serif;
  --mono: "IBM Plex Mono", "Courier New", monospace;
  --shell: min(100% - 80px, 1500px);
  --header-height: 118px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--coal);
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--coal);
  color: var(--ivory);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.menu-open {
  overflow: hidden;
}

button,
a {
  color: inherit;
}

button {
  font: inherit;
}

a {
  text-decoration: none;
}

::selection {
  background: var(--red);
  color: var(--coal);
}

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 16px;
  background: var(--ivory);
  color: var(--coal);
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  transform: translateY(-160%);
}

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

.page-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  height: 3px;
  pointer-events: none;
}

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

.paper-noise {
  position: fixed;
  inset: 0;
  z-index: 800;
  opacity: 0.18;
  pointer-events: none;
  mix-blend-mode: soft-light;
  background-image:
    repeating-radial-gradient(circle at 17% 31%, transparent 0 1px, rgba(255, 255, 255, 0.08) 1px 2px, transparent 2px 5px),
    repeating-linear-gradient(94deg, transparent 0 7px, rgba(255, 255, 255, 0.025) 7px 8px);
  background-size: 113px 97px, 71px 100%;
}

.site-header {
  position: relative;
  z-index: 100;
  display: grid;
  grid-template-columns: 280px 1fr 340px;
  width: var(--shell);
  min-height: var(--header-height);
  margin: 0 auto;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: rgba(9, 9, 8, 0.95);
}

.brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
  padding: 12px 24px;
  border-right: 1px solid var(--line);
}

.brand__word {
  font-family: var(--display);
  font-size: clamp(60px, 6vw, 94px);
  font-stretch: condensed;
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.055em;
}

.brand__meta {
  align-self: flex-end;
  margin-bottom: 8px;
  color: var(--ivory-dim);
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.3;
  text-transform: uppercase;
}

.main-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  min-width: 0;
}

.main-nav a {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-right: 1px solid var(--line-soft);
  font-family: var(--display);
  font-size: clamp(24px, 2vw, 36px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.main-nav a::after {
  position: absolute;
  right: 18px;
  bottom: 14px;
  left: 18px;
  height: 4px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

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

.header-code {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  color: var(--ivory-dim);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-code b {
  color: var(--ivory);
  font-weight: 500;
}

.crosshair {
  position: relative;
  display: block;
  width: 44px;
  height: 44px;
  border: 1px solid var(--ivory);
  border-radius: 50%;
}

.crosshair::before,
.crosshair::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--ivory);
  content: "";
  transform: translate(-50%, -50%);
}

.crosshair::before {
  width: 66px;
  height: 1px;
}

.crosshair::after {
  width: 1px;
  height: 66px;
}

.code-chip {
  align-self: end;
  padding: 4px 7px;
  border: 1px solid var(--line);
  color: var(--ivory);
  white-space: nowrap;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1.05fr) minmax(420px, 0.95fr);
  min-height: calc(100svh - var(--header-height));
  width: var(--shell);
  margin: 0 auto;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, transparent calc(50% - 0.5px), rgba(232, 225, 210, 0.12) 50%, transparent calc(50% + 0.5px)),
    linear-gradient(rgba(232, 225, 210, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 225, 210, 0.055) 1px, transparent 1px);
  background-size: 100% 100%, 100% 12.5%, 8.333% 100%;
  content: "";
}

.hero__rail {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 42px 0 38px;
  border-right: 1px solid var(--line);
  color: var(--red);
  font-family: var(--mono);
}

.hero__rail span {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero__rail small {
  color: var(--ivory);
  font-size: 10px;
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero__copy {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(56px, 7vh, 92px) clamp(30px, 4.2vw, 68px) 64px;
}

.eyebrow,
.section-index,
.visual-index {
  margin: 0;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: clamp(18px, 3vh, 34px);
  color: var(--ivory);
}

.eyebrow::before {
  display: inline-block;
  width: 28px;
  height: 3px;
  margin-right: 12px;
  background: var(--red);
  content: "";
  vertical-align: middle;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(72px, 8.2vw, 142px);
  font-stretch: condensed;
  font-weight: 900;
  line-height: 0.79;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.hero h1 span,
.hero h1 em {
  display: block;
  font-style: normal;
}

.hero h1 span {
  color: var(--ivory);
}

.hero h1 em {
  color: var(--red);
}

.hero__lead {
  max-width: 600px;
  margin: 34px 0 0;
  color: var(--ivory);
  font-size: clamp(17px, 1.4vw, 22px);
  font-weight: 600;
  line-height: 1.45;
}

.hero__actions,
.closing__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-width: 220px;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 16px 20px;
  border: 1px solid var(--ivory);
  cursor: pointer;
  font-family: var(--display);
  font-size: 23px;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button i {
  font-family: var(--sans);
  font-size: 30px;
  font-style: normal;
  font-weight: 300;
  transition: transform 180ms ease;
}

.button:hover i {
  transform: translateX(7px);
}

.button--solid {
  border-color: var(--red);
  background: var(--red);
  color: var(--coal);
}

.button--solid:hover {
  border-color: var(--ivory);
  background: var(--ivory);
}

.button--outline {
  background: transparent;
  color: var(--ivory);
}

.button--outline:hover {
  border-color: var(--red);
  color: var(--red);
}

.hero__visual {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  min-width: 0;
  overflow: hidden;
  border-left: 1px solid var(--line);
  background: #070706;
}

.hero__visual::after {
  position: absolute;
  inset: auto -15% -20% 18%;
  z-index: -1;
  height: 48%;
  background: var(--red);
  clip-path: polygon(39% 0, 100% 0, 100% 100%, 0 100%);
  content: "";
  opacity: 0.9;
}

.visual-index {
  position: absolute;
  top: 22px;
  right: 22px;
  color: var(--ivory-dim);
  font-size: 9px;
}

.hero-eye {
  display: block;
  width: clamp(560px, 55vw, 990px);
  max-width: none;
  aspect-ratio: 1;
  object-fit: contain;
  filter: contrast(1.08) saturate(0.95);
  transform: translate3d(var(--eye-x, 0), var(--eye-y, 0), 0) rotate(var(--eye-r, 0deg));
  transition: transform 800ms cubic-bezier(0.2, 0.7, 0, 1);
}

.tape {
  position: absolute;
  z-index: 5;
  display: block;
  width: 150px;
  height: 42px;
  background: rgba(232, 225, 210, 0.13);
  border: 1px solid rgba(232, 225, 210, 0.12);
  filter: blur(0.15px);
}

.tape--one {
  top: 16%;
  right: 2%;
  transform: rotate(8deg);
}

.tape--two {
  right: 31%;
  bottom: 7%;
  width: 120px;
  transform: rotate(-5deg);
}

.status-stamp {
  position: absolute;
  z-index: 8;
  right: calc(50% - 104px);
  bottom: 26px;
  display: flex;
  width: 208px;
  aspect-ratio: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-family: var(--display);
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-6deg);
}

.status-stamp::before,
.status-stamp::after {
  position: absolute;
  inset: 7px;
  border: 1px solid var(--red);
  border-radius: inherit;
  content: "";
}

.status-stamp::after {
  inset: 16px;
  border-style: dashed;
  opacity: 0.5;
}

.status-stamp span,
.status-stamp strong,
.status-stamp small {
  position: relative;
  z-index: 2;
}

.status-stamp span,
.status-stamp strong {
  font-size: 27px;
  line-height: 0.95;
}

.status-stamp small {
  margin-top: 11px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
}

.registration {
  position: absolute;
  z-index: 9;
  width: 36px;
  height: 36px;
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 38px;
  font-weight: 200;
  line-height: 0.8;
  text-align: center;
}

.registration--a { top: 16px; left: 16px; }
.registration--b { right: 16px; bottom: 16px; }
.registration--c { top: 45%; right: 18px; }

.ticker {
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid var(--coal);
  background: var(--ivory);
  color: var(--coal);
}

.ticker__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 28px;
  padding: 13px 0;
  font-family: var(--display);
  font-size: 26px;
  text-transform: uppercase;
  animation: ticker 28s linear infinite;
}

.ticker__track i {
  color: var(--red);
  font-style: normal;
}

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

.section {
  width: var(--shell);
  margin: 0 auto;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.62fr);
  gap: 8vw;
  align-items: end;
  padding: clamp(90px, 12vw, 180px) clamp(28px, 5vw, 76px) clamp(48px, 6vw, 82px);
  border-bottom: 1px solid var(--line);
}

.section-index {
  display: block;
  margin-bottom: 26px;
  color: var(--red);
}

.section-heading h2,
.manifesto__body h2,
.closing h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(72px, 8.5vw, 146px);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.section-heading > p {
  max-width: 520px;
  margin: 0 0 10px;
  color: var(--ivory-dim);
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 500;
  line-height: 1.55;
}

.archive-controls {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.filter {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--ivory);
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(23px, 2.3vw, 36px);
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.filter:last-child { border-right: 0; }

.filter span {
  font-family: var(--mono);
  font-size: 10px;
}

.filter:hover,
.filter.is-active {
  background: var(--red);
  color: var(--coal);
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.archive-card {
  position: relative;
  display: flex;
  min-height: 640px;
  flex-direction: column;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--coal);
  transition: background 220ms ease, color 220ms ease, opacity 220ms ease, transform 220ms ease;
}

.archive-card:nth-child(3n) { border-right: 0; }

.archive-card[hidden] { display: none; }

.archive-card:hover {
  background: var(--ivory);
  color: var(--coal);
}

.archive-card--red { background: var(--red-dark); }
.archive-card--light { background: var(--ivory); color: var(--coal); }
.archive-card--light:hover { background: var(--red); }

.card-top {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 18px;
  border-bottom: 1px solid currentColor;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
}

.card-top span:last-child::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  background: var(--red);
  border-radius: 50%;
  content: "";
}

.archive-card--red .card-top span:last-child::before,
.archive-card--light .card-top span:last-child::before {
  background: currentColor;
}

.card-graphic {
  position: relative;
  display: grid;
  min-height: 335px;
  flex: 1;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid currentColor;
}

.card-graphic::after {
  position: absolute;
  inset: 14px;
  border: 1px solid currentColor;
  content: "";
  opacity: 0.25;
}

.card-graphic--eye span {
  position: relative;
  width: 62%;
  aspect-ratio: 1.65;
  border: 26px solid var(--ivory);
  border-radius: 100% 0 100% 0;
  transform: rotate(45deg);
}

.card-graphic--eye span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 35%;
  aspect-ratio: 1;
  background: var(--red);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.archive-card:hover .card-graphic--eye span { border-color: var(--coal); }

.card-graphic--type {
  place-items: end start;
  padding: 34px;
  font-family: var(--display);
  font-size: clamp(64px, 6vw, 104px);
  line-height: 0.72;
  letter-spacing: -0.04em;
}

.card-graphic--map span {
  position: absolute;
  top: 35px;
  left: 35px;
  font-family: var(--mono);
  font-size: 13px;
}

.card-graphic--map i {
  width: 55%;
  aspect-ratio: 1;
  border: 1px solid var(--ivory);
  border-radius: 50%;
  box-shadow: 0 0 0 30px var(--red), 0 0 0 31px var(--ivory);
}

.card-graphic--map b {
  position: absolute;
  right: 22px;
  bottom: 20px;
  font-family: var(--display);
  font-size: 68px;
  line-height: 0.75;
  text-align: right;
}

.card-graphic--sticker {
  place-items: center;
  font-family: var(--display);
  transform-style: preserve-3d;
}

.card-graphic--sticker span,
.card-graphic--sticker b {
  position: absolute;
  padding: 7px 16px;
  border: 3px solid var(--ivory);
  font-size: clamp(55px, 5vw, 82px);
  line-height: 1;
}

.card-graphic--sticker span { transform: translate(-18px, -34px) rotate(-5deg); }
.card-graphic--sticker b { background: var(--ivory); color: var(--coal); transform: translate(25px, 45px) rotate(3deg); }
.card-graphic--sticker i { position: absolute; right: 28px; bottom: 24px; font-family: var(--mono); font-size: 13px; }

.card-graphic--world span {
  position: absolute;
  top: 30px;
  right: 30px;
  font-family: var(--mono);
}

.card-graphic--world b {
  font-family: var(--display);
  font-size: clamp(90px, 8vw, 140px);
  letter-spacing: -0.05em;
}

.card-graphic--world i {
  position: absolute;
  right: 20px;
  bottom: 6px;
  color: var(--red);
  font-size: 80px;
  font-style: normal;
}

.card-graphic--lab b {
  font-family: var(--display);
  font-size: clamp(180px, 18vw, 300px);
  line-height: 0.7;
}

.card-graphic--lab span {
  position: absolute;
  bottom: 28px;
  left: 28px;
  font-family: var(--mono);
}

.card-graphic--lab i {
  position: absolute;
  top: 20px;
  right: 25px;
  color: var(--red);
  font-family: var(--sans);
  font-size: 70px;
  font-style: normal;
  font-weight: 200;
}

.card-copy {
  padding: 26px 22px 24px;
}

.card-copy h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 4vw, 64px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.card-copy p {
  min-height: 48px;
  margin: 15px 0 20px;
  color: currentColor;
  font-size: 14px;
  line-height: 1.45;
  opacity: 0.75;
}

.card-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.card-copy li {
  padding: 5px 8px;
  border: 1px solid currentColor;
  font-family: var(--mono);
  font-size: 8px;
}

.manifesto {
  position: relative;
  overflow: hidden;
  background: var(--ivory);
  color: var(--coal);
}

.manifesto__code {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--mono);
  font-size: 10px;
}

.manifesto__display {
  padding: clamp(90px, 11vw, 170px) clamp(25px, 4vw, 65px) 60px;
  border-bottom: 1px solid var(--coal);
}

.manifesto__display span {
  display: block;
  font-family: var(--display);
  font-size: clamp(100px, 16.5vw, 270px);
  font-weight: 900;
  line-height: 0.72;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.manifesto__display span:nth-child(2) { color: var(--red); text-align: right; }
.manifesto__display span:nth-child(3) { text-align: center; }

.manifesto__body {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1.4fr);
  gap: 7vw;
  padding: clamp(70px, 10vw, 150px) clamp(28px, 5vw, 76px);
}

.manifesto__body .section-index { color: var(--coal); }

.manifesto__body h2 {
  max-width: 950px;
  font-size: clamp(58px, 7vw, 115px);
}

.manifesto__body p {
  max-width: 860px;
  margin: 36px 0 0;
  font-size: clamp(18px, 1.8vw, 28px);
  font-weight: 600;
  line-height: 1.45;
}

.process-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 140px 1fr 70px;
  align-items: center;
  min-height: 230px;
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease, color 180ms ease;
}

.process-list li:hover {
  background: var(--red);
  color: var(--coal);
}

.process-list > li > span {
  display: grid;
  align-self: stretch;
  place-items: center;
  border-right: 1px solid currentColor;
  font-family: var(--display);
  font-size: 70px;
}

.process-list div {
  padding: 40px 50px;
}

.process-list small {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.process-list h3 {
  margin: 6px 0 10px;
  font-family: var(--display);
  font-size: clamp(56px, 6vw, 92px);
  font-weight: 900;
  line-height: 0.85;
  text-transform: uppercase;
}

.process-list p {
  margin: 0;
  font-size: 16px;
  opacity: 0.72;
}

.process-list > li > b {
  font-size: 36px;
  font-weight: 400;
  text-align: center;
}

.closing {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  min-height: 780px;
  width: var(--shell);
  margin: 0 auto;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.closing__mark {
  display: grid;
  place-items: center;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: var(--red);
  color: var(--coal);
  font-family: var(--display);
  font-size: min(48vw, 720px);
  line-height: 0.7;
}

.closing__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(55px, 7vw, 110px);
}

.closing h2 {
  font-size: clamp(64px, 7vw, 120px);
}

.closing h2 em {
  color: var(--red);
  font-style: normal;
}

.closing__copy > p:not(.copy-feedback) {
  max-width: 540px;
  margin: 28px 0 0;
  color: var(--ivory-dim);
  font-size: 20px;
  line-height: 1.5;
}

.copy-feedback {
  min-height: 18px;
  margin: 14px 0 0;
  color: var(--red);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  width: var(--shell);
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
  padding: 18px 24px;
  border: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 0.65, 0.2, 1);
}

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

body.is-ready .hero__copy > * {
  animation: hero-in 700ms both cubic-bezier(0.22, 0.65, 0.2, 1);
}

body.is-ready .hero__copy > *:nth-child(2) { animation-delay: 90ms; }
body.is-ready .hero__copy > *:nth-child(3) { animation-delay: 180ms; }
body.is-ready .hero__copy > *:nth-child(4) { animation-delay: 250ms; }
body.is-ready .hero-eye { animation: eye-in 900ms 120ms both cubic-bezier(0.2, 0.75, 0.1, 1); }
body.is-ready .status-stamp { animation: stamp-in 620ms 520ms both cubic-bezier(0.22, 0.8, 0.2, 1.25); }

@keyframes hero-in {
  from { opacity: 0; transform: translateY(32px); clip-path: inset(0 0 100%); }
  to { opacity: 1; transform: translateY(0); clip-path: inset(0); }
}

@keyframes eye-in {
  from { opacity: 0; transform: scale(0.86) rotate(-8deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}

@keyframes stamp-in {
  from { opacity: 0; transform: scale(1.6) rotate(-15deg); }
  to { opacity: 1; transform: scale(1) rotate(-6deg); }
}

@media (max-width: 1240px) {
  :root { --shell: min(100% - 40px, 1500px); }

  .site-header { grid-template-columns: 230px 1fr 240px; }
  .brand__meta { display: none; }
  .header-code { grid-template-columns: 46px 1fr; }
  .header-code .code-chip { display: none; }
  .crosshair { transform: scale(0.75); }

  .hero { grid-template-columns: 54px minmax(0, 1.1fr) minmax(360px, 0.9fr); }
  .hero__copy { padding-right: 34px; padding-left: 34px; }
  .hero h1 { font-size: clamp(68px, 8vw, 112px); }
  .status-stamp { right: calc(45% - 80px); width: 160px; }
  .status-stamp span, .status-stamp strong { font-size: 22px; }

  .archive-card { min-height: 590px; }
  .card-graphic { min-height: 300px; }
}

@media (max-width: 960px) {
  :root { --shell: min(100% - 24px, 1500px); --header-height: 88px; }

  .site-header {
    position: sticky;
    top: 0;
    grid-template-columns: 1fr auto;
    min-height: var(--header-height);
    background: rgba(9, 9, 8, 0.9);
    backdrop-filter: blur(12px);
  }

  .brand { border-right: 0; }
  .brand__word { font-size: 58px; }
  .main-nav, .header-code { display: none; }

  .menu-toggle {
    position: relative;
    display: grid;
    width: 88px;
    place-items: center;
    border: 0;
    border-left: 1px solid var(--line);
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    position: absolute;
    width: 34px;
    height: 2px;
    background: var(--ivory);
    transition: transform 200ms ease;
  }

  .menu-toggle span:first-child { transform: translateY(-6px); }
  .menu-toggle span:last-child { transform: translateY(6px); }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }

  .mobile-nav {
    position: fixed;
    inset: var(--header-height) 12px 0;
    z-index: 90;
    display: grid;
    grid-template-rows: repeat(4, 1fr);
    visibility: hidden;
    border: 1px solid var(--line);
    background: var(--coal);
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 200ms ease, transform 200ms ease, visibility 200ms;
  }

  .mobile-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }

  .mobile-nav a {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 18px 28px;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: clamp(42px, 10vw, 72px);
    text-transform: uppercase;
  }

  .mobile-nav a:last-child { border-bottom: 0; }
  .mobile-nav b { color: var(--red); font-family: var(--mono); font-size: 11px; }

  .hero {
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto minmax(440px, 60vh);
  }

  .hero__rail { grid-row: 1 / 3; }
  .hero__copy { padding: 64px 28px 58px; }
  .hero h1 { font-size: clamp(72px, 13vw, 122px); }
  .hero__visual { grid-column: 2; min-height: 440px; border-top: 1px solid var(--line); border-left: 0; }
  .hero-eye { width: min(110vw, 800px); }
  .status-stamp { right: 34px; bottom: calc(60vh - 76px); width: 152px; }

  .section-heading { grid-template-columns: 1fr; gap: 34px; }
  .section-heading > p { margin: 0; }
  .archive-controls { grid-template-columns: repeat(2, 1fr); }
  .filter:nth-child(2) { border-right: 0; }
  .filter:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .archive-grid { grid-template-columns: repeat(2, 1fr); }
  .archive-card:nth-child(3n) { border-right: 1px solid var(--line); }
  .archive-card:nth-child(2n) { border-right: 0; }

  .manifesto__body { grid-template-columns: 1fr; gap: 22px; }
  .process-list li { grid-template-columns: 100px 1fr 54px; }
  .process-list div { padding: 36px 30px; }

  .closing { grid-template-columns: 0.55fr 1.45fr; min-height: 680px; }
  .closing__copy { padding: 52px 38px; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 16px); }

  .paper-noise { opacity: 0.13; }
  .brand { padding-left: 16px; }
  .brand__word { font-size: 50px; }
  .menu-toggle { width: 72px; }
  .mobile-nav { right: 8px; left: 8px; }

  .hero { grid-template-columns: 30px 1fr; }
  .hero__rail { padding: 24px 0; }
  .hero__rail small { display: none; }
  .hero__copy { padding: 48px 18px 50px; }
  .eyebrow { font-size: 9px; line-height: 1.5; }
  .eyebrow::before { width: 18px; }
  .hero h1 { font-size: clamp(60px, 18vw, 92px); line-height: 0.8; }
  .hero__lead { margin-top: 24px; font-size: 16px; }
  .hero__actions, .closing__actions { flex-direction: column; }
  .button { width: 100%; min-height: 60px; font-size: 21px; }
  .hero__visual { min-height: 360px; }
  .hero-eye { width: 145vw; }
  .status-stamp { right: 14px; bottom: 292px; width: 122px; }
  .status-stamp span, .status-stamp strong { font-size: 17px; }
  .status-stamp small { display: none; }
  .registration--c { display: none; }

  .ticker__track { font-size: 21px; }
  .section-heading { padding: 80px 20px 42px; }
  .section-heading h2, .closing h2 { font-size: clamp(60px, 17vw, 94px); }
  .section-heading > p { font-size: 16px; }
  .archive-controls { grid-template-columns: 1fr; }
  .filter { min-height: 62px; border-right: 0; border-bottom: 1px solid var(--line); font-size: 25px; }
  .filter:nth-child(3) { border-bottom: 1px solid var(--line); }
  .filter:last-child { border-bottom: 0; }
  .archive-grid { grid-template-columns: 1fr; }
  .archive-card, .archive-card:nth-child(3n) { min-height: 560px; border-right: 0; }
  .card-graphic { min-height: 300px; }

  .manifesto__display { padding: 90px 18px 48px; }
  .manifesto__display span { font-size: clamp(76px, 22vw, 126px); line-height: 0.76; }
  .manifesto__display span:nth-child(2), .manifesto__display span:nth-child(3) { text-align: left; }
  .manifesto__body { padding: 70px 20px; }
  .manifesto__body h2 { font-size: clamp(54px, 15vw, 78px); }
  .manifesto__body p { font-size: 18px; }

  .process-list li { grid-template-columns: 64px 1fr; min-height: 200px; }
  .process-list > li > span { font-size: 38px; }
  .process-list div { padding: 28px 18px; }
  .process-list h3 { font-size: 52px; }
  .process-list > li > b { display: none; }

  .closing { grid-template-columns: 1fr; min-height: auto; }
  .closing__mark { height: 290px; border-right: 0; border-bottom: 1px solid var(--line); font-size: 300px; }
  .closing__copy { padding: 74px 20px; }
  .site-footer { flex-direction: column; align-items: flex-start; padding: 24px 18px; }
}

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