@font-face {
  font-family: "Cormorant Chi";
  src: url("/assets/fonts/CormorantGaramond-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

:root {
  --ink: #0d1b1b;
  --ink-soft: #132625;
  --ink-raised: #1b312f;
  --ash: #a5b0aa;
  --mist: #d2d9d2;
  --white: #f3eee2;
  --paper: #e3dccd;
  --paper-ink: #151b19;
  --vermilion: #aa352b;
  --vermilion-hot: #d25a49;
  --jade: #67a096;
  --bronze: #b58860;
  --line: rgba(235, 239, 231, 0.18);
  --line-strong: rgba(235, 239, 231, 0.36);
  --header-h: 74px;
  --content: min(1400px, calc(100vw - 64px));
  --display: "Cormorant Chi", "Times New Roman", serif;
  --ui: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--ui);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

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

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

button,
input,
textarea,
select { font: inherit; }

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

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

::selection {
  background: var(--vermilion);
  color: #fff;
}

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

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

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 32px;
  border-bottom: 1px solid transparent;
  transition: background-color .35s ease, border-color .35s ease;
}

.site-header.is-scrolled {
  background: rgba(10, 27, 27, .94);
  border-color: var(--line);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 44px;
}

.brand-seal {
  display: grid;
  place-items: center;
  width: 35px;
  height: 39px;
  background: #8f2d27;
  color: var(--white);
  font-family: "Songti SC", "SimSun", serif;
  font-size: 22px;
  line-height: 1;
}

.brand-word {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.site-nav a,
.account-link,
.admin-link {
  position: relative;
  color: var(--mist);
  font-size: 13px;
  font-weight: 600;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 1px;
  background: var(--vermilion-hot);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}

.site-nav a:hover,
.site-nav a.active,
.account-link:hover,
.admin-link:hover { color: var(--white); }

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

.site-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 20px;
}

.admin-link { color: var(--bronze); }

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform .3s var(--ease);
}

.home-hero {
  position: relative;
  min-height: min(900px, 94svh);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .38fr);
  align-items: end;
  padding: calc(var(--header-h) + 70px) max(32px, calc((100vw - 1400px) / 2)) 72px;
  overflow: hidden;
  isolation: isolate;
  background: #164246;
}

.home-hero__image {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  filter: sepia(.05) saturate(.78) contrast(1.04) brightness(.98);
  transform: scale(1.015);
  animation: hero-breathe 12s var(--ease) both;
}

.home-hero__veil {
  position: absolute;
  z-index: -2;
  inset: 0 auto 0 0;
  width: 48%;
  background: rgba(5, 23, 24, .56);
}

.home-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 17%;
  background: rgba(5, 22, 22, .46);
}

.home-hero__copy {
  width: min(690px, 100%);
  align-self: center;
  padding-top: 40px;
}

.hero-chapter {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--mist);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.hero-chapter::before {
  content: "";
  width: 54px;
  height: 1px;
  background: var(--vermilion-hot);
}

.home-hero h1 {
  max-width: 680px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(64px, 7.6vw, 118px);
  font-weight: 400;
  line-height: .86;
  letter-spacing: 0;
  text-wrap: balance;
  color: var(--white);
  text-shadow: 0 3px 28px rgba(0, 0, 0, .28);
}

.hero-deck {
  max-width: 590px;
  margin: 30px 0 0;
  color: #e0e4dd;
  font-family: var(--display);
  font-size: clamp(20px, 1.7vw, 27px);
  line-height: 1.28;
  text-wrap: pretty;
}

.hero-commands {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 28px;
  margin-top: 40px;
}

.command {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 22px;
  border: 1px solid var(--line-strong);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease, transform .25s var(--ease);
}

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

.command--solid {
  border-color: var(--vermilion);
  background: var(--vermilion);
}

.command--solid:hover {
  border-color: var(--vermilion-hot);
  background: var(--vermilion-hot);
}

.command--quiet {
  min-height: 44px;
  padding: 0 0 3px;
  border-width: 0 0 1px;
}

.command--quiet:hover { border-color: var(--vermilion-hot); }

.command b { font-size: 11px; }

.hero-current {
  align-self: end;
  justify-self: end;
  width: min(360px, 100%);
  padding: 24px 0 0 28px;
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}

.hero-current span,
.hero-current em {
  display: block;
  color: var(--ash);
  font-size: 11px;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.hero-current strong {
  display: block;
  margin: 8px 0 11px;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.1;
}

.hero-current em {
  text-transform: none;
  letter-spacing: 0;
}

.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ash);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .16em;
  transform: translateX(-50%);
}

.scroll-cue span {
  display: block;
  width: 1px;
  height: 32px;
  background: var(--line-strong);
}

.manifesto-band {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 6vw;
  align-items: center;
  padding: 68px max(32px, calc((100vw - 1400px) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  color: var(--paper-ink);
}

.manifesto-band p {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.manifesto-band strong {
  max-width: 840px;
  font-family: var(--display);
  font-size: clamp(29px, 3.2vw, 50px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.latest-section,
.worlds-section,
.character-stage,
.audience-section,
.final-invitation,
.page-shell {
  width: var(--content);
  margin: 0 auto;
}

.latest-section { padding: 136px 0 150px; }

.editorial-heading {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 62px;
}

.editorial-heading > div { display: flex; align-items: center; gap: 18px; }

.chapter-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 46px;
  background: var(--vermilion);
  font-family: "Songti SC", "SimSun", serif;
  font-size: 25px;
}

.editorial-heading p,
.worlds-intro > p,
.character-stage__title > span,
.audience-copy > p {
  margin: 0;
  color: var(--ash);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .13em;
}

.editorial-heading h2,
.worlds-intro h2,
.character-stage h2,
.audience-copy h2,
.final-invitation h2,
.page-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0;
  text-wrap: balance;
}

.editorial-heading h2 {
  max-width: 850px;
  font-size: clamp(40px, 4.6vw, 70px);
  line-height: .98;
}

.editorial-heading > a,
.text-link,
.world-row__body > a,
.character-stage blockquote a,
.audience-poll > a {
  padding-bottom: 5px;
  border-bottom: 1px solid var(--line-strong);
  color: var(--mist);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition: color .25s ease, border-color .25s ease;
}

.editorial-heading > a:hover,
.text-link:hover,
.world-row__body > a:hover,
.character-stage blockquote a:hover,
.audience-poll > a:hover {
  border-color: var(--vermilion-hot);
  color: var(--white);
}

.episode-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 54px 20px;
}

.episode-card { display: block; min-width: 0; }

.episode-card--featured { grid-column: span 2; }

.episode-card__image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink-raised);
}

.episode-card__image::after,
.world-row__image::after,
.series-dossier__image::after,
.character-entry__image::after,
.character-stage__portrait::after,
.release-empty__art::after,
.honest-empty__media::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 64px rgba(3, 13, 14, .22);
  background: rgba(35, 90, 90, .045);
  mix-blend-mode: color;
}

.episode-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(.05) saturate(.72) contrast(1.02) brightness(.94);
  transition: transform .8s var(--ease), filter .5s ease;
}

.episode-card:hover .episode-card__image img {
  transform: scale(1.035);
  filter: sepia(.03) saturate(.9) contrast(1.04) brightness(1);
}

.play-glyph {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, .7);
  background: rgba(5, 20, 21, .76);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

.episode-card__meta { padding: 20px 0 0; }

.episode-card__meta > span {
  color: var(--vermilion-hot);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.episode-card__meta h3 {
  margin: 6px 0 0;
  font-family: var(--display);
  font-size: clamp(25px, 2.2vw, 34px);
  font-weight: 500;
  line-height: 1.05;
}

.episode-card__meta p {
  max-width: 58ch;
  margin: 10px 0 0;
  color: var(--ash);
  font-size: 13px;
}

.release-empty {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  min-height: 620px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.release-empty__art { position: relative; overflow: hidden; }

.release-empty__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  filter: sepia(.05) saturate(.7) contrast(1.02) brightness(.9);
}

.release-empty__copy {
  align-self: center;
  padding: 56px 0 56px 8vw;
}

.release-empty__copy h3 {
  max-width: 520px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 400;
  line-height: .94;
}

.release-empty__copy > p {
  max-width: 55ch;
  margin: 26px 0 36px;
  color: var(--mist);
}

.production-beats { margin: 0 0 34px; padding: 0; list-style: none; }

.production-beats li {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.production-beats li:last-child { border-bottom: 1px solid var(--line); }

.production-beats span,
.production-beats em {
  color: var(--ash);
  font-size: 11px;
  font-style: normal;
}

.production-beats strong { font-family: var(--display); font-size: 18px; font-weight: 500; }

.worlds-section {
  width: 100%;
  padding: 138px max(32px, calc((100vw - 1400px) / 2)) 170px;
  background: var(--paper);
  color: var(--paper-ink);
}

.worlds-section .world-list,
.worlds-section .world-row { border-color: rgba(21, 27, 25, .2); }

.worlds-section .worlds-intro > p,
.worlds-section .worlds-intro > span,
.worlds-section .world-row__number,
.worlds-section .world-row__body > span,
.worlds-section .world-row__body p { color: #56605b; }

.worlds-section .world-row__body > a {
  border-color: rgba(21, 27, 25, .38);
  color: #303a36;
}

.worlds-section .world-row__body > a:hover {
  border-color: var(--vermilion);
  color: var(--paper-ink);
}

.worlds-section .concept-placeholder {
  border-color: rgba(21, 27, 25, .18);
  background: #c8d2ca;
}

.worlds-section .concept-placeholder em { color: #626b66; }

.worlds-intro {
  display: grid;
  grid-template-columns: 200px minmax(0, .9fr) minmax(260px, .6fr);
  gap: 5vw;
  align-items: end;
  margin-bottom: 92px;
}

.worlds-intro h2 {
  font-size: clamp(50px, 6vw, 88px);
  line-height: .9;
}

.worlds-intro > span {
  color: var(--ash);
  line-height: 1.7;
}

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

.world-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, .9fr) 90px minmax(0, 1.1fr);
  min-height: 460px;
  border-bottom: 1px solid var(--line);
}

.world-row__image {
  position: relative;
  overflow: hidden;
}

.world-row__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(.05) saturate(.68) contrast(1.02) brightness(.84);
  transition: transform .9s var(--ease), filter .5s ease;
}

.world-row:nth-child(2) .world-row__image img { object-position: 34% center; filter: sepia(.03) saturate(.55) contrast(1.04) brightness(.76); }
.world-row:nth-child(3) .world-row__image img { object-position: 78% center; filter: sepia(.22) saturate(.5) contrast(1.04) brightness(.74); }

.world-row:hover .world-row__image img {
  transform: scale(1.025);
  filter: sepia(.02) saturate(.88) contrast(1.05) brightness(.94);
}

.world-row__number {
  padding-top: 48px;
  color: var(--ash);
  font-family: var(--display);
  font-size: 18px;
  text-align: center;
}

.world-row__body {
  position: relative;
  align-self: center;
  padding: 54px 8vw 54px 0;
}

.world-row__body > span {
  color: var(--ash);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.world-row__body h3 {
  position: relative;
  z-index: 1;
  margin: 13px 0 18px;
  font-family: var(--display);
  font-size: clamp(48px, 5.7vw, 84px);
  font-weight: 400;
  line-height: .9;
  letter-spacing: 0;
}

.world-title-zh,
.character-title-zh {
  margin: 0 0 18px;
  color: var(--vermilion-hot);
  font-family: "Songti SC", "SimSun", serif;
  font-size: 16px;
  line-height: 1.4;
}

.media-evidence {
  position: absolute;
  z-index: 2;
  bottom: 16px;
  left: 16px;
  max-width: calc(100% - 32px);
  padding: 8px 10px;
  background: rgba(5, 20, 21, .9);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.concept-placeholder {
  display: grid;
  place-content: center;
  width: 100%;
  height: 100%;
  min-height: inherit;
  padding: 36px;
  border: 1px solid var(--line);
  background: var(--ink-raised);
  text-align: center;
}

.concept-placeholder::before {
  content: "";
  width: 42px;
  height: 2px;
  margin: 0 auto 20px;
  background: var(--vermilion);
}

.concept-placeholder strong {
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 400;
  line-height: 1;
}

.concept-placeholder em {
  margin-top: 12px;
  color: var(--ash);
  font-size: 11px;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.world-row__body p {
  max-width: 54ch;
  margin: 0 0 30px;
  color: var(--mist);
}

.world-row--vermilion .world-row__body > a { border-color: var(--vermilion); }
.world-row--jade .world-row__body > a { border-color: var(--jade); }
.world-row--bone .world-row__body > a { border-color: var(--bronze); }

.character-stage {
  display: grid;
  grid-template-columns: .7fr 1.15fr .8fr;
  gap: 5vw;
  align-items: center;
  min-height: 760px;
  padding: 120px 0;
}

.character-stage__title { align-self: start; padding-top: 6vh; }

.character-stage h2 {
  margin-top: 18px;
  font-size: clamp(45px, 5vw, 76px);
  line-height: .93;
}

.character-stage__portrait {
  position: relative;
  height: min(680px, 72vw);
  overflow: hidden;
}

.character-stage__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  filter: sepia(.05) saturate(.68) contrast(1.02) brightness(.94);
  transform: scale(1.12);
}

.portrait-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px;
  z-index: 2;
  background: rgba(5, 19, 20, .9);
}

.portrait-caption span {
  float: right;
  color: var(--vermilion-hot);
  font-family: "Songti SC", "SimSun", serif;
  font-size: 28px;
}

.portrait-caption strong,
.portrait-caption em { display: block; }

.portrait-caption strong { font-family: var(--display); font-size: 28px; font-weight: 500; }

.character-stage__portrait > .media-evidence {
  top: 16px;
  bottom: auto;
}
.portrait-caption em { color: var(--ash); font-size: 11px; font-style: normal; text-transform: uppercase; letter-spacing: .1em; }

.character-stage blockquote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(27px, 3vw, 43px);
  line-height: 1.12;
}

.character-stage blockquote a { display: table; margin-top: 38px; font-family: var(--ui); }

.audience-section {
  position: relative;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) minmax(380px, .7fr);
  gap: 5vw;
  align-items: center;
  padding: 120px 0 150px;
  border-top: 1px solid var(--line);
}

.audience-seal {
  display: grid;
  place-items: center;
  width: 92px;
  height: 104px;
  border: 2px solid var(--vermilion);
  color: var(--vermilion-hot);
  font-family: "Songti SC", "SimSun", serif;
  font-size: 52px;
}

.audience-copy h2 {
  max-width: 760px;
  margin-top: 17px;
  font-size: clamp(46px, 5vw, 76px);
  line-height: .94;
}

.audience-copy > span {
  display: block;
  max-width: 62ch;
  margin-top: 28px;
  color: var(--ash);
}

.audience-poll { padding-left: 5vw; border-left: 1px solid var(--line); }

.audience-poll > strong {
  display: block;
  margin-bottom: 23px;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
}

.audience-poll > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  color: var(--mist);
  font-size: 13px;
}

.audience-poll > div b { color: var(--vermilion-hot); }
.audience-poll > p { margin: 18px 0 0; color: var(--ash); font-size: 12px; line-height: 1.65; }
.audience-poll > a { display: inline-block; margin-top: 29px; }

.final-invitation {
  min-height: 590px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 24px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.final-invitation p {
  margin: 0 0 18px;
  color: var(--vermilion-hot);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.final-invitation h2 {
  max-width: 900px;
  font-size: clamp(56px, 7vw, 102px);
  line-height: .88;
}

.final-invitation .command { margin-top: 42px; }

.site-footer {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr) auto;
  gap: 5vw;
  align-items: start;
  padding: 70px max(32px, calc((100vw - 1400px) / 2)) 34px;
  border-top: 1px solid var(--line);
  background: #091515;
}

.footer-mark {
  display: grid;
  place-items: center;
  width: 72px;
  height: 80px;
  background: var(--vermilion);
  font-family: "Songti SC", "SimSun", serif;
  font-size: 42px;
}

.footer-statement strong {
  display: block;
  max-width: 680px;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 500;
  line-height: 1;
}

.footer-statement p {
  max-width: 65ch;
  margin: 18px 0 0;
  color: var(--ash);
  font-size: 13px;
}

.site-footer nav { display: grid; gap: 8px; }
.site-footer nav a { color: var(--mist); font-size: 13px; }
.site-footer nav a:hover { color: var(--white); }

.footer-legal {
  grid-column: 2 / -1;
  margin: 50px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--ash);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* Interactive canon homepage */
.duel-stage {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(390px, .58fr);
  padding-top: var(--header-h);
  background: var(--ink);
}

.duel-poster {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  margin: 0;
  overflow: hidden;
  background: #183c3e;
}

.duel-poster::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 100px rgba(4, 17, 18, .25);
  background: rgba(45, 102, 99, .04);
  mix-blend-mode: color;
}

.duel-poster > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: sepia(.04) saturate(.84) contrast(1.06) brightness(1.02);
  transform: scale(1.01);
  animation: hero-breathe 12s var(--ease) both;
}

.duel-poster > .media-evidence { z-index: 4; top: 20px; bottom: auto; }

.duel-poster__copy {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 32px max(30px, 5vw) 36px;
  background: rgba(8, 27, 27, .8);
}

.duel-poster__copy p,
.duel-ballot__eyebrow {
  margin: 0;
  color: var(--vermilion-hot);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.duel-poster__copy strong {
  display: block;
  margin-top: 5px;
  font-family: var(--display);
  font-size: clamp(38px, 4.4vw, 70px);
  font-weight: 450;
  line-height: .92;
}

.duel-poster__copy > span {
  display: block;
  max-width: 68ch;
  margin-top: 13px;
  color: var(--mist);
  font-size: 13px;
}

.duel-poster__chapter {
  position: absolute;
  z-index: 3;
  top: 26px;
  right: 28px;
  display: grid;
  justify-items: end;
  color: var(--white);
  text-shadow: 0 2px 16px rgba(0, 0, 0, .65);
}

.duel-poster__chapter span { font-size: 9px; font-weight: 800; letter-spacing: .14em; }
.duel-poster__chapter b { font-family: var(--display); font-size: 38px; font-weight: 400; line-height: 1; }

.duel-ballot {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  padding: 70px clamp(28px, 4.6vw, 76px) 48px;
  background: var(--paper);
  color: var(--paper-ink);
}

.duel-ballot h1 {
  max-width: 610px;
  margin: 15px 0 0;
  font-family: var(--display);
  font-size: clamp(48px, 5.3vw, 82px);
  font-weight: 450;
  line-height: .88;
  text-wrap: balance;
}

.duel-ballot__rule {
  max-width: 52ch;
  margin: 24px 0 0;
  color: #56605b;
  font-size: 13px;
}

.home-ballot { margin-top: 44px; border-top: 1px solid rgba(21, 27, 25, .24); }

.home-ballot__choice {
  position: relative;
  width: 100%;
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid rgba(21, 27, 25, .24);
  background: transparent;
  color: var(--paper-ink);
  text-align: left;
  cursor: pointer;
  overflow: hidden;
}

.home-ballot__choice i {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  background: rgba(103, 160, 150, .2);
  transform: scaleX(var(--vote));
  transform-origin: left;
  transition: transform .7s var(--ease);
}

.home-ballot__choice > span,
.home-ballot__choice > b { position: relative; z-index: 1; }
.home-ballot__choice > span { display: grid; }
.home-ballot__choice small { color: #727b76; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .13em; }
.home-ballot__choice strong { margin-top: 5px; font-family: var(--display); font-size: 27px; font-weight: 550; line-height: 1; }
.home-ballot__choice > b { color: var(--vermilion); font-size: 11px; text-transform: uppercase; }
.home-ballot__choice:hover:not(:disabled) { background: rgba(170, 53, 43, .065); }
.home-ballot__choice.selected { box-shadow: inset 4px 0 0 var(--vermilion); }
.home-ballot__choice.winner { color: #7e231d; }
.home-ballot__choice:disabled { cursor: default; }

.duel-ballot__status {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 26px;
  margin-top: 38px;
  padding-top: 21px;
  border-top: 1px solid rgba(21, 27, 25, .24);
}

.duel-ballot__status p { max-width: 42ch; margin: 0; color: #606965; font-size: 11px; }
.duel-ballot__status a { flex: 0 0 auto; padding-bottom: 4px; border-bottom: 1px solid var(--vermilion); font-size: 11px; font-weight: 800; }

.canon-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #102423;
}

.canon-principles > div {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px max(24px, calc((100vw - 1400px) / 6));
  border-right: 1px solid var(--line);
}

.canon-principles > div:last-child { border-right: 0; }
.canon-principles span { color: var(--vermilion-hot); font-family: var(--display); font-size: 24px; }
.canon-principles strong { color: var(--mist); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }

.canon-section {
  width: var(--content);
  margin: 0 auto;
  padding: 132px 0 150px;
}

.section-ledger-heading,
.codex-heading {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) auto;
  gap: 4vw;
  align-items: end;
  margin-bottom: 66px;
}

.section-ledger-heading > div,
.codex-heading > div { display: flex; align-items: center; gap: 18px; }

.section-ledger-heading > div > span,
.codex-heading > div > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 54px;
  border: 2px solid var(--vermilion);
  color: var(--vermilion-hot);
  font-family: "Songti SC", "SimSun", serif;
  font-size: 23px;
}

.section-ledger-heading p,
.codex-heading > div p { margin: 0; color: var(--ash); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .13em; }

.section-ledger-heading h2,
.codex-heading h2 {
  max-width: 850px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(43px, 5vw, 74px);
  font-weight: 450;
  line-height: .94;
  text-wrap: balance;
}

.section-ledger-heading > a,
.codex-all-link {
  padding-bottom: 5px;
  border-bottom: 1px solid var(--line-strong);
  color: var(--mist);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.canon-timeline { border-top: 1px solid var(--line); }

.canon-chapter {
  display: grid;
  grid-template-columns: 90px minmax(260px, .42fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  min-height: 230px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.canon-chapter__index { display: grid; color: var(--ash); }
.canon-chapter__index span { font-size: 8px; font-weight: 800; letter-spacing: .14em; }
.canon-chapter__index b { font-family: var(--display); font-size: 44px; font-weight: 400; line-height: 1; }
.canon-chapter__image { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.canon-chapter__image img { width: 100%; height: 100%; object-fit: cover; filter: sepia(.04) saturate(.74) contrast(1.03) brightness(.9); transition: transform .7s var(--ease); }
.canon-chapter:hover .canon-chapter__image img { transform: scale(1.035); }
.canon-chapter__image span { position: absolute; right: 12px; bottom: 12px; padding: 7px 9px; background: rgba(8, 27, 27, .78); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.canon-chapter__copy small { color: var(--vermilion-hot); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.canon-chapter__copy h3 { margin: 5px 0 8px; font-family: var(--display); font-size: clamp(30px, 3vw, 46px); font-weight: 500; line-height: 1; }
.canon-chapter__copy p { max-width: 64ch; margin: 0; color: var(--ash); font-size: 12px; }

.canon-empty {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  min-height: 520px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.canon-empty__image { position: relative; overflow: hidden; }
.canon-empty__image img { width: 100%; height: 100%; object-fit: cover; object-position: 62% center; filter: sepia(.04) saturate(.72) contrast(1.02) brightness(.9); }
.canon-empty > div:last-child { align-self: center; padding: 60px 0 60px 7vw; }
.canon-empty > div:last-child > span { color: var(--vermilion-hot); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .13em; }
.canon-empty h3 { max-width: 500px; margin: 8px 0 0; font-family: var(--display); font-size: clamp(42px, 4.6vw, 68px); font-weight: 450; line-height: .94; }
.canon-empty p { max-width: 54ch; margin: 24px 0 30px; color: var(--ash); font-size: 13px; }
.canon-empty a { padding-bottom: 5px; border-bottom: 1px solid var(--vermilion); font-size: 11px; font-weight: 800; }

.codex-section {
  width: 100%;
  padding: 132px max(32px, calc((100vw - 1400px) / 2)) 150px;
  background: var(--paper);
  color: var(--paper-ink);
}

.codex-heading { grid-template-columns: 190px minmax(0, 1fr) minmax(260px, .46fr); }
.codex-heading > div p { color: #66706b; }
.codex-heading > p { max-width: 52ch; margin: 0; color: #5b6560; font-size: 12px; }

.codex-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, .8fr);
  gap: 7vw;
  align-items: start;
}

.relationship-map {
  position: relative;
  min-height: 650px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding: 24px;
  border: 1px solid rgba(21, 27, 25, .22);
  background: #cbd4cc;
  overflow: hidden;
}

.relationship-thread {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: 36%;
  height: 1px;
  background: rgba(170, 53, 43, .5);
  transform-origin: left center;
}

.relationship-thread--a { transform: rotate(-137deg); }
.relationship-thread--b { transform: rotate(-43deg); }
.relationship-thread--c { transform: rotate(137deg); }
.relationship-thread--d { transform: rotate(43deg); }

.codex-node {
  position: relative;
  z-index: 2;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(21, 27, 25, .22);
  background: #172a29;
  color: var(--white);
}

.codex-node--one { grid-area: 1 / 1 / 2 / 2; }
.codex-node--two { grid-area: 1 / 3 / 2 / 4; }
.codex-node--three { grid-area: 3 / 1 / 4 / 2; }
.codex-node--four { grid-area: 3 / 3 / 4 / 4; }

.codex-node > img { width: 100%; height: 100%; object-fit: cover; object-position: 66% center; filter: sepia(.04) saturate(.72) contrast(1.02) brightness(.82); }
.codex-node > div { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: 14px; background: rgba(8, 27, 27, .86); }
.codex-node small { color: var(--vermilion-hot); font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.codex-node strong { display: block; font-family: var(--display); font-size: 23px; font-weight: 500; line-height: 1; }
.codex-node > div > span { display: block; margin-top: 4px; color: var(--ash); font-size: 9px; line-height: 1.35; }

.codex-node--locked { outline: 0; }
.codex-node--locked > div > span { opacity: 0; transform: translateY(8px); transition: opacity .3s ease, transform .35s var(--ease); }
.codex-node--locked:hover > div > span,
.codex-node--locked:focus-visible > div > span { opacity: 1; transform: none; }

.locked-silhouette {
  position: absolute;
  top: 14%;
  left: 50%;
  width: 42%;
  height: 72%;
  border-radius: 48% 48% 20% 20%;
  background: #071110;
  opacity: .82;
  transform: translateX(-50%);
}

.locked-silhouette::before {
  content: "";
  position: absolute;
  top: -10%;
  left: 50%;
  width: 48%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #071110;
  transform: translateX(-50%);
}

.relationship-core {
  position: relative;
  z-index: 3;
  grid-area: 2 / 2 / 3 / 3;
  align-self: center;
  justify-self: center;
  width: 128px;
  height: 142px;
  display: grid;
  place-content: center;
  border: 2px solid var(--vermilion);
  background: var(--paper);
  text-align: center;
}

.relationship-core span { color: var(--vermilion); font-family: "Songti SC", "SimSun", serif; font-size: 20px; }
.relationship-core strong { margin-top: 6px; font-size: 9px; letter-spacing: .13em; }
.relationship-core small { color: #6e7772; font-family: var(--display); font-size: 12px; }

.codex-lore { border-top: 1px solid rgba(21, 27, 25, .24); }

.lore-entry {
  position: relative;
  min-height: 150px;
  display: grid;
  align-items: end;
  padding: 26px 0;
  border-bottom: 1px solid rgba(21, 27, 25, .24);
  overflow: hidden;
}

.lore-entry--image { min-height: 280px; padding: 0; color: var(--white); }
.lore-entry--image::after { content: ""; position: absolute; z-index: 1; inset: 0; background: rgba(8, 27, 27, .5); }
.lore-entry--image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 63% center; filter: saturate(.75) brightness(.86); }
.lore-entry > span { position: relative; z-index: 2; display: grid; padding: 0 22px; }
.lore-entry:not(.lore-entry--image) > span { padding: 0; }
.lore-entry small { color: var(--vermilion); font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: .13em; }
.lore-entry strong { max-width: 500px; margin-top: 7px; font-family: var(--display); font-size: clamp(25px, 2.6vw, 38px); font-weight: 500; line-height: 1; }
.lore-entry em { margin-top: 15px; color: inherit; font-size: 9px; font-style: normal; font-weight: 800; text-transform: uppercase; }
.lore-entry--locked { color: #6b736f; }

.codex-all-link { display: table; margin: 48px 0 0 auto; border-color: rgba(21, 27, 25, .38); color: #303a36; }

.studio-section {
  width: var(--content);
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .72fr);
  gap: 8vw;
  align-items: center;
  margin: 0 auto;
  padding: 120px 0;
}

.studio-section__copy > p { margin: 0; color: var(--vermilion-hot); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .13em; }
.studio-section__copy h2 { max-width: 760px; margin: 14px 0 0; font-family: var(--display); font-size: clamp(48px, 6vw, 86px); font-weight: 450; line-height: .9; }
.studio-section__copy > span { display: block; max-width: 62ch; margin-top: 28px; color: var(--ash); font-size: 13px; }
.studio-section__ledger { border-top: 1px solid var(--line); }
.studio-section__ledger > a,
.studio-section__ledger > div { display: grid; grid-template-columns: 120px 1fr auto; gap: 22px; align-items: center; min-height: 86px; border-bottom: 1px solid var(--line); }
.studio-section__ledger span { color: var(--ash); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.studio-section__ledger strong { font-family: var(--display); font-size: 20px; font-weight: 500; }
.studio-section__ledger b { color: var(--vermilion-hot); font-size: 10px; }

@media (max-width: 1080px) {
  .duel-stage { grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr); }
  .duel-ballot { padding-right: 32px; padding-left: 32px; }
  .section-ledger-heading { grid-template-columns: 1fr auto; }
  .section-ledger-heading > div { grid-column: 1 / -1; }
  .codex-heading { grid-template-columns: 1fr 1fr; }
  .codex-heading > div { grid-column: 1 / -1; }
  .codex-layout { grid-template-columns: 1fr; }
  .relationship-map { min-height: 620px; }
}

@media (max-width: 720px) {
  .duel-stage { grid-template-columns: 1fr; padding-top: var(--header-h); }
  .duel-poster { min-height: 69svh; }
  .duel-poster__copy { padding: 24px 18px 26px; }
  .duel-poster__copy strong { font-size: 41px; }
  .duel-poster__copy > span { font-size: 11px; }
  .duel-poster__chapter { top: 18px; right: 18px; }
  .duel-ballot { min-height: 610px; padding: 48px 18px 34px; }
  .duel-ballot h1 { font-size: 52px; }
  .duel-ballot__status { align-items: flex-start; flex-direction: column; }
  .canon-principles { grid-template-columns: 1fr; }
  .canon-principles > div { min-height: 66px; padding: 14px 18px; border-right: 0; border-bottom: 1px solid var(--line); }
  .canon-principles > div:last-child { border-bottom: 0; }
  .canon-section { padding: 88px 0 100px; }
  .section-ledger-heading,
  .codex-heading { grid-template-columns: 1fr; gap: 25px; margin-bottom: 42px; }
  .section-ledger-heading > div,
  .codex-heading > div { grid-column: auto; }
  .section-ledger-heading h2,
  .codex-heading h2 { font-size: 47px; }
  .section-ledger-heading > a { justify-self: start; }
  .canon-chapter { grid-template-columns: 60px 1fr; gap: 18px; }
  .canon-chapter__image { grid-column: 1 / -1; grid-row: 1; }
  .canon-chapter__index { grid-column: 1; grid-row: 2; }
  .canon-chapter__copy { grid-column: 2; grid-row: 2; }
  .canon-empty { grid-template-columns: 1fr; min-height: 0; }
  .canon-empty__image { min-height: 280px; height: 64vw; }
  .canon-empty > div:last-child { padding: 44px 0; }
  .codex-section { padding: 88px 18px 100px; }
  .codex-heading > p { max-width: none; }
  .relationship-map { min-height: 0; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: auto; gap: 12px; padding: 12px; }
  .relationship-thread { display: none; }
  .relationship-core { grid-area: auto; grid-column: 1 / -1; grid-row: 1; width: 112px; height: 124px; margin: 10px auto; }
  .codex-node { min-height: 220px; }
  .codex-node--one,
  .codex-node--two,
  .codex-node--three,
  .codex-node--four { grid-area: auto; }
  .codex-node--locked > div > span { opacity: 1; transform: none; }
  .codex-lore { margin-top: 42px; }
  .codex-all-link { margin-left: 0; }
  .studio-section { min-height: 0; grid-template-columns: 1fr; padding: 90px 0 105px; }
  .studio-section__copy h2 { font-size: 53px; }
  .studio-section__ledger > a,
  .studio-section__ledger > div { grid-template-columns: 90px 1fr auto; gap: 14px; }
  .studio-section__ledger strong { font-size: 17px; }
}

/* Shared interior pages */
.page-shell { padding: calc(var(--header-h) + 82px) 0 140px; }

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr);
  gap: 8vw;
  align-items: end;
  min-height: 360px;
  padding-bottom: 68px;
  border-bottom: 1px solid var(--line);
}

.page-hero__mark {
  display: block;
  margin-bottom: 16px;
  color: var(--vermilion-hot);
  font-family: "Songti SC", "SimSun", serif;
  font-size: 34px;
}

.page-hero h1 { max-width: 940px; font-size: clamp(64px, 8vw, 112px); line-height: .84; }

.page-hero p {
  max-width: 58ch;
  margin: 0;
  color: var(--mist);
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.35;
}

.archive-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 52px 0;
}

.filter-button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--mist);
  font-size: 12px;
  cursor: pointer;
}

.filter-button:hover,
.filter-button.active { border-color: var(--vermilion); color: var(--white); }

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

.honest-empty {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  min-height: 560px;
  margin-top: 60px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.honest-empty__media {
  position: relative;
  overflow: hidden;
}

.honest-empty__media img { width: 100%; height: 100%; object-fit: cover; object-position: 64% center; }

.honest-empty__media img {
  filter: sepia(.05) saturate(.7) contrast(1.02) brightness(.9);
}

.honest-empty > div:not(.honest-empty__media) {
  align-self: center;
  padding: 60px 0 60px 7vw;
}

.honest-empty h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(46px, 5vw, 74px);
  font-weight: 400;
  line-height: .94;
}

.honest-empty p { max-width: 50ch; margin: 24px 0 32px; color: var(--ash); }

.series-dossiers { margin-top: 90px; }

.series-dossier {
  display: grid;
  grid-template-columns: minmax(360px, 1.05fr) minmax(0, .95fr);
  min-height: 650px;
  border-bottom: 1px solid var(--line);
}

.series-dossier:first-child { border-top: 1px solid var(--line); }
.series-dossier:nth-child(even) .series-dossier__image { order: 2; }

.series-dossier__image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.series-dossier__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(.05) saturate(.66) contrast(1.02) brightness(.86);
  transition: transform .9s var(--ease), filter .5s ease;
}

.series-dossier:nth-child(2) .series-dossier__image img { object-position: 30% center; filter: sepia(.03) saturate(.54) contrast(1.04) brightness(.75); }
.series-dossier:nth-child(3) .series-dossier__image img { object-position: 76% center; filter: sepia(.2) saturate(.5) contrast(1.04) brightness(.72); }

.series-dossier:hover .series-dossier__image img {
  transform: scale(1.025);
  filter: sepia(.02) saturate(.88) contrast(1.05) brightness(.94);
}

.series-dossier__body {
  position: relative;
  align-self: center;
  padding: 70px 6vw;
  overflow: hidden;
}

.dossier-index {
  margin-bottom: 42px;
  color: var(--vermilion-hot);
  font-family: var(--display);
  font-size: 18px;
}

.series-dossier__body > span,
.character-entry__body > span,
.about-method > div > span {
  color: var(--ash);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .13em;
}

.series-dossier__body h2,
.character-entry__body h2,
.about-manifesto h2 {
  position: relative;
  z-index: 1;
  margin: 10px 0 17px;
  font-family: var(--display);
  font-size: clamp(50px, 5.8vw, 84px);
  font-weight: 400;
  line-height: .9;
  letter-spacing: 0;
}

.series-dossier__body > p { max-width: 55ch; color: var(--mist); }

.series-dossier dl { margin: 32px 0; }

.series-dossier dl > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
}

.series-dossier dl > div:last-child { border-bottom: 1px solid var(--line); }
.series-dossier dt { color: var(--ash); font-size: 11px; }
.series-dossier dd { margin: 0; font-size: 12px; }

.character-index { padding-top: 100px; }

.character-entry {
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr);
  min-height: 650px;
  border-top: 1px solid var(--line);
}

.character-entry:last-child { border-bottom: 1px solid var(--line); }
.character-entry:nth-child(even) .character-entry__image { order: 2; }

.character-entry__image {
  position: relative;
  overflow: hidden;
}

.character-entry__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  filter: sepia(.05) saturate(.62) contrast(1.02) brightness(.86);
  transform: scale(1.12);
}

.character-entry:nth-child(2) .character-entry__image img { object-position: 42% center; filter: sepia(.03) saturate(.52) contrast(1.04) brightness(.76); }
.character-entry:nth-child(3) .character-entry__image img { object-position: 18% center; filter: sepia(.1) saturate(.44) contrast(1.06) brightness(.72); }

.character-entry__body {
  position: relative;
  align-self: center;
  padding: 80px 8vw;
  overflow: hidden;
}

.character-entry__body > em {
  display: block;
  color: var(--vermilion-hot);
  font-size: 11px;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.character-entry blockquote {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin: 54px 0 0;
  font-family: var(--display);
  font-size: clamp(27px, 3vw, 43px);
  line-height: 1.12;
}

.about-manifesto {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 9vw;
  padding: 130px 0;
}

.about-manifesto__statement > p {
  color: var(--vermilion-hot);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .13em;
}

.about-manifesto h2 { font-size: clamp(50px, 6vw, 88px); }

.about-principles article { padding: 26px 0; border-top: 1px solid var(--line); }
.about-principles article:last-child { border-bottom: 1px solid var(--line); }
.about-principles strong { font-family: var(--display); font-size: 24px; font-weight: 500; }
.about-principles p { max-width: 60ch; margin: 8px 0 0; color: var(--ash); font-size: 13px; }

.about-method {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  min-height: 670px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-method > img { width: 100%; height: 100%; object-fit: cover; object-position: 66% center; filter: sepia(.05) saturate(.66) contrast(1.02) brightness(.88); }
.about-method > div { align-self: center; padding: 70px 0 70px 7vw; }
.about-method ol { margin: 32px 0 0; padding: 0; list-style: none; }

.about-method li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 25px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.about-method li:last-child { border-bottom: 1px solid var(--line); }
.about-method li b { font-family: var(--display); font-size: 22px; font-weight: 500; }
.about-method li p { margin: 0; color: var(--ash); font-size: 13px; }

/* Watch and community */
.watch-shell {
  width: var(--content);
  margin: 0 auto;
  padding: calc(var(--header-h) + 38px) 0 140px;
}

.watch-breadcrumb {
  display: flex;
  gap: 10px;
  margin-bottom: 26px;
  color: var(--ash);
  font-size: 11px;
}

.preview-disclosure {
  margin: -10px 0 32px;
  padding: 10px 12px;
  border-left: 2px solid var(--vermilion);
  background: var(--ink-raised);
  color: var(--ash);
  font-size: 11px;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.watch-breadcrumb a:hover { color: var(--white); }

.watch-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: 7vw;
  align-items: end;
  margin-bottom: 36px;
}

.watch-heading span {
  color: var(--vermilion-hot);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.watch-heading h1 {
  margin: 8px 0 0;
  font-family: var(--display);
  font-size: clamp(48px, 6.4vw, 92px);
  font-weight: 400;
  line-height: .9;
  letter-spacing: 0;
}

.watch-heading > p { max-width: 62ch; margin: 0; color: var(--mist); }

.cinema-player {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(194, 203, 197, .16);
  background: #020809;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
}

.cinema-player video { width: 100%; height: 100%; background: #000; object-fit: contain; }

.watch-note {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 30px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.watch-note span { color: var(--jade); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.watch-note p { max-width: 75ch; margin: 0; color: var(--ash); font-size: 12px; }

.story-vote {
  display: grid;
  grid-template-columns: minmax(300px, .85fr) minmax(0, 1.15fr);
  gap: 7vw;
  padding: 110px 0;
  border-bottom: 1px solid var(--line);
}

.story-vote__intro { display: flex; gap: 25px; align-items: flex-start; }

.story-vote__intro > span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 64px;
  height: 72px;
  border: 2px solid var(--vermilion);
  color: var(--vermilion-hot);
  font-family: "Songti SC", "SimSun", serif;
  font-size: 36px;
}

.story-vote__intro p,
.discussion-heading span,
.watch-related header p {
  margin: 0;
  color: var(--ash);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.story-vote__intro h2,
.discussion-heading h2,
.watch-related h2 {
  margin: 9px 0 0;
  font-family: var(--display);
  font-size: clamp(39px, 4.5vw, 66px);
  font-weight: 400;
  line-height: .95;
}

.vote-deadline {
  display: block;
  max-width: 52ch;
  margin-top: 20px;
  color: var(--ash);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.vote-options { border-top: 1px solid var(--line); }

.vote-option {
  position: relative;
  width: 100%;
  min-height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 0 18px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--mist);
  text-align: left;
  cursor: pointer;
  overflow: hidden;
}

.vote-option i {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(77, 128, 119, .18);
  transform: scaleX(var(--vote));
  transform-origin: left center;
  transition: transform .7s var(--ease);
}

.vote-option span,
.vote-option b { position: relative; z-index: 1; }
.vote-option span { font-family: var(--display); font-size: 20px; }
.vote-option b { color: var(--ash); font-size: 11px; }
.vote-option:hover,
.vote-option.selected { color: var(--white); background: rgba(244, 243, 238, .035); }
.vote-option:disabled { cursor: default; opacity: .78; }
.vote-option.selected::before { content: ""; width: 5px; height: 5px; background: var(--vermilion-hot); }
.vote-option.winner { color: var(--white); border-color: rgba(179, 33, 25, .62); }
.vote-option.winner i { background: rgba(179, 33, 25, .22); }
.vote-total { margin: 12px 0 0; color: var(--ash); font-size: 12px; }
.vote-signin { display: inline-block; margin-top: 17px; padding-bottom: 4px; border-bottom: 1px solid var(--vermilion); font-size: 11px; }
.vote-empty { align-self: center; padding: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.vote-empty strong { font-family: var(--display); font-size: 22px; font-weight: 400; }
.vote-empty p { margin: 8px 0 0; color: var(--ash); font-size: 11px; }

.discussion { padding: 110px 0 80px; }

.discussion-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .55fr);
  gap: 7vw;
  align-items: end;
  margin-bottom: 56px;
}

.discussion-heading > p { max-width: 54ch; margin: 0; color: var(--ash); font-size: 12px; }

.community-message,
.community-unavailable {
  margin: 0 0 28px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  color: var(--mist);
  font-size: 13px;
}

.community-message--success { border-color: var(--jade); }
.community-message--error { border-color: var(--vermilion); }

.comment-gate {
  display: grid;
  grid-template-columns: minmax(220px, .6fr) minmax(280px, 1fr) auto;
  gap: 4vw;
  align-items: center;
  padding: 38px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.comment-gate h3 { margin: 0; font-family: var(--display); font-size: 30px; font-weight: 500; }
.comment-gate p { margin: 0; color: var(--ash); font-size: 13px; }

.comment-compose { padding: 34px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.comment-compose label { display: block; margin-bottom: 14px; font-family: var(--display); font-size: 23px; }
.comment-compose textarea {
  width: 100%;
  min-height: 150px;
  resize: vertical;
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: var(--ink-soft);
  color: var(--white);
  line-height: 1.55;
}
.comment-compose textarea::placeholder { color: #858a85; }
.comment-compose > div { display: flex; justify-content: space-between; gap: 20px; align-items: center; margin-top: 14px; }
.comment-compose > div span { color: var(--ash); font-size: 10px; }
.comment-compose button {
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid var(--vermilion);
  background: var(--vermilion);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.comment-compose button:hover { background: var(--vermilion-hot); }

.trap-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.comment-list { margin-top: 40px; }

.comment-item {
  position: relative;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) 70px;
  gap: 30px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.comment-item:last-child { border-bottom: 1px solid var(--line); }
.comment-item--pending { opacity: .68; }

.comment-author { display: grid; grid-template-columns: 38px 1fr; align-items: center; gap: 0 12px; }
.comment-author > span { grid-row: span 2; display: grid; place-items: center; width: 38px; height: 42px; background: var(--ink-raised); color: var(--vermilion-hot); font-family: var(--display); font-size: 21px; }
.comment-author strong { align-self: end; font-size: 12px; }
.comment-author time { align-self: start; color: var(--ash); font-size: 9px; }
.comment-item > p { max-width: 75ch; margin: 0; color: var(--mist); }
.comment-item > em { grid-column: 2; color: var(--bronze); font-size: 10px; font-style: normal; }
.report-form { justify-self: end; }
.report-form button { padding: 0; border: 0; background: transparent; color: var(--ash); font-size: 9px; cursor: pointer; }
.report-form button:hover { color: var(--vermilion-hot); }
.no-comments { padding: 35px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--ash); }

.watch-related { padding: 100px 0 0; border-top: 1px solid var(--line); }
.watch-related header { display: grid; grid-template-columns: 220px 1fr; gap: 30px; align-items: end; margin-bottom: 45px; }
.watch-related h2 { font-size: 52px; }

/* Authentication and account */
.auth-cinema {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(430px, .75fr);
  padding-top: var(--header-h);
}

.auth-cinema__image { min-height: 760px; overflow: hidden; }

.auth-cinema__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  filter: sepia(.05) saturate(.64) contrast(1.02) brightness(.82);
}

.auth-cinema__panel {
  align-self: center;
  width: min(560px, calc(100% - 70px));
  margin: 70px auto;
  padding: 28px 0;
}

.auth-cinema__seal {
  display: grid;
  place-items: center;
  width: 54px;
  height: 60px;
  margin-bottom: 24px;
  border: 2px solid var(--vermilion);
  color: var(--vermilion-hot);
  font-family: "Songti SC", "SimSun", serif;
  font-size: 29px;
}

.auth-cinema__panel > p {
  margin: 0;
  color: var(--vermilion-hot);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .13em;
}

.auth-cinema__panel h1 {
  margin: 6px 0 8px;
  font-family: var(--display);
  font-size: clamp(55px, 6vw, 80px);
  font-weight: 400;
  line-height: .9;
}

.auth-cinema__panel > span { display: block; max-width: 52ch; color: var(--ash); font-size: 13px; }

.form-message { margin-top: 24px; padding: 12px 14px; border: 1px solid var(--line); color: var(--mist); font-size: 12px; }
.form-message--error { border-color: var(--vermilion); }
.form-message--notice { border-color: var(--bronze); }

.cinema-form { margin-top: 34px; }
.cinema-form > label,
.cinema-form__pair label { display: block; margin: 18px 0 7px; color: var(--mist); font-size: 11px; font-weight: 700; }

.cinema-form input[type="text"],
.cinema-form input[type="email"],
.cinema-form input[type="password"] {
  width: 100%;
  height: 50px;
  padding: 0 13px;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: var(--ink-soft);
  color: var(--white);
}

.cinema-form input:focus { border-color: var(--vermilion-hot); outline: 0; }
.cinema-form__pair { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-split { display: flex; justify-content: space-between; gap: 20px; align-items: center; margin: 18px 0; color: var(--ash); font-size: 11px; }
.form-split label { display: flex; align-items: center; gap: 8px; }
.form-split a,
.terms-check a,
.auth-alternate a { color: var(--white); border-bottom: 1px solid var(--line-strong); }

.terms-check { display: flex !important; align-items: flex-start; gap: 9px; margin: 20px 0 !important; color: var(--ash) !important; font-weight: 400 !important; line-height: 1.5; }
.terms-check input { margin-top: 3px; }

.cinema-form > button {
  width: 100%;
  min-height: 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 18px;
  border: 1px solid var(--vermilion);
  background: var(--vermilion);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.cinema-form > button:hover { background: var(--vermilion-hot); }
.auth-alternate { margin-top: 24px; color: var(--ash); font-size: 12px; }

.account-cinema__hero p { font-family: var(--ui); font-size: 13px; }

.account-alert {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.account-alert strong { font-family: var(--display); font-size: 24px; font-weight: 500; }
.account-alert p { margin: 4px 0 0; color: var(--ash); font-size: 12px; }
.account-alert a { padding-bottom: 4px; border-bottom: 1px solid var(--vermilion); font-size: 12px; white-space: nowrap; }

.account-ledger {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.account-stat { min-height: 250px; padding: 50px 4vw 45px 0; border-right: 1px solid var(--line); }
.account-stat + .account-stat { padding-left: 4vw; }
.account-stat:last-child { border-right: 0; }
.account-stat span { color: var(--ash); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.account-stat strong { display: block; margin-top: 22px; font-family: var(--display); font-size: clamp(42px, 5vw, 72px); font-weight: 400; line-height: .9; }
.account-stat p { margin: 20px 0 0; color: var(--ash); font-size: 11px; }

.account-actions {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 7vw;
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
}
.account-actions > div span,
.legacy-orders header span { color: var(--vermilion-hot); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.account-actions h2,
.legacy-orders h2 { margin: 8px 0 0; font-family: var(--display); font-size: clamp(42px, 5vw, 70px); font-weight: 400; line-height: .95; }
.account-actions nav { border-top: 1px solid var(--line); }
.account-actions nav a { display: flex; justify-content: space-between; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--line); color: var(--mist); }
.account-actions nav a:hover { color: var(--vermilion-hot); }

.legacy-orders { padding-top: 100px; }
.legacy-orders header { margin-bottom: 35px; }
.table-scroll { overflow-x: auto; }
.legacy-orders table { width: 100%; border-collapse: collapse; min-width: 680px; }
.legacy-orders th,
.legacy-orders td { padding: 14px 10px; border-bottom: 1px solid var(--line); text-align: left; font-size: 11px; }
.legacy-orders th { color: var(--ash); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }

.not-found {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 60px) 24px 80px;
  text-align: center;
}
.not-found > div { color: rgba(184, 50, 36, .23); font-family: "Songti SC", "SimSun", serif; font-size: clamp(130px, 22vw, 320px); line-height: .7; }
.not-found > p { margin: 35px 0 8px; color: var(--vermilion-hot); font-size: 11px; font-weight: 700; letter-spacing: .2em; }
.not-found h1 { max-width: 800px; margin: 0; font-family: var(--display); font-size: clamp(52px, 7vw, 96px); font-weight: 400; line-height: .9; }
.not-found > span { margin-top: 20px; color: var(--ash); }
.not-found .command { margin-top: 34px; }

@keyframes hero-breathe {
  from { transform: scale(1.055); }
  to { transform: scale(1.015); }
}

@media (max-width: 1080px) {
  :root { --content: min(100% - 40px, 980px); }
  .site-header { grid-template-columns: 1fr auto; padding: 0 20px; }
  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 22px;
    padding: 40px;
    background: var(--ink);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity .25s ease, transform .35s var(--ease), visibility .25s;
  }
  .site-nav.open { visibility: visible; opacity: 1; transform: none; }
  .site-nav a { font-family: var(--display); font-size: 42px; font-weight: 400; }
  .site-actions { grid-column: 2; }
  .menu-button { display: block; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .home-hero { grid-template-columns: 1fr; padding-right: 30px; padding-left: 30px; }
  .home-hero__veil { width: 70%; }
  .home-hero__copy { align-self: end; margin-bottom: 115px; }
  .hero-current { position: absolute; right: 30px; bottom: 34px; }
  .scroll-cue { display: none; }
  .editorial-heading { grid-template-columns: 1fr auto; }
  .editorial-heading > div { grid-column: 1 / -1; }
  .worlds-intro { grid-template-columns: 1fr 1fr; }
  .worlds-intro > p { grid-column: 1 / -1; }
  .world-row { grid-template-columns: minmax(280px, .85fr) 60px minmax(0, 1.15fr); }
  .character-stage { grid-template-columns: .7fr 1.3fr; }
  .character-stage blockquote { grid-column: 1 / -1; max-width: 720px; }
  .audience-section { grid-template-columns: 90px 1fr; }
  .audience-poll { grid-column: 2; margin-top: 20px; padding: 35px 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .page-hero { grid-template-columns: 1fr; min-height: 0; }
  .series-dossier,
  .character-entry,
  .about-method { grid-template-columns: 1fr 1fr; }
  .about-manifesto { gap: 6vw; }
  .watch-heading,
  .story-vote,
  .discussion-heading { gap: 4vw; }
}

@media (max-width: 720px) {
  :root { --header-h: 66px; --content: calc(100% - 32px); }
  .site-header { padding: 0 16px; }
  .brand-word { font-size: 21px; }
  .brand-seal { width: 31px; height: 35px; font-size: 19px; }
  .account-link { display: none; }
  .home-hero {
    min-height: 92svh;
    display: block;
    padding: calc(var(--header-h) + 64px) 18px 28px;
  }
  .home-hero__image { object-position: 64% center; }
  .home-hero__veil { width: 100%; background: rgba(5, 24, 25, .34); }
  .home-hero__copy { position: absolute; right: 18px; bottom: 145px; left: 18px; width: auto; margin: 0; padding: 0; }
  .hero-chapter { margin-bottom: 15px; font-size: 10px; }
  .hero-chapter::before { width: 32px; }
  .home-hero h1 { max-width: 440px; font-size: clamp(56px, 17vw, 78px); line-height: .84; }
  .hero-deck { max-width: 430px; margin-top: 20px; font-size: 18px; }
  .hero-commands { margin-top: 25px; }
  .hero-commands .command--quiet { display: none; }
  .hero-current { right: 18px; bottom: 24px; left: 18px; width: auto; padding: 15px 0 0; border-left: 0; }
  .hero-current strong { font-size: 19px; }
  .manifesto-band { grid-template-columns: 1fr; gap: 22px; padding: 48px 18px; }
  .latest-section { padding: 88px 0 100px; }
  .editorial-heading { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
  .editorial-heading > a { justify-self: start; }
  .editorial-heading h2 { font-size: 43px; }
  .episode-rail,
  .archive-grid { grid-template-columns: 1fr; }
  .episode-card--featured { grid-column: auto; }
  .release-empty,
  .honest-empty { grid-template-columns: 1fr; min-height: 0; }
  .release-empty__art,
  .honest-empty__media { height: 56vw; min-height: 260px; }
  .release-empty__copy,
  .honest-empty > div:not(.honest-empty__media) { padding: 42px 0; }
  .production-beats li { grid-template-columns: 32px 1fr; }
  .production-beats em { grid-column: 2; }
  .worlds-section { padding: 90px 18px 110px; }
  .worlds-intro { grid-template-columns: 1fr; gap: 22px; margin-bottom: 52px; }
  .worlds-intro h2 { font-size: 54px; }
  .world-row { grid-template-columns: 1fr; min-height: 0; }
  .world-row__image { height: 64vw; min-height: 250px; }
  .world-row__number { display: none; }
  .world-row__body { padding: 36px 0 48px; }
  .world-row__body h3 { font-size: 50px; }
  .character-stage { grid-template-columns: 1fr; min-height: 0; padding: 90px 0; }
  .character-stage__title { padding: 0; }
  .character-stage__portrait { height: 118vw; max-height: 630px; }
  .character-stage blockquote { grid-column: auto; font-size: 31px; }
  .audience-section { grid-template-columns: 1fr; padding: 85px 0 100px; }
  .audience-seal { width: 68px; height: 76px; font-size: 38px; }
  .audience-copy h2 { font-size: 47px; }
  .audience-poll { grid-column: auto; padding-left: 0; }
  .final-invitation { min-height: 500px; }
  .final-invitation h2 { font-size: 58px; }
  .site-footer { grid-template-columns: 70px 1fr; padding: 54px 18px 30px; }
  .footer-mark { width: 58px; height: 66px; font-size: 34px; }
  .site-footer nav { grid-column: 2; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 25px; }
  .footer-legal { grid-column: 1 / -1; margin-top: 32px; }
  .page-shell { padding-top: calc(var(--header-h) + 58px); }
  .page-hero { gap: 28px; padding-bottom: 44px; }
  .page-hero h1 { font-size: 62px; }
  .page-hero p { font-size: 19px; }
  .series-dossiers,
  .character-index { margin-top: 64px; padding-top: 0; }
  .series-dossier,
  .character-entry,
  .about-manifesto,
  .about-method { grid-template-columns: 1fr; min-height: 0; }
  .series-dossier:nth-child(even) .series-dossier__image,
  .character-entry:nth-child(even) .character-entry__image { order: 0; }
  .series-dossier__image,
  .character-entry__image { min-height: 310px; height: 74vw; }
  .series-dossier__body,
  .character-entry__body { padding: 46px 0 62px; }
  .series-dossier__body h2,
  .character-entry__body h2 { font-size: 52px; }
  .series-dossier dl > div { grid-template-columns: 120px 1fr; }
  .about-manifesto { padding: 90px 0; }
  .about-manifesto h2 { font-size: 52px; }
  .about-method > img { height: 62vw; min-height: 280px; }
  .about-method > div { padding: 50px 0; }
  .about-method li { grid-template-columns: 75px 1fr; }
  .watch-shell { padding-top: calc(var(--header-h) + 30px); }
  .watch-heading,
  .story-vote,
  .discussion-heading { grid-template-columns: 1fr; }
  .watch-heading h1 { font-size: 53px; }
  .cinema-player { width: calc(100% + 32px); margin-left: -16px; }
  .watch-note { grid-template-columns: 90px 1fr; }
  .story-vote { padding: 78px 0; }
  .story-vote__intro { gap: 16px; }
  .story-vote__intro > span { width: 54px; height: 60px; font-size: 30px; }
  .story-vote__intro h2,
  .discussion-heading h2 { font-size: 43px; }
  .discussion { padding: 82px 0 60px; }
  .comment-gate { grid-template-columns: 1fr; gap: 18px; }
  .comment-compose > div { align-items: flex-start; flex-direction: column; }
  .comment-item { grid-template-columns: 1fr; gap: 18px; }
  .comment-item > em { grid-column: auto; }
  .report-form { justify-self: start; }
  .watch-related header { grid-template-columns: 1fr; }
  .auth-cinema { grid-template-columns: 1fr; }
  .auth-cinema__image { position: absolute; inset: 0; min-height: 100svh; opacity: .28; }
  .auth-cinema__panel { position: relative; z-index: 1; width: calc(100% - 36px); margin: 62px auto; padding: 70px 0; }
  .cinema-form__pair { grid-template-columns: 1fr; gap: 0; }
  .account-alert { align-items: flex-start; flex-direction: column; }
  .account-ledger { grid-template-columns: 1fr; }
  .account-stat,
  .account-stat + .account-stat { min-height: 0; padding: 35px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .account-stat:last-child { border-bottom: 0; }
  .account-actions { grid-template-columns: 1fr; padding: 75px 0; }
}

/* Locked cast, story-frame reservations and public world dossier */
.duel-poster__pending {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 70px minmax(0, 1fr);
  align-items: end;
  gap: 0;
  padding: 8% 4% 185px;
  background: #cbd4cc;
}

.duel-poster__pending::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(13, 27, 27, .28);
}

.duel-poster__pending img {
  width: 100%;
  height: min(66vh, 700px);
  object-fit: contain;
  object-position: center bottom;
}

.duel-poster__pending > span {
  align-self: center;
  color: var(--vermilion);
  font-family: var(--display);
  font-size: 46px;
  text-align: center;
}

.canon-empty__image--pending {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: clamp(34px, 6vw, 90px);
  background: #cbd4cc;
  color: var(--paper-ink);
}

.canon-empty__image--pending > span {
  align-self: start;
  color: var(--vermilion);
  font-family: "Songti SC", "SimSun", serif;
  font-size: 54px;
}

.canon-empty__image--pending strong {
  font-family: var(--display);
  font-size: clamp(44px, 6vw, 86px);
  font-weight: 450;
  line-height: .75;
}

.canon-empty__image--pending small {
  grid-column: 1 / -1;
  padding-top: 16px;
  border-top: 1px solid rgba(13, 27, 27, .28);
  font-size: 10px;
  text-transform: uppercase;
}

.seat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(13, 27, 27, .24);
  border: 1px solid rgba(13, 27, 27, .24);
}

.seat-card {
  position: relative;
  min-width: 0;
  min-height: 520px;
  overflow: hidden;
  background: #cbd4cc;
}

.seat-card__figure {
  position: absolute;
  inset: 18px 12px 112px;
}

.seat-card__figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.seat-card > div:last-child {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 112px;
  padding: 17px 20px;
  background: var(--ink);
  color: var(--white);
}

.seat-card small {
  display: block;
  color: var(--vermilion-hot);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.seat-card strong {
  display: block;
  margin-top: 3px;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 520;
  line-height: 1;
}

.seat-card > div:last-child > span {
  display: block;
  margin-top: 7px;
  color: var(--ash);
  font-size: 10px;
}

.codex-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 34px;
  margin-top: 34px;
}

.codex-links a {
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(13, 27, 27, .4);
  color: #303a36;
  font-size: 11px;
  font-weight: 800;
}

.home-story-frames,
.story-frames {
  width: var(--content);
  margin: 0 auto;
  padding: 125px 0 145px;
}

.home-story-frames > header,
.story-frames > header {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) minmax(260px, .46fr);
  gap: 4vw;
  align-items: end;
  margin-bottom: 58px;
}

.home-story-frames > header > div,
.story-frames > header > div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.home-story-frames > header > div > span,
.story-frames > header > div > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 54px;
  border: 2px solid var(--vermilion);
  color: var(--vermilion-hot);
  font-family: "Songti SC", "SimSun", serif;
  font-size: 23px;
}

.home-story-frames > header > div p,
.story-frames > header > div p {
  margin: 0;
  color: var(--ash);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.home-story-frames h2,
.story-frames h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(43px, 5vw, 74px);
  font-weight: 450;
  line-height: .94;
  text-wrap: balance;
}

.home-story-frames > header > p,
.story-frames > header > p {
  max-width: 52ch;
  margin: 0;
  color: var(--ash);
  font-size: 12px;
}

.story-frame-grid {
  border-top: 1px solid var(--line);
}

.story-frame-placeholder {
  min-height: 220px;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) minmax(180px, .34fr);
  gap: 38px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.story-frame-placeholder > span {
  color: var(--vermilion-hot);
  font-family: var(--display);
  font-size: 38px;
}

.story-frame-placeholder small {
  color: var(--ash);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.story-frame-placeholder h3 {
  margin: 8px 0 0;
  font-family: var(--display);
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 500;
  line-height: 1;
}

.story-frame-placeholder p {
  max-width: 65ch;
  margin: 12px 0 0;
  color: var(--ash);
  font-size: 12px;
}

.story-frame-placeholder > b {
  min-height: 150px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: #566360;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  line-height: .85;
  text-align: center;
}

.characters-page .character-entry__image {
  background: #cbd4cc;
}

.characters-page .character-entry__image img,
.characters-page .character-entry:nth-child(2) .character-entry__image img,
.characters-page .character-entry:nth-child(3) .character-entry__image img {
  width: 100%;
  height: 100%;
  padding: 24px 18px 0;
  object-fit: contain;
  object-position: center bottom;
  filter: none;
  transform: none;
}

.character-cost {
  margin: 34px 0 0;
}

.character-cost > div {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 22px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.character-cost > div:last-child {
  border-bottom: 1px solid var(--line);
}

.character-cost dt {
  color: var(--ash);
  font-size: 10px;
}

.character-cost dd {
  margin: 0;
  color: var(--mist);
  font-size: 12px;
}

.world-shell {
  padding-top: var(--header-h);
}

.world-hero {
  min-height: calc(88svh - var(--header-h));
  display: grid;
  grid-template-columns: minmax(330px, .68fr) minmax(0, 1.32fr);
  overflow: hidden;
  background: var(--paper);
  color: var(--paper-ink);
}

.world-hero__copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 70px 4vw 70px max(32px, calc((100vw - 1400px) / 2));
}

.world-hero__copy > p,
.world-law header > p,
.world-cast header > p,
.canon-boundary > div > p {
  margin: 0;
  color: var(--vermilion);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.world-hero__copy h1 {
  max-width: 620px;
  margin: 18px 0 0;
  font-family: var(--display);
  font-size: clamp(68px, 8.5vw, 128px);
  font-weight: 450;
  line-height: .78;
}

.world-hero__copy > div {
  margin-top: 18px;
  color: var(--vermilion);
  font-family: "Songti SC", "SimSun", serif;
  font-size: 27px;
}

.world-hero__copy > span {
  display: block;
  max-width: 54ch;
  margin-top: 28px;
  color: #4e5b56;
  font-size: 13px;
}

.world-hero__seats {
  position: relative;
  min-height: 620px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: end;
  overflow: hidden;
  background: #cbd4cc;
}

.world-hero__seats::after {
  content: "ALL SEATS LOCKED";
  position: absolute;
  right: 24px;
  bottom: 20px;
  padding: 8px 10px;
  background: var(--ink);
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
}

.world-hero__seats img {
  width: 165%;
  max-width: none;
  height: 78%;
  margin-left: -32%;
  object-fit: contain;
  object-position: center bottom;
}

.world-premise,
.world-law,
.world-cast,
.canon-boundary {
  width: var(--content);
  margin: 0 auto;
}

.world-premise {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) minmax(280px, .54fr);
  gap: 4vw;
  align-items: end;
  padding: 125px 0;
}

.world-premise > div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.world-premise > div > span,
.canon-boundary > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 54px;
  border: 2px solid var(--vermilion);
  color: var(--vermilion-hot);
  font-family: "Songti SC", "SimSun", serif;
  font-size: 23px;
}

.world-premise > div p {
  margin: 0;
  color: var(--ash);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.world-premise h2,
.world-law h2,
.world-cast h2,
.canon-boundary h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(43px, 5vw, 74px);
  font-weight: 450;
  line-height: .94;
  text-wrap: balance;
}

.world-premise > p {
  margin: 0;
  color: var(--ash);
  font-size: 13px;
}

.world-law {
  padding: 115px 0 135px;
  border-top: 1px solid var(--line);
}

.world-law header,
.world-cast > header {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) auto;
  gap: 4vw;
  align-items: end;
  margin-bottom: 58px;
}

.world-law__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.world-law__grid article {
  min-height: 310px;
  padding: 30px 26px;
  border-right: 1px solid var(--line);
}

.world-law__grid article:last-child {
  border-right: 0;
}

.world-law__grid article > span {
  color: var(--vermilion-hot);
  font-family: var(--display);
  font-size: 25px;
}

.world-law__grid article > div {
  margin-top: 50px;
  color: var(--vermilion-hot);
  font-family: "Songti SC", "SimSun", serif;
  font-size: 20px;
}

.world-law__grid h3,
.world-cast__rail h3 {
  margin: 7px 0 0;
  font-family: var(--display);
  font-size: 34px;
  font-weight: 520;
  line-height: 1;
}

.world-law__grid p,
.world-cast__rail p {
  margin: 18px 0 0;
  color: var(--ash);
  font-size: 12px;
}

.world-cast {
  padding: 115px 0 135px;
  border-top: 1px solid var(--line);
}

.world-cast > header a {
  padding-bottom: 5px;
  border-bottom: 1px solid var(--line-strong);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.world-cast__rail {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.world-cast__rail article {
  min-width: 0;
  padding: 0 16px 26px;
  background: var(--ink-soft);
}

.world-cast__rail img {
  width: calc(100% + 32px);
  height: 300px;
  margin-left: -16px;
  object-fit: contain;
  object-position: center bottom;
  background: #cbd4cc;
}

.world-cast__rail article > span {
  display: block;
  margin-top: 18px;
  color: var(--vermilion-hot);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.world-cast__rail h3 {
  font-size: 24px;
  overflow-wrap: anywhere;
}

.canon-boundary {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) auto;
  gap: 4vw;
  align-items: center;
  padding: 100px 0 130px;
  border-top: 1px solid var(--line);
}

.canon-boundary h2 {
  max-width: 820px;
  margin-top: 10px;
}

.canon-boundary > a {
  padding-bottom: 5px;
  border-bottom: 1px solid var(--line-strong);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.series-dossier__image img,
.honest-empty__media img,
.about-method > img,
.auth-cinema__image img {
  filter: none;
}

@media (max-width: 1080px) {
  .seat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-story-frames > header,
  .story-frames > header,
  .world-premise,
  .world-law header,
  .world-cast > header { grid-template-columns: 1fr 1fr; }
  .home-story-frames > header > div,
  .story-frames > header > div,
  .world-premise > div,
  .world-law header > p,
  .world-cast header > p { grid-column: 1 / -1; }
  .world-hero { grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr); }
  .world-law__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .world-law__grid article:nth-child(2) { border-right: 0; }
  .world-law__grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .world-cast__rail { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .duel-poster__pending {
    grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr);
    padding: 45px 0 150px;
  }
  .duel-poster__pending img { height: 48vh; }
  .duel-poster__pending > img:last-child {
    transform: translateX(-22%);
  }
  .duel-poster__pending > span { font-size: 31px; }
  .canon-empty__image--pending { grid-template-columns: 1fr; gap: 12px; padding: 28px; }
  .canon-empty__image--pending > span { font-size: 38px; }
  .canon-empty__image--pending strong { font-size: 52px; }
  .canon-empty__image--pending small { grid-column: auto; }
  .seat-grid { grid-template-columns: 1fr; }
  .seat-card { min-height: 520px; }
  .codex-links { justify-content: flex-start; }
  .home-story-frames,
  .story-frames { padding: 88px 0 100px; }
  .home-story-frames > header,
  .story-frames > header,
  .world-premise,
  .world-law header,
  .world-cast > header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 42px; }
  .home-story-frames > header > div,
  .story-frames > header > div,
  .world-premise > div,
  .world-law header > p,
  .world-cast header > p { grid-column: auto; }
  .home-story-frames h2,
  .story-frames h2,
  .world-premise h2,
  .world-law h2,
  .world-cast h2,
  .canon-boundary h2 { font-size: 47px; }
  .story-frame-placeholder {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
    padding: 28px 0;
  }
  .story-frame-placeholder > b {
    grid-column: 1 / -1;
    min-height: 190px;
  }
  .character-cost > div { grid-template-columns: 105px minmax(0, 1fr); }
  .world-hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }
  .world-hero__copy { padding: 72px 18px 58px; }
  .world-hero__copy h1 { font-size: 76px; }
  .world-hero__seats { min-height: 420px; }
  .world-hero__seats img { width: 200%; margin-left: -50%; height: 86%; }
  .world-premise { padding: 88px 0; }
  .world-law,
  .world-cast { padding: 88px 0 100px; }
  .world-law__grid { grid-template-columns: 1fr; }
  .world-law__grid article,
  .world-law__grid article:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .world-law__grid article:last-child { border-bottom: 0; }
  .world-law__grid article > div { margin-top: 26px; }
  .world-cast__rail { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .world-cast__rail img { height: 240px; }
  .world-cast__rail h3 { font-size: 20px; }
  .world-cast__rail p { font-size: 10px; }
  .canon-boundary {
    grid-template-columns: 60px 1fr;
    gap: 22px;
    padding: 78px 0 95px;
  }
  .canon-boundary > a { grid-column: 2; justify-self: start; white-space: normal; }
}

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