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

@font-face {
  font-family: "Space Grotesk";
  src: url("assets/fonts/space-grotesk-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("assets/fonts/space-grotesk-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("assets/fonts/space-grotesk-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("assets/fonts/space-grotesk-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

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

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

:root {
  --ink: #0b1712;
  --ink-deep: #07100c;
  --board: #10231b;
  --board-soft: #193127;
  --chalk: #f4f0e4;
  --chalk-dim: #c7c2b5;
  --red: #e2382e;
  --red-dark: #b82720;
  --line: rgba(244, 240, 228, 0.2);
  --display: "Anton", Impact, sans-serif;
  --body: "Space Grotesk", Arial, sans-serif;
  --mono: "IBM Plex Mono", "Courier New", monospace;
  --page: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--chalk);
  background:
    radial-gradient(circle at 18% 12%, rgba(72, 104, 84, 0.15), transparent 32%),
    var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
}

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

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

button,
input {
  font: inherit;
}

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

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--chalk);
  font-family: var(--mono);
  font-weight: 700;
  transform: translateY(-160%);
}

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

.site-header {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: var(--page);
  padding: 20px 0;
  border-bottom: 1px solid rgba(244, 240, 228, 0.28);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand img {
  width: 42px;
  height: 42px;
  border: 2px solid var(--chalk);
  border-radius: 50%;
}

nav {
  display: flex;
  gap: 28px;
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

nav a,
.source-links a {
  position: relative;
}

nav a::after,
.source-links a::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

nav a:hover::after,
.source-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-nod {
  justify-self: end;
  padding: 9px 12px;
  border: 1px solid var(--chalk);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  height: 100svh;
  max-height: 980px;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: 56% center;
  transform: scale(1.01);
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero.is-nodding .hero-image {
  transform: scale(1.018) translateY(4px);
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 10, 7, 0.97) 0%, rgba(4, 10, 7, 0.84) 32%, rgba(4, 10, 7, 0.17) 67%, rgba(4, 10, 7, 0.24) 100%),
    linear-gradient(0deg, rgba(4, 10, 7, 0.84), transparent 43%);
}

.hero-content {
  align-self: center;
  width: var(--page);
  margin: 72px auto 0;
}

.live-topic,
.eyebrow,
.beat-label,
.scene-copy span,
.preview-meta,
.lab-controls label,
.scene-picker legend,
.nod-count {
  font-family: var(--mono);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-topic {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 20px;
  color: var(--chalk-dim);
  font-size: 0.76rem;
}

.live-topic span {
  color: var(--chalk);
}

.hero-title,
.semantic-heading,
.scene-copy h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}

.hero-title {
  max-width: 870px;
  font-size: clamp(5rem, 8.6vw, 8.4rem);
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.34);
}

.hero-line {
  display: block;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
}

.hero-line-mobile {
  display: none;
}

.hero-line-big {
  position: relative;
  margin-top: 0.08em;
  font-size: 1.14em;
}

.hero-line-big::after {
  position: absolute;
  right: 0;
  bottom: -0.08em;
  left: 0;
  height: 0.07em;
  content: "";
  background: var(--red);
  transform: rotate(-0.4deg);
}

.hero-sub {
  margin: 35px 0 0;
  color: var(--chalk-dim);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.hero-actions,
.lab-actions,
.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--chalk);
  border-radius: 0;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

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

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

.button-red:hover {
  border-color: var(--chalk);
  color: var(--ink);
  background: var(--chalk);
}

.button-ghost {
  color: var(--chalk);
  background: rgba(8, 19, 14, 0.35);
}

.button-ghost:hover {
  color: var(--ink);
  background: var(--chalk);
}

.nod-count {
  margin: 18px 0 0;
  color: var(--chalk-dim);
  font-size: 0.68rem;
}

.consensus-stamp {
  position: absolute;
  right: max(5vw, 36px);
  bottom: max(6vh, 50px);
  padding: 16px 18px 11px;
  border: 5px solid var(--red);
  color: var(--red);
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.2vw, 3rem);
  line-height: 0.85;
  text-align: center;
  opacity: 0;
  transform: rotate(-8deg) scale(0.72);
}

.consensus-stamp.show {
  animation: stamp-in 550ms cubic-bezier(0.2, 1.55, 0.5, 1) forwards;
}

@keyframes stamp-in {
  to {
    opacity: 0.93;
    transform: rotate(-8deg) scale(1);
  }
}

.ticker {
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  contain: layout paint;
  border-top: 1px solid var(--red);
  border-bottom: 1px solid var(--red);
  color: var(--chalk);
  background: var(--red);
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 22px;
  padding: 11px 0 10px;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
  animation: ticker-move 28s linear infinite;
}

.ticker-track i {
  font-style: normal;
}

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

.section {
  width: var(--page);
  margin: 0 auto;
  padding: 120px 0;
}

.section-heading {
  margin-bottom: 58px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--red);
  font-size: 0.72rem;
}

.semantic-heading {
  font-size: clamp(3.2rem, 7.1vw, 7.2rem);
}

.semantic-heading > span {
  display: block;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
}

.three-beats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.beat-card {
  position: relative;
  min-height: 310px;
  padding: 30px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(18, 39, 30, 0.46);
}

.beat-number {
  position: absolute;
  right: -10px;
  bottom: -37px;
  color: rgba(244, 240, 228, 0.06);
  font-family: var(--display);
  font-size: 10rem;
  line-height: 1;
}

.beat-label {
  margin: 0 0 62px;
  color: var(--chalk-dim);
  font-size: 0.68rem;
}

.beat-card h3 {
  position: relative;
  max-width: 300px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.1rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 0.98;
}

.beat-card > p:last-child {
  position: relative;
  margin: 18px 0 0;
  color: var(--chalk-dim);
}

.beat-card-red {
  color: white;
  background: var(--red);
}

.beat-card-red .beat-label,
.beat-card-red > p:last-child {
  color: rgba(255, 255, 255, 0.76);
}

.beat-card-red .beat-number {
  color: rgba(255, 255, 255, 0.12);
}

.reaction-archive {
  overflow: hidden;
  padding: 96px max(24px, calc((100vw - 1180px) / 2)) 120px;
  color: var(--ink);
  background: var(--chalk);
}

.reaction-archive .eyebrow { color: var(--red); }
.reaction-heading { margin-bottom: 46px; }
.reaction-heading .semantic-heading { font-size: clamp(3.2rem, 6.4vw, 6.4rem); }

.reaction-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.reaction-card {
  margin: 0;
  border: 2px solid var(--ink);
  background: var(--ink);
  transform: rotate(var(--tilt, 0deg));
  transition: transform 180ms ease;
}

.reaction-card:nth-child(1) { --tilt: -1deg; }
.reaction-card:nth-child(2) { --tilt: 0.7deg; }
.reaction-card:nth-child(3) { --tilt: -0.6deg; }
.reaction-card:nth-child(4) { --tilt: 0.9deg; }
.reaction-card:hover { transform: rotate(0) translateY(-4px); }

.reaction-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.reaction-card figcaption {
  display: flex;
  min-height: 62px;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  color: var(--chalk);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  white-space: nowrap;
}

.reaction-card figcaption span { color: var(--red); }

.thesis {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  min-height: 740px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.thesis-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 110px) clamp(42px, 5vw, 90px);
  background:
    linear-gradient(rgba(244, 240, 228, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 240, 228, 0.035) 1px, transparent 1px),
    var(--board);
  background-size: 28px 28px;
}

.thesis-title {
  font-size: clamp(3rem, 3.9vw, 4.5rem);
}

.thesis-mobile {
  display: none !important;
}

.thesis-body {
  max-width: 490px;
  margin: 34px 0 0;
  color: var(--chalk-dim);
  font-size: 1.08rem;
}

.thesis-punchline {
  margin: 8px 0 0;
  font-size: 1.08rem;
  font-weight: 700;
}

.image-frame {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-frame figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  padding: 8px 10px;
  color: var(--chalk);
  background: rgba(5, 12, 8, 0.78);
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.field-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.field-note {
  margin: 0 0 10px;
  color: var(--chalk-dim);
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.7;
  text-align: right;
}

.scene-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.scene-card {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--board-soft);
}

.scene-wide {
  grid-column: 1 / -1;
  min-height: 620px;
}

.scene-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 650ms ease;
}

.scene-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(0deg, rgba(3, 9, 6, 0.92), transparent 52%);
}

.scene-card:hover img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.025);
}

.scene-copy {
  position: absolute;
  right: 30px;
  bottom: 28px;
  left: 30px;
  z-index: 1;
}

.scene-copy span {
  color: var(--red);
  font-size: 0.68rem;
}

.scene-copy h3 {
  width: max-content;
  max-width: 100%;
  margin-top: 9px;
  font-size: clamp(2.5rem, 5vw, 5.1rem);
  white-space: nowrap;
}

.scene-card:not(.scene-wide) .scene-copy h3 {
  font-size: clamp(2rem, 3.2vw, 3.45rem);
  white-space: normal;
  text-wrap: balance;
}

.scene-ai-card img {
  object-position: 55% center;
}

.lab {
  padding: 120px max(24px, calc((100vw - 1180px) / 2));
  color: var(--chalk);
  background:
    radial-gradient(circle at 75% 40%, rgba(72, 104, 84, 0.2), transparent 38%),
    #08120d;
  border-top: 1px solid var(--red);
  border-bottom: 1px solid var(--red);
}

.lab-heading {
  max-width: 900px;
  margin-bottom: 60px;
}

.lab-heading > p:last-child {
  margin: 20px 0 0;
  color: var(--chalk-dim);
}

.lab-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  border: 1px solid var(--line);
}

.lab-controls {
  padding: clamp(26px, 4vw, 48px);
  background: var(--board);
}

.lab-controls > label,
.scene-picker legend {
  display: block;
  margin-bottom: 10px;
  color: var(--chalk-dim);
  font-size: 0.67rem;
}

.input-wrap {
  position: relative;
}

.input-wrap input {
  width: 100%;
  min-height: 70px;
  padding: 0 112px 0 16px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--chalk);
  background: var(--ink-deep);
  font-family: var(--mono);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
}

.input-wrap span {
  position: absolute;
  top: 50%;
  right: 14px;
  color: var(--chalk-dim);
  font-family: var(--mono);
  font-size: 0.62rem;
  transform: translateY(-50%);
}

.preset-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.preset-row button,
.scene-picker button {
  padding: 8px 10px;
  border: 1px solid var(--line);
  color: var(--chalk-dim);
  background: transparent;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
}

.preset-row button:hover,
.scene-picker button:hover,
.scene-picker button.active {
  border-color: var(--red);
  color: var(--chalk);
  background: rgba(226, 56, 46, 0.12);
}

.scene-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 36px 0 0;
  padding: 0;
  border: 0;
}

.scene-picker legend {
  width: 100%;
}

.lab-status {
  min-height: 1.5em;
  margin: 18px 0 0;
  color: var(--chalk-dim);
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.meme-preview {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  background: var(--ink-deep);
}

.meme-preview > img,
.preview-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.meme-preview > img {
  object-fit: cover;
  transition: opacity 180ms ease;
}

.preview-shade {
  background:
    linear-gradient(180deg, rgba(3, 8, 5, 0.88), rgba(3, 8, 5, 0.04) 52%, rgba(3, 8, 5, 0.85)),
    linear-gradient(90deg, rgba(3, 8, 5, 0.58), transparent 75%);
}

.preview-meta {
  position: absolute;
  top: 28px;
  left: 30px;
  font-size: 0.62rem;
}

.preview-copy {
  position: absolute;
  top: 90px;
  right: 30px;
  left: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.preview-copy span,
.preview-copy em {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.preview-copy strong,
.preview-copy b {
  max-width: 100%;
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.preview-copy strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(3rem, 6vw, 6rem);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.preview-copy strong.term-medium {
  font-size: clamp(2.5rem, 5vw, 5rem);
}

.preview-copy strong.term-small {
  font-size: clamp(2rem, 4vw, 4rem);
}

.preview-copy em {
  margin-top: auto;
}

.preview-copy b {
  position: absolute;
  top: 505px;
  left: 0;
  width: max-content;
  max-width: 100%;
  padding-bottom: 6px;
  font-size: clamp(3.8rem, 7vw, 7.4rem);
  white-space: nowrap;
}

.preview-copy b::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 6px;
  content: "";
  background: var(--red);
}

.origin {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: stretch;
  gap: clamp(44px, 7vw, 100px);
}

.thesis > *,
.origin > *,
.final-call > * {
  min-width: 0;
}

.origin-visual {
  min-height: 380px;
  border: 1px solid var(--line);
}

.origin-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.origin-copy .semantic-heading {
  font-size: clamp(3rem, 4vw, 4.6rem);
}

.origin-copy > p:not(.eyebrow) {
  margin: 28px 0 0;
  color: var(--chalk-dim);
  font-size: 1.06rem;
}

.origin-copy .origin-punchline {
  margin-top: 2px !important;
  color: var(--chalk) !important;
  font-weight: 700;
}

.source-links a {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.final-call {
  display: grid;
  grid-template-columns: minmax(280px, 480px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(36px, 7vw, 100px);
  padding: 110px max(24px, calc((100vw - 1180px) / 2));
  color: var(--ink);
  background: var(--chalk);
}

.final-call img {
  width: 100%;
  border: 10px solid var(--ink);
  transform: rotate(-2deg);
}

.final-call .eyebrow {
  color: var(--red);
}

.final-call .semantic-heading {
  font-size: clamp(3.2rem, 5vw, 6.5rem);
}

.final-call .button {
  margin-top: 32px;
}

footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 26px max(24px, calc((100vw - 1180px) / 2));
  color: var(--chalk-dim);
  background: var(--ink-deep);
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

footer p {
  margin: 0;
  text-align: center;
}

@media (max-width: 980px) {
  :root {
    --page: min(100% - 36px, 860px);
  }

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

  nav {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero-image {
    object-position: 64% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 10, 7, 0.96), rgba(4, 10, 7, 0.65) 57%, rgba(4, 10, 7, 0.24)),
      linear-gradient(0deg, rgba(4, 10, 7, 0.88), transparent 50%);
  }

  .hero-title {
    font-size: clamp(4.4rem, 11vw, 7rem);
  }

  .three-beats {
    grid-template-columns: 1fr;
  }

  .beat-card {
    min-height: 240px;
  }

  .beat-label {
    margin-bottom: 40px;
  }

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

  .thesis-copy {
    min-height: 620px;
    padding: 70px max(18px, calc((100vw - 860px) / 2));
  }

  .thesis-figure {
    min-height: 620px;
  }

  .scene-card,
  .scene-wide {
    min-height: 470px;
  }

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

  .meme-preview {
    min-height: 720px;
  }

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

  .origin-visual {
    min-height: 300px;
  }

  .final-call {
    grid-template-columns: minmax(230px, 360px) minmax(0, 1fr);
  }
}

@media (max-width: 820px) {
  .final-call {
    grid-template-columns: 1fr;
  }

  .final-call img {
    width: min(60vw, 360px);
  }
}

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

  .site-header {
    padding: 14px 0;
  }

  .brand {
    font-size: 0.74rem;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .header-nod {
    padding: 8px 9px;
    font-size: 0.62rem;
  }

  .hero {
    min-height: 700px;
    height: 100svh;
    max-height: 820px;
  }

  .hero-image {
    object-position: 68% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(4, 10, 7, 0.58) 0%, rgba(4, 10, 7, 0.28) 30%, rgba(4, 10, 7, 0.9) 73%, rgba(4, 10, 7, 0.98) 100%),
      linear-gradient(90deg, rgba(4, 10, 7, 0.74), rgba(4, 10, 7, 0.12));
  }

  .hero-content {
    align-self: end;
    margin: 0 auto 42px;
  }

  .live-topic {
    margin-bottom: 14px;
    font-size: 0.62rem;
  }

  .hero-title {
    font-size: clamp(3.8rem, 18.5vw, 5.3rem);
  }

  .hero-line-desktop {
    display: none;
  }

  .hero-line-mobile {
    display: block;
  }

  .hero-sub {
    margin-top: 27px;
  }

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

  .button {
    min-height: 46px;
    padding: 0 12px;
    font-size: 0.66rem;
  }

  .consensus-stamp {
    top: 120px;
    right: 16px;
    bottom: auto;
    font-size: 1.5rem;
  }

  .section,
  .lab {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .section-heading,
  .lab-heading {
    margin-bottom: 42px;
  }

  .semantic-heading {
    font-size: clamp(3rem, 14.8vw, 4.6rem);
  }

  .semantic-heading > span {
    width: auto;
    white-space: nowrap;
  }

  .beat-card {
    min-height: 220px;
    padding: 24px;
  }

  .beat-card h3 {
    max-width: 260px;
  }

  .thesis-copy {
    min-height: 540px;
    padding: 66px 14px;
  }

  .thesis-title {
    font-size: clamp(2.85rem, 14.6vw, 4.1rem);
  }

  .thesis-desktop {
    display: none !important;
  }

  .thesis-mobile {
    display: block !important;
  }

  .thesis-figure {
    min-height: 440px;
  }

  .field-heading {
    display: block;
  }

  .field-note {
    margin-top: 18px;
    text-align: left;
  }

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

  .scene-wide {
    grid-column: auto;
  }

  .scene-card,
  .scene-wide {
    min-height: 430px;
  }

  .scene-card img {
    object-position: 54% center;
  }

  .scene-card:nth-child(2) img,
  .scene-card:nth-child(3) img {
    object-position: 61% center;
  }

  .scene-copy {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .scene-copy h3,
  .scene-card:not(.scene-wide) .scene-copy h3 {
    width: auto;
    font-size: clamp(2rem, 10.5vw, 3.15rem);
    white-space: normal;
    text-wrap: balance;
  }

  .lab-controls {
    padding: 24px 18px;
  }

  .input-wrap input {
    min-height: 62px;
    padding-right: 86px;
    font-size: 0.76rem;
  }

  .lab-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .meme-preview {
    min-height: 560px;
  }

  .preview-copy {
    top: 78px;
    right: 20px;
    left: 20px;
  }

  .preview-copy strong {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .preview-copy strong.term-medium {
    font-size: clamp(2.1rem, 10.5vw, 3.5rem);
  }

  .preview-copy strong.term-small {
    font-size: clamp(1.8rem, 9vw, 3rem);
  }

  .preview-copy b {
    top: 390px;
    font-size: clamp(3.25rem, 15.5vw, 4.7rem);
  }

  .origin-visual {
    min-height: 190px;
  }

  .origin-copy .semantic-heading {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .final-call {
    grid-template-columns: 1fr;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .final-call img {
    width: min(88vw, 360px);
  }

  .final-call .semantic-heading {
    font-size: clamp(3rem, 13.8vw, 4.4rem);
  }

  footer {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: left;
  }

  footer p {
    text-align: left;
  }
}

@media (max-width: 390px) {
  .hero-title {
    font-size: 3.55rem;
  }

  .semantic-heading {
    font-size: 2.85rem;
  }

  .reaction-heading .semantic-heading {
    font-size: 2.85rem;
  }

  #lab-title {
    font-size: 2.75rem;
  }

  .thesis-title {
    font-size: 2.6rem;
  }

  .origin-copy .semantic-heading {
    font-size: 2.45rem;
  }

  .final-call .semantic-heading {
    font-size: 2.35rem;
  }

  .hero-actions,
  .lab-actions {
    grid-template-columns: 1fr;
  }

  .meme-preview {
    min-height: 520px;
  }

  .preview-copy b {
    top: 360px;
    font-size: 3rem;
  }
}

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

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

@media (max-width: 980px) {
  .reaction-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (max-width: 680px) {
  .reaction-archive { padding: 84px 14px; }
  .reaction-heading .semantic-heading {
    font-size: clamp(2.65rem, 12vw, 4.3rem);
  }
  .reaction-grid { gap: 9px; }
  .reaction-card figcaption {
    min-height: 54px;
    padding: 10px 8px;
    font-size: 0.56rem;
  }
}


/* VISUAL DIVERSITY V2 */
.hero-image {
  object-position: center;
  transform: none;
}

.hero.is-nodding .hero-image {
  transform: translateY(3px);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 10, 7, 0.92) 0%, rgba(4, 10, 7, 0.72) 38%, rgba(4, 10, 7, 0.08) 62%, rgba(4, 10, 7, 0.05) 100%),
    linear-gradient(0deg, rgba(4, 10, 7, 0.66), transparent 42%);
}

.hero-title {
  max-width: 650px;
  font-size: clamp(5.4rem, 7.2vw, 7.4rem);
}

.hero-line-big {
  font-size: 1.08em;
}

.reaction-archive {
  padding-top: 110px;
}

.reaction-heading {
  max-width: 850px;
  margin-bottom: 54px;
}

.reaction-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.reaction-card,
.reaction-card:nth-child(n) {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border: 3px solid var(--ink);
  background: var(--ink);
  transform: none;
}

.reaction-card:hover {
  transform: translateY(-4px);
}

.reaction-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  transition: transform 480ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reaction-card:hover img {
  transform: scale(1.018);
}

.reaction-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  min-height: 0;
  gap: 0 12px;
  padding: 18px 20px 16px;
  border-top: 1px solid rgba(244, 240, 228, 0.32);
  background: linear-gradient(90deg, rgba(5, 12, 8, 0.96), rgba(5, 12, 8, 0.72));
  white-space: normal;
}

.reaction-card figcaption span {
  grid-row: 1 / 3;
  align-self: center;
  color: var(--red);
  font-size: 1rem;
}

.reaction-card figcaption strong {
  font-family: var(--display);
  font-size: clamp(1.8rem, 2.6vw, 2.8rem);
  font-weight: 400;
  line-height: 0.95;
}

.reaction-card figcaption small {
  margin-top: 4px;
  color: var(--chalk-dim);
  font-size: 0.62rem;
}

.scene-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.scene-card {
  min-height: 500px;
}

.scene-seven {
  grid-column: span 7;
}

.scene-five {
  grid-column: span 5;
}

.scene-twelve {
  grid-column: 1 / -1;
  min-height: 570px;
}

.scene-card .scene-copy h3,
.scene-card:not(.scene-wide) .scene-copy h3 {
  width: 100%;
  max-width: 780px;
  font-size: clamp(2.15rem, 3vw, 3.55rem);
  line-height: 0.94;
  white-space: normal;
  text-wrap: balance;
}

.scene-coffee-card img {
  object-position: center 56%;
}

@media (max-width: 980px) {
  .hero-title {
    max-width: 590px;
    font-size: clamp(4.9rem, 10vw, 6rem);
  }

  .reaction-grid {
    gap: 16px;
  }

  .scene-seven,
  .scene-five {
    grid-column: span 6;
  }

  .scene-card,
  .scene-twelve {
    min-height: 430px;
  }
}

@media (max-width: 680px) {
  .hero {
    background: var(--ink-deep);
  }

  .hero-image {
    top: 0;
    bottom: auto;
    height: 56%;
    object-position: 84% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(4, 10, 7, 0.04) 0%, rgba(4, 10, 7, 0.08) 30%, rgba(4, 10, 7, 0.86) 54%, rgba(4, 10, 7, 1) 70%),
      linear-gradient(90deg, rgba(4, 10, 7, 0.2), transparent 65%);
  }

  .hero-content {
    margin-bottom: 34px;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(3.65rem, 17vw, 4.45rem);
  }

  .reaction-archive {
    padding: 84px 14px 94px;
  }

  .reaction-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .reaction-card {
    aspect-ratio: 3 / 2;
  }

  .reaction-card figcaption {
    padding: 13px 14px 12px;
  }

  .reaction-card figcaption strong {
    font-size: 1.85rem;
  }

  .scene-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .scene-seven,
  .scene-five,
  .scene-twelve {
    grid-column: 1 / -1;
  }

  .scene-card,
  .scene-twelve {
    min-height: 360px;
  }

  .scene-coffee-card {
    min-height: 420px;
  }

  .scene-copy h3,
  .scene-card:not(.scene-wide) .scene-copy h3 {
    font-size: clamp(2rem, 9.5vw, 2.8rem);
  }
}


/* ORIGINAL BANNER FIT */
.origin-visual {
  min-height: 0;
  aspect-ratio: 3 / 1;
  align-self: center;
  background: var(--ink-deep);
}

.origin-visual img {
  object-fit: contain;
}
