/* ============================================================
   MONO NO AWARE — Site Styles
   ============================================================ */

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { display: block; max-width: 100%; }
a { text-decoration: none; }
button { border: none; background: none; cursor: pointer; }

/* === VARIABLES === */
:root {
  --bg:           #0c0a14;
  --bg-surface:   #13101e;
  --bg-raised:    #1a162a;
  --purple-deep:  #3d2f6b;
  --purple-mid:   #7b5ea7;
  --purple-light: #c4a8e0;
  --pink:         #c89ab8;
  --green:        #4a7c59;
  --green-light:  #6bad86;
  --text:         #ddd8f0;
  --text-dim:     #8a829a;
  --text-muted:   #4a4560;
  --border:       #251e3a;
  --border-light: #3a3060;
  --red-stamp:    #8b2020;
  --font-display: 'Bangers', cursive;
  --font-mono:    'Space Mono', 'Courier New', monospace;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

/* === BASE === */
html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

/* === GRAIN CANVAS === */
#grain {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.055;
}

/* === SCANLINES === */
body::after {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0, 0, 0, 0.04) 3px,
    rgba(0, 0, 0, 0.04) 4px
  );
  pointer-events: none;
  z-index: 9998;
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: linear-gradient(to bottom, rgba(12, 10, 20, 0.95), transparent);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  color: #d02020;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  -webkit-text-stroke: 1.5px #080808;
  paint-order: stroke fill;
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.85; }

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text-dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }

/* === HOMEPAGE NAV OVERRIDE === */

/* Number markers before each link */
.nav-marker {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--red-stamp);
  letter-spacing: 0.05em;
  margin-right: 6px;
  vertical-align: middle;
  opacity: 0.9;
}

/* Homepage nav — more presence, less corporate */
.nav-home {
  border-bottom: 1px solid rgba(139, 32, 32, 0.3);
  background: linear-gradient(to bottom, rgba(12, 10, 20, 0.92), rgba(12, 10, 20, 0.0));
  padding-bottom: 18px;
}

.nav-home .nav-links {
  gap: 28px;
}

.nav-home .nav-links a {
  position: relative;
  color: rgba(221, 216, 240, 0.55);
  font-size: 18px;
  padding-bottom: 4px;
}

/* Animated underline that grows from center */
.nav-home .nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  right: 50%;
  height: 1px;
  background: var(--red-stamp);
  transition: left 0.25s ease, right 0.25s ease;
  opacity: 0.7;
}

.nav-home .nav-links a:hover {
  color: var(--text);
}

.nav-home .nav-links a:hover::after {
  left: 0;
  right: 0;
}

/* === HERO === */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  filter: saturate(0.75) brightness(0.55);
  transform: scale(1.02);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 40%, rgba(12, 10, 20, 0.75) 100%),
    linear-gradient(to bottom, rgba(12, 10, 20, 0.5) 0%, transparent 20%, transparent 70%, rgba(12, 10, 20, 0.9) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 24px;
  max-width: 680px;
}

.show-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 10vw, 120px);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #d02020;
  -webkit-text-stroke: 4px #080808;
  paint-order: stroke fill;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 48px;
  filter: url(#rough-text);
}

.hero-copy {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(220, 215, 240, 0.72);
  margin-bottom: 48px;
}

.hero-copy p + p { margin-top: 1.3em; }

.hero-copy .hook {
  color: rgba(220, 215, 240, 0.92);
}

.hero-scroll {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: lowercase;
}

/* === VIDEO SECTION === */
.promo-section {
  position: relative;
  background: var(--bg);
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}

.promo-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.promo-label {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.25em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #0a0812;
  border: 1px solid var(--border);
  overflow: hidden;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.audio-toggle {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(12, 10, 20, 0.8);
  border: 1px solid var(--border-light);
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.audio-toggle:hover { color: var(--text); border-color: var(--purple-light); }

.promo-coming {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 16/9;
  background: #090711;
  border: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 48px);
  letter-spacing: 0.25em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* === SECTION BASE === */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 48px;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 86px);
  font-weight: 400;
  color: #d02020;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 48px;
  -webkit-text-stroke: 3px #080808;
  paint-order: stroke fill;
  filter: url(#rough-text);
  line-height: 1;
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  padding: 140px 48px 60px;
  border-bottom: 1px solid var(--border);
}

.page-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* === CHARACTER GRID === */
.character-grid {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

/* --- Dossier cover card --- */
.character-card {
  display: block;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
  position: relative;
}

.character-card:hover {
  border-color: var(--purple-mid);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(60, 30, 100, 0.35);
}

/* Top classification strip */
.card-doc-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  background: var(--purple-deep);
  border-bottom: 1px solid var(--border-light);
}

.card-doc-bureau {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: rgba(196, 168, 224, 0.7);
  text-transform: uppercase;
}

.card-doc-fileno {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: rgba(196, 168, 224, 0.9);
  text-transform: uppercase;
  white-space: nowrap;
}

/* Photo area — split upper (character) / lower (bureau seal) */
.character-card-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: #0a0814;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Upper section: character image, pushed toward top */
.card-photo-upper {
  flex: 0 0 66%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 12px 44px 0;
  background: #838383; /* match the character art background */
  overflow: hidden;
  position: relative;
}

.card-photo-upper img {
  display: block;
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 0;
}

/* Gradient overlay — fades gray edges into the card on all sides */
.card-photo-upper::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    linear-gradient(to right,  var(--bg-surface) 0%, transparent 20%, transparent 80%, var(--bg-surface) 100%),
    linear-gradient(to top,    var(--bg-surface) 0%, transparent 28%),
    linear-gradient(to bottom, var(--bg-surface) 0%, transparent 15%);
}

/* Lower section: bureau seal / graphic */
.card-photo-lower {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-top: 1px solid var(--border-light);
  background: var(--bg-surface);
  padding: 10px 16px;
  position: relative;
}

/* Rotating seal ring — amber/gold, clean */
.card-seal-ring {
  width: 64px;
  height: 64px;
  animation: seal-spin 22s linear infinite;
  flex-shrink: 0;
}

@keyframes seal-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Text BELOW the ring */
.card-seal-label {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.18em;
  color: rgba(200, 168, 75, 0.65);
  text-transform: uppercase;
  text-align: center;
  line-height: 1.6;
}

/* Subtle grid overlay on full photo area */
.card-photo-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 39px,
      rgba(100, 80, 160, 0.05) 39px,
      rgba(100, 80, 160, 0.05) 40px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 39px,
      rgba(100, 80, 160, 0.04) 39px,
      rgba(100, 80, 160, 0.04) 40px
    );
  z-index: 2;
}

/* AT LARGE stamp on card */
.card-stamp {
  position: absolute;
  top: 14px;
  right: 10px;
  border: 2px solid var(--red-stamp);
  color: var(--red-stamp);
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.22em;
  padding: 3px 8px;
  text-transform: uppercase;
  transform: rotate(-10deg);
  opacity: 0.82;
  pointer-events: none;
  z-index: 3;
}

/* Bottom info strip */
.character-card-label {
  padding: 16px 16px 16px 16px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  background: rgba(19, 16, 30, 0.9);
}

.card-label-left {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.character-card-name {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.12em;
  color: var(--text);
  text-transform: uppercase;
  line-height: 1;
  -webkit-text-stroke: 1px #080808;
  paint-order: stroke fill;
}

.character-card-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.card-threat-row {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
}

.card-threat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
}
.card-threat-dot.high { background: #8b4040; }
.card-threat-dot.low  { background: var(--purple-mid); }

.card-threat-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-left: 4px;
}

.card-open-file {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.12em;
  color: var(--purple-light);
  text-transform: uppercase;
  white-space: nowrap;
  align-self: flex-end;
  transition: color 0.2s;
}

.character-card:hover .card-open-file {
  color: var(--text);
}

/* === PASSPORT PAGE === */
.passport-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 120px 48px 80px;
}

/* Government document header */
.passport-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding: 16px 20px;
  border: 1px solid var(--border-light);
  background: linear-gradient(to right, rgba(37, 30, 58, 0.5), rgba(20, 16, 32, 0.5));
  position: relative;
}

.passport-header::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--purple-mid);
}

.passport-header::after {
  content: 'CLASSIFIED';
  position: absolute;
  right: 160px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: rgba(139, 32, 32, 0.25);
  pointer-events: none;
}

.passport-bureau {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--text-dim);
  text-transform: uppercase;
  line-height: 1.9;
}

.passport-file-no {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  text-align: right;
  line-height: 1.8;
}

/* Ruler / measurement strip */
.passport-ruler {
  display: flex;
  height: 12px;
  margin-bottom: 32px;
  border-left: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
  overflow: hidden;
  opacity: 0.45;
}

.passport-ruler::before {
  content: '';
  flex: 1;
  background: repeating-linear-gradient(
    to right,
    var(--border-light) 0px,
    var(--border-light) 1px,
    transparent 1px,
    transparent 20px
  );
}

.passport-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding: 28px;
  border: 1px solid var(--border);
  background: rgba(19, 16, 30, 0.6);
  position: relative;
}

/* Document edge markings */
.passport-body::before {
  content: 'SUBJECT IDENTIFICATION — OPEN FILE';
  position: absolute;
  top: -1px;
  left: 28px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  background: var(--bg);
  padding: 0 8px;
  transform: translateY(-50%);
  text-transform: uppercase;
}

.passport-photo-wrap {
  position: relative;
}

/* corner targeting brackets */
.corner-bracket {
  position: absolute;
  width: 14px;
  height: 14px;
  z-index: 3;
}
.corner-bracket.tl { top: 0; left: 0; border-top: 2px solid var(--purple-light); border-left: 2px solid var(--purple-light); }
.corner-bracket.tr { top: 0; right: 0; border-top: 2px solid var(--purple-light); border-right: 2px solid var(--purple-light); }
.corner-bracket.bl { bottom: 38px; left: 0; border-bottom: 2px solid var(--purple-light); border-left: 2px solid var(--purple-light); }
.corner-bracket.br { bottom: 38px; right: 0; border-bottom: 2px solid var(--purple-light); border-right: 2px solid var(--purple-light); }

.passport-photo-frame {
  width: 100%;
  aspect-ratio: 3/4;
  background: #0a0814;
  border: 1px solid var(--border-light);
  overflow: hidden;
  position: relative;
  display: block;
}

.passport-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Photo overlay effects */
.scan-overlay {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
  /* fine grid overlay like a scanner */
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(100, 80, 160, 0.06) 3px,
      rgba(100, 80, 160, 0.06) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 3px,
      rgba(100, 80, 160, 0.03) 3px,
      rgba(100, 80, 160, 0.03) 4px
    );
}

/* vignette on photo */
.scan-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(8, 6, 18, 0.5) 100%);
}

.scan-line {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(196, 168, 224, 0.5), transparent);
  animation: scan-move 2.8s ease-in-out infinite;
  z-index: 3;
}

@keyframes scan-move {
  0%   { top: -2px; opacity: 0; }
  6%   { opacity: 1; }
  94%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* Biometric cross-hairs */
.photo-crosshair {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.photo-crosshair::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  height: 1px;
  background: rgba(196, 168, 224, 0.12);
}
.photo-crosshair::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: rgba(196, 168, 224, 0.12);
}

/* status indicator below photo */
.photo-status {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--green-light);
  text-transform: uppercase;
}

.status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green-light);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.25; }
}

.passport-stamp {
  position: absolute;
  bottom: 44px;
  right: -8px;
  background: transparent;
  border: 3px solid var(--red-stamp);
  color: var(--red-stamp);
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.25em;
  padding: 6px 12px;
  text-transform: uppercase;
  transform: rotate(-15deg);
  opacity: 0.88;
  z-index: 4;
}

.passport-data { }

.passport-designation {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 52px);
  color: var(--text);
  letter-spacing: 0.12em;
  margin-bottom: 4px;
  -webkit-text-stroke: 1.5px #080808;
  paint-order: stroke fill;
  text-transform: uppercase;
  line-height: 1;
}

.passport-role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--purple-light);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table tr {
  border-bottom: 1px solid var(--border);
}

.data-table td {
  padding: 10px 0;
  font-family: var(--font-mono);
  font-size: 12px;
  vertical-align: top;
}

.data-table .data-label {
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  width: 140px;
  padding-right: 16px;
  font-size: 10px;
}

.data-table .data-value {
  color: var(--text);
  letter-spacing: 0.05em;
}

.data-table .data-value.redacted {
  color: var(--text-muted);
  letter-spacing: 0.2em;
  font-size: 10px;
}

.passport-profile {
  border: 1px solid var(--border);
  padding: 28px;
  margin-bottom: 36px;
  background: rgba(19, 16, 30, 0.6);
  position: relative;
}

.passport-profile::before {
  content: 'BEHAVIORAL ANALYSIS';
  position: absolute;
  top: -1px;
  left: 20px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  background: var(--bg);
  padding: 0 8px;
  transform: translateY(-50%);
  text-transform: uppercase;
}

.profile-label {
  display: none;
}

.profile-text {
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.9;
  color: var(--text-dim);
}

.passport-threat {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  padding: 16px;
  border: 1px solid var(--border);
  background: rgba(12, 10, 20, 0.4);
}

.threat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.threat-bars {
  display: flex;
  gap: 4px;
}

.threat-bar {
  width: 20px;
  height: 14px;
  background: var(--border);
}

.threat-bar.filled { background: var(--purple-mid); }
.threat-bar.filled.high { background: #8b4040; }

.threat-level-text {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  text-transform: uppercase;
}

/* Passport footer bar */
.passport-mrz {
  margin-top: 16px;
  margin-bottom: 36px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  background: rgba(12, 10, 20, 0.6);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  word-break: break-all;
  line-height: 1.8;
  opacity: 0.7;
}

.passport-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.passport-nav a {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  text-transform: uppercase;
  transition: color 0.2s;
}
.passport-nav a:hover { color: var(--text); }

/* === EPISODES PAGE === */
.episodes-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 120px 48px 80px;
}

.episodes-coming {
  display: grid;
  place-items: center;
  min-height: 40vh;
  text-align: center;
}

.episodes-coming-text {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: lowercase;
  line-height: 2.2;
}

.episode-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.episode-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  padding: 28px;
  transition: border-color 0.25s;
}

.episode-card:hover { border-color: var(--border-light); }

.episode-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.episode-title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 12px;
}

.episode-desc {
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-dim);
}

.episode-watch {
  display: inline-block;
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--purple-light);
  text-transform: lowercase;
}

/* === CREW PAGE === */

/* Animated background seal */
.crew-bg-seal {
  position: fixed;
  top: 50%;
  right: -160px;
  transform: translateY(-50%);
  width: 560px;
  height: 560px;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}

.crew-seal-svg {
  width: 100%;
  height: 100%;
  animation: crew-seal-rotate 60s linear infinite;
}

@keyframes crew-seal-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.crew-wrap {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 120px 48px 80px;
}

.crew-intro {
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-dim);
  max-width: 560px;
  margin-bottom: 64px;
}

.crew-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.crew-member {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.crew-member:first-child { border-top: 1px solid var(--border); }

.crew-role {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  padding-top: 8px;
  letter-spacing: 0.02em;
}

.crew-name {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--text);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.crew-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}

.crew-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.crew-link:hover { color: var(--purple-light); border-color: var(--purple-light); }

/* === NEWS PAGE === */
.news-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 120px 48px 80px;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.news-item {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.news-item:first-child { border-top: 1px solid var(--border); }

.news-date {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.news-title {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--text);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 400;
}

.news-body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-dim);
}

.news-empty {
  padding: 80px 0;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.social-links {
  display: flex;
  gap: 28px;
}

.social-links a {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
  transition: color 0.2s;
}
.social-links a:hover { color: var(--text); }

.footer-copy {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* === DIVIDER === */
.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 16px; }

  .hero-content { max-width: 100%; }
  .show-title { letter-spacing: 0.1em; }

  .character-grid {
    grid-template-columns: 1fr;
    padding: 48px 24px;
    max-width: 420px;
  }

  .passport-page { padding: 100px 24px 60px; }
  .passport-body {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .passport-photo-wrap { max-width: 200px; }

  .crew-member {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer {
    flex-direction: column;
    gap: 24px;
    text-align: center;
    padding: 40px 24px;
  }

  .section { padding: 60px 24px; }
  .crew-wrap,
  .episodes-wrap,
  .news-wrap,
  .passport-page { padding-left: 24px; padding-right: 24px; }
}
