/* ============================================================
   THE COLLECTOR — main.css
   Night, fog, porcelain, and one amber lantern.
   ============================================================ */

:root {
  --night: #0B0E14;
  --night-2: #131720;
  --fog: #6E7787;
  --fog-light: #9AA3B2;
  --porcelain: #EDEAE4;
  --porcelain-dim: #C9C3B8;
  --amber: #E8A33D;
  --amber-hot: #FFC25E;
  --blood: #7A1E1E;
  --brass: #8B6914;
  --dawn: #D9B48A;

  --font-display: 'IM Fell English', 'Iowan Old Style', Georgia, serif;
  --font-body: 'Crimson Pro', Georgia, 'Times New Roman', serif;
  --font-label: 'Cinzel', 'Times New Roman', serif;

  --nav-h: 72px;
  --max-w: 1120px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--porcelain);
  background:
    linear-gradient(180deg,
      var(--night) 0%,
      var(--night) 55%,
      #100F16 78%,
      #1A1410 92%,
      #221A12 100%);
  background-color: var(--night);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

::selection { background: rgba(232, 163, 61, 0.28); color: var(--porcelain); }

/* ---------- Fixed atmosphere: film grain + vignette ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 91;
  pointer-events: none;
  background: radial-gradient(ellipse 120% 90% at 50% 42%, transparent 55%, rgba(3, 4, 8, 0.55) 100%);
}

/* ---------- Typography ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
  color: var(--porcelain);
}

h2 {
  font-size: clamp(2.1rem, 4.4vw, 3.2rem);
  letter-spacing: 0.01em;
  margin-bottom: 1.4rem;
}

h3 { font-size: 1.45rem; margin-bottom: 0.6rem; }

.eyebrow {
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--fog-light);
  margin-bottom: 0.9rem;
}

.eyebrow.small { font-size: 0.68rem; margin-bottom: 0.5rem; }

.lede {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.7;
  color: var(--porcelain-dim);
  max-width: 62ch;
}

em { color: var(--porcelain); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95rem 1.7rem;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: box-shadow 0.4s var(--ease-out), background-color 0.4s, color 0.4s, border-color 0.4s;
}

.btn-amber {
  color: var(--night);
  background: linear-gradient(180deg, var(--amber-hot), var(--amber));
  border-color: var(--amber);
  box-shadow: 0 0 24px rgba(232, 163, 61, 0.28);
}

.btn-amber[disabled],
.btn-amber[aria-disabled="true"] {
  cursor: not-allowed;
  color: rgba(11, 14, 20, 0.72);
  background: linear-gradient(180deg, rgba(232, 163, 61, 0.5), rgba(232, 163, 61, 0.38));
  border-color: rgba(232, 163, 61, 0.4);
  box-shadow: 0 0 12px rgba(232, 163, 61, 0.12);
  filter: saturate(0.75);
}

.btn-ghost {
  color: var(--porcelain);
  background: transparent;
  border-color: rgba(237, 234, 228, 0.28);
}

.btn-ghost:hover {
  border-color: var(--amber);
  color: var(--amber-hot);
  box-shadow: 0 0 18px rgba(232, 163, 61, 0.18);
}

.cta-wrap { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 0.45rem; }

.cta-note {
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fog);
  padding-left: 0.2rem;
}

/* ---------- Focus ---------- */
:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Reveal on scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

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

/* ============================================================
   NAV
   ============================================================ */
#site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(11, 14, 20, 0.72);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(110, 119, 135, 0.18);
}

.nav-inner {
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.18rem;
  font-family: var(--font-label);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--porcelain);
  text-decoration: none;
  line-height: 1.05;
}

.wordmark-main {
  display: block;
  white-space: nowrap;
}

.wordmark-sub {
  display: block;
  font-size: 0.62em;
  font-weight: 600;
  letter-spacing: 0.38em;
  color: rgba(225, 189, 97, 0.9);
  white-space: nowrap;
}

.wordmark:hover { color: var(--amber-hot); }
.wordmark:hover .wordmark-sub { color: var(--amber-hot); }

#nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

#nav-links > a {
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fog-light);
  text-decoration: none;
  transition: color 0.3s;
  white-space: nowrap;
}

#nav-links > a:hover { color: var(--amber-hot); }

.nav-cta { display: inline-flex; flex-direction: column; align-items: center; gap: 0.2rem; }
.nav-cta .btn { padding: 0.6rem 1.1rem; font-size: 0.68rem; }
.nav-cta .cta-note { font-size: 0.55rem; padding-left: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(237, 234, 228, 0.22);
  border-radius: 2px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 1px;
  background: var(--porcelain);
  transition: transform 0.35s var(--ease-out), opacity 0.3s;
}

#site-nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#site-nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
#site-nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 3rem) 1.5rem 6rem;
  background:
    radial-gradient(ellipse 90% 60% at 50% 118%, rgba(110, 119, 135, 0.14), transparent 60%),
    linear-gradient(180deg, #070910 0%, var(--night) 45%, var(--night-2) 100%);
}

.hero-content { position: relative; z-index: 5; max-width: 860px; }

.hero-title {
  font-size: clamp(3.2rem, 10vw, 7.4rem);
  letter-spacing: 0.02em;
  line-height: 0.92;
  margin: 0.4rem 0 1.15rem;
  text-shadow: 0 0 60px rgba(11, 14, 20, 0.9);
}

.hero-title-kicker {
  display: block;
  margin: 0 0 0.55rem;
  font-family: var(--font-label);
  font-size: clamp(0.7rem, 1.6vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(225, 189, 97, 0.92);
}

.hero-title-chapter {
  display: block;
}

.hero-subtitle {
  margin: 0 0 1.2rem;
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(225, 189, 97, 0.88);
}

.tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2.8vw, 1.8rem);
  color: var(--porcelain);
  max-width: 34ch;
  margin: 0 auto 1.1rem;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--fog-light);
  max-width: 56ch;
  margin: 0 auto 2.4rem;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}

/* Moon */
.moon {
  position: absolute;
  top: 12%;
  right: 14%;
  width: clamp(90px, 12vw, 160px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 34%, #F4EFE4 0%, #D9D2C2 55%, #B4AC9B 100%);
  box-shadow:
    0 0 60px 22px rgba(237, 234, 228, 0.10),
    0 0 160px 70px rgba(237, 234, 228, 0.05);
  opacity: 0.85;
  z-index: 1;
}

/* Skyline */
.skyline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: clamp(120px, 22vw, 220px);
  z-index: 2;
}

.skyline-window { animation: lantern-flicker 5.5s ease-in-out infinite; }

/* Fog banks */
.fog {
  position: absolute;
  left: -25%;
  right: -25%;
  pointer-events: none;
  z-index: 3;
}

.fog::before,
.fog::after {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
}

.fog-back {
  bottom: 4%;
  height: 34%;
  background:
    radial-gradient(ellipse 40% 90% at 18% 80%, rgba(110, 119, 135, 0.16), transparent 70%),
    radial-gradient(ellipse 45% 100% at 55% 90%, rgba(110, 119, 135, 0.12), transparent 70%),
    radial-gradient(ellipse 38% 80% at 86% 75%, rgba(110, 119, 135, 0.15), transparent 70%);
  filter: blur(18px);
  animation: fog-drift 70s ease-in-out infinite alternate;
}

.fog-mid {
  bottom: -4%;
  height: 30%;
  background:
    radial-gradient(ellipse 42% 100% at 30% 85%, rgba(154, 163, 178, 0.16), transparent 70%),
    radial-gradient(ellipse 40% 90% at 72% 90%, rgba(154, 163, 178, 0.13), transparent 70%);
  filter: blur(26px);
  z-index: 4;
  animation: fog-drift 48s ease-in-out infinite alternate-reverse;
}

.fog-front {
  bottom: -10%;
  height: 26%;
  background:
    radial-gradient(ellipse 50% 110% at 45% 100%, rgba(154, 163, 178, 0.20), transparent 72%),
    radial-gradient(ellipse 36% 90% at 85% 95%, rgba(110, 119, 135, 0.18), transparent 70%);
  filter: blur(34px);
  z-index: 6;
  animation: fog-drift 36s ease-in-out infinite alternate;
}

/* Amber lantern glow, low center */
.hero-glow {
  position: absolute;
  bottom: 8%;
  left: 50%;
  width: clamp(220px, 30vw, 420px);
  aspect-ratio: 1.6;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at 50% 100%, rgba(232, 163, 61, 0.20), rgba(232, 163, 61, 0.05) 55%, transparent 75%);
  filter: blur(10px);
  z-index: 5;
  animation: lantern-flicker 6.5s ease-in-out infinite;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 7;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.scroll-cue-text {
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--fog-light);
}

.scroll-cue-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, var(--amber), transparent);
  animation: cue-fall 2.4s ease-in-out infinite;
  transform-origin: top;
}

/* ============================================================
   SECTIONS — shared
   ============================================================ */
.section { position: relative; padding: clamp(5rem, 11vw, 9rem) 1.5rem; }

.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-inner.narrow { max-width: 720px; text-align: center; }
.section-inner.narrow .lede { margin-left: auto; margin-right: auto; }

.prose { max-width: 62ch; margin-bottom: 2.6rem; }
.prose p { color: var(--porcelain-dim); }
.prose p + p { margin-top: 1.1rem; }
.prose-p { max-width: 62ch; color: var(--porcelain-dim); margin-bottom: 2.6rem; }

/* Alternating section tint */
#world, #mechanics, #community, #signup {
  background: linear-gradient(180deg, transparent, rgba(19, 23, 32, 0.55) 18%, rgba(19, 23, 32, 0.55) 82%, transparent);
}

/* ---------- Cards ---------- */
.card-row { display: grid; gap: 1.4rem; margin-top: 2.8rem; }
.card-row.three { grid-template-columns: repeat(3, 1fr); }
.card-row.two { grid-template-columns: repeat(2, 1fr); }

.card {
  background: rgba(19, 23, 32, 0.72);
  border: 1px solid rgba(110, 119, 135, 0.22);
  border-radius: 3px;
  padding: 2rem 1.8rem;
  transition: border-color 0.4s, transform 0.5s var(--ease-out);
}

.card:hover { border-color: rgba(232, 163, 61, 0.35); transform: translateY(-3px); }

.card p:last-child { color: var(--porcelain-dim); }

.card-num {
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--brass);
  margin-bottom: 1.1rem;
}

/* ---------- Pull quotes ---------- */
.tone-quote {
  border-left: 2px solid var(--amber);
  padding: 0.4rem 0 0.4rem 1.6rem;
  margin: 2.4rem 0;
  max-width: 56ch;
}

.tone-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  line-height: 1.5;
  color: var(--porcelain);
}

.tone-quote.small p { font-size: clamp(1.15rem, 2vw, 1.4rem); }

/* ---------- Voice lines ---------- */
.voice-lines {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem 3rem;
  margin: 3rem 0;
}

.voice-line {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--fog-light);
}

.voice-line::before {
  content: "— he says";
  display: block;
  font-family: var(--font-label);
  font-style: normal;
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blood);
  margin-bottom: 0.4rem;
}

/* ---------- Endings ---------- */
.endings { margin-top: 3.4rem; }

.ending h3 { font-size: 1.9rem; letter-spacing: 0.08em; }

.ending-dawn { border-top: 2px solid var(--dawn); }
.ending-dawn h3 { color: var(--dawn); }

.ending-collection { border-top: 2px solid var(--blood); }
.ending-collection h3 { color: #B23A3A; }

/* ============================================================
   FACTIONS
   ============================================================ */
.versus {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  margin-top: 2.8rem;
}

.versus-col {
  padding: 2.6rem 2.4rem;
  background: rgba(19, 23, 32, 0.72);
  border: 1px solid rgba(110, 119, 135, 0.22);
  border-radius: 3px;
}

.versus-four { border-top: 2px solid var(--fog-light); }
.versus-one { border-top: 2px solid var(--blood); background: rgba(19, 23, 32, 0.85); }

.versus-col h3 { font-size: 2rem; letter-spacing: 0.04em; }
.versus-one h3 { color: #C45A5A; }

.versus-sub {
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fog);
  margin-bottom: 1.6rem;
}

.versus-col ul { list-style: none; }
.versus-col li {
  padding: 0.55rem 0 0.55rem 1.4rem;
  position: relative;
  color: var(--porcelain-dim);
}

.versus-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--fog);
}

.versus-one li::before { background: var(--blood); }

.versus-line {
  margin-top: 1.6rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--porcelain);
}

.versus-line.blood { color: #C45A5A; }

/* ============================================================
   ROSTER
   ============================================================ */
.whispers {
  margin: 1.4rem 0 0;
  color: var(--fog);
  font-size: 1rem;
}

.whispers em { color: var(--fog-light); margin-right: 1.6rem; }

.roster-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}

.roster-card {
  display: flex;
  flex-direction: column;
  text-align: left;
  background: rgba(19, 23, 32, 0.72);
  border: 1px solid rgba(110, 119, 135, 0.22);
  border-radius: 3px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
  transition: border-color 0.4s, transform 0.5s var(--ease-out), box-shadow 0.4s;
}

.roster-card:hover {
  border-color: rgba(232, 163, 61, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(3, 4, 8, 0.5);
}

.roster-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
  background: var(--night-2);
  filter: saturate(0.88) brightness(0.94);
  transition: filter 0.5s;
}

.roster-card:hover img { filter: saturate(1) brightness(1.02); }

.roster-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--porcelain);
  padding: 1rem 1.1rem 0.2rem;
}

.roster-fantasy {
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--fog-light);
  padding: 0 1.1rem 1.2rem;
}

.roster-card-collector { border-color: rgba(122, 30, 30, 0.55); }
.roster-card-collector:hover { border-color: #B23A3A; box-shadow: 0 12px 40px rgba(122, 30, 30, 0.25); }
.roster-card-collector .roster-name { color: #C45A5A; }

.cast-figure { margin-top: 3.6rem; }

.cast-figure img {
  width: 100%;
  border: 1px solid rgba(110, 119, 135, 0.22);
  border-radius: 3px;
  background: var(--night-2);
}

.cast-figure figcaption {
  margin-top: 0.8rem;
  font-size: 0.88rem;
  font-style: italic;
  color: var(--fog);
  text-align: center;
}

/* ============================================================
   MECHANICS
   ============================================================ */
.hud-line {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber-hot);
  border: 1px solid rgba(232, 163, 61, 0.35);
  background: rgba(11, 14, 20, 0.7);
  padding: 0.7rem 1.2rem;
  border-radius: 2px;
  margin: 0.6rem 0 0;
  box-shadow: 0 0 20px rgba(232, 163, 61, 0.1);
}

.hud-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 10px var(--amber);
  animation: lantern-flicker 4s ease-in-out infinite;
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 2.6rem;
}

.tile {
  background: rgba(19, 23, 32, 0.72);
  border: 1px solid rgba(110, 119, 135, 0.22);
  border-radius: 3px;
  padding: 1.9rem 1.7rem;
  transition: border-color 0.4s;
}

.tile:hover { border-color: rgba(232, 163, 61, 0.3); }

.tile h3 { font-size: 1.25rem; }
.tile p { font-size: 1rem; color: var(--porcelain-dim); }

/* ============================================================
   ROADMAP / THE MAKING
   ============================================================ */
.making {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 3rem;
  margin-top: 1.6rem;
  align-items: start;
}

.timeline { list-style: none; margin-top: 1rem; }

.timeline li {
  position: relative;
  padding: 0.85rem 0 0.85rem 2rem;
  border-left: 1px solid rgba(110, 119, 135, 0.3);
  color: var(--fog-light);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 1.35rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--night);
  border: 1px solid var(--fog);
}

.timeline li.done { color: var(--porcelain-dim); }
.timeline li.done::before { background: var(--fog-light); border-color: var(--fog-light); }

.timeline li.current { color: var(--porcelain); }
.timeline li.current::before {
  background: var(--amber);
  border-color: var(--amber);
  box-shadow: 0 0 12px rgba(232, 163, 61, 0.6);
  animation: lantern-flicker 4.5s ease-in-out infinite;
}

.milestone { font-size: 1.05rem; }

.milestone-state {
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fog);
  white-space: nowrap;
}

.timeline li.current .milestone-state { color: var(--amber-hot); }

.facts {
  background: rgba(19, 23, 32, 0.8);
  border: 1px solid rgba(139, 105, 20, 0.4);
  border-radius: 3px;
  padding: 1.9rem 1.7rem;
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.facts h3 {
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.2rem;
}

.facts ul { list-style: none; }

.facts li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(110, 119, 135, 0.15);
  color: var(--porcelain-dim);
  font-size: 1.02rem;
}

.facts li:last-child { border-bottom: 0; }

/* ============================================================
   COMMUNITY
   ============================================================ */
.community-cta { margin-top: 2.2rem; align-items: center; }
.community-cta .cta-note { padding-left: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  border-top: 1px solid rgba(110, 119, 135, 0.18);
  padding: 4rem 1.5rem 5rem;
  background:
    radial-gradient(ellipse 70% 120% at 50% 130%, rgba(217, 180, 138, 0.08), transparent 65%);
}

.footer-inner { max-width: var(--max-w); margin: 0 auto; text-align: center; }

.footer-wordmark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.22rem;
  font-family: var(--font-label);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--porcelain);
  margin-bottom: 1.2rem;
  line-height: 1.05;
}

.footer-wordmark .wordmark-sub {
  font-size: 0.62em;
  letter-spacing: 0.38em;
  color: rgba(225, 189, 97, 0.9);
}

.footer-nav { margin-bottom: 2.2rem; }

.footer-nav a {
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--fog-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(232, 163, 61, 0.4);
  padding-bottom: 0.2rem;
}

.footer-nav a:hover { color: var(--amber-hot); }

.footer-warning {
  max-width: 56ch;
  margin: 0 auto 1.6rem;
  font-size: 0.92rem;
  color: var(--fog-light);
  border: 1px solid rgba(110, 119, 135, 0.25);
  border-radius: 3px;
  padding: 0.9rem 1.3rem;
}

.footer-fine { font-size: 0.85rem; color: var(--fog); margin-top: 0.5rem; }

/* ============================================================
   ROSTER MODAL
   ============================================================ */
#roster-modal {
  border: 1px solid rgba(110, 119, 135, 0.35);
  border-radius: 4px;
  background: var(--night-2);
  color: var(--porcelain);
  padding: 0;
  max-width: min(680px, 92vw);
  width: 680px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7), 0 0 60px rgba(232, 163, 61, 0.06);
}

#roster-modal::backdrop {
  background: rgba(5, 7, 11, 0.78);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.modal-body {
  display: block;
  padding: 3.2rem 3rem 2.8rem;
  position: relative;
  background:
    radial-gradient(circle at 88% 12%, rgba(217, 166, 46, 0.1), transparent 15rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.018), transparent 45%);
}

.modal-body::before {
  content: '';
  display: block;
  width: 3.5rem;
  height: 1px;
  margin-bottom: 1.5rem;
  background: var(--amber);
  box-shadow: 0 0 18px rgba(217, 166, 46, 0.35);
}

#modal-close {
  position: absolute;
  top: 0.7rem;
  right: 0.9rem;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(237, 234, 228, 0.25);
  border-radius: 2px;
  color: var(--porcelain);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
}

#modal-close:hover { color: var(--amber-hot); border-color: var(--amber); }

#modal-name { font-size: clamp(2.8rem, 7vw, 4.6rem); line-height: 0.9; margin-bottom: 0.65rem; }

.modal-role {
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.2rem;
}

.modal-fantasy {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  color: var(--porcelain-dim);
  max-width: 30ch;
  margin-bottom: 2rem;
}

.modal-abilities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(217, 166, 46, 0.18);
  background: rgba(217, 166, 46, 0.18);
}

.modal-ability {
  min-height: 9rem;
  padding: 1.35rem;
  background: rgba(3, 8, 13, 0.78);
}

.modal-label {
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fog);
  margin-bottom: 0.25rem;
}

#modal-passive, #modal-active { color: var(--porcelain-dim); margin-bottom: 0; }

.modal-disclaimer {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--fog);
  margin-top: 0.6rem;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fog-drift {
  0%   { transform: translateX(-4%) translateY(0); }
  50%  { transform: translateX(2%) translateY(-2%); }
  100% { transform: translateX(5%) translateY(1%); }
}

@keyframes lantern-flicker {
  0%, 100% { opacity: 1; }
  42%      { opacity: 0.82; }
  46%      { opacity: 0.95; }
  58%      { opacity: 0.7; }
  64%      { opacity: 0.92; }
  80%      { opacity: 0.86; }
}

@keyframes cue-fall {
  0%   { transform: scaleY(0); opacity: 0; }
  35%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1) translateY(12px); opacity: 0; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .roster-grid { grid-template-columns: repeat(3, 1fr); }
  .tile-grid { grid-template-columns: repeat(2, 1fr); }
  .making { grid-template-columns: 1fr; }
  .facts { position: static; }
}

@media (max-width: 820px) {
  .nav-toggle { display: flex; }

  #nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 1rem 2rem 2rem;
    background: rgba(11, 14, 20, 0.97);
    border-bottom: 1px solid rgba(110, 119, 135, 0.25);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out), visibility 0.35s;
  }

  #site-nav.nav-open #nav-links {
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  #nav-links > a { padding: 0.85rem 0; font-size: 0.78rem; width: 100%; }
  .nav-cta { margin-top: 1rem; align-items: flex-start; }

  .card-row.three, .card-row.two { grid-template-columns: 1fr; }
  .versus { grid-template-columns: 1fr; }
  .voice-lines { grid-template-columns: 1fr; }
  .roster-grid { grid-template-columns: repeat(2, 1fr); }
  .modal-body { padding: 2.4rem 1.8rem 1.8rem; }

  .moon { right: 8%; top: 10%; opacity: 0.7; }
}

@media (max-width: 520px) {
  body { font-size: 1.05rem; }
  .roster-grid { grid-template-columns: 1fr; }
  .tile-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .cta-wrap { align-items: center; }
  .cta-note { padding-left: 0; }
}

/* ============================================================
   REDUCED MOTION — calm the night
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

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

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

  .fog, .hero-glow, .skyline-window, .hud-dot, .scroll-cue-line, .timeline li.current::before {
    animation: none !important;
  }
}

/* ============================================================
   CINEMATIC ART PASS — Hollowmere, August 2026
   ============================================================ */
:root {
  --night: #050a11;
  --night-2: #09121d;
  --fog: #6f8091;
  --fog-light: #a8b8c7;
  --porcelain: #f0eadf;
  --porcelain-dim: #c7c4bd;
  --amber: #d9a62e;
  --amber-hot: #ffc300;
  --blood: #8b6914;
  --brass: #a78232;
  --dawn: #e6d5b8;
  --font-display: 'Cormorant Garamond', 'Iowan Old Style', Georgia, serif;
  --font-body: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-label: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --nav-h: 68px;
  --max-w: 1240px;
}

body {
  font-size: 1.25rem;
  line-height: 1.72;
  background:
    radial-gradient(circle at 14% 42%, rgba(42, 58, 74, 0.18), transparent 28rem),
    linear-gradient(180deg, #050a11 0%, #08111b 58%, #05080d 100%);
}

body::before { opacity: 0.035; mix-blend-mode: soft-light; }
body::after { background: radial-gradient(ellipse 130% 100% at 50% 40%, transparent 54%, rgba(1, 3, 7, 0.66) 100%); }

h1, h2, h3 { letter-spacing: -0.02em; }

h2 {
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.9;
  margin-bottom: 2rem;
}

h3 { font-size: 2.1rem; line-height: 1.08; }

.eyebrow {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--amber);
}

.lede {
  max-width: 72ch;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.6vw, 2.15rem);
  line-height: 1.5;
  color: var(--porcelain);
}

.btn {
  border-radius: 0;
  padding: 1.1rem 1.8rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.btn-amber[disabled],
.btn-amber[aria-disabled="true"] {
  color: rgba(5, 10, 17, 0.85);
  background: linear-gradient(135deg, #e9be51, #a97d1d);
  border-color: rgba(255, 195, 0, 0.66);
  filter: none;
  opacity: 0.82;
}

.btn-ghost {
  background: rgba(5, 10, 17, 0.32);
  border-color: rgba(240, 234, 223, 0.4);
  backdrop-filter: blur(8px);
}

/* Navigation */
#site-nav {
  background: linear-gradient(180deg, rgba(5, 10, 17, 0.9), rgba(5, 10, 17, 0.58));
  border-bottom: 1px solid rgba(221, 204, 164, 0.15);
  backdrop-filter: blur(16px) saturate(0.8);
}

.nav-inner { max-width: 1440px; }

.wordmark {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: none;
}

.wordmark-main {
  letter-spacing: 0.1em;
  text-transform: none;
}

.wordmark-sub {
  font-family: var(--font-label);
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

#nav-links { gap: 1.1rem; }
#nav-links > a { font-size: 0.72rem; letter-spacing: 0.12em; font-weight: 500; }
.nav-cta .btn { padding: 0.55rem 0.95rem; font-size: 0.7rem; }

/* Hero */
#hero {
  min-height: max(760px, 100svh);
  display: block;
  padding: 0;
  text-align: left;
  background: #030609;
  border-bottom: 1px solid rgba(240, 234, 223, 0.12);
}

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

.hero-art img {
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.82) contrast(1.08) brightness(0.83);
  transform: scale(1.012);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(3, 7, 12, 0.98) 0%, rgba(3, 7, 12, 0.83) 25%, rgba(3, 7, 12, 0.25) 55%, rgba(3, 7, 12, 0.06) 76%),
    linear-gradient(180deg, rgba(2, 5, 9, 0.42) 0%, transparent 28%, transparent 66%, rgba(2, 5, 9, 0.92) 100%);
}

.hero-frame {
  position: relative;
  z-index: 6;
  width: min(100% - 3rem, 1440px);
  min-height: max(760px, 100svh);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 3rem) 1rem 2rem;
  display: grid;
  grid-template-rows: 1fr auto;
}

.hero-content {
  align-self: center;
  max-width: 610px;
  padding-bottom: 2rem;
}

.hero-content .eyebrow { color: #e8c56d; margin-bottom: 1.25rem; }

.hero-title {
  max-width: 12ch;
  margin: 0 0 1.2rem;
  font-size: clamp(4.4rem, 9.2vw, 8.6rem);
  line-height: 0.82;
  letter-spacing: -0.045em;
  text-shadow: 0 14px 70px rgba(0, 0, 0, 0.74);
}

.hero-title-kicker {
  display: block;
  margin: 0 0 0.55rem 0.1rem;
  font-family: var(--font-label);
  font-size: clamp(0.72rem, 1.15vw, 0.92rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: #e1bd61;
}

.hero-title-chapter {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #f6f1e8;
}

.hero-subtitle {
  margin: 0 0 1.2rem 0.15rem;
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(225, 189, 97, 0.88);
}

.tagline {
  max-width: 31ch;
  margin: 0 0 1rem;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.22;
  color: #f3eee5;
}

.hero-sub {
  max-width: 47ch;
  margin: 0 0 2rem;
  color: #bdc8d2;
  font-size: 0.96rem;
  line-height: 1.68;
}

.hero-ctas { justify-content: flex-start; gap: 1rem; }

.hero-metrics {
  width: min(670px, 70%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(230, 213, 184, 0.28);
}

.hero-metrics div { padding: 0 1.3rem; border-left: 1px solid rgba(230, 213, 184, 0.17); }
.hero-metrics div:first-child { padding-left: 0; border-left: 0; }
.hero-metrics dt { font-family: var(--font-display); font-size: 2.25rem; line-height: 0.9; color: var(--porcelain); }
.hero-metrics dd { margin-top: 0.35rem; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fog-light); }

#hero .fog { opacity: 0.48; }

.scroll-cue {
  left: auto;
  right: 2rem;
  bottom: 1.4rem;
  transform: none;
  align-items: flex-end;
}

.scroll-cue-text { font-size: 0.8rem; color: #cad3da; }

/* Section rhythm */
.section {
  overflow: clip;
  padding: clamp(6.5rem, 11vw, 10rem) 2rem;
  border-top: 1px solid rgba(168, 184, 199, 0.08);
}

.section-inner { position: relative; z-index: 2; }

#premise {
  background:
    radial-gradient(circle at 86% 20%, rgba(217, 166, 46, 0.08), transparent 24rem),
    linear-gradient(180deg, #070d15, #0a1420 60%, #07101a);
}

#premise::before {
  content: '';
  position: absolute;
  width: min(72vw, 900px);
  aspect-ratio: 1;
  right: -30%;
  top: -24%;
  border: 1px solid rgba(217, 166, 46, 0.12);
  border-radius: 50%;
  box-shadow: inset 0 0 0 9vw rgba(217, 166, 46, 0.015), inset 0 0 0 9.1vw rgba(217, 166, 46, 0.08);
  pointer-events: none;
}

#premise .lede { max-width: 76ch; }

.ritual-line {
  position: relative;
  gap: 0;
  margin-top: 5rem;
  border-top: 1px solid rgba(231, 212, 167, 0.24);
}

.ritual-line .card {
  position: relative;
  min-height: 245px;
  padding: 3rem 2.4rem 2rem 0;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(231, 212, 167, 0.14);
  border-radius: 0;
}

.ritual-line .card + .card { padding-left: 2.4rem; }
.ritual-line .card:last-child { border-right: 0; }
.ritual-line .card:hover { transform: none; }

.ritual-line .card::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 0;
  width: 11px;
  height: 11px;
  border: 1px solid var(--amber);
  border-radius: 50%;
  background: #09131e;
  box-shadow: 0 0 18px rgba(255, 195, 0, 0.3);
}

.ritual-line .card + .card::before { left: 2.4rem; }
.ritual-line .card-num { font-size: 0.8rem; color: var(--brass); }
.ritual-line .card h3 { font-size: clamp(1.8rem, 3vw, 2.45rem); }
.ritual-line .card p:last-child { max-width: 28ch; font-size: 1.05rem; color: var(--fog-light); }

/* World */
#world {
  min-height: 920px;
  background:
    linear-gradient(90deg, rgba(4, 8, 13, 0.96) 0%, rgba(4, 8, 13, 0.84) 45%, rgba(4, 8, 13, 0.38) 70%, rgba(4, 8, 13, 0.72) 100%),
    linear-gradient(180deg, #050a11 0%, transparent 20%, transparent 80%, #050a11 100%),
    url('../assets/art/marketing/hollowmere-workshop-key-art.webp') center center / cover no-repeat;
}

#world .section-inner { max-width: 1340px; }
#world h2 { max-width: 7ch; }
#world .prose { max-width: 54ch; }
#world .prose p { color: #cbd1d3; text-shadow: 0 2px 16px #000; }

.tone-quote {
  border: 0;
  border-top: 1px solid rgba(230, 213, 184, 0.34);
  border-bottom: 1px solid rgba(230, 213, 184, 0.15);
  padding: 1.6rem 0;
  max-width: 50ch;
}

.tone-quote p { font-size: clamp(1.45rem, 2.7vw, 2.25rem); line-height: 1.28; }

.voice-lines { max-width: 850px; gap: 1.15rem 4rem; }
.voice-line { font-size: 1.4rem; color: #d7dee1; }
.voice-line::before { content: '— the Collector'; color: var(--brass); }

.endings { max-width: 850px; gap: 1px !important; background: rgba(230, 213, 184, 0.16); }
.ending { border: 0; border-top: 1px solid rgba(230, 213, 184, 0.26); border-radius: 0; background: rgba(5, 10, 17, 0.88); }
.ending-dawn h3 { color: var(--dawn); }
.ending-collection h3 { color: var(--brass); }

/* Four against one */
#factions {
  background:
    radial-gradient(circle at 72% 54%, rgba(217, 166, 46, 0.08), transparent 26rem),
    #060c13;
}

.versus {
  grid-template-columns: 4fr 6fr;
  gap: 1px;
  margin-top: 4rem;
  border: 1px solid rgba(168, 184, 199, 0.16);
  background: rgba(168, 184, 199, 0.12);
}

.versus-col {
  position: relative;
  min-height: 500px;
  padding: 4rem clamp(2rem, 4vw, 4rem) 3rem;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #0a1521;
}

.versus-one {
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 195, 0, 0.12), transparent 16rem),
    linear-gradient(145deg, #0a1119, #070b10);
}

.versus-count {
  position: absolute;
  right: 1.5rem;
  bottom: -3rem;
  font-family: var(--font-display);
  font-size: clamp(15rem, 30vw, 28rem);
  font-weight: 500;
  line-height: 0.65;
  color: rgba(168, 184, 199, 0.045);
  pointer-events: none;
}

.versus-one .versus-count { color: rgba(217, 166, 46, 0.055); }
.versus-col h3 { position: relative; font-size: clamp(3rem, 5vw, 5rem); }
.versus-one h3 { color: var(--porcelain); }
.versus-sub { color: var(--brass); }
.versus-col ul { position: relative; max-width: 34ch; }
.versus-col li { padding: 0.65rem 0 0.65rem 1.3rem; font-size: 1.05rem; }
.versus-col li::before { width: 5px; height: 5px; background: var(--fog-light); }
.versus-one li::before { background: var(--amber); box-shadow: 0 0 8px rgba(255, 195, 0, 0.4); }
.versus-line { position: relative; font-size: 1.65rem; }
.versus-line.blood { color: #e4c879; }

/* Roster as a deliberate archive rather than cropped thumbnails */
#roster {
  background:
    linear-gradient(180deg, #05090f, #09121c 55%, #05090f),
    #05090f;
}

.whispers { display: flex; flex-wrap: wrap; gap: 0.8rem 2rem; }
.whispers em { margin: 0; font-family: var(--font-display); font-size: 1.2rem; }

.roster-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 4rem;
}

.roster-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(168, 184, 199, 0.2);
  border-radius: 0;
  background: #05090f;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.18);
}

.roster-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(3, 7, 12, 0.04) 36%, rgba(3, 7, 12, 0.44) 62%, rgba(3, 7, 12, 0.96) 100%),
    linear-gradient(90deg, rgba(3, 7, 12, 0.22), transparent 48%);
  pointer-events: none;
}

.roster-card::after {
  content: 'VIEW CHARACTER';
  position: absolute;
  z-index: 3;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-label);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #efe2bd;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
  opacity: 0.72;
  transition: opacity 0.35s;
}

.roster-card:hover { transform: translateY(-2px); border-color: rgba(217, 166, 46, 0.52); box-shadow: 0 22px 65px rgba(0, 0, 0, 0.36); }
.roster-card:hover::after,
.roster-card:focus-visible::after { opacity: 1; }

.roster-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  background: #05090f;
  filter: saturate(0.88) contrast(1.04) brightness(0.84);
  transform: scale(1.002);
  transition: filter 0.5s, transform 0.7s var(--ease-out);
}

.roster-card:hover img,
.roster-card:focus-visible img { filter: saturate(0.98) contrast(1.03) brightness(0.92); transform: scale(1.025); }

.roster-name,
.roster-fantasy {
  position: absolute;
  z-index: 2;
  left: 1.3rem;
  right: 1.3rem;
  padding: 0;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.94);
}

.roster-name {
  bottom: 3.4rem;
  font-size: clamp(1.75rem, 2.4vw, 2.65rem);
  line-height: 0.98;
}

.roster-fantasy {
  bottom: 1.35rem;
  max-width: 28ch;
  font-size: 0.78rem;
  line-height: 1.4;
  color: #d7dde0;
}

.roster-card-collector {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
  border-color: rgba(217, 166, 46, 0.36);
}

.roster-card-collector::before {
  background:
    linear-gradient(90deg, rgba(3, 7, 12, 0.96) 0%, rgba(3, 7, 12, 0.62) 28%, transparent 64%),
    linear-gradient(180deg, rgba(3, 7, 12, 0.02) 45%, rgba(3, 7, 12, 0.72) 100%);
}

.roster-card-collector .roster-name,
.roster-card-collector .roster-fantasy { right: auto; width: min(38ch, 44%); }
.roster-card-collector .roster-name { color: #e6c66c; }
.roster-card-collector:hover { border-color: var(--amber); box-shadow: 0 24px 70px rgba(125, 91, 16, 0.15); }

.cast-figure { margin-top: 1.2rem; padding: 1rem; border: 1px solid rgba(168, 184, 199, 0.16); background: rgba(10, 18, 28, 0.72); }
.cast-figure img { border: 0; border-radius: 0; filter: saturate(0.72) brightness(0.9); }
.cast-figure figcaption { font-family: var(--font-label); font-size: 0.8rem; font-style: normal; letter-spacing: 0.12em; text-transform: uppercase; }

/* Mechanics */
#mechanics { background: #08111a; }

.hud-line {
  border: 0;
  border-left: 1px solid var(--amber);
  border-radius: 0;
  background: transparent;
  padding: 0.45rem 0 0.45rem 1rem;
  font-size: 0.59rem;
}

.tile-grid {
  counter-reset: mechanics;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 4.5rem;
  border-top: 1px solid rgba(168, 184, 199, 0.2);
}

.tile {
  counter-increment: mechanics;
  position: relative;
  min-height: 250px;
  padding: 3rem 3rem 3rem 5.7rem;
  border: 0;
  border-right: 1px solid rgba(168, 184, 199, 0.13);
  border-bottom: 1px solid rgba(168, 184, 199, 0.16);
  border-radius: 0;
  background: transparent;
  transition: background 0.35s;
}

.tile:nth-child(even) { border-right: 0; }
.tile::before {
  content: '0' counter(mechanics);
  position: absolute;
  top: 3.1rem;
  left: 2rem;
  font-family: var(--font-label);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--brass);
}

.tile:hover { border-color: rgba(168, 184, 199, 0.18); background: rgba(168, 184, 199, 0.035); }
.tile h3 { font-size: clamp(1.75rem, 3vw, 2.35rem); }
.tile p { max-width: 46ch; font-size: 1.05rem; color: var(--fog-light); }

/* Making, final CTA, footer */
#roadmap { background: linear-gradient(180deg, #050a11, #080e16); }
.facts { border-radius: 0; background: rgba(10, 18, 28, 0.76); backdrop-filter: blur(12px); }

#community,
#signup {
  background:
    radial-gradient(circle at 50% 120%, rgba(217, 166, 46, 0.12), transparent 32rem),
    linear-gradient(180deg, #080e16, #05080d);
}

#community h2,
#signup h2 { margin-left: auto; margin-right: auto; max-width: 8ch; }
#site-footer { background: #04070b; }

#roster-modal {
  border-radius: 0;
  background: #08111a;
  border-color: rgba(217, 166, 46, 0.36);
}

/* Navigation collapse before the campaign nav crowds */
@media (max-width: 1080px) {
  .nav-toggle { display: flex; }
  .roster-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  #nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 1rem 2rem 2rem;
    background: rgba(5, 10, 17, 0.985);
    border-bottom: 1px solid rgba(168, 184, 199, 0.22);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out), visibility 0.35s;
  }

  #site-nav.nav-open #nav-links { transform: none; opacity: 1; visibility: visible; pointer-events: auto; }
  #nav-links > a { width: 100%; padding: 0.85rem 0; font-size: 0.85rem; }
  .nav-cta { align-items: flex-start; margin-top: 1rem; }
}

@media (max-width: 820px) {
  .hero-frame { width: min(100% - 1.5rem, 1440px); }
  .hero-metrics { width: 88%; }
  .ritual-line { border-top: 0; }
  .ritual-line .card,
  .ritual-line .card + .card { min-height: 0; padding: 2rem 0 2rem 2.2rem; border-right: 0; border-left: 1px solid rgba(231, 212, 167, 0.2); }
  .ritual-line .card::before,
  .ritual-line .card + .card::before { top: 2.45rem; left: -6px; }
  .versus { grid-template-columns: 1fr; }
  .versus-col { min-height: 440px; }
  .roster-grid { grid-template-columns: 1fr; }
  .roster-card-collector { grid-column: auto; }
  .tile-grid { grid-template-columns: 1fr; }
  .tile { border-right: 0; }
}

@media (max-width: 640px) {
  .section { padding: 5.5rem 1.25rem; }
  .hero-art img { object-position: center 36%; filter: saturate(0.78) contrast(1.08) brightness(0.66); }
  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(3, 7, 12, 0.5) 0%, rgba(3, 7, 12, 0.18) 28%, rgba(3, 7, 12, 0.76) 60%, rgba(3, 7, 12, 0.98) 100%),
      linear-gradient(90deg, rgba(3, 7, 12, 0.72), transparent 70%);
  }
  .hero-frame { padding: calc(var(--nav-h) + 2rem) 0.25rem 1.1rem; }
  .hero-content { align-self: end; padding-bottom: 2rem; }
  .hero-title { font-size: clamp(4.6rem, 26vw, 7rem); }
  .tagline { font-size: 1.4rem; max-width: 27ch; }
  .hero-sub { font-size: 0.84rem; max-width: 38ch; }
  .hero-ctas { align-items: flex-start; }
  .hero-metrics { width: 100%; grid-template-columns: repeat(2, 1fr); gap: 1rem 0; }
  .hero-metrics div:nth-child(3) { padding-left: 0; border-left: 0; }
  .hero-metrics dt { font-size: 1.75rem; }
  .scroll-cue { display: none; }
  #world { background-position: 62% center; }
  .voice-lines { grid-template-columns: 1fr; }
  .roster-card { aspect-ratio: 4 / 5; }
  .roster-card-collector { aspect-ratio: 4 / 3; }
  .roster-card-collector .roster-name,
  .roster-card-collector .roster-fantasy { width: min(34ch, 72%); }
  .tile { min-height: 0; padding: 2.6rem 1rem 2.6rem 3.8rem; }
  .tile::before { top: 2.7rem; left: 1rem; }
  .modal-body { padding: 2.3rem 1.3rem 1.3rem; }
}

/* ============================================================
   EDITORIAL + ACCESSIBILITY POLISH
   ============================================================ */
html { scroll-padding-top: calc(var(--nav-h) + 1rem); }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--night);
  background: var(--amber-hot);
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus { transform: none; }

.section { scroll-margin-top: var(--nav-h); }

h1,
h2,
h3,
.tagline,
.versus-line { text-wrap: balance; }

.lede,
.prose,
.hero-sub,
.tile p,
.development-lede { text-wrap: pretty; }

h2 {
  max-width: 12ch;
  font-size: clamp(3rem, 6.2vw, 5.5rem);
  line-height: 0.95;
}

.lede { max-width: 60ch; }
#premise .lede { max-width: 60ch; }
#premise::before { opacity: 0.58; }

.site-status {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0.58rem 0.85rem;
  border: 1px solid rgba(217, 166, 46, 0.38);
  color: #e3c66f;
  background: rgba(5, 10, 17, 0.52);
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-title-kicker { font-size: clamp(0.85rem, 1.5vw, 1.05rem); }
.hero-metrics dd { font-size: 0.8rem; letter-spacing: 0.1em; }
.scroll-cue-text { font-size: 0.8rem; letter-spacing: 0.12em; }
#nav-links > a { font-size: 0.7rem; letter-spacing: 0.12em; }

.collector-quote { margin-top: 3rem; }
.collector-quote p { margin: 0; }
.collector-quote cite {
  display: block;
  margin-top: 0.75rem;
  color: var(--brass);
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.endings { margin-top: 4.5rem; }

.roster-card::after {
  content: 'VIEW CHARACTER';
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.roster-card:focus-visible {
  opacity: 1;
  transform: translateY(-2px);
  border-color: rgba(217, 166, 46, 0.72);
  box-shadow: 0 22px 65px rgba(0, 0, 0, 0.36);
}

.roster-card:focus-visible::after { opacity: 1; }
.cast-figure figcaption { font-size: 0.68rem; letter-spacing: 0.12em; }
.hud-line { font-size: 0.7rem; letter-spacing: 0.13em; }

#development {
  background:
    radial-gradient(circle at 82% 32%, rgba(217, 166, 46, 0.06), transparent 24rem),
    linear-gradient(180deg, #050a11, #080e16);
}

.development-lede {
  max-width: 58ch;
  margin: 0 0 2.75rem;
  color: var(--porcelain);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.3vw, 1.8rem);
  line-height: 1.5;
}

.timeline li { min-height: 3.3rem; }
.timeline .milestone-state { font-size: 0.68rem; letter-spacing: 0.13em; }
.facts li { padding: 0.68rem 0; }

#community h2,
#signup h2 { max-width: 11ch; }
.community-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.4rem;
}

.site-status-large {
  min-height: 3rem;
  padding-inline: 1.2rem;
  border-color: rgba(217, 166, 46, 0.5);
}

/* ---------- Email signup ---------- */
.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;
}

.hp {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

#signup {
  background:
    radial-gradient(circle at 50% 120%, rgba(217, 166, 46, 0.12), transparent 32rem),
    linear-gradient(180deg, #080e16, #05080d);
}

.signup-form {
  position: relative;
  margin: 2.2rem auto 0;
  max-width: 34rem;
  text-align: left;
}

.signup-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: stretch;
}

.signup-row input[type="email"] {
  flex: 1 1 14rem;
  min-height: 3.1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(168, 184, 199, 0.28);
  border-radius: 2px;
  background: rgba(5, 10, 17, 0.72);
  color: var(--porcelain);
  font-family: var(--font-body);
  font-size: 1.05rem;
  transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.signup-row input[type="email"]::placeholder {
  color: rgba(154, 163, 178, 0.72);
}

.signup-row input[type="email"]:hover {
  border-color: rgba(232, 163, 61, 0.42);
}

.signup-row input[type="email"]:focus {
  outline: none;
  border-color: rgba(232, 163, 61, 0.72);
  box-shadow: 0 0 0 3px rgba(232, 163, 61, 0.16);
}

.signup-row input[type="email"].invalid {
  border-color: rgba(122, 30, 30, 0.85);
  box-shadow: 0 0 0 3px rgba(122, 30, 30, 0.2);
}

.signup-row .btn {
  flex: 0 0 auto;
  min-height: 3.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.signup-form.is-loading .btn {
  pointer-events: none;
}

.signup-prefs {
  margin: 1.15rem 0 0;
  padding: 0;
  border: 0;
  display: grid;
  gap: 0.65rem;
}

.signup-check {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  cursor: pointer;
  color: var(--porcelain-dim);
  font-size: 0.98rem;
  line-height: 1.45;
}

.signup-check input {
  flex: 0 0 auto;
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.22rem;
  accent-color: var(--amber);
  cursor: pointer;
}

.signup-check span { flex: 1; }

.signup-privacy {
  margin-top: 1rem;
  color: var(--fog);
  font-size: 0.88rem;
  line-height: 1.5;
}

.form-status {
  min-height: 1.4em;
  margin-top: 0.9rem;
  font-size: 0.98rem;
  line-height: 1.45;
  color: var(--porcelain-dim);
}

.form-status.is-success { color: var(--dawn); }
.form-status.is-error { color: #e8a0a0; }
.form-status.is-info { color: var(--fog-light); }

.signup-count {
  margin-top: 0.55rem;
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fog-light);
}

.signup-count strong {
  color: var(--amber);
  font-weight: 600;
}

.signup-form.is-success .signup-row input[type="email"] {
  border-color: rgba(217, 180, 138, 0.55);
}

@media (max-width: 640px) {
  .signup-row { flex-direction: column; }
  .signup-row .btn { width: 100%; }
}

#roster-modal {
  max-height: 90dvh;
  overflow: auto;
  overscroll-behavior: contain;
}

#modal-close {
  position: sticky;
  z-index: 5;
  top: 0.7rem;
  display: block;
  min-width: 44px;
  min-height: 44px;
  margin: 0.7rem 0.9rem -3.45rem auto;
}

@media (max-width: 1080px) {
  #nav-links {
    max-height: calc(100dvh - var(--nav-h));
    overflow-y: auto;
  }

  #nav-links > a {
    display: flex;
    align-items: center;
    min-height: 44px;
  }

  #nav-links .site-status { margin-top: 1rem; }
}

@media (max-width: 640px) {
  body { font-size: 1.1rem; }
  h2 { font-size: clamp(2.9rem, 15vw, 4rem); line-height: 0.98; }
  h3 { line-height: 1.08; }
  #hero,
  .hero-frame { min-height: 100svh; }
  .hero-metrics dd { font-size: 0.78rem; }
  .site-status { white-space: normal; }
  .making { gap: 2.25rem; }
  .timeline li { align-items: center; }
  .timeline .milestone { font-size: 1.05rem; }
  .modal-abilities { grid-template-columns: 1fr; }
  .modal-ability { min-height: 0; }
}

@media (max-width: 960px) and (max-height: 520px) and (orientation: landscape) {
  #hero,
  .hero-frame { min-height: 100svh; }
  .hero-frame {
    grid-template-rows: 1fr;
    padding-top: calc(var(--nav-h) + 0.75rem);
    padding-bottom: 0.75rem;
  }
  .hero-content { align-self: center; padding-bottom: 0; }
  .hero-content .eyebrow { margin-bottom: 0.6rem; }
  .hero-title { margin-bottom: 0.65rem; font-size: clamp(3.8rem, 23vh, 5.8rem); }
  .tagline { margin-bottom: 0.45rem; font-size: 1.2rem; }
  .hero-sub { margin-bottom: 0.9rem; font-size: 0.95rem; line-height: 1.45; }
  .hero-ctas .btn { padding: 0.75rem 1rem; font-size: 0.78rem; }
  .hero-metrics,
  .scroll-cue { display: none; }
}

/* ============================================================
   READABILITY PASS — large body + UI text, stronger contrast
   ============================================================ */
:root {
  --fog: #8A93A3;
  --fog-light: #B8C0CD;
  --porcelain-dim: #DDD8CF;
}

body {
  font-size: 1.3rem;
  line-height: 1.78;
  color: var(--porcelain);
}

p, li, dd {
  color: inherit;
}

.eyebrow {
  font-size: 1.05rem;
  letter-spacing: 0.16em;
}

.lede {
  font-size: clamp(1.7rem, 2.8vw, 2.25rem);
  line-height: 1.5;
}

.btn {
  font-size: 1rem;
  padding: 1.15rem 1.9rem;
  letter-spacing: 0.1em;
}

.hero-sub {
  font-size: clamp(1.25rem, 1.9vw, 1.5rem);
  line-height: 1.7;
  color: var(--fog-light);
}

.tagline {
  font-size: clamp(1.55rem, 2.8vw, 2.2rem);
  line-height: 1.35;
}

.prose p,
.card p,
.tile p,
.ending p,
.versus-col li,
.versus-sub,
.facts li,
.milestone,
.roster-fantasy,
.modal-ability p,
.signup-check,
.form-status {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--porcelain-dim);
}

.ritual-line .card p:last-child {
  font-size: 1.2rem;
  color: var(--fog-light);
}

.tile p {
  font-size: 1.2rem;
  color: var(--fog-light);
}

.versus-col li {
  font-size: 1.2rem;
}

.versus-line {
  font-size: clamp(1.55rem, 2.2vw, 2rem);
}

.development-lede {
  font-size: clamp(1.65rem, 2.6vw, 2.2rem);
  line-height: 1.55;
}

.hud-line {
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.timeline .milestone-state,
.roster-card::after,
.cast-figure figcaption,
.cta-note,
.footer-fine,
.signup-privacy,
.signup-count {
  font-size: 1rem;
  letter-spacing: 0.06em;
}

.collector-quote cite {
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.eyebrow.small {
  font-size: 0.95rem;
}

.site-status {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  min-height: 2rem;
  padding: 0.4rem 0.7rem;
}

.hero-title-kicker {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.hero-metrics dd {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.scroll-cue-text {
  font-size: 0.95rem;
  letter-spacing: 0.1em;
}

/* Keep site name large; nav tabs stay compact */
.wordmark {
  font-size: 1.55rem;
}

.wordmark-sub {
  font-size: 0.9rem;
}

#nav-links {
  gap: 1rem;
}

#nav-links > a {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  font-weight: 500;
}

.nav-cta .btn {
  font-size: 0.7rem;
  padding: 0.55rem 0.95rem;
}

.footer-nav a {
  font-size: 1.1rem;
}

.footer-warning {
  font-size: 1.1rem;
  line-height: 1.6;
}

.footer-fine {
  font-size: 1rem;
}

.signup-row input[type="email"] {
  font-size: 1.25rem;
  min-height: 3.5rem;
}

.signup-row .btn {
  font-size: 1rem;
}

.signup-check {
  font-size: 1.15rem;
  color: var(--porcelain-dim);
}

.signup-privacy {
  font-size: 1.05rem;
  color: var(--fog-light);
}

.form-status {
  font-size: 1.15rem;
}

.modal-role {
  font-size: 1.05rem;
}

.modal-fantasy {
  font-size: clamp(1.5rem, 2.8vw, 1.95rem);
}

.modal-label {
  font-size: 0.95rem;
}

.modal-disclaimer {
  font-size: 1.05rem;
}

h3 {
  font-size: 2.15rem;
}

.tile h3,
.card h3 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
}

@media (max-width: 1080px) {
  #nav-links > a {
    font-size: 0.9rem;
  }

  .wordmark {
    font-size: 1.45rem;
  }
}

@media (max-width: 640px) {
  body { font-size: 1.2rem; }
  .hero-sub { font-size: 1.2rem; }
  .tagline { font-size: 1.5rem; }
  .btn { font-size: 0.95rem; }
  .eyebrow { font-size: 0.95rem; }
  .prose p,
  .card p,
  .tile p,
  .ending p,
  .versus-col li,
  .facts li {
    font-size: 1.18rem;
  }
}
