:root {
  --night: #0d1716;
  --night-soft: #142321;
  --night-raised: #1b2c29;
  --paper: #f2ecdf;
  --paper-bright: #fbf7ee;
  --paper-deep: #ded4c1;
  --ink: #17211f;
  --ink-soft: #56615e;
  --red: #c84b3c;
  --red-dark: #8c2d25;
  --gold: #d0a45a;
  --teal: #4c9187;
  --line: rgba(23, 33, 31, 0.16);
  --line-light: rgba(255, 255, 255, 0.13);
  --sans: "Noto Sans SC", "Source Han Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  --serif: "Noto Serif SC", "Source Han Serif SC", "Songti SC", STSong, serif;
  --display: "Bodoni 72", Didot, "Times New Roman", var(--serif);
  --content: 1240px;
  --gutter: clamp(20px, 5vw, 72px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.8;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
img, svg { display: block; max-width: 100%; }
::selection { color: #fff; background: var(--red); }

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 8px 14px;
  color: #fff;
  background: var(--red);
  font-family: var(--sans);
  font-size: 13px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}
.skip-link:focus { transform: translateY(0); }

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

.reading-progress {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  pointer-events: none;
}
.reading-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--red));
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  padding: 0 var(--gutter);
  color: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid transparent;
  font-family: var(--sans);
  transition: min-height 0.35s var(--ease), background 0.35s ease, border-color 0.35s ease;
}
.site-header.is-scrolled {
  min-height: 66px;
  border-color: var(--line-light);
  background: rgba(13, 23, 22, 0.92);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1.2;
}
.brand svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.3;
}
.brand svg .brand-seal { fill: var(--red); stroke: none; }
.brand span { display: grid; gap: 4px; }
.brand b { font-size: 11px; letter-spacing: 0.2em; }
.brand small { color: rgba(255, 255, 255, 0.48); font-size: 10px; letter-spacing: 0.08em; }

.site-nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 44px); }
.site-nav a { position: relative; font-size: 12px; letter-spacing: 0.11em; }
.site-nav a:not(.nav-status)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }

.nav-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}
.nav-status i, .live-dot i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(200, 75, 60, 0.15);
  animation: pulse 2.6s ease-in-out infinite;
}
.nav-toggle { display: none; border: 0; background: none; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 0.88fr) minmax(420px, 0.72fr);
  align-items: center;
  gap: clamp(40px, 7vw, 120px);
  min-height: 100svh;
  padding: 130px var(--gutter) 90px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 68% 54%, rgba(58, 116, 106, 0.17), transparent 28%),
    radial-gradient(circle at 15% 16%, rgba(200, 75, 60, 0.1), transparent 25%),
    var(--night);
}
.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
  opacity: 0.6;
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  pointer-events: none;
  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='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}
.hero-orbit {
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 50%;
}
.orbit-one { top: -38vw; right: -26vw; width: 78vw; height: 78vw; }
.orbit-two { top: -26vw; right: -14vw; width: 54vw; height: 54vw; }
.hero-copy, .hero-visual { position: relative; z-index: 2; }
.hero-copy { width: min(650px, 100%); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0 0 clamp(28px, 5vh, 54px);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.eyebrow span:first-child { padding: 6px 10px; color: #fff; border: 1px solid rgba(255, 255, 255, 0.17); }

.hero h1 {
  display: flex;
  align-items: baseline;
  gap: 0.08em;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(78px, 10vw, 166px);
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 0.82;
}
.hero h1 span { display: block; }
.hero h1 .title-accent { color: var(--red); }
.hero-deck {
  margin: clamp(32px, 5vh, 58px) 0 22px;
  color: var(--paper-bright);
  font-size: clamp(25px, 2.45vw, 39px);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.45;
}
.hero-intro {
  width: min(570px, 100%);
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  line-height: 1.95;
}
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 34px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s var(--ease);
}
.button:hover { transform: translateY(-2px); }
.button-primary { min-width: 190px; color: #fff; background: var(--red); }
.button-primary:hover { background: #d35445; }
.button-primary i { font-size: 18px; font-style: normal; }
.button-quiet { color: rgba(255, 255, 255, 0.68); border-color: rgba(255, 255, 255, 0.16); }
.button-quiet:hover { color: #fff; border-color: rgba(255, 255, 255, 0.4); }

.hero-meta {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr 1fr;
  gap: 20px;
  margin: clamp(42px, 7vh, 76px) 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line-light);
  font-family: var(--sans);
}
.hero-meta div { display: grid; gap: 4px; }
.hero-meta dt { color: rgba(255, 255, 255, 0.34); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; }
.hero-meta dd { margin: 0; color: rgba(255, 255, 255, 0.72); font-size: 11px; letter-spacing: 0.05em; }

.hero-visual { width: min(540px, 100%); margin-inline: auto; }
.board-topline {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.34);
  font-family: var(--sans);
  font-size: 8px;
  letter-spacing: 0.21em;
}
.board-topline b { color: var(--red); font-family: var(--display); font-size: 26px; font-weight: 400; }
.story-board {
  position: relative;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.022);
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.32);
  transform: perspective(1200px) rotateY(-3deg) rotateX(2deg);
  transition: transform 0.6s var(--ease);
}
.hero-visual:hover .story-board { transform: perspective(1200px) rotateY(0) rotateX(0); }
.board-grid {
  position: absolute;
  inset: 7.5%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.095) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.095) 1px, transparent 1px);
  background-size: 10% 10%;
  border-right: 1px solid rgba(255, 255, 255, 0.095);
  border-bottom: 1px solid rgba(255, 255, 255, 0.095);
}
.stone {
  position: absolute;
  z-index: 3;
  width: 7.3%;
  aspect-ratio: 1;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.42);
}
.stone-ink { border: 1px solid rgba(255, 255, 255, 0.18); background: #101817; }
.stone-paper { background: radial-gradient(circle at 35% 32%, #fffdf7, #dcd2bd 74%); }
.stone-red { display: grid; place-items: center; color: #fff; background: var(--red); box-shadow: 0 0 0 8px rgba(200, 75, 60, 0.13), 0 9px 20px rgba(0, 0, 0, 0.45); }
.stone-red i { font-family: var(--sans); font-size: clamp(10px, 1.1vw, 17px); font-style: normal; font-weight: 800; }
.stone-a { left: 14%; bottom: 14%; }
.stone-b { left: 45%; bottom: 44%; }
.stone-c { right: 24%; top: 23%; }
.stone-d { right: 4%; top: 4%; }
.board-path { position: absolute; z-index: 2; inset: 7.5%; width: 85%; height: 85%; overflow: visible; }
.board-path path { fill: none; stroke: var(--red); stroke-width: 2; stroke-dasharray: 6 9; vector-effect: non-scaling-stroke; opacity: 0.7; animation: dash 15s linear infinite; }
.board-label {
  position: absolute;
  z-index: 4;
  padding: 3px 7px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--night);
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.16em;
}
.label-board { left: 9%; bottom: 5%; }
.label-factory { left: 45%; top: 45%; }
.label-door { right: 3%; top: 12%; color: var(--gold); }
.hero-visual figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 16px;
  color: rgba(255, 255, 255, 0.34);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.08em;
}
.hero-visual figcaption strong { color: rgba(255, 255, 255, 0.68); font-weight: 500; }
.scroll-cue {
  position: absolute;
  z-index: 3;
  right: var(--gutter);
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.34);
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.15em;
  writing-mode: vertical-rl;
}
.scroll-cue span { position: relative; width: 1px; height: 54px; overflow: hidden; background: rgba(255, 255, 255, 0.13); }
.scroll-cue span::after { content: ""; position: absolute; inset: 0; background: var(--gold); transform: translateY(-100%); animation: scrollLine 2.4s ease-in-out infinite; }

.section-shell {
  width: 100%;
  max-width: calc(var(--content) + 2 * var(--gutter));
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section-index {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--red);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
}
.section-index span { font-family: var(--display); font-size: 22px; font-weight: 400; }
.section-index i { display: block; width: 46px; height: 1px; background: currentColor; }
.section-index.light { color: var(--gold); }
.section-kicker {
  margin: 0 0 22px;
  color: var(--red);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.manifesto {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(330px, 1fr);
  column-gap: clamp(50px, 8vw, 130px);
  row-gap: 50px;
  padding-top: clamp(110px, 15vw, 190px);
  padding-bottom: clamp(110px, 14vw, 180px);
  overflow: hidden;
}
.manifesto .section-index { grid-column: 1 / -1; }
.manifesto h2, .season h2, .questions h2, .method h2, .closing h2 {
  margin: 0;
  font-size: clamp(45px, 6vw, 80px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.18;
}
.manifesto h2 em { color: var(--red); font-style: normal; }
.manifesto-copy { padding-top: 8px; }
.manifesto-copy > p { color: var(--ink-soft); }
.manifesto-copy .lead { margin-top: 0; color: var(--ink); font-size: clamp(19px, 2vw, 25px); line-height: 1.75; }
.manifesto-copy strong { color: var(--red-dark); font-weight: 600; }
.manifesto blockquote { position: relative; margin: 54px 0 0; padding: 28px 0 0 42px; border-top: 1px solid var(--line); }
.manifesto blockquote::before { content: "“"; position: absolute; top: 13px; left: 0; color: var(--gold); font-family: var(--display); font-size: 60px; line-height: 1; }
.manifesto blockquote span { color: var(--red); font-family: var(--sans); font-size: 9px; font-weight: 800; letter-spacing: 0.18em; }
.manifesto blockquote p { margin: 10px 0 0; font-size: 18px; line-height: 1.85; }
.manifesto-mark { position: absolute; right: -0.05em; bottom: -0.36em; color: rgba(23, 33, 31, 0.035); font-size: clamp(280px, 42vw, 620px); font-weight: 900; line-height: 1; pointer-events: none; }

.questions { color: #fff; background: var(--night-soft); }
.questions-shell { position: relative; padding-top: clamp(100px, 12vw, 150px); padding-bottom: clamp(110px, 14vw, 180px); }
.questions-heading { display: flex; justify-content: space-between; align-items: end; gap: 50px; margin: 52px 0 70px; }
.questions-heading .section-kicker { color: var(--gold); }
.questions h2 { max-width: 760px; }
.question-list { border-top: 1px solid var(--line-light); }
.question-card {
  position: relative;
  display: grid;
  grid-template-columns: 80px minmax(280px, 1fr) 240px;
  align-items: center;
  gap: clamp(25px, 5vw, 80px);
  min-height: 245px;
  padding: 38px 20px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-light);
  transition: background 0.4s ease, padding 0.4s var(--ease);
}
.question-card:hover { padding-inline: 35px; background: rgba(255, 255, 255, 0.035); }
.question-number { align-self: start; color: var(--red); font-family: var(--display); font-size: 30px; }
.question-en { margin: 0 0 10px; color: var(--gold); font-family: var(--sans); font-size: 9px; font-weight: 800; letter-spacing: 0.2em; }
.question-card h3 { margin: 0; font-size: clamp(28px, 3.5vw, 48px); font-weight: 600; line-height: 1.25; }
.question-card p:last-child { max-width: 620px; margin: 16px 0 0; color: rgba(255, 255, 255, 0.48); font-size: 14px; }
.question-glyph { position: relative; justify-self: end; width: 180px; height: 150px; opacity: 0.55; transition: opacity 0.4s ease, transform 0.6s var(--ease); }
.question-card:hover .question-glyph { opacity: 0.9; transform: rotate(-2deg) scale(1.04); }
.glyph-board { background-image: linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.15) 1px, transparent 1px); background-size: 30px 30px; border-right: 1px solid rgba(255,255,255,.15); border-bottom: 1px solid rgba(255,255,255,.15); }
.glyph-board i { position: absolute; width: 17px; height: 17px; border-radius: 50%; background: var(--paper); box-shadow: 0 3px 9px rgba(0,0,0,.4); }
.glyph-board i:nth-child(1) { left: 21px; top: 22px; background: var(--red); }
.glyph-board i:nth-child(2) { right: 21px; top: 52px; }
.glyph-board i:nth-child(3) { left: 81px; bottom: 22px; background: #07100f; border: 1px solid rgba(255,255,255,.2); }
.glyph-board i:nth-child(4) { right: 51px; bottom: 52px; background: #07100f; border: 1px solid rgba(255,255,255,.2); }
.glyph-factory { display: flex; align-items: end; gap: 13px; border-bottom: 1px solid rgba(255,255,255,.24); }
.glyph-factory::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 49%, rgba(255,255,255,.1) 50%, transparent 51%); background-size: 31px 100%; }
.glyph-factory i { position: relative; width: 45px; border: 1px solid rgba(255,255,255,.3); background: linear-gradient(180deg, rgba(208,164,90,.22), transparent); }
.glyph-factory i:nth-child(1) { height: 62px; }
.glyph-factory i:nth-child(2) { height: 103px; }
.glyph-factory i:nth-child(3) { height: 135px; border-color: var(--red); }
.glyph-door { border: 1px solid rgba(255,255,255,.24); border-bottom: 0; perspective: 600px; }
.glyph-door i:first-child { position: absolute; inset: 12px 49% 0 12px; border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.02); transform-origin: left; transform: rotateY(-26deg); }
.glyph-door i:last-child { position: absolute; right: 22px; top: 46%; width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 20px rgba(200,75,60,.8); }

.season {
  display: grid;
  grid-template-columns: minmax(340px, 0.8fr) minmax(440px, 1.2fr);
  column-gap: clamp(50px, 8vw, 130px);
  row-gap: 65px;
  padding-top: clamp(110px, 15vw, 190px);
  padding-bottom: clamp(110px, 14vw, 180px);
}
.season .section-index { grid-column: 1 / -1; }
.season-heading .section-kicker { margin-bottom: 22px; }
.season-heading > p:last-child { margin: 34px 0 0; color: var(--ink-soft); }
.season-rail { position: relative; }
.rail-line { position: absolute; top: 11px; bottom: 11px; left: 25px; width: 1px; background: var(--line); }
.rail-line span { display: block; width: 100%; height: 33.33%; background: linear-gradient(var(--red), var(--gold)); transition: height 0.5s var(--ease); }
.act { position: relative; padding-left: 75px; }
.act + .act { margin-top: 4px; }
.act button { display: grid; grid-template-columns: 65px 1fr 20px; align-items: center; width: 100%; padding: 22px 0; border: 0; text-align: left; background: none; cursor: pointer; }
.act-index { position: absolute; z-index: 2; left: 8px; display: grid; place-items: center; width: 34px; height: 34px; color: var(--ink-soft); border: 1px solid var(--line); border-radius: 50%; background: var(--paper); font-family: var(--display); font-size: 15px; transition: color .3s ease, background .3s ease, border-color .3s ease; }
.act-title { display: grid; grid-column: 1 / 3; gap: 2px; }
.act-title small { color: var(--red); font-family: var(--sans); font-size: 8px; font-weight: 800; letter-spacing: 0.18em; }
.act-title b { font-size: 23px; font-weight: 600; }
.act button > i { position: relative; grid-column: 3; width: 15px; height: 15px; }
.act button > i::before, .act button > i::after { content: ""; position: absolute; top: 7px; left: 0; width: 15px; height: 1px; background: var(--ink); transition: transform .3s ease; }
.act button > i::after { transform: rotate(90deg); }
.act.is-active button > i::after { transform: rotate(0); }
.act.is-active .act-index { color: #fff; border-color: var(--red); background: var(--red); }
.act-copy { max-height: 0; overflow: hidden; opacity: 0; transition: max-height .45s var(--ease), opacity .35s ease; }
.act.is-active .act-copy { max-height: 190px; opacity: 1; }
.act-copy p { margin: 0; padding: 0 30px 0 0; color: var(--ink-soft); font-size: 14px; }
.act-copy span { display: block; margin-top: 15px; padding-bottom: 23px; color: var(--red-dark); font-family: var(--sans); font-size: 9px; font-weight: 700; letter-spacing: 0.12em; }

.release-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.85fr 1.25fr;
  column-gap: clamp(40px, 7vw, 100px);
  margin-top: 30px;
  padding: clamp(30px, 5vw, 62px);
  color: #fff;
  background: var(--night);
}
.release-head { grid-column: 1 / -1; display: flex; justify-content: space-between; padding-bottom: 23px; color: rgba(255,255,255,.35); border-bottom: 1px solid var(--line-light); font-family: var(--sans); font-size: 8px; letter-spacing: .13em; }
.live-dot { display: inline-flex; align-items: center; gap: 9px; color: var(--gold); }
.release-card h3 { margin: 38px 0 0; font-size: clamp(27px, 3.2vw, 43px); font-weight: 600; line-height: 1.45; }
.release-card ul { grid-row: 2 / span 2; grid-column: 2; margin: 38px 0 0; padding: 0; list-style: none; }
.release-card li { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 20px; padding: 17px 0; overflow: hidden; border-bottom: 1px solid var(--line-light); font-family: var(--sans); font-size: 11px; }
.release-card li span { color: rgba(255,255,255,.48); }
.release-card li b { font-weight: 500; }
.release-card li > i { position: absolute; bottom: 0; left: 0; height: 1px; background: var(--red); }
.progress-review { width: 72%; }
.progress-writing { width: 36%; }
.progress-season { width: 14%; }
.release-card > p { align-self: end; margin: 38px 0 0; color: rgba(255,255,255,.43); font-size: 12px; line-height: 1.9; }

.method { color: #fff; background: #1d312e; }
.method-shell { padding-top: clamp(100px, 13vw, 160px); padding-bottom: clamp(110px, 14vw, 180px); }
.method-heading { display: grid; grid-template-columns: 1.1fr 0.65fr; align-items: end; column-gap: 80px; margin: 55px 0 70px; }
.method-heading .section-kicker { grid-column: 1 / -1; color: var(--gold); }
.method-heading p:last-child { margin: 0; color: rgba(255,255,255,.5); }
.method-steps { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; border-top: 1px solid var(--line-light); list-style: none; }
.method-steps li { min-height: 270px; padding: 32px 25px 20px; border-right: 1px solid var(--line-light); }
.method-steps li:first-child { border-left: 1px solid var(--line-light); }
.method-steps > li > span { color: var(--red); font-family: var(--display); font-size: 23px; }
.method-steps h3 { margin: 65px 0 13px; font-size: 21px; font-weight: 600; }
.method-steps p { margin: 0; color: rgba(255,255,255,.46); font-size: 12px; }
.method-code { display: flex; align-items: center; justify-content: center; gap: clamp(16px, 3vw, 42px); margin-top: 54px; padding: 20px; color: rgba(255,255,255,.44); border: 1px solid var(--line-light); font-family: var(--sans); font-size: 9px; font-weight: 700; letter-spacing: .15em; }
.method-code span:last-child { color: var(--gold); }
.method-code i { color: var(--red); font-style: normal; }

.closing {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
  padding: 120px var(--gutter);
  overflow: hidden;
  color: var(--ink);
  background: var(--paper-bright);
}
.closing-lines { position: absolute; inset: 0; opacity: .38; background: repeating-linear-gradient(90deg, transparent 0, transparent calc(12.5% - 1px), rgba(23,33,31,.09) 12.5%); }
.closing::before { content: ""; position: absolute; width: 58vw; height: 58vw; border: 1px solid rgba(23,33,31,.08); border-radius: 50%; }
.closing-inner { position: relative; z-index: 2; max-width: 780px; text-align: center; }
.closing h2 { font-size: clamp(60px, 8vw, 110px); line-height: 1.1; }
.closing-inner > p:not(.section-kicker):not(.copy-status) { max-width: 590px; margin: 32px auto 0; color: var(--ink-soft); }
.closing-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 13px; margin-top: 38px; }
.button-paper { min-width: 190px; color: #fff; background: var(--ink); }
.button-paper:hover { background: var(--red); }
.button-outline { border-color: var(--line); background: transparent; }
.button-outline:hover { border-color: var(--ink); }
.copy-status { min-height: 1.8em; margin: 14px 0 0; color: var(--red-dark); font-family: var(--sans); font-size: 11px; }
.closing-seal { position: absolute; right: 5vw; bottom: 52px; display: flex; align-items: center; gap: 13px; color: var(--red); transform: rotate(-4deg); }
.closing-seal span { display: grid; place-items: center; width: 62px; height: 62px; border: 2px solid var(--red); font-size: 37px; font-weight: 800; line-height: 1; }
.closing-seal i { font-family: var(--sans); font-size: 8px; font-style: normal; font-weight: 800; letter-spacing: .16em; line-height: 1.5; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 60px var(--gutter);
  color: rgba(255,255,255,.56);
  background: var(--night);
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: .09em;
}
.footer-brand { color: var(--gold); font-weight: 800; letter-spacing: .18em; }
.site-footer > p { margin: 0; text-align: right; }
.site-footer > div { grid-column: 1 / -1; display: flex; justify-content: space-between; padding-top: 20px; border-top: 1px solid var(--line-light); }
.noscript { position: fixed; z-index: 150; right: 15px; bottom: 15px; max-width: 440px; margin: 0; padding: 12px 16px; color: #fff; background: var(--red-dark); font-family: var(--sans); font-size: 12px; }

.error-page {
  min-height: 100svh;
  display: grid;
  place-content: center;
  justify-items: center;
  padding: 50px 20px;
  color: #fff;
  text-align: center;
  background: radial-gradient(circle at 50% 35%, rgba(76,145,135,.17), transparent 28%), var(--night);
}
.error-page .section-kicker { color: var(--gold); }
.error-page h1 { margin: 0; font-size: clamp(58px, 12vw, 112px); font-weight: 600; letter-spacing: -.06em; line-height: 1.05; }
.error-page > p:not(.section-kicker) { margin: 26px 0 30px; color: rgba(255,255,255,.52); }
.error-board { display: flex; align-items: center; gap: 15px; margin-bottom: 35px; font-family: var(--display); font-size: 28px; }
.error-board i { display: grid; place-items: center; width: 44px; height: 44px; color: #fff; border-radius: 50%; background: var(--red); font-family: var(--sans); font-size: 17px; font-style: normal; box-shadow: 0 0 0 9px rgba(200,75,60,.13); }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
@keyframes dash { to { stroke-dashoffset: -150; } }
@keyframes scrollLine { 0% { transform: translateY(-100%); } 45%, 55% { transform: translateY(0); } 100% { transform: translateY(100%); } }

@media (max-width: 1080px) {
  .hero { grid-template-columns: 1.05fr .75fr; gap: 45px; }
  .hero h1 { font-size: clamp(75px, 10vw, 125px); }
  .question-card { grid-template-columns: 60px 1fr 180px; }
  .question-glyph { width: 155px; height: 125px; }
  .method-steps { grid-template-columns: repeat(2, 1fr); }
  .method-steps li:nth-child(3) { border-left: 1px solid var(--line-light); }
  .method-steps li:nth-child(-n+2) { border-bottom: 1px solid var(--line-light); }
}

@media (max-width: 820px) {
  .site-header { min-height: 68px; }
  .brand small { display: none; }
  .nav-toggle { position: relative; z-index: 103; display: grid; place-items: center; width: 42px; height: 42px; padding: 0; }
  .nav-toggle i { position: absolute; width: 23px; height: 1px; background: #fff; transition: transform .3s var(--ease), top .3s var(--ease); }
  .nav-toggle i:first-of-type { top: 16px; }
  .nav-toggle i:last-of-type { top: 25px; }
  .nav-toggle[aria-expanded="true"] i:first-of-type { top: 21px; transform: rotate(45deg); }
  .nav-toggle[aria-expanded="true"] i:last-of-type { top: 21px; transform: rotate(-45deg); }
  .site-nav { position: fixed; z-index: 102; inset: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 28px; padding: 90px var(--gutter); background: rgba(13,23,22,.98); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: opacity .3s ease, visibility .3s ease, transform .3s var(--ease); }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav a { font-family: var(--serif); font-size: 30px; letter-spacing: .03em; }
  .site-nav .nav-status { margin-top: 20px; font-family: var(--sans); font-size: 11px; }
  .hero { grid-template-columns: 1fr; padding-top: 120px; padding-bottom: 110px; }
  .hero-copy { width: 100%; }
  .hero h1 { font-size: clamp(78px, 19vw, 130px); }
  .hero-visual { width: min(500px, 90%); margin-top: 20px; }
  .scroll-cue { display: none; }
  .manifesto, .season { grid-template-columns: 1fr; }
  .manifesto .section-index, .season .section-index { grid-column: auto; }
  .manifesto { row-gap: 45px; }
  .manifesto-copy { padding-top: 0; }
  .questions-heading { display: block; }
  .question-card { grid-template-columns: 48px 1fr; gap: 22px; }
  .question-glyph { display: none; }
  .season { row-gap: 50px; }
  .release-card { grid-template-columns: 1fr; }
  .release-card ul { grid-column: 1; grid-row: auto; }
  .method-heading { grid-template-columns: 1fr; gap: 25px; }
  .method-heading .section-kicker { grid-column: auto; }
  .method-code { overflow-x: auto; justify-content: flex-start; }
}

@media (max-width: 560px) {
  :root { --gutter: 20px; }
  .site-header { padding-inline: 16px; }
  .brand b { font-size: 10px; }
  .hero { min-height: auto; padding-top: 112px; }
  .eyebrow { margin-bottom: 34px; }
  .hero h1 { font-size: clamp(70px, 24vw, 104px); }
  .hero-deck { font-size: 25px; }
  .hero-intro { font-size: 14px; }
  .hero-actions { align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .hero-meta { grid-template-columns: 1fr 1fr; }
  .hero-meta div:last-child { grid-column: 1 / -1; }
  .hero-visual { width: 100%; }
  .hero-visual figcaption { display: grid; }
  .manifesto h2, .season h2, .questions h2, .method h2 { font-size: clamp(40px, 13vw, 58px); }
  .manifesto blockquote { padding-left: 28px; }
  .question-card { grid-template-columns: 1fr; min-height: 0; padding: 32px 0; }
  .question-number { font-size: 22px; }
  .question-card:hover { padding-inline: 0; }
  .season-rail { margin-left: -5px; }
  .act { padding-left: 62px; }
  .act button { grid-template-columns: 1fr 18px; }
  .act-title { grid-column: 1; }
  .act button > i { grid-column: 2; }
  .release-card { padding: 28px 22px; }
  .release-head { gap: 15px; }
  .release-card h3 { margin-top: 30px; }
  .method-steps { grid-template-columns: 1fr; }
  .method-steps li, .method-steps li:nth-child(3) { min-height: 0; border: 1px solid var(--line-light); border-top: 0; }
  .method-steps li:first-child { border-top: 1px solid var(--line-light); }
  .method-steps h3 { margin-top: 35px; }
  .method-code { gap: 13px; font-size: 8px; }
  .closing { min-height: 650px; }
  .closing h2 { font-size: clamp(56px, 18vw, 80px); }
  .closing-actions .button { width: 100%; }
  .closing-seal { right: 20px; bottom: 24px; opacity: .65; }
  .closing-seal span { width: 46px; height: 46px; font-size: 28px; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer > p { text-align: left; }
  .site-footer > div { grid-column: 1; display: grid; gap: 8px; }
}

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

@media print {
  .site-header, .reading-progress, .hero-actions, .scroll-cue, .closing-actions { display: none !important; }
  body { color: #111; background: #fff; }
  .hero, .questions, .method, .release-card, .site-footer { color: #111; background: #fff; }
  .hero { min-height: auto; padding-top: 40px; }
  .hero-intro, .question-card p:last-child, .method-steps p, .release-card > p { color: #333; }
  .reveal { opacity: 1; transform: none; }
}
