:root {
  --ink: #101817;
  --ink-2: #182421;
  --paper: #f4efe5;
  --paper-2: #e8dfd0;
  --sand: #ddd0bd;
  --line-dark: rgba(244, 239, 229, 0.18);
  --line-ink: rgba(16, 24, 23, 0.18);
  --muted-dark: #a7b4ae;
  --muted-ink: #5f6863;
  --mint: #baf6d1;
  --blue: #8cb4ff;
  --coral: #ff8065;
  --yellow: #f7cf67;
  --violet: #bea8ff;
  --content: min(1440px, calc(100vw - 64px));
  --display: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", "Cascadia Code", "Roboto Mono", monospace;
}

* {
  box-sizing: border-box;
}

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

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

body.gallery-page {
  background: var(--paper);
  color: var(--ink);
}

body,
button,
input {
  font-family: var(--body);
}

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

button,
input {
  color: inherit;
}

button {
  cursor: pointer;
}

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-150%);
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal][data-visible="true"] {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  width: var(--content);
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-dark);
  transform: translateX(-50%);
}

.site-header--paper {
  border-bottom-color: var(--line-ink);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.brand svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--mint);
  stroke-width: 1.8;
}

.brand > span {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 21px;
}

.brand small {
  color: var(--muted-dark);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.brand--dark {
  color: var(--ink);
}

.brand--dark svg {
  stroke: var(--ink);
}

.brand--dark small {
  color: var(--muted-ink);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: #c5cec9;
  font-size: 12px;
  font-weight: 650;
}

.site-nav > a:not(.nav-pill) {
  position: relative;
  padding: 12px 0;
}

.site-nav > a:not(.nav-pill)::after {
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.site-nav > a:not(.nav-pill):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav--dark {
  color: var(--ink);
}

.nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  min-height: 43px;
  padding: 0 18px;
  border: 1px solid rgba(244, 239, 229, 0.28);
  border-radius: 999px;
}

.nav-pill:hover {
  background: var(--paper);
  color: var(--ink);
}

.nav-pill--dark {
  border-color: var(--line-ink);
}

.nav-pill--dark:hover {
  background: var(--ink);
  color: var(--paper);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 13px 10px;
  border: 0;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 6px 0;
  background: var(--paper);
}

.menu-button--dark span {
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 860px;
  padding: 168px max(32px, calc((100vw - 1440px) / 2)) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 42%, rgba(140, 180, 255, 0.1), transparent 30%),
    linear-gradient(180deg, #101817, #111c1a);
}

.hero::before {
  position: absolute;
  inset: 92px max(32px, calc((100vw - 1440px) / 2)) 112px;
  border-right: 1px solid rgba(244, 239, 229, 0.08);
  border-left: 1px solid rgba(244, 239, 229, 0.08);
  pointer-events: none;
  content: "";
}

.hero__grid {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 585px;
  display: grid;
  grid-template-columns: minmax(480px, 0.86fr) minmax(540px, 1.14fr);
  align-items: center;
  gap: 30px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 27px;
  color: var(--muted-dark);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 27px;
  height: 1px;
  background: var(--mint);
}

.eyebrow--dark {
  color: var(--muted-ink);
}

.eyebrow--dark > span {
  background: var(--ink);
}

.hero h1 {
  max-width: 770px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(66px, 7.35vw, 116px);
  font-weight: 560;
  letter-spacing: -0.073em;
  line-height: 0.87;
}

h1 em,
h2 em {
  color: var(--mint);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero__lede {
  max-width: 580px;
  margin: 40px 0 0;
  color: #b5c0ba;
  font-size: 18px;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-height: 54px;
  padding: 0 21px;
  border: 1px solid var(--line-dark);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  border-color: var(--mint);
  background: var(--mint);
  color: var(--ink);
}

.button--primary:hover {
  border-color: #d7ffe5;
  background: #d7ffe5;
}

.button--quiet {
  color: #d7ded9;
}

.button--quiet:hover {
  border-color: var(--paper);
}

.hero__visual {
  position: relative;
  min-width: 0;
}

.hero-machine {
  width: 100%;
  max-height: 620px;
}

.machine-path {
  fill: none;
  stroke: var(--mint);
  stroke-width: 1.2;
  stroke-dasharray: 5 7;
}

.machine-path--faint {
  stroke: rgba(186, 246, 209, 0.48);
}

.machine-pulse {
  fill: var(--mint);
  filter: drop-shadow(0 0 6px var(--mint));
  animation: pulse-dot 2.8s ease-in-out infinite;
}

.machine-pulse--delay {
  animation-delay: 0.7s;
}

.machine-pulse--late {
  animation-delay: 1.4s;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 0.25;
    transform: scale(0.7);
    transform-origin: center;
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

.machine-input rect,
.machine-output rect {
  fill: rgba(255, 255, 255, 0.018);
  stroke: rgba(244, 239, 229, 0.22);
  stroke-width: 1;
}

.machine-input text,
.machine-output text {
  fill: var(--paper);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
}

.machine-label {
  fill: var(--muted-dark) !important;
  font-family: var(--body) !important;
  font-size: 14px !important;
  letter-spacing: 0 !important;
}

.machine-core > rect {
  fill: rgba(186, 246, 209, 0.07);
  stroke: url("#core-glow");
  stroke-width: 1.4;
}

.machine-core circle {
  fill: none;
  stroke: rgba(186, 246, 209, 0.36);
}

.machine-core path {
  fill: none;
  stroke: var(--mint);
  stroke-width: 1;
}

.machine-core text {
  fill: var(--mint);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.worker-dots rect {
  fill: var(--blue);
  stroke: none;
}

.machine-output path {
  stroke: var(--coral);
  stroke-width: 4;
}

.hero__annotation {
  position: absolute;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted-dark);
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.5;
}

.hero__annotation b {
  color: var(--mint);
  font-weight: 500;
}

.hero__annotation--top {
  top: 8%;
  right: 4%;
}

.hero__annotation--bottom {
  bottom: 6%;
  left: 11%;
}

.hero__metrics {
  position: relative;
  z-index: 3;
  width: 100%;
  min-height: 112px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 1px;
  border-top: 1px solid var(--line-dark);
}

.hero__metrics > div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 28px;
  border-right: 1px solid var(--line-dark);
}

.hero__metrics > div:last-child {
  border-right: 0;
}

.hero__metrics strong {
  color: var(--paper);
  font-family: var(--display);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.05em;
}

.hero__metrics span {
  max-width: 95px;
  color: var(--muted-dark);
  font-size: 11px;
  line-height: 1.25;
}

.section {
  position: relative;
  padding: 136px max(32px, calc((100vw - 1440px) / 2));
}

.section--paper {
  background: var(--paper);
  color: var(--ink);
}

.section--ink {
  background: var(--ink);
  color: var(--paper);
}

.section--sand {
  background: var(--sand);
  color: var(--ink);
}

.section-heading {
  max-width: 830px;
  margin-bottom: 76px;
}

.section-heading h2,
.moderator-question h2,
.parallel-copy h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(52px, 6vw, 92px);
  font-weight: 560;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.section-heading h2 em,
.moderator-question h2 em {
  color: var(--coral);
}

.section-heading > p:last-child {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--muted-ink);
  font-size: 18px;
  line-height: 1.65;
}

.section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 12%;
}

.section-heading--split > p:last-child {
  margin: 0 0 8px;
}

.section--ink .section-heading--split > p:last-child {
  color: var(--muted-dark);
}

.failure-map {
  display: grid;
  grid-template-columns: minmax(560px, 1.15fr) minmax(360px, 0.85fr);
  border: 1px solid var(--line-ink);
}

.failure-map__old {
  min-width: 0;
  padding: 25px 30px 0;
  border-right: 1px solid var(--line-ink);
  background:
    linear-gradient(rgba(16, 24, 23, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 24, 23, 0.035) 1px, transparent 1px);
  background-size: 25px 25px;
}

.failure-map__label {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.09em;
}

.failure-map__label b {
  color: #aa3f32;
}

.orbit-lines path {
  fill: none;
  stroke: rgba(16, 24, 23, 0.08);
}

.chaos-arrows path {
  fill: none;
  color: var(--coral);
  stroke: currentColor;
  stroke-width: 1;
  marker-end: url("#arrow-red");
}

.chaos-node rect {
  fill: var(--paper);
  stroke: rgba(16, 24, 23, 0.28);
}

.chaos-node text {
  fill: var(--ink);
  font-family: var(--mono);
  font-size: 8px;
  text-anchor: middle;
}

.chaos-core rect {
  fill: var(--coral);
  stroke: var(--ink);
}

.chaos-core text {
  fill: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  text-anchor: middle;
}

.failure-map__findings {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
}

.failure-map__findings article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding: 28px 30px;
  border-bottom: 1px solid var(--line-ink);
}

.failure-map__findings article:last-child {
  border-bottom: 0;
}

.failure-map__findings article > span {
  color: #a75243;
  font-family: var(--mono);
  font-size: 10px;
}

.failure-map__findings h3 {
  margin: -5px 0 7px;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.035em;
}

.failure-map__findings p {
  max-width: 420px;
  margin: 0;
  color: var(--muted-ink);
  font-size: 13px;
}

.comparison {
  margin-top: 90px;
  border-top: 2px solid var(--ink);
}

.comparison__header,
.comparison__row {
  display: grid;
  grid-template-columns: 0.65fr 1fr 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line-ink);
}

.comparison__header {
  min-height: 62px;
  color: var(--muted-ink);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.comparison__header span,
.comparison__row > * {
  padding: 15px 25px;
}

.comparison__header span:not(:last-child),
.comparison__row > *:not(:last-child) {
  border-right: 1px solid var(--line-ink);
}

.comparison__row {
  min-height: 76px;
}

.comparison__row b {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.comparison__row span {
  color: #89564c;
  text-decoration: line-through;
  text-decoration-color: rgba(137, 86, 76, 0.55);
}

.comparison__row strong {
  color: #22553b;
  font-weight: 650;
}

.loop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.loop-card {
  position: relative;
  min-height: 460px;
  padding: 30px;
  overflow: hidden;
  background: var(--ink);
}

.loop-card::after {
  position: absolute;
  right: -50px;
  bottom: -100px;
  width: 250px;
  height: 250px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: 0.18;
}

.loop-card--mint {
  color: var(--mint);
}

.loop-card--blue {
  color: var(--blue);
}

.loop-card--coral {
  color: var(--coral);
}

.loop-card__number {
  font-family: var(--mono);
  font-size: 10px;
}

.loop-card__icon {
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  margin: 70px auto 54px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.loop-card__icon svg {
  width: 66px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
}

.loop-card h3 {
  margin: 0 0 12px;
  color: var(--paper);
  font-family: var(--display);
  font-size: 36px;
  font-weight: 550;
  letter-spacing: -0.04em;
}

.loop-card p {
  max-width: 340px;
  margin: 0;
  color: var(--muted-dark);
  font-size: 14px;
}

.loop-card small {
  position: absolute;
  bottom: 30px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.single-writer {
  display: grid;
  grid-template-columns: 1fr 250px;
  align-items: center;
  margin-top: 80px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.single-writer svg {
  padding: 32px 0;
}

.single-writer > div {
  padding: 30px;
  border-left: 1px solid var(--line-dark);
}

.single-writer > div span {
  color: var(--mint);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.single-writer > div p {
  margin: 10px 0 0;
  color: var(--muted-dark);
  font-size: 13px;
}

.single-writer__sources rect,
.single-writer__core rect {
  fill: transparent;
  stroke: rgba(244, 239, 229, 0.28);
}

.single-writer__sources text,
.single-writer__core text,
.single-writer__store text {
  fill: var(--paper);
  font-family: var(--mono);
  font-size: 10px;
  text-anchor: middle;
}

.single-writer__lines path,
.single-writer__out {
  fill: none;
  stroke: var(--mint);
  stroke-width: 1;
  marker-end: url("#arrow-green");
}

.single-writer__core rect {
  fill: rgba(186, 246, 209, 0.08);
  stroke: var(--mint);
}

.single-writer__sub {
  fill: var(--muted-dark) !important;
  font-size: 8px !important;
}

.single-writer__store path,
.single-writer__store ellipse {
  fill: rgba(140, 180, 255, 0.07);
  stroke: var(--blue);
}

.stages-section {
  overflow: hidden;
}

.stage-console {
  margin-bottom: 70px;
  border: 1px solid var(--line-ink);
  background:
    linear-gradient(90deg, rgba(16, 24, 23, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(16, 24, 23, 0.035) 1px, transparent 1px);
  background-size: 36px 36px;
}

.stage-console__rail {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  min-height: 58px;
  padding: 0 24px;
  border-bottom: 1px solid var(--line-ink);
}

.stage-console__rail > span,
.stage-console__rail small {
  color: var(--muted-ink);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.stage-console__rail strong {
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: -0.025em;
}

.stage-console > svg {
  width: 100%;
}

.stage-line {
  fill: none;
  stroke: rgba(16, 24, 23, 0.25);
  stroke-width: 1;
}

.stage-line--progress {
  stroke: var(--ink);
  stroke-dasharray: 5 9;
}

.stage-node circle {
  fill: var(--paper);
  stroke: var(--ink);
}

.stage-node text {
  fill: var(--ink);
  font-family: var(--mono);
  font-size: 9px;
  text-anchor: middle;
}

.stage-svg-label {
  fill: var(--muted-ink);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.08em;
}

.stage-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-ink);
  border-left: 1px solid var(--line-ink);
}

.stage-card {
  position: relative;
  min-height: 480px;
  padding: 36px;
  border-right: 1px solid var(--line-ink);
  border-bottom: 1px solid var(--line-ink);
  outline: none;
  transition: background 0.25s ease;
}

.stage-card:hover,
.stage-card:focus-visible {
  background: #ece4d7;
}

.stage-card__top {
  display: flex;
  justify-content: space-between;
  color: var(--muted-ink);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.stage-card__top > span {
  color: var(--ink);
  font-size: 13px;
}

.stage-card h3 {
  max-width: 500px;
  margin: 66px 0 20px;
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 560;
  letter-spacing: -0.055em;
  line-height: 1;
}

.stage-card > p {
  max-width: 550px;
  color: var(--muted-ink);
  font-size: 15px;
}

.stage-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 28px 0 75px;
  padding: 0;
  list-style: none;
}

.stage-card li {
  padding: 7px 10px;
  border: 1px solid var(--line-ink);
  border-radius: 99px;
  font-size: 10px;
}

.stage-card__gate {
  position: absolute;
  right: 36px;
  bottom: 30px;
  left: 36px;
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--line-ink);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
}

.stage-card__gate span {
  color: var(--muted-ink);
}

.craft-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.craft-card {
  position: relative;
  min-height: 620px;
  padding: 24px;
  border: 1px solid var(--line-ink);
  overflow: hidden;
}

.craft-card__heading {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.craft-card__heading small {
  color: var(--muted-ink);
}

.craft-card h3 {
  margin: 35px 0 13px;
  font-family: var(--display);
  font-size: 31px;
  font-weight: 560;
  letter-spacing: -0.04em;
}

.craft-card > p {
  margin: 0;
  color: var(--muted-ink);
  font-size: 13px;
}

.phone-shell {
  position: relative;
  width: 194px;
  height: 326px;
  margin: 48px auto 0;
  padding: 14px 14px 12px;
  border: 1px solid var(--ink);
  border-radius: 28px;
  background: #eee6d9;
  box-shadow: 16px 18px 0 rgba(16, 24, 23, 0.08);
}

.phone-shell__status,
.phone-shell__header,
.phone-shell__tabs {
  display: flex;
  align-items: center;
}

.phone-shell__status {
  gap: 4px;
  font-size: 6px;
}

.phone-shell__status span {
  margin-right: auto;
}

.phone-shell__status i {
  width: 5px;
  height: 5px;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.phone-shell__header {
  justify-content: space-between;
  margin-top: 18px;
}

.phone-shell__header b,
.phone-shell__header i {
  width: 21px;
  height: 21px;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.phone-shell__header span {
  width: 70px;
  height: 7px;
  background: var(--ink);
}

.phone-shell__body {
  display: grid;
  gap: 8px;
  margin-top: 23px;
}

.phone-shell__body span {
  height: 54px;
  border: 1px solid rgba(16, 24, 23, 0.35);
  background: var(--paper);
}

.phone-shell__body span:first-child {
  height: 75px;
  background: var(--mint);
}

.phone-shell__tabs {
  position: absolute;
  right: 13px;
  bottom: 12px;
  left: 13px;
  justify-content: space-around;
  height: 39px;
  border-top: 1px solid var(--ink);
}

.phone-shell__tabs i {
  width: 10px;
  height: 10px;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.asset-stack {
  position: relative;
  min-height: 326px;
  margin-top: 48px;
  padding-top: 20px;
}

.asset-stack > svg {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  fill: none;
  stroke: rgba(16, 24, 23, 0.4);
}

.asset-stack > svg circle:first-of-type {
  fill: var(--blue);
}

.asset-stack > svg circle:nth-of-type(2) {
  fill: var(--coral);
}

.asset-stack > svg circle:last-of-type {
  fill: var(--mint);
}

.asset-chip {
  position: absolute;
  width: 145px;
  height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  border: 1px solid var(--ink);
  box-shadow: 9px 10px 0 rgba(16, 24, 23, 0.08);
}

.asset-chip b {
  font-family: var(--display);
  font-size: 25px;
  letter-spacing: -0.05em;
}

.asset-chip span {
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.04em;
}

.asset-chip--svg {
  top: 25px;
  left: 3%;
  background: var(--blue);
  transform: rotate(-4deg);
}

.asset-chip--png {
  top: 111px;
  left: 28%;
  z-index: 2;
  background: var(--coral);
  transform: rotate(3deg);
}

.asset-chip--webp {
  top: 42px;
  right: 3%;
  background: var(--mint);
  transform: rotate(7deg);
}

.mode-switch {
  min-height: 326px;
  display: grid;
  grid-template-columns: 1fr 44px 1fr;
  align-items: center;
  margin-top: 48px;
}

.mode-switch__item {
  display: grid;
  place-items: center;
}

.mode-switch__item > span,
.mode-switch__item > svg {
  width: 92px;
  height: 92px;
  margin-bottom: 18px;
}

.mode-switch__item > span {
  border: 1px solid var(--ink);
  border-radius: 50%;
  background:
    linear-gradient(45deg, transparent 48%, var(--ink) 49%, var(--ink) 51%, transparent 52%);
}

.mode-switch__item > svg {
  padding: 10px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  fill: var(--yellow);
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mode-switch__item b {
  font-family: var(--mono);
  font-size: 10px;
}

.mode-switch__item small {
  color: var(--muted-ink);
  font-size: 9px;
}

.mode-switch__line {
  height: 1px;
  background: var(--ink);
}

.parallel-section {
  display: grid;
  grid-template-columns: minmax(410px, 0.75fr) minmax(520px, 1.25fr);
  align-items: center;
  gap: 7%;
}

.parallel-copy h2 em {
  color: var(--blue);
}

.parallel-copy > p:last-child {
  max-width: 600px;
  margin: 32px 0 0;
  color: var(--muted-dark);
  font-size: 17px;
}

.parallel-diagram {
  border: 1px solid var(--line-dark);
  background:
    linear-gradient(rgba(244, 239, 229, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 239, 229, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
}

.parallel-diagram > svg {
  width: 100%;
  padding: 28px;
}

.parallel-start rect,
.parallel-worker rect,
.parallel-merge rect,
.parallel-release rect {
  fill: var(--ink);
  stroke: rgba(244, 239, 229, 0.34);
}

.parallel-start text,
.parallel-worker text,
.parallel-merge text,
.parallel-release text {
  fill: var(--paper);
  font-family: var(--mono);
  font-size: 10px;
  text-anchor: middle;
}

.parallel-start rect {
  fill: rgba(140, 180, 255, 0.08);
  stroke: var(--blue);
}

.parallel-worker:nth-of-type(odd) rect {
  stroke: var(--mint);
}

.parallel-worker:nth-of-type(even) rect {
  stroke: var(--coral);
}

.parallel-worker path {
  stroke: rgba(244, 239, 229, 0.22);
}

.parallel-merge rect {
  fill: rgba(186, 246, 209, 0.08);
  stroke: var(--mint);
}

.parallel-release rect {
  fill: var(--mint);
  stroke: var(--mint);
}

.parallel-release text {
  fill: var(--ink);
  font-weight: 700;
}

.parallel-sub {
  fill: var(--muted-dark) !important;
  font-size: 8px !important;
}

.parallel-path {
  fill: none;
  stroke: var(--mint);
  stroke-width: 1;
  marker-end: url("#parallel-arrow");
}

.parallel-legend {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
}

.parallel-legend span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 58px;
  padding: 0 16px;
  border-right: 1px solid var(--line-dark);
  color: var(--muted-dark);
  font-size: 9px;
}

.parallel-legend span:last-child {
  border-right: 0;
}

.parallel-legend i {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--mint);
}

.moderator-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 9%;
}

.moderator-question h2 {
  font-size: clamp(49px, 5.4vw, 84px);
}

.moderator-answer {
  padding-top: 8px;
}

.answer-badge {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  margin-bottom: 42px;
  border-radius: 50%;
  background: var(--coral);
  font-family: var(--display);
  font-size: 33px;
  font-weight: 750;
  letter-spacing: -0.05em;
}

.answer-badge span {
  position: absolute;
  margin: -29px 0 0 76px;
  font-family: Georgia, serif;
}

.moderator-answer__lead {
  margin: 0 0 26px;
  font-family: var(--display);
  font-size: 27px;
  letter-spacing: -0.035em;
  line-height: 1.35;
}

.moderator-answer > p:not(.moderator-answer__lead) {
  color: var(--muted-ink);
}

.moderator-answer__qualifier {
  display: grid;
  grid-template-columns: 34px 1fr;
  margin-top: 34px !important;
  padding-top: 22px;
  border-top: 1px solid var(--line-ink);
  font-size: 12px;
}

.moderator-answer__qualifier span {
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: 28px;
}

.runway {
  border-top: 1px solid var(--line-ink);
}

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

.runway__track::before {
  position: absolute;
  top: 36px;
  right: 16.66%;
  left: 16.66%;
  height: 1px;
  background: var(--ink);
  content: "";
}

.runway-stop {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.runway-stop__marker {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--sand);
  font-family: var(--mono);
  font-size: 9px;
}

.runway-stop--helios .runway-stop__marker {
  background: var(--yellow);
}

.runway-stop--wobbleby .runway-stop__marker {
  background: var(--mint);
}

.runway-stop small {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
}

.runway-stop h3 {
  margin: 8px 0 12px;
  font-family: var(--display);
  font-size: 34px;
  font-weight: 560;
  letter-spacing: -0.045em;
}

.runway-stop p {
  max-width: 330px;
  margin: 0 auto;
  color: var(--muted-ink);
  font-size: 13px;
}

.final-cta {
  min-height: 640px;
  display: grid;
  grid-template-columns: 1fr 0.62fr;
  align-items: center;
  padding: 110px max(32px, calc((100vw - 1440px) / 2));
  background: var(--coral);
  color: var(--ink);
}

.final-cta h2 {
  color: var(--ink);
}

.final-cta > div:first-child > p:not(.eyebrow) {
  max-width: 560px;
  margin: 30px 0;
  font-size: 17px;
}

.final-cta .eyebrow {
  color: rgba(16, 24, 23, 0.62);
}

.final-cta .eyebrow > span {
  background: var(--ink);
}

.final-cta .button--primary {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.final-cta__count {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
}

.final-cta__count strong {
  font-family: var(--display);
  font-size: clamp(120px, 14vw, 225px);
  font-weight: 560;
  letter-spacing: -0.09em;
  line-height: 0.75;
}

.final-cta__count span {
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.25;
  text-transform: uppercase;
}

.site-footer {
  min-height: 140px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 0 max(32px, calc((100vw - 1440px) / 2));
  border-top: 1px solid var(--line-dark);
  background: var(--ink);
  color: var(--muted-dark);
  font-size: 10px;
}

.site-footer > p {
  text-align: center;
}

.site-footer > a:last-child {
  justify-self: end;
}

.site-footer--paper {
  border-top-color: var(--line-ink);
  background: var(--paper);
  color: var(--muted-ink);
}

.brand--footer > span {
  font-size: 16px;
}

.brand--footer svg {
  width: 28px;
}

/* Archive */

.archive-hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 8%;
  padding: 170px max(32px, calc((100vw - 1440px) / 2)) 95px;
  background:
    radial-gradient(circle at 84% 30%, rgba(255, 128, 101, 0.22), transparent 26%),
    var(--paper);
  border-bottom: 1px solid var(--line-ink);
}

.archive-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(68px, 9vw, 140px);
  font-weight: 560;
  letter-spacing: -0.075em;
  line-height: 0.86;
}

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

.archive-hero__copy > p:last-child {
  max-width: 640px;
  margin: 36px 0 0;
  color: var(--muted-ink);
  font-size: 17px;
}

.archive-hero__numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  border-top: 1px solid var(--ink);
}

.archive-total,
.archive-breakdown {
  min-height: 190px;
  padding: 24px;
}

.archive-total {
  border-right: 1px solid var(--line-ink);
}

.archive-total strong {
  display: block;
  font-family: var(--display);
  font-size: 92px;
  font-weight: 560;
  letter-spacing: -0.075em;
  line-height: 1;
}

.archive-total span,
.archive-breakdown span {
  color: var(--muted-ink);
  font-size: 11px;
}

.archive-breakdown {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 15px;
}

.archive-breakdown span {
  padding-top: 10px;
  border-top: 1px solid var(--line-ink);
}

.archive-breakdown b {
  color: var(--ink);
}

.archive-truth {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 20px;
  max-width: 1440px;
  margin: 32px auto 0;
  padding: 27px 30px;
  border: 1px solid rgba(129, 71, 53, 0.35);
  background: rgba(255, 128, 101, 0.12);
}

.archive-truth svg {
  width: 42px;
  fill: none;
  stroke: #9f4b3a;
  stroke-width: 1.2;
}

.archive-truth strong {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.archive-truth p {
  max-width: 970px;
  margin: 5px 0 0;
  color: var(--muted-ink);
  font-size: 13px;
}

.archive {
  padding: 90px max(32px, calc((100vw - 1440px) / 2)) 140px;
}

.archive-toolbar {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line-ink);
}

.collection-switch {
  display: flex;
  border: 1px solid var(--line-ink);
}

.collection-switch button {
  width: 190px;
  min-height: 76px;
  display: grid;
  grid-template-columns: 30px 1fr;
  grid-template-rows: 1fr 1fr;
  align-items: end;
  padding: 12px 14px;
  border: 0;
  border-right: 1px solid var(--line-ink);
  background: transparent;
  text-align: left;
}

.collection-switch button:last-child {
  border-right: 0;
}

.collection-switch button[data-active="true"] {
  background: var(--ink);
  color: var(--paper);
}

.collection-switch button > span {
  grid-row: 1 / 3;
  align-self: start;
  color: var(--muted-ink);
  font-family: var(--mono);
  font-size: 8px;
}

.collection-switch button[data-active="true"] > span {
  color: var(--mint);
}

.collection-switch strong {
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: -0.03em;
}

.collection-switch small {
  color: var(--muted-ink);
  font-size: 9px;
}

.collection-switch button[data-active="true"] small {
  color: var(--muted-dark);
}

.archive-search {
  width: min(390px, 34vw);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 17px;
  border-bottom: 1px solid var(--ink);
}

.archive-search svg {
  width: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.archive-search input {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 13px;
}

.archive-search input::placeholder {
  color: #858b87;
}

.archive-summary {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  margin: 84px 0 36px;
}

.archive-summary .eyebrow {
  margin-bottom: 14px;
}

.archive-summary h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(56px, 6vw, 90px);
  font-weight: 560;
  letter-spacing: -0.065em;
  line-height: 1;
}

.archive-summary > div:first-child > p:last-child {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--muted-ink);
  font-size: 13px;
}

.archive-summary__count {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.archive-summary__count > span {
  font-family: var(--display);
  font-size: 72px;
  font-weight: 560;
  letter-spacing: -0.07em;
  line-height: 0.8;
}

.archive-summary__count small {
  color: var(--muted-ink);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.04em;
}

.category-row {
  display: flex;
  gap: 7px;
  padding: 18px 0;
  overflow-x: auto;
  border-top: 1px solid var(--line-ink);
  border-bottom: 1px solid var(--line-ink);
  scrollbar-width: none;
}

.category-row::-webkit-scrollbar {
  display: none;
}

.filter-chip {
  flex: 0 0 auto;
  min-height: 33px;
  padding: 0 13px;
  border: 1px solid var(--line-ink);
  border-radius: 999px;
  background: transparent;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.04em;
}

.filter-chip[data-active="true"] {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px 16px;
  margin-top: 42px;
}

.gallery-grid[data-empty="true"]::after {
  grid-column: 1 / -1;
  min-height: 230px;
  display: grid;
  place-items: center;
  border: 1px dashed var(--line-ink);
  color: var(--muted-ink);
  content: "No images match this filter.";
}

.gallery-card {
  min-width: 0;
  margin: 0;
}

.gallery-card__button {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
}

.gallery-card__button > img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(16, 24, 23, 0.13);
  background:
    linear-gradient(45deg, #ded6ca 25%, transparent 25%),
    linear-gradient(-45deg, #ded6ca 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #ded6ca 75%),
    linear-gradient(-45deg, transparent 75%, #ded6ca 75%),
    #ebe4d9;
  background-position: 0 0, 0 8px, 8px -8px, -8px 0;
  background-size: 16px 16px;
  object-fit: contain;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}

.gallery-card--landscape .gallery-card__button > img {
  aspect-ratio: 4 / 3;
}

.gallery-card--square .gallery-card__button > img {
  aspect-ratio: 1;
}

.gallery-card__button:hover > img,
.gallery-card__button:focus-visible > img {
  box-shadow: 0 18px 35px rgba(16, 24, 23, 0.14);
  transform: translateY(-5px);
}

.gallery-card figcaption {
  display: grid;
  grid-template-columns: 27px 1fr 20px;
  gap: 8px;
  padding: 13px 2px 0;
}

.gallery-card__index {
  padding-top: 2px;
  color: var(--muted-ink);
  font-family: var(--mono);
  font-size: 7px;
}

.gallery-card__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.gallery-card__copy strong {
  overflow: hidden;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: -0.025em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gallery-card__copy small {
  color: var(--muted-ink);
  font-size: 8px;
}

.gallery-card__open {
  color: var(--muted-ink);
  font-size: 12px;
}

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 24px 84px;
  border: 0;
  background: rgba(10, 16, 15, 0.97);
  color: var(--paper);
}

.lightbox::backdrop {
  background: rgba(10, 16, 15, 0.92);
}

.lightbox[open] {
  display: grid;
  grid-template-columns: 50px 1fr 50px;
  align-items: center;
  gap: 20px;
}

.lightbox figure {
  min-width: 0;
  height: calc(100dvh - 48px);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  margin: 0;
}

.lightbox__image-wrap {
  min-height: 0;
  display: grid;
  place-items: center;
}

.lightbox img {
  max-width: 100%;
  max-height: calc(100dvh - 130px);
  border: 1px solid rgba(244, 239, 229, 0.15);
  object-fit: contain;
}

.lightbox figcaption {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 14px;
  font-size: 12px;
}

.lightbox figcaption strong {
  font-family: var(--display);
  font-size: 17px;
}

.lightbox figcaption span {
  max-width: 65%;
  overflow: hidden;
  color: var(--muted-dark);
  font-family: var(--mono);
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lightbox__close,
.lightbox__nav {
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: transparent;
  color: var(--paper);
}

.lightbox__close {
  position: fixed;
  z-index: 3;
  top: 22px;
  right: 24px;
  width: 42px;
  height: 42px;
}

.lightbox__close span {
  position: absolute;
  top: 20px;
  left: 11px;
  width: 19px;
  height: 1px;
  background: currentColor;
  transform: rotate(45deg);
}

.lightbox__close span:last-child {
  transform: rotate(-45deg);
}

.lightbox__nav {
  width: 48px;
  height: 48px;
}

.lightbox__nav:hover,
.lightbox__close:hover {
  border-color: var(--mint);
  color: var(--mint);
}

@media (max-width: 1120px) {
  :root {
    --content: calc(100vw - 42px);
  }

  .hero__grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .hero h1 {
    font-size: clamp(60px, 7.7vw, 92px);
  }

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

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

  .failure-map__old svg {
    max-height: 530px;
    margin: auto;
  }

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

  .failure-map__findings article:nth-child(odd) {
    border-right: 1px solid var(--line-ink);
  }

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

  .craft-card--characters {
    grid-column: 1 / -1;
    min-height: 540px;
  }

  .craft-card--characters .mode-switch {
    max-width: 650px;
    min-height: 250px;
    margin-right: auto;
    margin-left: auto;
  }

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

  .parallel-copy {
    max-width: 790px;
  }

  .parallel-diagram {
    max-width: 800px;
    margin: 40px auto 0;
  }

  .archive-hero {
    grid-template-columns: 1fr;
  }

  .archive-hero__numbers {
    max-width: 650px;
  }

  .archive-truth {
    margin-right: 21px;
    margin-left: 21px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

  .site-header {
    min-height: 76px;
  }

  .menu-button {
    position: relative;
    z-index: 22;
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 21;
    top: 0;
    right: 0;
    width: min(390px, 92vw);
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    padding: 50px;
    background: var(--ink-2);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.3);
    font-size: 18px;
    transform: translateX(105%);
    transition: transform 0.3s ease;
  }

  .site-nav[data-open="true"] {
    transform: translateX(0);
  }

  .site-nav--dark {
    background: var(--paper);
  }

  .site-nav .nav-pill {
    justify-content: space-between;
    margin-top: 12px;
  }

  .hero {
    min-height: 0;
    padding-top: 135px;
  }

  .hero::before {
    top: 76px;
  }

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

  .hero__copy {
    padding-right: 20px;
  }

  .hero h1 {
    font-size: clamp(58px, 13vw, 100px);
  }

  .hero__visual {
    width: min(700px, 100%);
    margin: 15px auto 0;
  }

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

  .hero__metrics > div:nth-child(2) {
    border-right: 0;
  }

  .hero__metrics > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }

  .section {
    padding-top: 95px;
    padding-bottom: 95px;
  }

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

  .section-heading--split > p:last-child {
    margin-top: 25px;
  }

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

  .loop-card {
    min-height: 380px;
  }

  .loop-card__icon {
    margin: 30px 0;
  }

  .single-writer {
    grid-template-columns: 1fr;
  }

  .single-writer > div {
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .stage-console__rail {
    grid-template-columns: 125px 1fr;
  }

  .stage-console__rail small {
    display: none;
  }

  .stage-console > svg {
    min-width: 930px;
    transform: translateX(-90px);
  }

  .stage-list {
    grid-template-columns: 1fr;
  }

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

  .craft-card--characters {
    grid-column: auto;
  }

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

  .moderator-answer {
    max-width: 650px;
    margin-top: 40px;
  }

  .runway__track {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .runway__track::before {
    top: 36px;
    bottom: 36px;
    left: 36px;
    width: 1px;
    height: auto;
  }

  .runway-stop {
    grid-template-columns: 72px 1fr;
    justify-items: start;
    gap: 28px;
    text-align: left;
  }

  .runway-stop p {
    margin: 0;
  }

  .final-cta {
    grid-template-columns: 1fr;
    gap: 90px;
  }

  .final-cta__count {
    justify-content: flex-start;
  }

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

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

  .archive-hero {
    min-height: 0;
    padding-top: 140px;
  }

  .archive-hero__numbers {
    margin-top: 50px;
  }

  .archive-toolbar {
    flex-direction: column;
  }

  .archive-search {
    width: 100%;
    min-height: 55px;
  }

  .archive-summary {
    grid-template-columns: 1fr;
  }

  .archive-summary__count {
    justify-self: start;
  }

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

  .lightbox {
    padding: 65px 18px 20px;
  }

  .lightbox[open] {
    grid-template-columns: 34px 1fr 34px;
    gap: 7px;
  }

  .lightbox__nav {
    width: 34px;
    height: 34px;
  }
}

@media (max-width: 560px) {
  :root {
    --content: calc(100vw - 24px);
  }

  .brand small {
    display: none;
  }

  .hero {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero h1 {
    font-size: clamp(52px, 16vw, 78px);
  }

  .hero__lede {
    font-size: 15px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero__annotation {
    display: none;
  }

  .hero__metrics > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
    padding: 18px;
  }

  .hero__metrics strong {
    font-size: 27px;
  }

  .section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .section-heading h2,
  .moderator-question h2,
  .parallel-copy h2,
  .final-cta h2 {
    font-size: clamp(45px, 13vw, 65px);
  }

  .section-heading > p:last-child {
    font-size: 15px;
  }

  .failure-map__old {
    padding: 20px 8px 0;
  }

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

  .failure-map__findings article:nth-child(odd) {
    border-right: 0;
  }

  .comparison {
    overflow-x: auto;
  }

  .comparison__header,
  .comparison__row {
    min-width: 660px;
  }

  .single-writer {
    overflow: hidden;
  }

  .single-writer svg {
    min-width: 720px;
    transform: translateX(-116px);
  }

  .stage-card {
    min-height: 520px;
    padding: 26px;
  }

  .stage-card__gate {
    right: 26px;
    left: 26px;
  }

  .craft-card {
    min-height: 590px;
  }

  .parallel-diagram > svg {
    padding: 5px;
  }

  .parallel-legend {
    grid-template-columns: 1fr;
  }

  .parallel-legend span {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .parallel-legend span:last-child {
    border-bottom: 0;
  }

  .final-cta {
    padding-right: 18px;
    padding-left: 18px;
  }

  .final-cta__count strong {
    font-size: 36vw;
  }

  .site-footer {
    min-height: 120px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .site-footer > a:last-child {
    max-width: 120px;
    text-align: right;
  }

  .archive-hero {
    padding-right: 18px;
    padding-left: 18px;
  }

  .archive-hero h1 {
    font-size: clamp(60px, 18vw, 88px);
  }

  .archive-hero__numbers {
    grid-template-columns: 1fr;
  }

  .archive-total {
    min-height: 140px;
    border-right: 0;
    border-bottom: 1px solid var(--line-ink);
  }

  .archive-breakdown {
    min-height: 150px;
  }

  .archive-truth {
    grid-template-columns: 1fr;
    margin-right: 12px;
    margin-left: 12px;
  }

  .archive {
    padding-right: 18px;
    padding-left: 18px;
  }

  .collection-switch {
    width: 100%;
  }

  .collection-switch button {
    width: 50%;
  }

  .archive-summary h2 {
    font-size: 54px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .gallery-card__button > img {
    max-height: 72dvh;
  }

  .lightbox {
    padding: 60px 9px 15px;
  }

  .lightbox[open] {
    grid-template-columns: 1fr;
  }

  .lightbox__nav {
    position: fixed;
    z-index: 3;
    bottom: 18px;
  }

  .lightbox__nav--prev {
    left: 18px;
  }

  .lightbox__nav--next {
    right: 18px;
  }

  .lightbox figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
    padding-right: 48px;
    padding-left: 48px;
  }

  .lightbox figcaption span {
    max-width: 100%;
  }
}

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

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