* {
  box-sizing: border-box;
}

:root {
  --bg: #07080b;
  --bg-soft: #0d0f14;
  --text: #f2f0ea;
  --muted: #a6a5a2;
  --line: rgba(255,255,255,.12);
  --gold: #d2aa63;
  --gold-soft: #8d6a37;
  --max: 1180px;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
body::selection { background: #d2aa63; color: #111; }

.noise {
  position: fixed;
  inset: 0;
  opacity: .028;
  pointer-events: none;
  z-index: 20;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(22px, 5vw, 72px);
  background: linear-gradient(to bottom, rgba(7,8,11,.88), rgba(7,8,11,0));
  transition: background .3s, backdrop-filter .3s;
}

.site-header.scrolled {
  background: rgba(7,8,11,.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.brand {
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-weight: 700;
  letter-spacing: .18em;
  font-size: 1.05rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-toggle {
  min-width: 54px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.03);
  color: var(--text);
  font-weight: 700;
  letter-spacing: .08em;
  cursor: pointer;
}

.nav {
  display: flex;
  gap: 30px;
  color: #ddd;
  font-size: .87rem;
}

.nav a {
  opacity: .8;
  transition: opacity .2s, color .2s;
}

.nav a:hover { opacity: 1; color: var(--gold); }

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 36px;
  padding: 6px 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 1px;
  margin: 6px 0;
  background: white;
}

.hero, .ember-hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero {
  background:
    radial-gradient(circle at 50% 46%, rgba(184,117,42,.16), transparent 24%),
    linear-gradient(130deg, #0b0c10 0%, #07080b 50%, #111017 100%);
}

.hero::before,
.ember-hero::before {
  content: "";
  position: absolute;
  width: 56vw;
  height: 56vw;
  min-width: 520px;
  min-height: 520px;
  border: 1px solid rgba(210,170,99,.15);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(210,170,99,.025),
    0 0 0 150px rgba(210,170,99,.018),
    inset 0 0 100px rgba(210,170,99,.025);
}

.hero::after, .ember-hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 30%;
  background: linear-gradient(to top, var(--bg), transparent);
}

.ember-hero {
  background:
    radial-gradient(circle at 50% 48%, rgba(250,150,42,.18), transparent 22%),
    linear-gradient(135deg, #130d0a 0%, #07080b 54%, #16131b 100%);
}

.hero-glow,
.ember-hero .hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(75px);
  opacity: .22;
}

.hero-glow-one { width: 340px; height: 340px; background: #8c4a16; left: 10%; bottom: 10%; }
.hero-glow-two { width: 300px; height: 300px; background: #3b405d; right: 10%; top: 18%; }

.hero-content, .ember-hero-inner {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 140px 20px 90px;
  max-width: 900px;
}

.eyebrow {
  color: var(--gold);
  letter-spacing: .23em;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1, .ember-hero h1 {
  margin: 10px 0 8px;
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: clamp(3.8rem, 11vw, 8.8rem);
  line-height: .95;
  letter-spacing: .06em;
  text-shadow: 0 12px 60px rgba(0,0,0,.65);
}

.hero-tagline {
  color: #cac7c0;
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  line-height: 1.55;
  letter-spacing: .06em;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.button, .inline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--line);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
  transition: transform .2s, background .2s, border-color .2s;
}

.button:hover, .inline-button:hover { transform: translateY(-2px); }

.button-primary {
  color: #111;
  background: #e4c27e;
  border-color: #e4c27e;
}

.button-ghost, .inline-button {
  background: rgba(255,255,255,.025);
  backdrop-filter: blur(8px);
}

.inline-button {
  margin-top: 14px;
  min-height: 40px;
}

.scroll-indicator {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: #777;
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .18em;
}
.scroll-indicator i {
  width: 1px;
  height: 34px;
  background: linear-gradient(to bottom, #777, transparent);
}

.section {
  width: min(var(--max), calc(100% - 42px));
  margin: 0 auto;
  padding: 120px 0;
}

.section-heading { max-width: 780px; margin-bottom: 48px; }

.section-heading h2,
.about h2,
.story-content h2,
.listen-card h2,
.story-manifest h2 {
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-weight: 600;
  font-size: clamp(2.1rem, 5vw, 4.8rem);
  line-height: 1.06;
  margin: 8px 0 20px;
}

.section-heading p:not(.eyebrow),
.story-content p,
.about-copy p,
.listen-card > p:not(.eyebrow),
.story-manifest p {
  color: var(--muted);
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 22px;
}

.release-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
  padding: 14px;
  transition: transform .3s, border-color .3s;
}
.release-card:hover { transform: translateY(-4px); border-color: rgba(210,170,99,.4); }

.release-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(280px, .95fr) 1.2fr;
  align-items: stretch;
}

.cover {
  aspect-ratio: 1 / 1;
  min-height: 260px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 25px;
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: clamp(1.35rem, 3vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: .04em;
  box-shadow: inset 0 0 80px rgba(0,0,0,.45);
}
.cover::before, .cover::after { content: ""; position: absolute; border-radius: 50%; filter: blur(1px); }
.cover span { position: relative; z-index: 2; text-shadow: 0 4px 18px rgba(0,0,0,.7); }

.cover-doorframe {
  background:
    linear-gradient(to top, rgba(0,0,0,.78), transparent 60%),
    linear-gradient(135deg, #422b20, #af8354 48%, #1a1a19);
}
.cover-doorframe::before {
  width: 10px; height: 78%; left: 48%; bottom: 0;
  background: rgba(239,217,170,.22); border-radius: 2px;
  box-shadow: 0 -60px 0 rgba(239,217,170,.15), 0 -120px 0 rgba(239,217,170,.1);
}
.cover-stop {
  background:
    radial-gradient(circle at 32% 35%, #c06135 0 7%, transparent 8%),
    radial-gradient(circle at 68% 35%, #9a9ba0 0 7%, transparent 8%),
    linear-gradient(135deg, #261514, #471e19 42%, #16171b);
}
.cover-better {
  background:
    repeating-linear-gradient(125deg, transparent 0 18px, rgba(255,255,255,.025) 18px 19px),
    radial-gradient(circle at 50% 45%, #6e2848, #1c1731 45%, #09090d);
}
.cover-phoenix {
  background:
    radial-gradient(circle at 50% 58%, #ffb84e 0 4%, #bd5622 12%, transparent 32%),
    linear-gradient(160deg, #0a1019, #371410 58%, #08090b);
}

.release-copy { padding: 24px 20px 16px; align-self: center; }
.release-type {
  color: var(--gold);
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin: 0 0 6px;
}
.release-copy h3 {
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: clamp(1.45rem, 2.4vw, 2.4rem);
  line-height: 1.12;
  margin: 0 0 12px;
}
.release-copy p:not(.release-type) { color: var(--muted); }

.card-actions { display: flex; gap: 22px; margin-top: 22px; }
.text-link {
  color: #eee; font-size: .85rem;
  border-bottom: 1px solid rgba(255,255,255,.25); padding-bottom: 3px;
}

.album-stack { display: grid; gap: 14px; }

.album-panel {
  min-height: 290px;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.album-panel::before {
  content: ""; position: absolute; inset: 0; z-index: -2; opacity: .88;
}
.album-panel::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(5,5,6,.9), rgba(5,5,6,.35), rgba(5,5,6,.72));
}
.album-one::before {
  background:
    radial-gradient(circle at 70% 45%, rgba(255,158,64,.85), transparent 18%),
    linear-gradient(120deg, #11131a 10%, #5d1d10 60%, #0a0a0c);
}
.album-two::before {
  background:
    radial-gradient(circle at 68% 42%, rgba(112,116,159,.34), transparent 22%),
    linear-gradient(135deg, #08090e, #171522 45%, #09080d);
}
.album-three::before {
  background:
    radial-gradient(circle at 72% 44%, rgba(83,117,143,.35), transparent 20%),
    linear-gradient(125deg, #0c0d11, #192733 58%, #090a0c);
}
.album-number {
  color: var(--gold); letter-spacing: .2em;
  font-size: .7rem; font-weight: 700;
}
.album-panel h3 {
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: clamp(2rem, 4.5vw, 4.1rem);
  line-height: 1.05;
  margin: 8px 0 18px;
  max-width: 800px;
}
.album-panel p:not(.album-number) { max-width: 610px; color: #c0beb8; }
.album-status {
  color: #aaa; white-space: nowrap; padding-left: 30px;
  font-size: .8rem; text-transform: uppercase; letter-spacing: .15em;
}

.story-section {
  min-height: 720px;
  position: relative;
  display: flex;
  align-items: center;
  margin: 60px 0 20px;
  background:
    radial-gradient(circle at 72% 50%, rgba(196,104,38,.17), transparent 20%),
    linear-gradient(110deg, #06070a 12%, #0d0e13 60%, #18100d);
}
.story-section::before {
  content: "";
  position: absolute;
  top: 10%; right: 9%;
  width: 390px; height: 520px;
  border: 1px solid rgba(210,170,99,.16);
  transform: rotate(9deg);
  box-shadow: 30px 30px 100px rgba(0,0,0,.5);
}
.story-section::after {
  content: "";
  position: absolute;
  top: 23%; right: 18%;
  width: 210px; height: 300px;
  border: 1px solid rgba(210,170,99,.13);
  transform: rotate(-8deg);
}
.story-content {
  position: relative; z-index: 2;
  width: min(var(--max), calc(100% - 42px));
  margin: 0 auto;
  max-width: 780px;
  margin-left: max(21px, calc((100% - var(--max))/2));
  padding: 100px 0;
}
.story-content p { max-width: 680px; }

.about-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.about-title { position: sticky; top: 130px; }
.about-copy { font-size: 1.05rem; }
.about-copy .lead {
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  color: #ebe6dd;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.45;
}

.lore-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.lore-card, .graphic-card, .chapter-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
}
.lore-card {
  padding: 24px;
}
.lore-card h3, .graphic-card h3, .chapter-card h3 {
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  margin: 0 0 10px;
  font-size: 1.5rem;
}
.lore-card p, .graphic-card p, .chapter-card p { color: var(--muted); margin: 0; }

.chapter-timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}
.chapter-card { padding: 26px; position: relative; overflow: hidden; }
.chapter-card::before {
  content: "";
  position: absolute; inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(to bottom, #e9c37a, #702712);
}
.chapter-meta {
  display: inline-flex;
  min-width: 64px;
  height: 34px;
  padding: 0 10px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.15);
  margin-bottom: 16px;
  color: var(--gold);
  letter-spacing: .15em;
  font-weight: 700;
  font-size: .8rem;
}

.graphics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}
.graphic-card {
  padding: 24px;
}
.graphic-card.wide { grid-column: span 2; }
.cycle-svg, .line-svg {
  width: 100%;
  height: auto;
  display: block;
  background: radial-gradient(circle at 50% 45%, rgba(255,255,255,.02), rgba(255,255,255,0));
  border: 1px solid rgba(255,255,255,.06);
  margin: 10px 0 18px;
}
.theme-map {
  position: relative;
  min-height: 320px;
  margin: 14px 0 18px;
  border: 1px solid rgba(255,255,255,.06);
  background:
    radial-gradient(circle at 50% 50%, rgba(241,180,92,.07), transparent 18%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.02), transparent 58%);
}
.theme-node {
  position: absolute;
  min-width: 120px;
  padding: 12px 16px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.03);
  font-weight: 700;
  letter-spacing: .08em;
}
.theme-node.center { top: 50%; left: 50%; transform: translate(-50%, -50%); color: #111; background: #e4c27e; }
.theme-node.top { top: 22px; left: 50%; transform: translateX(-50%); }
.theme-node.right { top: 50%; right: 22px; transform: translateY(-50%); }
.theme-node.bottom { bottom: 22px; left: 50%; transform: translateX(-50%); }
.theme-node.left { top: 50%; left: 22px; transform: translateY(-50%); }
.theme-map::before, .theme-map::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 70%; height: 1px;
  background: rgba(255,255,255,.1);
  transform: translate(-50%, -50%);
}
.theme-map::after {
  width: 1px; height: 70%;
}

.story-manifest {
  border: 1px solid var(--line);
  padding: clamp(30px, 6vw, 60px);
  background:
    radial-gradient(circle at 85% 20%, rgba(241,163,69,.08), transparent 16%),
    linear-gradient(145deg, rgba(255,255,255,.025), rgba(255,255,255,.01));
}

.listen-section {
  width: min(var(--max), calc(100% - 42px));
  margin: 0 auto;
  padding: 40px 0 120px;
}

.listen-card {
  text-align: center;
  border: 1px solid var(--line);
  padding: clamp(48px, 8vw, 90px) 24px;
  background:
    radial-gradient(circle at 50% 10%, rgba(210,170,99,.09), transparent 28%),
    rgba(255,255,255,.018);
}

.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.social-links a {
  padding: 13px 20px;
  border: 1px solid var(--line);
  min-width: 110px;
  transition: border-color .2s, transform .2s;
}
.social-links a:hover { border-color: var(--gold); transform: translateY(-2px); }

footer {
  width: min(var(--max), calc(100% - 42px));
  margin: 0 auto;
  padding: 28px 0 36px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: #777;
  font-size: .75rem;
}

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.placeholder-toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translate(-50%, 20px);
  z-index: 100;
  background: #e4c27e;
  color: #111;
  padding: 11px 15px;
  font-size: .8rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .2s;
}
.placeholder-toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 960px) {
  .lore-grid,
  .graphics-grid,
  .chapter-timeline {
    grid-template-columns: 1fr;
  }
  .graphic-card.wide { grid-column: auto; }
}

@media (max-width: 780px) {
  .site-header { padding: 18px 20px; }
  .menu-toggle { display: block; z-index: 52; }
  .nav {
    position: fixed;
    inset: 0;
    background: rgba(7,8,11,.97);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    font-size: 1.3rem;
    transform: translateY(-100%);
    transition: transform .35s ease;
  }
  .nav.open { transform: translateY(0); }

  .release-grid { grid-template-columns: 1fr; }
  .release-card.featured { grid-column: auto; grid-template-columns: 1fr; }

  .album-panel {
    min-height: 360px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
  }
  .album-status { padding: 12px 0 0; }

  .story-section::before { right: -150px; }
  .story-section::after { right: -40px; }

  .about-grid { grid-template-columns: 1fr; gap: 12px; }
  .about-title { position: static; }

  .theme-map {
    min-height: 430px;
  }
  .theme-node.center { top: 50%; left: 50%; }
  .theme-node.top { top: 20px; }
  .theme-node.bottom { bottom: 20px; }
  .theme-node.left { top: 50%; left: 20px; }
  .theme-node.right { top: 50%; right: 20px; }

  footer { gap: 10px; flex-direction: column; }
}


/* COMPLETE SAGA */
.saga-hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 70%, rgba(180,70,24,.22), transparent 23%),
    radial-gradient(circle at 72% 30%, rgba(89,84,135,.20), transparent 26%),
    radial-gradient(circle at 80% 75%, rgba(211,178,92,.12), transparent 22%),
    linear-gradient(135deg, #100907, #07080b 46%, #10121a 72%, #16130d);
}
.saga-hero::before {
  content:"";
  position:absolute;
  width:760px;height:760px;
  border-radius:50%;
  border:1px solid rgba(218,181,102,.12);
  box-shadow:0 0 0 100px rgba(255,255,255,.012),0 0 0 220px rgba(255,255,255,.008);
}
.saga-hero::after {
  content:""; position:absolute; inset:auto 0 0; height:32%;
  background:linear-gradient(to top,var(--bg),transparent);
}
.saga-hero-inner { position:relative; z-index:2; max-width:960px; padding:130px 22px 80px; }
.saga-hero h1 {
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size:clamp(4rem,10vw,9rem);
  line-height:.95; margin:10px 0 12px;
}
.saga-subtitle {
  color:var(--gold); letter-spacing:.32em; text-transform:uppercase;
  font-size:.78rem; font-weight:700;
}
.saga-prologue { padding-top:130px; }
.saga-principles {
  display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin-top:55px;
}
.principle {
  min-height:210px; padding:26px 22px;
  border:1px solid var(--line);
  background:linear-gradient(145deg,rgba(255,255,255,.03),rgba(255,255,255,.008));
}
.principle span { color:#666; font-family: Georgia, "Times New Roman", ui-serif, serif; font-size:2.2rem; display:block; }
.principle strong { color:var(--gold); letter-spacing:.14em; display:block; margin:16px 0 8px; }
.principle p { color:var(--muted); margin:0; }

.saga-act { position:relative; overflow:hidden; }
.saga-act .act-backdrop { position:absolute; inset:0; opacity:.95; }
.act-fire .act-backdrop {
  background:radial-gradient(circle at 80% 18%,rgba(206,75,25,.18),transparent 24%),linear-gradient(150deg,#100907,#07080b 54%,#160b07);
}
.act-void .act-backdrop {
  background:radial-gradient(circle at 78% 24%,rgba(91,83,150,.18),transparent 24%),linear-gradient(150deg,#080812,#07080b 54%,#10101b);
}
.act-horizon .act-backdrop {
  background:radial-gradient(circle at 78% 24%,rgba(213,185,101,.15),transparent 22%),linear-gradient(150deg,#0d0d0b,#07080b 54%,#17150e);
}
.act-inner { position:relative; z-index:2; }
.act-heading { max-width:830px; margin-bottom:55px; }
.act-number { font-family: Georgia, "Times New Roman", ui-serif, serif; font-size:clamp(4rem,9vw,8rem); color:rgba(255,255,255,.055); line-height:.85; margin-bottom:-10px; }
.act-heading h2 { font-family: Georgia, "Times New Roman", ui-serif, serif; font-size:clamp(2.8rem,6vw,5.8rem); line-height:1.02; margin:8px 0 20px; }
.act-heading > p:not(.eyebrow,.act-question) { color:var(--muted); max-width:760px; }
.act-question { color:#eee; font-size:1.1rem; font-family: Georgia, "Times New Roman", ui-serif, serif; border-left:2px solid var(--gold); padding-left:18px; margin:24px 0; }

.track-journey { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px; }
.saga-track {
  position:relative; padding:25px 26px 27px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.018);
  min-height:210px;
  transition:transform .25s,border-color .25s,background .25s;
}
.saga-track:hover { transform:translateY(-3px); border-color:rgba(210,170,99,.38); background:rgba(255,255,255,.027); }
.saga-track span { color:var(--gold); font-size:.67rem; letter-spacing:.17em; font-weight:700; }
.saga-track h3 { font-family: Georgia, "Times New Roman", ui-serif, serif; font-size:1.45rem; line-height:1.15; margin:9px 0 12px; }
.saga-track p { color:var(--muted); margin:0; font-size:.94rem; }

.transition-card {
  margin-top:55px; padding:clamp(30px,5vw,55px);
  border:1px solid rgba(210,170,99,.2);
  background:radial-gradient(circle at 90% 20%,rgba(210,170,99,.08),transparent 20%),rgba(255,255,255,.018);
}
.transition-card h3 { font-family: Georgia, "Times New Roman", ui-serif, serif; font-size:clamp(1.8rem,3.6vw,3.2rem); line-height:1.15; margin:8px 0 18px; max-width:800px; }
.transition-card p:not(.eyebrow) { color:var(--muted); max-width:780px; }
.transition-card a { display:inline-block; margin-top:10px; color:var(--gold); border-bottom:1px solid rgba(210,170,99,.4); }

.act-pills { display:flex; flex-wrap:wrap; gap:9px; margin-top:26px; }
.act-pills span { border:1px solid var(--line); padding:8px 12px; font-size:.67rem; letter-spacing:.12em; color:#c8c4ba; }

.trilogy-map {
  display:grid;
  grid-template-columns:1fr auto 1fr auto 1fr;
  align-items:center;
  gap:16px;
  margin:45px 0 30px;
}
.trilogy-node {
  min-height:170px; display:flex; flex-direction:column; justify-content:center; align-items:center;
  text-align:center; padding:20px; border:1px solid var(--line); background:rgba(255,255,255,.018);
}
.trilogy-node span { font-family: Georgia, "Times New Roman", ui-serif, serif; font-size:3rem; color:var(--gold); line-height:1; }
.trilogy-node strong { font-family: Georgia, "Times New Roman", ui-serif, serif; margin:12px 0 4px; }
.trilogy-node small { color:var(--muted); }
.fire-node { box-shadow:inset 0 -70px 90px rgba(168,60,17,.07); }
.void-node { box-shadow:inset 0 -70px 90px rgba(78,71,132,.07); }
.horizon-node { box-shadow:inset 0 -70px 90px rgba(197,166,81,.07); }
.trilogy-arrow { color:#666; font-size:2rem; }
.saga-arc { border:1px solid var(--line); background:rgba(255,255,255,.012); padding:18px; }
.saga-arc svg { width:100%; height:auto; display:block; }

.saga-finale {
  min-height:720px; display:grid; place-items:center; text-align:center; position:relative;
  background:radial-gradient(circle at 50% 50%,rgba(219,179,88,.11),transparent 26%),linear-gradient(#07080b,#11100b);
}
.finale-inner { width:min(900px,calc(100% - 42px)); padding:100px 0; }
.finale-inner h2 { font-family: Georgia, "Times New Roman", ui-serif, serif; font-size:clamp(2.6rem,6vw,5.4rem); line-height:1.05; margin:8px 0 25px; }
.finale-inner > p:not(.eyebrow,.handover) { color:var(--muted); max-width:760px; margin:0 auto; }
.final-line {
  font-family: Georgia, "Times New Roman", ui-serif, serif; font-size:clamp(1.4rem,3.2vw,2.7rem);
  line-height:1.45; margin:60px auto 30px; padding:40px 20px;
  border-top:1px solid rgba(210,170,99,.24); border-bottom:1px solid rgba(210,170,99,.24);
}
.final-line strong { color:#e4c27e; }
.handover { color:var(--gold); text-transform:uppercase; letter-spacing:.3em; font-size:.78rem; font-weight:700; }

@media (max-width:900px){
  .saga-principles { grid-template-columns:repeat(2,1fr); }
  .track-journey { grid-template-columns:1fr; }
  .trilogy-map { grid-template-columns:1fr; }
  .trilogy-arrow { transform:rotate(90deg); text-align:center; }
}
@media (max-width:560px){
  .saga-principles { grid-template-columns:1fr; }
  .saga-track { min-height:auto; }
}

/* V5 PUBLIC RELEASE */
.social-disabled{padding:13px 20px;border:1px solid var(--line);min-width:110px;opacity:.42;cursor:default}
footer a{color:#aaa} footer a:hover{color:var(--gold)}
.legal-page{padding-top:90px}.legal-back{font-size:.85rem;color:#c9c6bf}.legal-wrap{max-width:900px;padding-top:70px}
.legal-wrap h1{font-family: Georgia, "Times New Roman", ui-serif, serif;font-size:clamp(2.5rem,6vw,5rem);line-height:1.05}
.legal-warning{border:1px solid rgba(210,170,99,.35);background:rgba(210,170,99,.06);padding:20px;margin:34px 0;color:#d9d3c7}
.legal-section{border-top:1px solid var(--line);padding:35px 0}.legal-section h2{font-family: Georgia, "Times New Roman", ui-serif, serif;font-size:1.8rem}.legal-section p{color:var(--muted)}
.hero-content,.ember-hero-inner,.saga-hero-inner{width:min(100%,980px);max-width:100%;overflow:hidden}
.hero h1,.ember-hero h1,.saga-hero h1{max-width:100%;overflow-wrap:normal;word-break:keep-all}
.hero .eyebrow,.ember-hero .eyebrow,.saga-hero .eyebrow{max-width:100%;white-space:normal;line-height:1.5}
@media(max-width:780px){
.hero,.ember-hero,.saga-hero{min-height:100svh}
.hero-content,.ember-hero-inner,.saga-hero-inner{padding-left:18px;padding-right:18px;width:100%}
.hero h1{font-size:clamp(3rem,16.5vw,5.25rem);letter-spacing:.015em;line-height:.98;margin-left:auto;margin-right:auto}
.ember-hero h1,.saga-hero h1{font-size:clamp(2.9rem,14vw,5rem);letter-spacing:.01em}
.hero .eyebrow,.ember-hero .eyebrow,.saga-hero .eyebrow{font-size:.62rem;letter-spacing:.16em;padding:0 10px}
.hero-tagline{font-size:clamp(.95rem,4.4vw,1.25rem);letter-spacing:.025em;max-width:92%;margin-left:auto;margin-right:auto}
.hero-actions .button{width:min(100%,330px)}
.section{width:min(var(--max),calc(100% - 32px))}
.section-heading h2,.about h2,.story-content h2,.listen-card h2,.story-manifest h2{overflow-wrap:break-word;hyphens:auto}
.release-copy{padding-left:10px;padding-right:10px}.cover{min-height:0}
.brand{font-size:.93rem;letter-spacing:.13em}.lang-toggle{min-width:50px;height:36px}
}
@media(max-width:390px){.hero h1{font-size:15.4vw}.site-header{padding-left:16px;padding-right:16px}.brand{font-size:.84rem}}

/* V5.1 PRIVACY-HARDENED */
.legal-section h3{
  margin-top:28px;
  font-family:Georgia,"Times New Roman",ui-serif,serif;
  font-size:1.2rem;
  color:#eee;
}
.legal-section ul{
  color:var(--muted);
  line-height:1.75;
  padding-left:1.25rem;
}
.legal-section a{
  color:#d8bb83;
  overflow-wrap:anywhere;
}
.legal-meta{
  color:#888;
  font-size:.88rem;
  margin-top:8px;
}
.privacy-summary{
  border:1px solid rgba(210,170,99,.28);
  background:rgba(210,170,99,.045);
  padding:18px 20px;
  margin:28px 0 10px;
}
