@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;800&family=Source+Serif+4:opsz,wght@8..60,400;8..60,600;8..60,700&family=Work+Sans:wght@500;600;700&display=swap");

:root {
  color-scheme: dark;
  --ink: #0c0b0f;
  --ink-soft: #151018;
  --panel: rgba(28, 23, 28, 0.78);
  --panel-strong: #211820;
  --text: #f4ead1;
  --muted: #b9ab91;
  --gold: #d9a94e;
  --gold-soft: #f2d99c;
  --jade: #0d8b70;
  --jade-soft: #8fe0cb;
  --crimson: #9f2230;
  --line: rgba(244, 234, 209, 0.16);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 12% 18%, rgba(159, 34, 48, 0.24), transparent 28rem),
    radial-gradient(circle at 88% 8%, rgba(13, 139, 112, 0.22), transparent 30rem),
    linear-gradient(135deg, #09080c 0%, #151016 46%, #081c19 100%);
  color: var(--text);
  font-family: "Source Serif 4", Georgia, serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 78%);
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid transparent;
  background: rgba(12, 11, 15, 0.7);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header[data-elevated="true"] {
  border-color: var(--line);
  background: rgba(12, 11, 15, 0.9);
}

.brand,
.nav-links,
.header-cta,
.button,
.platform-card a,
.site-footer a {
  font-family: "Work Sans", ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background:
    radial-gradient(circle at 62% 38%, var(--gold-soft) 0 7%, transparent 8%),
    conic-gradient(from 130deg, var(--jade), var(--gold), var(--crimson), var(--jade));
  box-shadow: 0 0 24px rgba(217, 169, 78, 0.36);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 34px);
  color: var(--muted);
  font-size: 0.84rem;
}

.nav-links a,
.header-cta,
.button,
.platform-card a,
.site-footer a {
  text-decoration: none;
}

.nav-links a {
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gold-soft);
}

.header-cta {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(217, 169, 78, 0.58);
  border-radius: 999px;
  background: rgba(217, 169, 78, 0.12);
  color: var(--gold-soft);
}

main {
  overflow: hidden;
}

.hero-section {
  position: relative;
  display: grid;
  min-height: calc(86vh - 74px);
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.68fr);
  grid-template-areas:
    "copy poster"
    "stats poster";
  gap: clamp(24px, 4vw, 42px);
  align-items: center;
  padding: clamp(30px, 5vw, 52px) clamp(18px, 5vw, 64px) clamp(28px, 4vw, 42px);
}

.hero-section::after {
  position: absolute;
  right: -18vw;
  bottom: -28vw;
  z-index: -1;
  width: 58vw;
  min-width: 520px;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(217, 169, 78, 0.18);
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(217, 169, 78, 0.09), transparent 48%),
    repeating-conic-gradient(from 24deg, rgba(244, 234, 209, 0.12) 0 2deg, transparent 2deg 9deg);
  opacity: 0.78;
}

.hero-copy {
  grid-area: copy;
  max-width: 790px;
}

.eyebrow,
.platform-kicker,
.panel-label {
  margin: 0 0 14px;
  color: var(--jade-soft);
  font-family: "Work Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Cinzel", Georgia, serif;
  line-height: 0.96;
}

h1 {
  max-width: 10ch;
  margin-bottom: 20px;
  font-size: 8rem;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 4.2rem;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.hero-lede {
  max-width: 650px;
  color: #dccdad;
  font-size: 1.32rem;
  line-height: 1.55;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 34px;
}

.tag-row span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(244, 234, 209, 0.06);
  color: var(--gold-soft);
  font-family: "Work Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 22px;
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease;
}

.button:hover,
.button:focus-visible,
.platform-card a:hover,
.platform-card a:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  background: linear-gradient(135deg, var(--gold), #f1d798);
  color: #171009;
}

.button.secondary {
  border: 1px solid rgba(143, 224, 203, 0.45);
  background: rgba(13, 139, 112, 0.12);
  color: var(--jade-soft);
}

.poster-frame {
  position: relative;
  grid-area: poster;
  width: min(100%, 398px);
  justify-self: end;
  margin: 0;
  border: 1px solid rgba(244, 234, 209, 0.18);
  border-radius: 8px;
  padding: 10px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.poster-frame img {
  aspect-ratio: 3 / 4;
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
}

.poster-frame figcaption {
  position: absolute;
  right: -18px;
  bottom: 28px;
  max-width: 190px;
  border: 1px solid rgba(217, 169, 78, 0.36);
  border-radius: 8px;
  padding: 14px 16px;
  background: rgba(12, 11, 15, 0.86);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
}

.poster-frame figcaption strong,
.poster-frame figcaption span {
  display: block;
}

.poster-frame figcaption strong {
  margin-bottom: 4px;
  color: var(--gold-soft);
  font-family: "Work Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.82rem;
}

.poster-frame figcaption span {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.3;
}

.hero-stats {
  display: grid;
  grid-area: stats;
  max-width: 930px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-stats article,
.platform-card,
.episode-panel,
.intent-board article,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.22);
}

.hero-stats article {
  padding: 18px;
}

.hero-stats span,
.arc-list span,
.intent-board span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-family: "Work Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-stats strong {
  display: block;
  font-size: 1.04rem;
  line-height: 1.22;
}

.watch-section,
.episode-section,
.story-section,
.faq-section {
  padding: clamp(66px, 9vw, 124px) clamp(18px, 5vw, 64px);
}

.watch-section {
  padding-top: 22px;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 32px;
}

.section-heading p:not(.eyebrow),
.story-copy p,
.platform-card p,
.episode-panel p,
.arc-list p,
.intent-board p,
.faq-list p,
.site-footer p {
  color: var(--muted);
  line-height: 1.62;
}

.section-heading.compact {
  max-width: 720px;
}

.platform-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.94fr 0.94fr;
  gap: 16px;
}

.platform-card {
  min-height: 280px;
  padding: clamp(22px, 3vw, 34px);
}

.platform-card.featured {
  background:
    linear-gradient(145deg, rgba(217, 169, 78, 0.18), rgba(13, 139, 112, 0.1)),
    var(--panel-strong);
}

.platform-card h3 {
  font-family: "Cinzel", Georgia, serif;
  font-size: 2.35rem;
  line-height: 1;
}

.platform-card a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  border: 1px solid rgba(217, 169, 78, 0.48);
  border-radius: 8px;
  padding: 0 16px;
  background: rgba(217, 169, 78, 0.1);
  color: var(--gold-soft);
  transition: transform 170ms ease, background 170ms ease;
}

.arc-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.34fr);
  gap: 26px;
  align-items: start;
}

.arc-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.arc-list li {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 18px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding: 22px 0 8px;
}

.arc-list span {
  color: var(--gold-soft);
  font-size: 0.85rem;
}

.arc-list h3 {
  font-family: "Cinzel", Georgia, serif;
  font-size: 2.15rem;
}

.episode-panel {
  position: sticky;
  top: 96px;
  padding: 26px;
  background:
    linear-gradient(150deg, rgba(13, 139, 112, 0.18), rgba(159, 34, 48, 0.12)),
    var(--panel);
}

.episode-panel strong {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-soft);
  font-size: 1.35rem;
  line-height: 1.18;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.story-copy {
  max-width: 680px;
}

.intent-board {
  display: grid;
  gap: 14px;
}

.intent-board article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  padding: 22px;
}

.intent-board span {
  color: var(--crimson);
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.45rem;
}

.intent-board h3,
.faq-list summary {
  font-family: "Work Sans", ui-sans-serif, system-ui, sans-serif;
}

.faq-list {
  display: grid;
  max-width: 980px;
  gap: 12px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--gold-soft);
  font-weight: 700;
}

.faq-list p {
  margin: 14px 0 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 32px clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer a {
  color: var(--gold-soft);
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero-section {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "poster"
      "stats";
  }

  .poster-frame {
    width: min(100%, 380px);
    justify-self: start;
    transform: none;
  }

  h1 {
    font-size: 5.8rem;
  }

  h2 {
    font-size: 3.25rem;
  }

  .platform-card h3 {
    font-size: 2rem;
  }

  .arc-list h3 {
    font-size: 1.85rem;
  }

  .hero-stats,
  .platform-grid,
  .arc-layout,
  .story-section {
    grid-template-columns: 1fr;
  }

  .episode-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand {
    max-width: 210px;
    white-space: normal;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 14px;
  }

  .hero-section {
    padding-top: 32px;
    gap: 24px;
    grid-template-areas: "copy";
  }

  h1 {
    font-size: 3.55rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero-lede {
    font-size: 1.08rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .tag-row span {
    font-size: 0.74rem;
  }

  .poster-frame figcaption {
    display: none;
  }

  .hero-stats {
    display: none;
  }

  .poster-frame {
    position: absolute;
    top: 106px;
    right: 16px;
    width: 96px;
    padding: 5px;
    transform: rotate(4deg);
  }

  .arc-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .intent-board article {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }
}
