/* ==========================================================================
   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: "Fraunces", Georgia, serif;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, 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: var(--ink);
  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-drop span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--faint);
}
@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);
}
.ambient-orb-a {
  width: 42rem; height: 42rem;
  left: -12%; top: -14%;
  background: rgba(14, 165, 233, 0.10);
}
.ambient-orb-b {
  width: 36rem; height: 36rem;
  right: -10%; bottom: -12%;
  background: rgba(59, 130, 246, 0.08);
}
.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-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--cyan);
}
.nav-brand svg { width: 16px; height: 21px; }
.nav-brand span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--text);
  letter-spacing: 0.02em;
}
.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: 380;
  font-size: clamp(64px, 12.5vw, 176px);
  line-height: 0.94;
  letter-spacing: -0.03em;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span {
  display: inline-block;
  transform: translateY(110%);
  animation: rise 1.1s var(--ease) forwards;
}
.hero-title .line:nth-child(2) > span { animation-delay: 0.12s; }
.hero-title .line:nth-child(3) > span { animation-delay: 0.24s; }
.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); }
.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;
  animation: ticker 38s 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: 400;
  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-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: 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: 350;
  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: 400;
  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 ---------- */
.trailer { text-align: center; }
.trailer .section-lede { margin-inline: auto; }
.trailer-frame {
  position: relative;
  margin: 56px auto 0;
  max-width: 980px;
  aspect-ratio: 16 / 9;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 50px 160px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(125, 211, 252, 0.06) inset;
  cursor: pointer;
}
.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.04); filter: brightness(1.08); }
.trailer-play {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 92px; height: 92px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: #041018;
  background: linear-gradient(120deg, #a5f3fc, var(--cyan));
  box-shadow: 0 24px 70px rgba(14, 165, 233, 0.55), 0 0 0 0 rgba(125, 211, 252, 0.4);
  transition: transform 0.4s var(--ease);
  animation: play-ring 2.4s ease-out infinite;
}
.trailer-play svg { width: 30px; height: 30px; margin-left: 4px; }
.trailer-frame:hover .trailer-play { transform: translate(-50%, -50%) scale(1.1); }
@keyframes play-ring {
  0% { box-shadow: 0 24px 70px rgba(14, 165, 233, 0.55), 0 0 0 0 rgba(125, 211, 252, 0.45); }
  100% { box-shadow: 0 24px 70px rgba(14, 165, 233, 0.55), 0 0 0 34px rgba(125, 211, 252, 0); }
}
.trailer-runtime {
  position: absolute;
  left: 20px; bottom: 18px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(4, 7, 13, 0.65);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}
.trailer-pull {
  margin: 44px auto 0;
  max-width: 720px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.85;
  color: var(--muted);
}

/* ---------- 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: 350;
  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: 1.25fr 0.75fr;
  gap: 26px;
  margin-top: 64px;
  align-items: stretch;
}
.pledge-form-panel, .pledge-feed-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; }
}
.pledge-feed-panel { display: flex; flex-direction: column; }
.feed-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(207, 250, 254, 0.6);
}
.pledge-feed {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  flex: 1;
}
.pledge-feed li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 2px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.pledge-feed li.feed-new { animation: feed-in 0.7s var(--ease); }
@keyframes feed-in {
  0% { opacity: 0; transform: translateY(-10px); background: rgba(125, 211, 252, 0.1); }
  100% { opacity: 1; transform: translateY(0); background: transparent; }
}
.pledge-feed .who {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
}
.pledge-feed .flag { font-size: 17px; }
.pledge-feed .when {
  color: var(--faint);
  font-size: 12px;
  white-space: nowrap;
}
.feed-countries {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
}
.feed-countries strong { color: var(--cyan); font-size: 14px; }

/* ---------- Film ---------- */
.film { background: 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: 1px solid rgba(255, 255, 255, 0.14);
  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: 450;
  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: var(--ink-2); 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: 450;
  font-size: 24px;
}
.narrator h3 span {
  font-style: italic;
  font-weight: 350;
  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(4, 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: var(--ink-2); }
.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-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);
}

/* ---------- 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: 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: 22px;
  width: max-content;
  animation: ticker 46s linear infinite;
}
.partners-marquee:hover .partners-track { animation-play-state: paused; }
.partner-logo {
  flex: 0 0 auto;
  width: 168px;
  height: 92px;
  display: grid;
  place-items: center;
  padding: 16px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #fff;
  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: 380;
  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-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
}
.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);
}

/* ---------- 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(3, 1fr); }
  .crew-grid { grid-template-columns: repeat(2, 1fr); }
  .board-grid { grid-template-columns: repeat(2, 1fr); }
  .pledge-grid { grid-template-columns: 1fr; }
  .nav-live .nav-live-label { display: none; }
}

@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; }
  .hero-laurels { gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .pledge-form-panel, .pledge-feed-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; }
}

@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; }
}
