/**
 * book1.css
 * thebreachuniverse.com — Book 1 Page Styles
 *
 * Depends on: main.css (CSS variables defined there)
 * Loaded by: /pages/book1.html only
 */

/* ── RESET / BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
  background:  var(--bg-primary);
  color:       var(--text-primary);
  font-family: var(--font-ui);
  line-height: 1.7;
  overflow-x:  hidden;
}

/* ── CONTAINER ──────────────────────────────────────────────── */
.container        { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.container-narrow { max-width: 800px;  margin: 0 auto; padding: 0 40px; }

/* ── NAVIGATION ─────────────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  background: rgba(5,8,16,0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  transition: border-color 0.3s;
}
.site-nav.scrolled { border-bottom-color: rgba(26,37,64,0.5); }
.nav-logo {
  font-family: var(--font-ui); font-weight: 600; font-size: 14px;
  letter-spacing: 0.25em; color: var(--accent-blue); text-decoration: none;
}
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-family: var(--font-ui); font-size: 13px; font-weight: 500;
  letter-spacing: 0.1em; color: var(--text-secondary); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent-blue); }
.nav-cta {
  font-family: var(--font-ui); font-weight: 600; font-size: 12px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent-blue); border: 1px solid var(--accent-blue);
  padding: 8px 20px; text-decoration: none; border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--accent-blue); color: var(--bg-primary); }
@media (max-width: 900px) { .nav-links { display: none; } .site-nav { padding: 0 24px; } }

/* ── SHARED SECTION STYLES ──────────────────────────────────── */
section { padding: 100px 0; }
section + section { border-top: 1px solid var(--border-subtle); }

.section-label {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.35em; color: var(--text-muted);
  text-transform: uppercase; margin-bottom: 16px; display: block;
}
.section-title {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(34px, 5vw, 52px);
  color: var(--text-primary); margin-bottom: 20px; line-height: 1.1;
}
.section-subtitle {
  font-size: 16px; color: var(--text-secondary);
  line-height: 1.8; max-width: 680px; margin-bottom: 60px;
}
.glow-rule {
  border: none; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
}

/* ── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.load-error { color: var(--text-muted); font-size: 13px; font-family: var(--font-mono); }

/* ── HERO ───────────────────────────────────────────────────── */
.book-hero {
  padding-top: 64px; min-height: 72vh;
  display: flex; align-items: flex-end;
  position: relative; overflow: hidden;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-subtle);
}
.book-hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 28% 42%, rgba(10,30,80,0.55), transparent);
}
#hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%; z-index: 0; pointer-events: none;
}
.book-hero-content {
  position: relative; z-index: 1;
  padding: 80px 0; width: 100%;
}
.hero-eyebrow {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.35em; color: var(--accent-gold);
  text-transform: uppercase; margin-bottom: 20px; display: block;
  opacity: 0; animation: fadeInUp 0.6s ease forwards 0.2s;
}
.hero-series-badge {
  display: inline-block;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em;
  color: var(--accent-blue); border: 1px solid rgba(79,195,247,0.3);
  background: rgba(79,195,247,0.06); padding: 4px 14px; margin-bottom: 24px;
  opacity: 0; animation: fadeInUp 0.6s ease forwards 0.3s;
}
.hero-title {
  font-family: var(--font-display); font-weight: 300; font-style: italic;
  font-size: clamp(64px, 10vw, 120px); line-height: 1.0;
  color: var(--text-primary); margin-bottom: 8px;
  opacity: 0; animation: fadeInUp 0.8s ease forwards 0.4s;
}
.hero-subtitle {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(16px, 2.2vw, 24px); color: var(--accent-gold);
  margin-bottom: 28px;
  opacity: 0; animation: fadeInUp 0.6s ease forwards 0.6s;
}
.hero-divider {
  width: 80px; height: 1px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
  margin-bottom: 28px;
  opacity: 0; animation: fadeInUp 0.4s ease forwards 0.7s;
}
.hero-premise {
  font-size: 17px; color: var(--text-primary); line-height: 1.8;
  max-width: 580px; margin-bottom: 32px;
  opacity: 0; animation: fadeInUp 0.6s ease forwards 0.8s;
}
.hero-meta {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em;
  color: var(--text-muted); margin-bottom: 28px;
  opacity: 0; animation: fadeInUp 0.4s ease forwards 0.9s;
}
.hero-buttons {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0; animation: fadeInUp 0.6s ease forwards 1.0s;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn-primary {
  font-family: var(--font-ui); font-weight: 600; font-size: 12px;
  letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--accent-blue); color: var(--bg-primary);
  border: none; padding: 14px 32px; border-radius: 2px;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: background 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { background: var(--accent-cyan); box-shadow: 0 0 28px rgba(79,195,247,0.45); }
.btn-primary.disabled {
  background: var(--bg-card); color: var(--text-muted);
  border: 1px solid var(--border-subtle); cursor: default;
  box-shadow: none;
}
.btn-secondary {
  font-family: var(--font-ui); font-weight: 600; font-size: 12px;
  letter-spacing: 0.2em; text-transform: uppercase;
  background: transparent; color: var(--accent-blue);
  border: 1px solid var(--accent-blue); padding: 14px 32px;
  border-radius: 2px; text-decoration: none; display: inline-block;
  transition: background 0.2s;
}
.btn-secondary:hover { background: rgba(79,195,247,0.08); }

/* ── STORY SECTION ───────────────────────────────────────────── */
.story-section { background: var(--bg-secondary); }
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.story-body p { font-size: 16px; color: var(--text-secondary); line-height: 1.85; margin-bottom: 20px; }
.story-body p:last-child { margin-bottom: 0; }
.story-body strong { color: var(--text-primary); }
.story-callout {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-left: 3px solid var(--accent-gold); padding: 36px; border-radius: 2px;
}
.story-callout-label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em;
  color: var(--accent-gold); text-transform: uppercase; margin-bottom: 14px; display: block;
}
.story-callout blockquote {
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: 20px; color: var(--text-primary); line-height: 1.5; margin-bottom: 14px;
}
.story-callout blockquote.quote-sm { font-size: 17px; }
.story-callout cite {
  font-family: var(--font-mono); font-size: 11px; color: var(--text-muted);
  font-style: normal; letter-spacing: 0.08em; display: block;
}
.callout-divider {
  height: 1px; background: var(--border-subtle); margin: 28px 0;
}
.status-val { font-size: 15px; color: var(--accent-gold); font-weight: 600; margin-bottom: 6px; }
.status-sub { font-size: 13px; color: var(--text-muted); }

/* ── TIMELINE ────────────────────────────────────────────────── */
.timeline-section { background: var(--bg-primary); }
.timeline-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 8px;
}
.timeline-track { position: relative; padding-left: 40px; }
.timeline-track::before {
  content: ''; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 1px;
  background: linear-gradient(to bottom, var(--accent-blue), rgba(79,195,247,0.05));
}
.timeline-item {
  position: relative; margin-bottom: 48px;
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.timeline-item.visible { opacity: 1; transform: translateY(0); }
.timeline-dot {
  position: absolute; left: -37px; top: 6px;
  width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid var(--accent-blue); background: var(--bg-primary);
  box-shadow: 0 0 10px rgba(79,195,247,0.4);
}
.timeline-dot.gold {
  border-color: var(--accent-gold); box-shadow: 0 0 10px rgba(201,168,76,0.4);
}
.timeline-date { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; color: var(--accent-blue); margin-bottom: 6px; }
.timeline-date.gold { color: var(--accent-gold); }
.timeline-location { font-weight: 700; font-size: 18px; color: var(--text-primary); letter-spacing: 0.04em; margin-bottom: 8px; }
.timeline-desc { font-size: 15px; color: var(--text-secondary); line-height: 1.7; max-width: 520px; }
.timeline-note {
  display: inline-block; margin-top: 10px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em;
  color: var(--text-muted); border: 1px solid var(--border-subtle); padding: 3px 10px;
}

/* ── CHARACTERS ──────────────────────────────────────────────── */
.characters-section { background: var(--bg-secondary); }

.char-featured {
  display: grid; grid-template-columns: 280px 1fr; gap: 56px; align-items: start;
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-left: 3px solid var(--accent-blue);
  padding: 44px; margin-bottom: 48px;
}
.char-featured.partner { border-left-color: var(--accent-gold); }

.char-portrait-wrap { position: relative; }
.char-portrait {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top center;
  filter: grayscale(20%) brightness(0.88); border: 1px solid var(--border-subtle);
  display: block;
}
.char-portrait-placeholder {
  width: 100%; aspect-ratio: 3/4; background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  display: flex; align-items: center; justify-content: center;
}
.char-portrait-placeholder span {
  font-family: var(--font-mono); font-size: 10px; color: var(--text-muted); letter-spacing: 0.2em;
}

.char-role-badge {
  display: inline-block; font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent-blue); border: 1px solid rgba(79,195,247,0.3);
  background: rgba(79,195,247,0.06); padding: 4px 12px; margin-bottom: 14px;
}
.char-role-badge.gold {
  color: var(--accent-gold); border-color: rgba(201,168,76,0.3); background: rgba(201,168,76,0.06);
}
.char-name {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(30px, 3.5vw, 48px);
  color: var(--text-primary); line-height: 1.0; margin-bottom: 8px;
}
.char-role-line { font-size: 15px; color: var(--accent-gold); font-weight: 500; margin-bottom: 6px; }
.char-affiliation {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em;
  color: var(--text-muted); margin-bottom: 22px;
}
.char-bio p { font-size: 15px; color: var(--text-secondary); line-height: 1.85; margin-bottom: 14px; }
.char-bio p:last-child { margin-bottom: 0; }
.char-bio strong { color: var(--text-primary); }
.char-quote {
  font-family: var(--font-display); font-style: italic; font-weight: 300; font-size: 19px;
  color: var(--accent-blue); line-height: 1.5;
  border-left: 2px solid var(--accent-blue); padding-left: 18px; margin-top: 20px;
}

/* Supporting character grid */
.char-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px;
  margin-bottom: 24px;
}
.char-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  padding: 30px; border-radius: 2px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.char-card:hover {
  border-color: rgba(79,195,247,0.28);
  box-shadow: 0 0 36px rgba(79,195,247,0.08);
}
.char-card .char-name { font-size: 26px; margin-bottom: 6px; }
.char-card .char-role-line { font-size: 13px; margin-bottom: 4px; }
.char-card .char-affiliation { font-size: 10px; margin-bottom: 14px; }
.char-card-bio { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.char-card-bio p { margin-bottom: 10px; }
.char-card-bio p:last-child { margin-bottom: 0; }

/* Faction section separator */
.faction-divider { padding-top: 64px; border-top: 1px solid var(--border-subtle); margin-top: 16px; }
.faction-label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.3em;
  color: var(--accent-gold); text-transform: uppercase; margin-bottom: 12px; display: block;
}
.faction-title {
  font-family: var(--font-display); font-weight: 300; font-size: 36px;
  color: var(--text-primary); margin-bottom: 10px;
}
.faction-subtitle {
  font-size: 15px; color: var(--text-secondary); line-height: 1.7;
  max-width: 620px; margin-bottom: 36px;
}

/* ── JOURNEY ─────────────────────────────────────────────────── */
.journey-section { background: var(--bg-primary); }
.journey-hero-text {
  font-family: var(--font-display); font-weight: 300; font-style: italic;
  font-size: clamp(22px, 3vw, 36px); color: var(--text-primary);
  line-height: 1.35; margin-bottom: 40px; max-width: 680px;
}
.journey-route {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
  border: 1px solid var(--border-subtle); margin: 48px 0;
}
.route-node {
  padding: 24px 18px;
  border-right: 1px solid var(--border-subtle);
  position: relative;
}
.route-node:last-child { border-right: none; }
.route-node::after {
  content: '→'; position: absolute; right: -13px; top: 50%; transform: translateY(-50%);
  color: var(--text-muted); font-size: 14px; z-index: 1;
}
.route-node:last-child::after { display: none; }
.route-day  { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; color: var(--accent-blue); margin-bottom: 6px; }
.route-name { font-weight: 700; font-size: 14px; color: var(--text-primary); margin-bottom: 4px; }
.route-dist { font-family: var(--font-mono); font-size: 10px; color: var(--text-muted); }
.journey-body p { font-size: 16px; color: var(--text-secondary); line-height: 1.85; margin-bottom: 20px; max-width: 720px; }

/* ── SHIPS ───────────────────────────────────────────────────── */
.ships-section { background: var(--bg-secondary); }
.ship-profile {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start;
  margin-bottom: 72px;
}
.ship-profile:last-child { margin-bottom: 0; }
.ship-class {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em;
  color: var(--accent-blue); margin-bottom: 10px; display: block;
}
.ship-name {
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: clamp(36px, 5vw, 52px); color: var(--text-primary); margin-bottom: 20px;
}
.ship-desc p { font-size: 15px; color: var(--text-secondary); line-height: 1.85; margin-bottom: 14px; }
.ship-specs-panel { background: var(--bg-card); border: 1px solid var(--border-subtle); padding: 32px; }
.spec-title {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.25em;
  color: var(--accent-gold); text-transform: uppercase; margin-bottom: 18px; display: block;
}
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr + tr td { border-top: 1px solid var(--border-subtle); }
.spec-table td { padding: 10px 0; vertical-align: top; font-size: 13px; line-height: 1.5; }
.spec-table .spec-key {
  font-family: var(--font-mono); font-size: 10px; color: var(--text-muted);
  letter-spacing: 0.1em; width: 38%; padding-right: 14px;
}
.spec-table .spec-val { color: var(--text-secondary); }

/* Crew manifest */
.crew-manifest { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border-subtle); }
.crew-item {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 8px 0; border-bottom: 1px solid var(--border-subtle); font-size: 13px;
}
.crew-item:last-child { border-bottom: none; }
.crew-role { font-family: var(--font-mono); font-size: 10px; color: var(--text-muted); letter-spacing: 0.1em; }
.crew-name { color: var(--text-primary); font-weight: 600; }

/* ── HORIZON STATION ─────────────────────────────────────────── */
.station-section { background: var(--bg-primary); }
.station-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.station-body p { font-size: 16px; color: var(--text-secondary); line-height: 1.85; margin-bottom: 18px; }
.station-body strong { color: var(--text-primary); }
.station-rings { display: flex; flex-direction: column; gap: 14px; }
.rings-label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.25em;
  color: var(--text-muted); margin-bottom: 8px; display: block;
}
.ring-item {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-left: 3px solid var(--accent-blue); padding: 18px 22px;
}
.ring-item.ring-gold  { border-left-color: var(--accent-gold); }
.ring-item.ring-cyan  { border-left-color: var(--accent-cyan); }
.ring-item.ring-muted { border-left-color: var(--border-subtle); }
.ring-label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em;
  color: var(--accent-blue); text-transform: uppercase; margin-bottom: 5px; display: block;
}
.ring-item.ring-gold  .ring-label { color: var(--accent-gold); }
.ring-item.ring-cyan  .ring-label { color: var(--accent-cyan); }
.ring-item.ring-muted .ring-label { color: var(--text-muted); }
.ring-name { font-weight: 700; font-size: 15px; color: var(--text-primary); margin-bottom: 6px; }
.ring-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ── FACTIONS (Book 1 roles) ─────────────────────────────────── */
.factions-section { background: var(--bg-primary); }
.faction-list {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px; margin-top: 32px;
}
.faction-entry {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: 4px; padding: 24px; transition: border-color 0.2s;
}
.faction-entry:hover { border-color: var(--accent-blue); }
.faction-entry h4 {
  font-size: 17px; color: var(--text-primary); margin-bottom: 8px;
  font-weight: 600; letter-spacing: 0.5px;
}
.faction-entry p {
  font-size: 13px; color: var(--text-muted); line-height: 1.7;
}

/* ── AETHER + SIGNAL ─────────────────────────────────────────── */
.aether-section { background: var(--bg-secondary); }
.aether-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.aether-body p { font-size: 16px; color: var(--text-secondary); line-height: 1.85; margin-bottom: 18px; }
.aether-body strong { color: var(--text-primary); }

.signal-reveal {
  background: var(--bg-card); border: 1px solid rgba(79,195,247,0.18); padding: 36px;
  position: relative; overflow: hidden;
}
.signal-reveal::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
}
.signal-reveal::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
}
.signal-label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.28em;
  color: var(--accent-blue); text-transform: uppercase; margin-bottom: 18px; display: block;
}
.signal-text {
  font-family: var(--font-display); font-weight: 300; font-style: italic;
  font-size: 20px; color: var(--text-primary); line-height: 1.5; margin-bottom: 18px;
}
.signal-reveal p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 12px; }
.signal-reveal strong { color: var(--text-primary); }
.signal-data { margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--border-subtle); }
.signal-data-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 8px 0; border-bottom: 1px solid rgba(26,37,64,0.5); font-size: 12px;
}
.signal-data-row:last-child { border-bottom: none; }
.signal-data-key { font-family: var(--font-mono); color: var(--text-muted); letter-spacing: 0.1em; font-size: 10px; }
.signal-data-val { color: var(--accent-blue); font-weight: 600; }

/* ── SIGNUP ──────────────────────────────────────────────────── */
.page-signup { background: var(--bg-primary); padding: 120px 0; }
.signup-form-inline {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
.signup-form-inline input[type="email"] {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  color: var(--text-primary); font-family: var(--font-ui); font-size: 16px;
  padding: 14px 20px; width: 300px; border-radius: 2px; outline: none;
  transition: border-color 0.2s;
}
.signup-form-inline input[type="email"]:focus  { border-color: var(--accent-blue); }
.signup-form-inline input[type="email"]::placeholder { color: var(--text-muted); }
.privacy-note {
  font-family: var(--font-mono); font-size: 10px; color: var(--text-muted);
  margin-top: 14px; letter-spacing: 0.1em; display: block;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-primary); border-top: 1px solid var(--border-subtle);
  padding: 60px 0 40px;
}
.footer-inner {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px;
}
.footer-logo {
  font-family: var(--font-ui); font-weight: 600; font-size: 14px; letter-spacing: 0.25em;
  color: var(--accent-blue); text-decoration: none; display: block; margin-bottom: 8px;
}
.footer-tagline { font-size: 13px; color: var(--text-muted); }
.footer-nav { list-style: none; }
.footer-nav li + li { margin-top: 10px; }
.footer-nav a { font-size: 13px; color: var(--text-secondary); text-decoration: none; transition: color 0.2s; }
.footer-nav a:hover { color: var(--accent-blue); }
.footer-status-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; color: var(--text-muted); margin-bottom: 8px; display: block; }
.footer-status-val  { font-size: 15px; color: var(--accent-gold); font-weight: 600; margin-bottom: 6px; }
.footer-status-sub  { font-size: 13px; color: var(--text-muted); }
.footer-copy {
  font-family: var(--font-mono); font-size: 10px; color: var(--text-muted);
  text-align: center; padding-top: 28px; border-top: 1px solid var(--border-subtle);
  letter-spacing: 0.1em;
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .ship-profile,
  .story-grid,
  .station-grid,
  .aether-grid   { grid-template-columns: 1fr; }
  .char-featured { grid-template-columns: 1fr; }
  .char-featured .char-portrait-wrap { max-width: 260px; }
  .timeline-grid { grid-template-columns: 1fr; gap: 0; }
  .timeline-track + .timeline-track { margin-top: 32px; }
}
@media (max-width: 768px) {
  section { padding: 72px 0; }
  .container, .container-narrow { padding: 0 24px; }
  .journey-route { grid-template-columns: 1fr; border: none; }
  .route-node { border: 1px solid var(--border-subtle); border-bottom: none; padding: 18px; }
  .route-node:last-child { border-bottom: 1px solid var(--border-subtle); }
  .route-node::after { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .char-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 56px; }
}
