/* ==========================================================================
   Every Living Thing — styles.css
   ========================================================================== */

:root {
  --ink: #04070d;
  --ink-2: #070d18;
  --panel: rgba(255, 255, 255, 0.045);
  --line: rgba(255, 255, 255, 0.1);
  --text: rgba(240, 248, 255, 0.96);
  --muted: rgba(226, 240, 255, 0.62);
  --faint: rgba(226, 240, 255, 0.4);
  --cyan: #7dd3fc;
  --blue: #3b82f6;
  --deep: #0ea5e9;
  --gold: #fcd34d;
  --serif: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 22px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--text);
  background:
    radial-gradient(ellipse 90% 44% at 50% -6%, rgba(14, 165, 233, 0.09), transparent 70%),
    radial-gradient(ellipse 60% 38% at 88% 32%, rgba(59, 130, 246, 0.06), transparent 70%),
    radial-gradient(ellipse 62% 40% at 8% 68%, rgba(45, 212, 191, 0.045), transparent 70%),
    linear-gradient(180deg, #05090f 0%, var(--ink) 30%, #050a12 65%, var(--ink) 100%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

::selection { background: rgba(125, 211, 252, 0.35); color: #fff; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

.section { padding: 120px 0; position: relative; }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--ink);
  display: grid;
  place-items: center;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader-drop {
  display: grid;
  justify-items: center;
  gap: 18px;
}
.preloader-drop svg {
  width: 54px;
  height: 72px;
  animation: drop-breathe 1.6s ease-in-out infinite;
}
.preloader-logo {
  height: 34px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(125, 211, 252, 0.25));
}
@keyframes drop-breathe {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.7; }
  50% { transform: translateY(-6px) scale(1.04); opacity: 1; }
}

/* ---------- Ambient background ---------- */
.ambient { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  will-change: transform;
}
.ambient-orb-a {
  width: 42rem; height: 42rem;
  left: -12%; top: -14%;
  background: rgba(14, 165, 233, 0.13);
  animation: orb-drift-a 26s ease-in-out infinite alternate;
}
.ambient-orb-b {
  width: 36rem; height: 36rem;
  right: -10%; bottom: -12%;
  background: rgba(59, 130, 246, 0.11);
  animation: orb-drift-b 32s ease-in-out infinite alternate;
}
.ambient-orb-c {
  width: 30rem; height: 30rem;
  left: 34%; top: 42%;
  background: rgba(45, 212, 191, 0.06);
  animation: orb-drift-c 38s ease-in-out infinite alternate;
}
@keyframes orb-drift-a {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(90px, 60px) scale(1.12); }
}
@keyframes orb-drift-b {
  from { transform: translate(0, 0) scale(1.08); }
  to { transform: translate(-80px, -70px) scale(0.94); }
}
@keyframes orb-drift-c {
  from { transform: translate(0, 0); }
  to { transform: translate(-110px, 80px); }
}
.ambient-rays {
  position: absolute;
  inset: -20% -10%;
  background:
    linear-gradient(115deg, transparent 42%, rgba(125, 211, 252, 0.028) 47%, transparent 52%),
    linear-gradient(115deg, transparent 60%, rgba(165, 243, 252, 0.02) 66%, transparent 72%),
    linear-gradient(115deg, transparent 24%, rgba(59, 130, 246, 0.022) 29%, transparent 34%);
  animation: rays-sway 22s ease-in-out infinite alternate;
}
@keyframes rays-sway {
  from { transform: translateX(-2.5%) skewX(0deg); opacity: 0.85; }
  to { transform: translateX(2.5%) skewX(-1.5deg); opacity: 1; }
}
.ambient-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 120% 90% at 50% 42%, transparent 58%, rgba(0, 0, 0, 0.42) 100%);
}
.ambient-grain {
  position: absolute; inset: 0;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.035 0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  z-index: 60;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  box-shadow: 0 0 14px rgba(125, 211, 252, 0.7);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  border: none;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s, border-color 0.35s;
}
.btn svg { width: 14px; height: 14px; }
.btn-primary {
  color: #041018;
  background: linear-gradient(100deg, #a5f3fc, var(--cyan) 45%, var(--deep));
  box-shadow: 0 14px 50px rgba(14, 165, 233, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 60px rgba(14, 165, 233, 0.5);
}
.btn-ghost {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(125, 211, 252, 0.6);
  background: rgba(125, 211, 252, 0.08);
}
.btn-sm { padding: 11px 20px; font-size: 11px; }
.btn-block { width: 100%; }

/* ---------- Live dot ---------- */
.live-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 12px rgba(74, 222, 128, 0.9);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.82); }
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 22px 0;
  transition: padding 0.4s var(--ease), background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 12px 0;
  background: rgba(4, 7, 13, 0.72);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--line);
}
.nav-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-social {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.nav-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: color 0.3s;
}
.nav-social a:hover { color: var(--cyan); }
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--cyan);
}
.nav-logo {
  height: 26px;
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  gap: 4px;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: 999px;
  transition: color 0.25s, background 0.25s;
}
.nav-links a:hover { color: #fff; background: rgba(255, 255, 255, 0.07); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(74, 222, 128, 0.28);
  background: rgba(74, 222, 128, 0.07);
  font-size: 12px;
  color: #bbf7d0;
  font-variant-numeric: tabular-nums;
  transition: background 0.25s;
}
.nav-live:hover { background: rgba(74, 222, 128, 0.14); }
.nav-live-count { font-weight: 700; color: #fff; }
.nav-live-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(187, 247, 208, 0.7);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav.menu-open .nav-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
.nav.menu-open .nav-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img {
  width: 100%; height: 115%;
  object-fit: cover;
  filter: brightness(0.5) saturate(0.9);
  will-change: transform;
}
.hero-veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 90%, rgba(14, 165, 233, 0.16), transparent 55%),
    linear-gradient(180deg, rgba(4, 7, 13, 0.75) 0%, rgba(4, 7, 13, 0.25) 40%, rgba(4, 7, 13, 0.92) 100%);
}
.hero-content {
  padding-top: 130px;
  padding-bottom: 100px;
  text-align: center;
  width: 100%;
}
.hero-eyebrow {
  margin: 0 0 26px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(207, 250, 254, 0.72);
}
.hero-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(34px, 8.6vw, 122px);
  line-height: 1.14;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.hero-title .line {
  display: block;
  overflow: hidden;
  padding: 0.06em 0.05em 0.16em;
  margin-bottom: -0.16em;
}
.hero-title .line > span {
  display: inline-block;
  transform: translateY(115%);
  animation: rise 1.1s var(--ease) forwards;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(120deg, #a5f3fc, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@keyframes rise { to { transform: translateY(0); } }
.hero-tagline {
  margin: 34px auto 0;
  max-width: 680px;
  font-size: clamp(16px, 1.9vw, 20px);
  line-height: 1.8;
  color: var(--muted);
}
.hero-tagline em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--cyan);
  font-size: 1.1em;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 44px;
}
.hero-laurels {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  justify-content: center;
  margin-top: 56px;
}
.laurel {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(253, 230, 138, 0.75);
  line-height: 1.7;
  text-align: center;
}
.laurel strong { color: #fde68a; font-weight: 600; }
.laurel-wing { font-size: 26px; transform: scaleX(-1); opacity: 0.7; }
.laurel-wing.flip { transform: scaleX(1); }
.laurel-img {
  height: 96px;
  width: auto;
  object-fit: contain;
}
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  width: 26px; height: 44px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.hero-scroll span {
  width: 3px; height: 8px;
  border-radius: 3px;
  background: var(--cyan);
  animation: scroll-hint 1.8s ease-in-out infinite;
}
@keyframes scroll-hint {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ---------- Stat ticker ---------- */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  padding: 16px 0;
  position: relative;
  z-index: 1;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  animation: ticker 30s linear infinite;
}
.ticker-track span {
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(207, 250, 254, 0.55);
}
.ticker-track i { color: var(--cyan); font-style: normal; opacity: 0.6; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- Shared typography ---------- */
.eyebrow {
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(125, 211, 252, 0.78);
}
.section-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(38px, 5.2vw, 66px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.section-title em {
  font-style: italic;
  background: linear-gradient(120deg, #a5f3fc, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-title-oneline {
  white-space: nowrap;
  font-size: clamp(19px, 4.6vw, 60px);
}
.section-lede {
  margin: 22px 0 0;
  max-width: 640px;
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Warning ---------- */
.warning {
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(14, 165, 233, 0.08), transparent 65%),
    linear-gradient(180deg, var(--ink), var(--ink-2));
}
.warning .eyebrow { justify-content: center; width: 100%; text-align: center; }
.warning-quote {
  margin: 0 auto;
  max-width: 900px;
  text-align: center;
}
.warning-quote p {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(32px, 4.6vw, 58px);
  line-height: 1.2;
  letter-spacing: -0.015em;
}
.warning-quote em {
  font-style: italic;
  color: var(--cyan);
}
.warning-quote cite {
  display: block;
  margin-top: 22px;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
}
.warning-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  margin-top: 72px;
}
.warning-clip {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.5);
}
.warning-stats { display: grid; gap: 8px; }
.stat {
  display: grid;
  gap: 6px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.stat:first-child { padding-top: 0; }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(40px, 4.4vw, 58px);
  font-weight: 700;
  line-height: 1;
  color: var(--cyan);
  font-variant-numeric: tabular-nums;
}
.stat-label {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 420px;
}
.stat-footnote {
  margin: 22px 0 0;
  padding: 18px 22px;
  border-left: 2px solid var(--cyan);
  background: rgba(125, 211, 252, 0.05);
  border-radius: 0 14px 14px 0;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(207, 250, 254, 0.85);
}

/* ---------- Trailer — Cinematic Redesign ---------- */
.trailer {
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 50% 20%, rgba(14, 165, 233, 0.10), transparent 60%),
    radial-gradient(ellipse 50% 60% at 20% 80%, rgba(59, 130, 246, 0.06), transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 80%, rgba(45, 212, 191, 0.04), transparent 60%),
    linear-gradient(180deg, var(--ink) 0%, #030810 50%, var(--ink) 100%);
}
.trailer .section-lede { margin-inline: auto; }

/* Cinematic background layer */
.trailer-cinematic-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.trailer-cinematic-rays {
  position: absolute;
  inset: -30% -20%;
  background:
    linear-gradient(135deg, transparent 38%, rgba(125, 211, 252, 0.03) 44%, transparent 50%),
    linear-gradient(135deg, transparent 55%, rgba(165, 243, 252, 0.02) 62%, transparent 68%),
    linear-gradient(135deg, transparent 20%, rgba(59, 130, 246, 0.025) 26%, transparent 32%);
  animation: trailer-rays-sway 18s ease-in-out infinite alternate;
}
@keyframes trailer-rays-sway {
  from { transform: translateX(-3%) skewX(0deg); opacity: 0.6; }
  to   { transform: translateX(3%) skewX(-2deg); opacity: 1; }
}

/* Floating water particles */
.trailer-cinematic-particles {
  position: absolute;
  inset: 0;
}
.trailer-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(125, 211, 252, 0.5);
  box-shadow: 0 0 8px rgba(125, 211, 252, 0.4);
  animation: trailer-float 8s ease-in-out infinite;
}
.trailer-particle-1 { left: 8%;  top: 18%; animation-delay: 0s;    animation-duration: 10s; width: 3px; height: 3px; }
.trailer-particle-2 { left: 92%; top: 30%; animation-delay: 1.5s;  animation-duration: 12s; width: 5px; height: 5px; }
.trailer-particle-3 { left: 15%; top: 72%; animation-delay: 3s;    animation-duration: 9s;  }
.trailer-particle-4 { left: 85%; top: 65%; animation-delay: 2s;    animation-duration: 11s; width: 3px; height: 3px; }
.trailer-particle-5 { left: 50%; top: 10%; animation-delay: 4s;    animation-duration: 14s; width: 2px; height: 2px; }
.trailer-particle-6 { left: 35%; top: 85%; animation-delay: 5.5s;  animation-duration: 10s; width: 6px; height: 6px; opacity: 0.35; }
@keyframes trailer-float {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
  25%      { transform: translateY(-20px) translateX(8px); opacity: 0.7; }
  50%      { transform: translateY(-35px) translateX(-5px); opacity: 0.5; }
  75%      { transform: translateY(-15px) translateX(12px); opacity: 0.8; }
}

/* Trailer title */
.trailer-title { text-align: center; }

/* Frame wrapper with glow aura */
.trailer-frame-wrap {
  position: relative;
  margin: 56px auto 0;
  max-width: 980px;
  z-index: 1;
}
.trailer-glow {
  position: absolute;
  inset: -20px;
  border-radius: 36px;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(14, 165, 233, 0.18), transparent 65%);
  filter: blur(30px);
  animation: trailer-glow-breathe 4s ease-in-out infinite alternate;
  z-index: -1;
}
@keyframes trailer-glow-breathe {
  from { opacity: 0.5; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1.04); }
}

/* Frame */
.trailer-frame {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(125, 211, 252, 0.18);
  box-shadow:
    0 50px 160px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(125, 211, 252, 0.06) inset,
    0 0 80px rgba(14, 165, 233, 0.12);
  cursor: pointer;
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.trailer-frame:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 60px 180px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(125, 211, 252, 0.15) inset,
    0 0 120px rgba(14, 165, 233, 0.2);
}
.trailer-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease), filter 0.6s;
}
.trailer-frame:hover img { transform: scale(1.06); filter: brightness(1.1); }

/* Dark overlay on the poster for contrast */
.trailer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.1) 0%,
    rgba(0,0,0,0.05) 40%,
    rgba(0,0,0,0.4) 100%
  );
  transition: opacity 0.5s;
}
.trailer-frame:hover .trailer-overlay { opacity: 0.7; }

/* Play button with double ring pulse */
.trailer-play {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 100px; height: 100px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #041018;
  background: linear-gradient(135deg, #a5f3fc, var(--cyan), var(--deep));
  box-shadow: 0 24px 70px rgba(14, 165, 233, 0.55);
  transition: transform 0.4s var(--ease);
  z-index: 2;
}
.trailer-play svg { width: 32px; height: 32px; margin-left: 4px; position: relative; z-index: 2; }
.trailer-frame:hover .trailer-play { transform: translate(-50%, -50%) scale(1.12); }

/* Ripple rings */
.trailer-play-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(125, 211, 252, 0.5);
  animation: trailer-ring-pulse 2.8s ease-out infinite;
}
.trailer-play-ring-2 {
  animation-delay: 1.4s;
  border-color: rgba(125, 211, 252, 0.3);
}
@keyframes trailer-ring-pulse {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* Watch Now badge */
.trailer-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  padding: 10px 24px;
  border-radius: 999px;
  background: rgba(4, 7, 13, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(125, 211, 252, 0.3);
  color: var(--cyan);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  z-index: 2;
}
.trailer-frame:hover .trailer-badge {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Editorial pull quote */
.trailer-pull {
  position: relative;
  margin: 56px auto 0;
  max-width: 760px;
  padding: 36px 42px 36px 48px;
  border-radius: 20px;
  border: 1px solid rgba(125, 211, 252, 0.1);
  background: rgba(125, 211, 252, 0.03);
  text-align: left;
}
.trailer-pull-accent {
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--cyan), var(--deep), rgba(59, 130, 246, 0.3));
}
.trailer-pull p {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.85;
  color: var(--muted);
}
.trailer-pull cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
}

/* ---------- Hero Spotify Embed ---------- */
.hero-spotify {
  margin-top: 36px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.hero-spotify-label {
  margin: 0 0 12px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(30, 215, 96, 0.8);
  text-align: center;
}
.hero-spotify iframe {
  border-radius: 14px;
  border: 1px solid rgba(30, 215, 96, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* ---------- Sound Unlock Overlay ---------- */
.sound-overlay {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(2, 6, 14, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  opacity: 1;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.sound-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.sound-overlay-inner {
  text-align: center;
  max-width: 380px;
  padding: 48px 36px;
  border-radius: 28px;
  border: 1px solid rgba(125, 211, 252, 0.2);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(14, 165, 233, 0.12), transparent 60%),
    rgba(6, 14, 28, 0.85);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.5);
  animation: overlay-pop 0.5s var(--ease);
}
@keyframes overlay-pop {
  from { transform: scale(0.92); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.sound-overlay-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(125, 211, 252, 0.08);
  border: 1px solid rgba(125, 211, 252, 0.25);
  animation: sound-icon-breathe 2s ease-in-out infinite alternate;
}
.sound-overlay-icon svg {
  width: 28px;
  height: 28px;
  color: var(--cyan);
}
@keyframes sound-icon-breathe {
  from { box-shadow: 0 0 0 0 rgba(125, 211, 252, 0.2); }
  to   { box-shadow: 0 0 0 14px rgba(125, 211, 252, 0); }
}
.sound-overlay-title {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  color: var(--text);
}
.sound-overlay-sub {
  margin: 0 0 28px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}
.sound-overlay-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 999px;
  border: none;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #041018;
  background: linear-gradient(100deg, #a5f3fc, var(--cyan) 45%, var(--deep));
  box-shadow: 0 14px 50px rgba(14, 165, 233, 0.35);
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.sound-overlay-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 60px rgba(14, 165, 233, 0.5);
}
.sound-overlay-btn svg { width: 14px; height: 14px; }
.sound-overlay-skip {
  display: block;
  margin: 16px auto 0;
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--faint);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.25s;
}
.sound-overlay-skip:hover { color: var(--muted); }

/* ---------- Music Toggle (fixed button) ---------- */
.music-toggle {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 55;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(125, 211, 252, 0.25);
  background: rgba(4, 7, 13, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--cyan);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.35s var(--ease), background 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.music-toggle:hover {
  transform: translateY(-3px) scale(1.06);
  border-color: rgba(125, 211, 252, 0.5);
  box-shadow: 0 14px 40px rgba(14, 165, 233, 0.25);
}
.music-toggle svg {
  width: 20px;
  height: 20px;
}
.music-toggle .icon-sound-off { display: none; }
.music-toggle .icon-sound-on { display: block; }
.music-toggle.is-playing {
  border-color: rgba(125, 211, 252, 0.4);
  background: rgba(14, 165, 233, 0.12);
  animation: music-pulse 2.5s ease-in-out infinite;
}
@keyframes music-pulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35), 0 0 0 0 rgba(125, 211, 252, 0.2); }
  50%      { box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35), 0 0 0 8px rgba(125, 211, 252, 0); }
}
.music-toggle.is-playing .icon-sound-on { display: block; }
.music-toggle.is-playing .icon-sound-off { display: none; }
.music-toggle:not(.is-playing) .icon-sound-on { display: none; }
.music-toggle:not(.is-playing) .icon-sound-off { display: block; }

/* ---------- Dataset / Research Library Modal ---------- */
.dataset-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.dataset-modal[hidden] { display: none; }
.dataset-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 14, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.dataset-modal-panel {
  position: relative;
  max-width: 720px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 42px;
  border-radius: 28px;
  border: 1px solid rgba(125, 211, 252, 0.2);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(14, 165, 233, 0.08), transparent 60%),
    rgba(6, 12, 22, 0.95);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55);
  animation: overlay-pop 0.4s var(--ease);
}
.dataset-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--faint);
  cursor: pointer;
  padding: 6px;
  line-height: 1;
  transition: color 0.25s;
}
.dataset-modal-close:hover { color: var(--text); }
.dataset-modal-panel h3 {
  margin: 10px 0 0;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 26px;
}
.dataset-modal-lede {
  margin: 14px 0 24px;
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--muted);
}
.dataset-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}
.dataset-list li { border-radius: 12px; }
.dataset-list a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 18px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  transition: background 0.25s;
}
.dataset-list a:hover { background: rgba(125, 211, 252, 0.06); }
.dataset-list strong { font-size: 14px; font-weight: 600; }
.dataset-list span { font-size: 12px; color: var(--faint); }
.dataset-modal-all {
  margin-top: 24px;
  width: 100%;
}

/* ---------- Pledge (live tracker) ---------- */
.pledge { overflow: hidden; }
.pledge-bg { position: absolute; inset: 0; }
.pledge-bg img {
  width: 100%; height: 115%;
  object-fit: cover;
  filter: brightness(0.34) saturate(0.85);
  will-change: transform;
}
.pledge-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--ink) 0%, rgba(4, 7, 13, 0.62) 22%, rgba(4, 7, 13, 0.72) 78%, var(--ink) 100%);
}
.pledge-head { text-align: center; }
.pledge-counter {
  margin: 54px auto 0;
  max-width: 760px;
  text-align: center;
}
.pledge-count {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(64px, 10vw, 128px);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(120deg, #e0f2fe, #a5f3fc 45%, var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 90px rgba(125, 211, 252, 0.25);
}
.pledge-goal {
  margin-top: 12px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
}
.pledge-goal strong { color: var(--text); }
.pledge-bar {
  margin-top: 30px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  overflow: hidden;
}
.pledge-bar-fill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--deep), var(--cyan), #a5f3fc);
  box-shadow: 0 0 24px rgba(125, 211, 252, 0.6);
  transition: width 1.4s var(--ease);
  position: relative;
}
.pledge-bar-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: translateX(-100%);
  animation: bar-shine 3s ease-in-out infinite;
}
@keyframes bar-shine { 60%, 100% { transform: translateX(100%); } }
.pledge-bar-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
  font-variant-numeric: tabular-nums;
}
.pledge-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  margin-top: 64px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.pledge-form-panel {
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(6, 12, 22, 0.72);
  backdrop-filter: blur(22px);
  padding: 36px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.4);
}
.pledge-statement {
  padding: 20px 24px;
  border-left: 2px solid var(--cyan);
  background: rgba(125, 211, 252, 0.05);
  border-radius: 0 16px 16px 0;
  font-size: 14.5px;
  line-height: 1.9;
  color: rgba(226, 240, 255, 0.85);
}
.pledge-statement strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
}
.pledge-form { margin-top: 28px; display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
}
.field input, .field select {
  width: 100%;
  padding: 15px 17px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
  font-family: var(--sans);
  font-size: 14.5px;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}
.field select { appearance: none; cursor: pointer; }
.field select option { background: var(--ink-2); color: #fff; }
.field input::placeholder { color: rgba(255, 255, 255, 0.28); }
.field input:focus, .field select:focus {
  outline: none;
  border-color: rgba(125, 211, 252, 0.65);
  background: rgba(125, 211, 252, 0.06);
  box-shadow: 0 0 0 4px rgba(125, 211, 252, 0.12);
}
.field input.invalid { border-color: rgba(248, 113, 113, 0.7); }
.form-error {
  margin: 0;
  min-height: 0;
  font-size: 13px;
  color: #fca5a5;
}
.pledge-confirm {
  display: none;
  margin-top: 24px;
  padding: 22px 24px;
  border-radius: 18px;
  border: 1px solid rgba(74, 222, 128, 0.35);
  background: rgba(74, 222, 128, 0.08);
  color: #bbf7d0;
  font-size: 15px;
  line-height: 1.8;
}
.pledge-confirm.show { display: block; animation: confirm-pop 0.6s var(--ease); }
@keyframes confirm-pop {
  0% { transform: scale(0.96); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* ---------- Film ---------- */
.film {
  background:
    radial-gradient(ellipse 55% 60% at 18% 22%, rgba(14, 165, 233, 0.07), transparent 65%),
    radial-gradient(ellipse 50% 50% at 88% 80%, rgba(59, 130, 246, 0.05), transparent 65%),
    linear-gradient(180deg, var(--ink-2), #050a13 55%, var(--ink-2));
}
.film-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 72px;
  align-items: center;
}
.film-poster {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: none;
  box-shadow: 0 50px 150px rgba(0, 0, 0, 0.6);
  transition: transform 0.5s var(--ease);
  will-change: transform;
}
.film-poster-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 28% 12%, rgba(125, 211, 252, 0.18), transparent 45%);
  pointer-events: none;
}
.film-lede {
  margin: 26px 0 0;
  font-size: 17px;
  line-height: 1.9;
  color: var(--muted);
  max-width: 620px;
}
.film-specs {
  margin: 38px 0 0;
  display: grid;
  gap: 0;
}
.film-specs > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 15px 2px;
  border-bottom: 1px solid var(--line);
}
.film-specs dt {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
}
.film-specs dd {
  margin: 0;
  font-size: 14.5px;
  font-weight: 500;
  text-align: right;
  color: var(--text);
}
.chip-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(74, 222, 128, 0.35);
  background: rgba(74, 222, 128, 0.1);
  color: #4ade80;
  font-size: 12.5px;
  font-weight: 600;
}
.film-stills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 84px;
}
.film-stills figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}
.film-stills img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.film-stills figure:hover img { transform: scale(1.05); }
.film-stills figcaption {
  padding: 18px 22px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

/* ---------- Acts ---------- */
.acts-rail-wrap { margin-top: 56px; }
.acts-rail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.act-card {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 0 0 26px;
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.5s, box-shadow 0.5s;
}
.act-card:hover {
  transform: translateY(-8px);
  border-color: rgba(125, 211, 252, 0.4);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}
.act-card figure { margin: 0; overflow: hidden; aspect-ratio: 4 / 3; }
.act-card figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.act-card:hover figure img { transform: scale(1.08); }
.act-num {
  display: inline-block;
  margin: 20px 22px 0;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cyan);
}
.act-card h3 {
  margin: 10px 22px 0;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 21px;
  line-height: 1.25;
}
.act-card p {
  margin: 12px 22px 0;
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--muted);
}

/* ---------- World map ---------- */
.world {
  background:
    radial-gradient(ellipse 65% 60% at 50% 100%, rgba(14, 165, 233, 0.07), transparent 65%),
    linear-gradient(180deg, var(--ink-2), #04080f);
  text-align: center;
}
.world .eyebrow { justify-content: center; }
.world-map {
  margin: 52px auto 0;
  max-width: 1000px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 40px 130px rgba(0, 0, 0, 0.5);
}

/* ---------- Voices ---------- */
.narrator {
  display: flex;
  gap: 26px;
  align-items: center;
  margin-top: 52px;
  padding: 30px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: linear-gradient(120deg, rgba(125, 211, 252, 0.07), var(--panel));
}
.narrator img {
  width: 96px; height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(125, 211, 252, 0.4);
  flex: 0 0 auto;
}
.narrator h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 24px;
}
.narrator h3 span {
  font-style: italic;
  font-weight: 400;
  color: var(--cyan);
}
.narrator p {
  margin: 8px 0 0;
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--muted);
}
.voice-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 26px;
}
.voice-card {
  padding: 26px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  text-align: center;
  transition: transform 0.45s var(--ease), border-color 0.45s, background 0.45s;
}
.voice-card:hover {
  transform: translateY(-6px);
  border-color: rgba(125, 211, 252, 0.4);
  background: rgba(125, 211, 252, 0.05);
}
.voice-card img {
  width: 76px; height: 76px;
  margin: 0 auto;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  transition: border-color 0.45s, transform 0.45s var(--ease);
}
.voice-card:hover img {
  border-color: rgba(125, 211, 252, 0.7);
  transform: scale(1.06);
}
.voice-card h4 {
  margin: 16px 0 0;
  font-size: 15px;
  font-weight: 600;
}
.voice-card span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--cyan);
}
.voice-card small {
  display: block;
  margin-top: 7px;
  font-size: 11.5px;
  line-height: 1.55;
  color: var(--faint);
}

/* ---------- Crew ---------- */
.crew {
  background:
    radial-gradient(ellipse 60% 55% at 82% 12%, rgba(59, 130, 246, 0.06), transparent 65%),
    radial-gradient(ellipse 50% 50% at 10% 88%, rgba(45, 212, 191, 0.045), transparent 65%),
    linear-gradient(180deg, var(--ink-2), #050a13);
}
.crew-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
}
.crew-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  transition: transform 0.45s var(--ease), border-color 0.45s;
}
.crew-card:hover {
  transform: translateY(-4px);
  border-color: rgba(125, 211, 252, 0.4);
}
.crew-card img {
  width: 62px; height: 62px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  flex: 0 0 auto;
}
.crew-avatar {
  width: 62px; height: 62px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(125, 211, 252, 0.85);
  background: rgba(125, 211, 252, 0.08);
}
.crew-card h4 { margin: 0; font-size: 15.5px; font-weight: 600; }
.crew-card span {
  display: block;
  margin-top: 4px;
  font-size: 12.5px;
  color: var(--muted);
}
.crew-grid-center {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 18px;
}

/* ---------- Impact Preview (above trailer) ---------- */
.impact-preview {
  background:
    radial-gradient(ellipse 65% 55% at 50% 0%, rgba(14, 165, 233, 0.07), transparent 65%),
    linear-gradient(180deg, var(--ink-2), #04080f 50%, var(--ink-2));
}
.impact-preview .section-title { margin-bottom: 0; }
.impact-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.impact-preview-card {
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(ellipse 80% 60% at 50% 10%, rgba(14, 165, 233, 0.06), transparent 60%),
    rgba(6, 12, 24, 0.75);
  backdrop-filter: blur(18px);
  padding: 32px 30px 34px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease), border-color 0.5s, box-shadow 0.5s;
}
.impact-preview-card:hover {
  transform: translateY(-6px);
  border-color: rgba(125, 211, 252, 0.35);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
}
.impact-preview-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.impact-preview-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.impact-preview-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(125, 211, 252, 0.2);
  background: rgba(125, 211, 252, 0.06);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(125, 211, 252, 0.8);
  white-space: nowrap;
}
.impact-preview-badge svg {
  flex: 0 0 auto;
  stroke: rgba(125, 211, 252, 0.6);
}
.impact-preview-orb-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 8px auto 20px;
  width: 120px;
  height: 120px;
}
.impact-preview-orb {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, rgba(6, 12, 24, 0.6) 60%, transparent 100%);
  display: grid;
  place-items: center;
  animation: orb-float 5s ease-in-out infinite alternate;
}
.impact-preview-orb svg { width: 70px; height: 70px; }
.impact-preview-leaf {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 28px;
  height: 28px;
  animation: leaf-spin 6s ease-in-out infinite;
}
.impact-preview-wave {
  width: 100%;
  height: 16px;
  margin: 4px 0 18px;
  opacity: 0.7;
}
.impact-preview-wave svg { width: 100%; height: 100%; }
.impact-preview-card h3 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.2;
}
.impact-preview-card p {
  margin: 0 0 24px;
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--muted);
  flex: 1;
}
.btn-impact-preview {
  align-self: flex-start;
  padding: 13px 24px;
  font-size: 12px;
}

/* ---------- Festival boards ---------- */
.festival { text-align: center; }
.festival .eyebrow { justify-content: center; }
.festival .section-lede { margin-inline: auto; }
.board-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 52px;
}
.board-grid figure {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
  transition: transform 0.5s var(--ease);
}
.board-grid figure:hover { transform: translateY(-6px) scale(1.015); }
.board-grid img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Partners ---------- */
.partners {
  background:
    radial-gradient(ellipse 70% 70% at 50% 30%, rgba(14, 165, 233, 0.055), transparent 65%),
    linear-gradient(180deg, #050a13, var(--ink-2));
  padding-bottom: 90px;
}
.partners-marquee {
  margin-top: 46px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}
.partners-track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  animation: ticker 42s linear infinite;
}
.partner-logo {
  flex: 0 0 auto;
  width: 182px;
  height: 100px;
  display: grid;
  place-items: center;
  padding: 20px 26px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #fff;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.partner-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(125, 211, 252, 0.2);
}
.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ---------- Closing ---------- */
.closing { padding-bottom: 140px; }
.closing-inner {
  position: relative;
  text-align: center;
  padding: 90px 40px;
  border-radius: 36px;
  border: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(14, 165, 233, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  overflow: hidden;
}
.closing .eyebrow { justify-content: center; }
.closing-hashtag {
  margin: 10px 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 800;
  font-size: clamp(40px, 6.5vw, 82px);
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, #e0f2fe, var(--cyan) 50%, var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.closing-copy {
  margin: 26px auto 0;
  max-width: 620px;
  font-size: 15.5px;
  line-height: 1.9;
  color: var(--muted);
}
.closing-copy strong { color: var(--cyan); }
.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  background: var(--ink-2);
  padding: 60px 0 48px;
  position: relative;
  z-index: 1;
}
.footer-inner { display: grid; gap: 28px; text-align: center; }
.footer-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  margin: 0 auto;
}
.footer-brand p {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.9;
  color: var(--faint);
}
.footer-social {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.footer-social a {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: background 0.25s, transform 0.35s var(--ease), border-color 0.25s;
}
.footer-social a:hover {
  background: rgba(125, 211, 252, 0.12);
  border-color: rgba(125, 211, 252, 0.45);
  transform: translateY(-3px);
}
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--faint);
}
.footer-credit {
  margin: 6px 0 0;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.footer-credit span {
  color: var(--cyan);
  animation: pulse 1.8s ease-in-out infinite;
  display: inline-block;
}

/* ---------- Hero secondary CTA (AI Trailer + IMDB) ---------- */
.hero-cta-secondary {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 32px;
}
.btn-yt {
  color: #fff;
  background: linear-gradient(120deg, #ff0000, #cc0000);
  border: 1px solid rgba(255, 0, 0, 0.3);
  box-shadow: 0 10px 40px rgba(255, 0, 0, 0.25);
}
.btn-yt svg { width: 18px; height: 18px; }
.btn-yt:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 50px rgba(255, 0, 0, 0.4);
}
/* 25% smaller variant for hero secondary buttons */
.btn-hero-sm {
  padding: 12px 22px;
  font-size: 10px;
  letter-spacing: 0.1em;
}
.btn-hero-sm.btn-yt svg { width: 14px; height: 14px; }
.btn-hero-sm.btn-imdb-premium {
  padding: 9px 17px 9px 11px;
  gap: 9px;
}
.btn-imdb-premium {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(245, 197, 24, 0.25);
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.1), rgba(245, 197, 24, 0.04));
  backdrop-filter: blur(14px);
  text-decoration: none;
  color: #fde68a;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s, background 0.4s;
  box-shadow: 0 8px 32px rgba(245, 197, 24, 0.12), inset 0 1px 0 rgba(245, 197, 24, 0.1);
}
.btn-imdb-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 30%, rgba(245, 197, 24, 0.08) 50%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
}
.btn-imdb-premium:hover::before { opacity: 1; }
.btn-imdb-premium:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 197, 24, 0.5);
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.16), rgba(245, 197, 24, 0.06));
  box-shadow: 0 16px 50px rgba(245, 197, 24, 0.22), 0 0 40px rgba(245, 197, 24, 0.08), inset 0 1px 0 rgba(245, 197, 24, 0.15);
}
.imdb-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 2px 8px rgba(245, 197, 24, 0.35));
  flex: 0 0 auto;
  transition: filter 0.4s var(--ease), transform 0.4s var(--ease);
}
.btn-imdb-premium:hover .imdb-badge {
  filter: drop-shadow(0 4px 16px rgba(245, 197, 24, 0.5));
  transform: scale(1.05);
}
.imdb-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(253, 230, 138, 0.9);
  transition: color 0.3s;
}
.btn-imdb-premium:hover .imdb-label { color: #fef3c7; }
.imdb-arrow {
  width: 12px;
  height: 12px;
  color: rgba(253, 230, 138, 0.5);
  transition: transform 0.35s var(--ease), color 0.35s;
  flex: 0 0 auto;
}
.btn-imdb-premium:hover .imdb-arrow {
  transform: translateX(3px);
  color: rgba(253, 230, 138, 0.9);
}

/* ---------- Crew Instagram icon ---------- */
.crew-ig {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  text-decoration: none;
  margin-top: 8px;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.35s var(--ease);
}
.crew-ig:hover {
  background: rgba(225, 48, 108, 0.15);
  border-color: rgba(225, 48, 108, 0.5);
  color: #e1306c;
  transform: translateY(-2px);
}

/* ---------- Impact Pillars ---------- */
.impact {
  background:
    radial-gradient(ellipse 65% 55% at 50% 0%, rgba(14, 165, 233, 0.07), transparent 65%),
    linear-gradient(180deg, var(--ink-2), #04080f 50%, var(--ink-2));
}
.impact .section-title { margin-bottom: 0; }
.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.impact-card {
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(ellipse 80% 60% at 50% 10%, rgba(14, 165, 233, 0.06), transparent 60%),
    rgba(6, 12, 24, 0.75);
  backdrop-filter: blur(18px);
  padding: 32px 30px 34px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease), border-color 0.5s, box-shadow 0.5s;
}
.impact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(125, 211, 252, 0.35);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
}
.impact-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.impact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.impact-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(125, 211, 252, 0.2);
  background: rgba(125, 211, 252, 0.06);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(125, 211, 252, 0.8);
  white-space: nowrap;
}
.impact-badge svg {
  flex: 0 0 auto;
  stroke: rgba(125, 211, 252, 0.6);
}
.impact-orb-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 8px auto 20px;
  width: 120px;
  height: 120px;
}
.impact-orb {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, rgba(6, 12, 24, 0.6) 60%, transparent 100%);
  display: grid;
  place-items: center;
  animation: orb-float 5s ease-in-out infinite alternate;
}
.impact-orb svg { width: 70px; height: 70px; }
@keyframes orb-float {
  from { transform: translateY(0); }
  to { transform: translateY(-6px); }
}
.impact-leaf {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 28px;
  height: 28px;
  animation: leaf-spin 6s ease-in-out infinite;
}
@keyframes leaf-spin {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(12deg) scale(1.08); }
}
.impact-wave {
  width: 100%;
  height: 16px;
  margin: 4px 0 18px;
  opacity: 0.7;
}
.impact-wave svg { width: 100%; height: 100%; }
.impact-card h3 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.2;
}
.impact-card p {
  margin: 0 0 24px;
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--muted);
  flex: 1;
}
.btn-impact {
  align-self: flex-start;
  padding: 13px 24px;
  font-size: 12px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .section { padding: 90px 0; }
  .warning-grid, .film-grid { grid-template-columns: 1fr; gap: 44px; }
  .film-poster { max-width: 380px; margin: 0 auto; }
  .acts-rail { grid-template-columns: repeat(2, 1fr); }
  .acts-rail .act-card:last-child { grid-column: 1 / -1; }
  .voice-grid { grid-template-columns: repeat(2, 1fr); }
  .crew-grid { grid-template-columns: repeat(2, 1fr); }
  .board-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-grid { grid-template-columns: 1fr; }
  .impact-preview-grid { grid-template-columns: 1fr; }
  .pledge-grid { grid-template-columns: 1fr; }
  .nav-live .nav-live-label { display: none; }
  .film-title-split br { display: none; }
  /* Hero buttons — ensure visibility on tablets */
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 340px; }
  .hero-cta-secondary { flex-direction: column; align-items: center; }
  .hero-cta-secondary .btn { width: 100%; max-width: 340px; }
  .hero-spotify { max-width: 100%; }
  /* Trailer adjustments */
  .trailer-pull { padding: 28px 32px 28px 38px; }
}

@media (max-width: 760px) {
  .section { padding: 72px 0; }
  .container { padding: 0 20px; }
  .nav-links {
    position: fixed;
    top: 64px; left: 16px; right: 16px;
    z-index: 49;
    flex-direction: column;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(4, 7, 13, 0.94);
    backdrop-filter: blur(24px);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
  }
  .nav.menu-open .nav-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-links a { padding: 13px 16px; }
  .nav-toggle { display: flex; }
  .nav-right .btn { display: none; }
  .hero-content { padding-top: 110px; padding-bottom: 70px; }
  .hero-laurels { gap: 20px; }
  .laurel-img { height: 72px; }
  .form-row { grid-template-columns: 1fr; }
  .pledge-form-panel { padding: 24px; }
  .acts-rail { grid-template-columns: 1fr; }
  .acts-rail .act-card:last-child { grid-column: auto; }
  .voice-grid { grid-template-columns: repeat(2, 1fr); }
  .crew-grid { grid-template-columns: 1fr; }
  .film-stills { grid-template-columns: 1fr; }
  .narrator { flex-direction: column; text-align: center; }
  .closing-inner { padding: 60px 24px; }
  /* Hero buttons — must all be visible and tappable on mobile */
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 32px;
  }
  .hero-actions .btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 12px;
  }
  .hero-cta-secondary {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 20px;
  }
  .hero-cta-secondary .btn {
    width: 100%;
    padding: 12px 20px;
  }
  .btn-hero-sm {
    padding: 12px 20px;
    font-size: 11px;
  }
  /* Spotify — full width on mobile */
  .hero-spotify {
    max-width: 100%;
    margin-top: 24px;
  }
  .hero-spotify iframe {
    height: 80px;
  }
  /* Trailer — mobile adjustments */
  .trailer-cinematic-particles { display: none; }
  .trailer-frame-wrap { margin-top: 36px; }
  .trailer-play { width: 72px; height: 72px; }
  .trailer-play svg { width: 24px; height: 24px; }
  .trailer-badge { display: none; }
  .trailer-pull {
    padding: 24px 24px 24px 32px;
    margin-top: 36px;
  }
  /* Music toggle — smaller on mobile */
  .music-toggle {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
  .music-toggle svg { width: 18px; height: 18px; }
  /* Sound overlay — mobile padding */
  .sound-overlay-inner {
    padding: 36px 24px;
    max-width: 320px;
  }
  /* Dataset modal — mobile */
  .dataset-modal { padding: 12px; }
  .dataset-modal-panel { padding: 24px; }
}

@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;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-title .line > span { transform: none; }
  /* Keep the content marquees moving (client requirement) */
  .ticker-track {
    animation-duration: 30s !important;
    animation-iteration-count: infinite !important;
  }
  .partners-track {
    animation-duration: 42s !important;
    animation-iteration-count: infinite !important;
  }
}

/* ---------- Trailer Modal ---------- */
.trailer-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.trailer-modal[hidden] {
  display: none;
}
.trailer-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 16, 0.9);
  backdrop-filter: blur(10px);
}
.trailer-modal-content {
  position: relative;
  z-index: 201;
  width: 100%;
  max-width: 1000px;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(125, 211, 252, 0.2);
  animation: modal-pop 0.4s var(--ease) forwards;
}
@keyframes modal-pop {
  from { opacity: 0; transform: scale(0.96) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.trailer-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.trailer-modal-close:hover {
  opacity: 1;
}
.trailer-video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}
.trailer-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 1040px) {
  .trailer-modal-close {
    top: 10px;
    right: 10px;
    z-index: 202;
    background: rgba(0,0,0,0.5);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
  }
}
