/* ============ Tokens ============ */
:root {
  --bg-deep: #180b31;
  --bg-deep2: #2a1550;
  --bg-panel: #23124a;
  --purple: #4a2a8a;
  --pink: #ff3fa4;
  --pink-soft: #ff8fc7;
  --teal: #2de6c4;
  --yellow: #ffcf3f;
  --cream: #fff6e8;
  --ink: #150a2b;
  --text-dim: #c9b9ec;

  --font-display: "Helsinki", "Titan One", cursive;
  --font-head: "Blogger Sans", "Baloo 2", sans-serif;
  --font-body: "Nunito", sans-serif;
  --font-accent: "Dosis Book", "Nunito", sans-serif;

  --container: 1240px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;

  --shadow-pink: 0 0 32px rgba(255, 63, 164, 0.45);
  --shadow-teal: 0 0 32px rgba(45, 230, 196, 0.4);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============ Brand fonts ============ */
@font-face {
  font-family: "Helsinki";
  src: url("../assets/fonts/Helsinki.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Dosis Book";
  src: url("../assets/fonts/Dosis-Book.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Blogger Sans";
  src: url("../assets/fonts/BloggerSans.ttf") format("truetype");
  font-display: swap;
}

/* ============ Reset ============ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-deep);
  color: var(--cream);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
section { position: relative; }

::selection { background: var(--pink); color: var(--ink); }

/* ============ Scroll reveal ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1.in-view { transition-delay: 0.1s; }
.reveal-delay-2.in-view { transition-delay: 0.2s; }
.reveal-delay-3.in-view { transition-delay: 0.3s; }
.reveal-delay-4.in-view { transition-delay: 0.4s; }
.reveal-delay-5.in-view { transition-delay: 0.5s; }

/* ============ Halftone / glow backdrop ============ */
.halftone-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1.4px, transparent 1.4px);
  background-size: 16px 16px;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  pointer-events: none;
  animation: drift 16s ease-in-out infinite;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.08); }
  66% { transform: translate(-25px, 25px) scale(0.95); }
}

@keyframes float-y {
  0%, 100% { transform: translate(var(--px, 0px), var(--py, 0px)) translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translate(var(--px, 0px), var(--py, 0px)) translateY(-22px) rotate(calc(var(--r, 0deg) + 6deg)); }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulse-glow {
  0%, 100% { filter: drop-shadow(0 0 12px rgba(255, 63, 164, 0.55)); }
  50% { filter: drop-shadow(0 0 26px rgba(45, 230, 196, 0.65)); }
}

.donut-sprite {
  position: absolute;
  animation: float-y 7s ease-in-out infinite, pulse-glow 5s ease-in-out infinite;
  pointer-events: none;
  will-change: transform;
}

/* ============ Nav ============ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: padding 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.site-nav.scrolled {
  padding: 10px 0;
  background: rgba(21, 10, 43, 0.86);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
}
.brand img { height: 46px; width: auto; }
.brand.logo-mark img { height: 40px; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--pink), #b0219e);
  padding: 10px 20px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 20px rgba(255, 63, 164, 0.35);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.nav-cta:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 10px 28px rgba(255, 63, 164, 0.55); }

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 90px;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-deep2) 100%);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 80% 30%; }
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(24, 11, 49, 0.97) 0%, rgba(24, 11, 49, 0.88) 28%, rgba(24, 11, 49, 0.5) 52%, rgba(24, 11, 49, 0.22) 70%, rgba(24, 11, 49, 0.5) 100%),
    linear-gradient(0deg, rgba(24, 11, 49, 0.92) 0%, rgba(24, 11, 49, 0) 20%, rgba(24, 11, 49, 0) 78%, rgba(24, 11, 49, 0.92) 100%);
}
.hero .halftone-bg { z-index: 1; }
.hero .glow-blob.b1 { width: 420px; height: 420px; background: var(--pink); top: -80px; left: -100px; z-index: 1; }
.hero .glow-blob.b2 { width: 380px; height: 380px; background: var(--teal); bottom: -100px; right: -60px; animation-delay: -6s; z-index: 1; }

.hero-donuts { position: absolute; inset: 0; z-index: 4; pointer-events: none; }

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: stretch;
  padding-top: 6px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 8px 16px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  margin-bottom: 22px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 1;
  background: linear-gradient(180deg, #ffffff 0%, var(--pink-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 8px 24px rgba(255, 63, 164, 0.35));
  margin-bottom: 20px;
}
.hero-tagline {
  font-size: 1.15rem;
  color: var(--text-dim);
  max-width: 46ch;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 26px;
  margin-bottom: 40px;
}
.img-btn {
  display: inline-block;
  transition: transform 0.3s var(--ease), filter 0.3s var(--ease);
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.35));
}
.img-btn:hover { transform: translateY(-4px) scale(1.045); filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.45)); }
.img-btn:active { transform: translateY(-1px) scale(0.99); }
.img-btn.buy-btn img { width: 230px; }

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  padding: 12px 20px 12px 14px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.store-btn img { height: 24px; width: auto; }
.store-btn:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 12px 26px rgba(0, 0, 0, 0.4); }
.store-btn:active { transform: translateY(-1px) scale(0.99); }

.text-link {
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid var(--teal);
  padding-bottom: 4px;
  transition: color 0.25s, border-color 0.25s, transform 0.25s;
}
.text-link:hover { color: var(--teal); transform: translateX(3px); }

.platform-label {
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 12px;
}
.platform-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.platform-row a {
  display: inline-flex;
  transition: transform 0.3s var(--ease), filter 0.3s var(--ease);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}
.platform-row a:hover { transform: translateY(-5px); filter: drop-shadow(0 10px 18px rgba(45, 230, 196, 0.35)); }
.platform-row img { height: 52px; width: auto; }

/* Trailer card */
.video-frame {
  position: relative;
  z-index: 2;
  margin: 20px 0 10px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 0 10px rgba(255, 255, 255, 0.03);
  aspect-ratio: 16 / 9;
  background: var(--ink);
  transition: transform 0.4s var(--ease);
}
.video-frame:hover { transform: scale(1.015); }
.video-frame img.video-thumb {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
}
.video-frame:hover img.video-thumb { transform: scale(1.05); filter: brightness(0.7); }
.video-frame iframe { width: 100%; height: 100%; border: 0; }
.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-overlay .play-circle {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), #b0219e);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 0 rgba(255, 63, 164, 0.6);
  animation: ring 2.4s ease-out infinite;
  transition: transform 0.3s var(--ease);
}
.video-frame:hover .play-circle { transform: scale(1.1); }
.play-circle svg { width: 30px; height: 30px; margin-left: 4px; fill: #fff; }
@keyframes ring {
  0% { box-shadow: 0 0 0 0 rgba(255, 63, 164, 0.55); }
  70% { box-shadow: 0 0 0 26px rgba(255, 63, 164, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 63, 164, 0); }
}
.video-caption {
  position: relative;
  z-index: 2;
  margin-top: 14px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-dim);
  letter-spacing: 0.03em;
}

.hero-aside {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 22px;
  padding-top: 4px;
}

.release-sticker {
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  padding: 12px 16px;
  border-radius: 50%;
  width: 96px; height: 96px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  line-height: 1.2;
  --r: 12deg;
  box-shadow: 0 10px 24px rgba(255, 207, 63, 0.4);
  animation: float-y 6s ease-in-out infinite;
}

.hero-newsletter {
  width: 100%;
  will-change: transform;
  background: rgba(21, 10, 43, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.hero-newsletter h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.3vw, 1.7rem);
  color: var(--cream);
  margin-bottom: 8px;
}
.hero-newsletter > p { color: var(--text-dim); font-size: 0.92rem; margin-bottom: 18px; }
.hero-newsletter .newsletter-form { flex-direction: column; max-width: none; }
.hero-newsletter .newsletter-form input[type="email"] { width: 100%; }
.hero-newsletter .newsletter-form button { width: 100%; }

.hero-follow {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.hero-follow > span {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--cream);
  white-space: nowrap;
}
.hero-follow .footer-social { justify-content: flex-start; }
.hero-follow .footer-social a { width: 34px; height: 34px; }
.hero-follow .footer-social svg { width: 15px; height: 15px; }

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  z-index: 2;
}
.scroll-cue .chevron {
  width: 10px; height: 10px;
  border-right: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(45deg);
  animation: bounce-chevron 1.6s ease-in-out infinite;
}
@keyframes bounce-chevron {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.5; }
  50% { transform: rotate(45deg) translate(4px, 4px); opacity: 1; }
}

/* ============ Hotbox section: countdown + welcome ============ */
.hotbox-section {
  padding: 100px 0 110px;
  background: linear-gradient(180deg, var(--bg-deep2) 0%, #1c0e3a 45%, var(--bg-deep) 100%);
  overflow: hidden;
  position: relative;
}
.hotbox-section .halftone-bg { opacity: 0.4; }
.hotbox-section .glow-blob.hb1 { width: 360px; height: 360px; background: var(--teal); top: -80px; left: -80px; opacity: 0.35; }
.hotbox-section .glow-blob.hb2 { width: 320px; height: 320px; background: var(--pink); bottom: -60px; right: -60px; opacity: 0.3; animation-delay: -8s; }
.hotbox-donuts { position: absolute; inset: 0; pointer-events: none; z-index: 1; }

.countdown-block { position: relative; z-index: 2; text-align: center; }
.countdown-eyebrow {
  font-family: var(--font-head);
  color: var(--pink-soft);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.countdown-block h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 34px;
}
.countdown-block h2 span { color: var(--yellow); }
.countdown-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.countdown-sep {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--teal);
  align-self: center;
  animation: sep-blink 1s steps(2, end) infinite;
}
@keyframes sep-blink { 50% { opacity: 0.15; } }
.countdown-cell {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  width: 108px;
  padding: 18px 8px;
  overflow: hidden;
  backdrop-filter: blur(6px);
  animation: cell-glow-teal 2.6s ease-in-out infinite;
}
.countdown-cell:nth-child(3) { animation-name: cell-glow-pink; animation-delay: 0.5s; }
.countdown-cell:nth-child(5) { animation-name: cell-glow-yellow; animation-delay: 1s; }
.countdown-cell:nth-child(7) { animation-delay: 1.5s; }
@keyframes cell-glow-teal {
  0%, 100% { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 0 rgba(45, 230, 196, 0); }
  50% { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 20px rgba(45, 230, 196, 0.5); }
}
@keyframes cell-glow-pink {
  0%, 100% { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 0 rgba(255, 63, 164, 0); }
  50% { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 20px rgba(255, 63, 164, 0.5); }
}
@keyframes cell-glow-yellow {
  0%, 100% { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 0 rgba(255, 207, 63, 0); }
  50% { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 18px rgba(255, 207, 63, 0.45); }
}
.countdown-cell .num {
  position: relative;
  display: inline-block;
  max-width: 100%;
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1.1;
  background: linear-gradient(180deg, #fff, var(--teal));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  transition: transform 0.2s var(--ease);
}
.countdown-cell.tick .num { animation: tick-pop 0.4s var(--ease); }
@keyframes tick-pop { 0% { transform: translateY(-3px) scale(1.08); } 100% { transform: translateY(0) scale(1); } }
.countdown-cell .label {
  position: relative;
  display: block;
  margin-top: 6px;
  font-size: 0.7rem;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}

.marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 100%;
  margin: 40px 0 6px;
  border-top: 2px dashed rgba(255, 255, 255, 0.16);
  border-bottom: 2px dashed rgba(255, 255, 255, 0.16);
  padding: 12px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 34s linear infinite;
}
.marquee-track span {
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  color: var(--teal);
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-20%); }
}

/* ============ Section headings ============ */
.section-head { position: relative; z-index: 2; text-align: center; max-width: 620px; margin: 0 auto 54px; }
.section-head .eyebrow { margin-bottom: 14px; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 2.9rem);
  color: var(--cream);
  margin-bottom: 14px;
}
.section-head h2 span { color: var(--pink-soft); }
.section-head p { color: var(--text-dim); font-size: 1.05rem; }

/* ============ Premise / teaser ============ */
.premise-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 90px;
}
.hotbox-welcome h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.4vw, 2.9rem);
  margin-bottom: 26px;
}
.hotbox-welcome h2 span { color: var(--teal); }
.hotbox-welcome p { color: var(--text-dim); margin-bottom: 24px; font-size: 1.18rem; line-height: 1.7; }
.hotbox-welcome p:last-child { margin-bottom: 0; }

.stat-cluster {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.stat-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  text-align: center;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.stat-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  border-color: var(--teal);
  box-shadow: 0 16px 34px rgba(45, 230, 196, 0.18);
}
.stat-card:nth-child(2):hover, .stat-card:nth-child(4):hover { transform: translateY(-8px) rotate(1deg); }
.stat-card .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  background: linear-gradient(135deg, var(--yellow), var(--pink));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-card .lbl { margin-top: 6px; font-size: 0.85rem; color: var(--text-dim); font-weight: 700; }

/* ============ Feature grid ============ */
.features {
  position: relative;
  padding: 110px 0;
  background: linear-gradient(180deg, #1c0e3a 0%, var(--bg-deep) 100%);
  overflow: hidden;
}
.features .halftone-bg { opacity: 0.4; }
.features .glow-blob.f1 { width: 340px; height: 340px; background: var(--pink); top: -70px; right: -70px; opacity: 0.28; }
.features .glow-blob.f2 { width: 300px; height: 300px; background: var(--yellow); bottom: -60px; left: -60px; opacity: 0.2; animation-delay: -7s; }
.features-donuts { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.feature-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feature-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
}
.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--pink);
  box-shadow: 0 20px 40px rgba(255, 63, 164, 0.18);
}
.feature-media {
  position: relative;
  width: 100%;
  aspect-ratio: 630 / 180;
  background: var(--ink);
}
.feature-media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(24, 11, 49, 0.4) 0%, transparent 45%);
  pointer-events: none;
}
.feature-body { padding: 22px 24px 26px; }
.feature-body h3 { font-family: var(--font-head); font-size: 1.12rem; margin-bottom: 10px; color: var(--cream); }
.feature-body p { color: var(--text-dim); font-size: 0.95rem; }

/* ============ Voice cast ============ */
.cast {
  position: relative;
  padding: 110px 0 120px;
  background: var(--bg-deep);
  overflow: hidden;
}
.cast .halftone-bg { opacity: 0.4; }
.cast .glow-blob.c1 { width: 340px; height: 340px; background: var(--teal); top: -70px; left: -80px; opacity: 0.25; }
.cast .glow-blob.c2 { width: 300px; height: 300px; background: var(--pink); bottom: -60px; right: -60px; opacity: 0.22; animation-delay: -9s; }
.cast-donuts { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.cast-carousel {
  position: relative;
  z-index: 2;
  max-width: 1720px;
  margin: 0 auto;
  padding: 0 24px;
}
.cast-carousel::before, .cast-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 24px;
  width: 90px;
  z-index: 2;
  pointer-events: none;
  display: none;
}
.cast-carousel::before { left: 0; background: linear-gradient(90deg, var(--bg-deep), transparent); }
.cast-carousel::after { right: 0; background: linear-gradient(270deg, var(--bg-deep), transparent); }

/* Fits everything, no scroll, at 16:9-ish desktop widths */
.cast-scroll {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-auto-rows: auto;
  column-gap: 14px;
  row-gap: 32px;
  overflow-x: visible;
  padding: 10px 4px 4px;
  cursor: default;
}
.cast-scroll::-webkit-scrollbar { height: 6px; }
.cast-scroll::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.06); border-radius: 10px; }
.cast-scroll::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.25); border-radius: 10px; }

/* Below this, 10 columns get too tight — switch to a scrollable 3-row strip */
@media (max-width: 1100px) {
  .cast-carousel { padding: 0 70px; }
  .cast-carousel::before, .cast-carousel::after { display: block; }
  .cast-carousel .cast-nav { display: flex; }
  .cast-scroll {
    grid-template-columns: none;
    grid-template-rows: repeat(3, auto);
    grid-auto-flow: column;
    grid-auto-columns: 132px;
    column-gap: 20px;
    row-gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scroll-behavior: smooth;
    padding: 10px 4px 24px;
    cursor: grab;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.25) transparent;
  }
  .cast-scroll.dragging { cursor: grabbing; scroll-snap-type: none; user-select: none; }
}

.cast-chip {
  scroll-snap-align: start;
  text-align: center;
  transition: transform 0.3s var(--ease);
}
.cast-chip:hover { transform: translateY(-6px); }
.cast-chip .portrait {
  width: 104px;
  height: 104px;
  margin: 0 auto 12px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease);
}
.cast-chip:hover .portrait { border-color: var(--pink); box-shadow: 0 14px 30px rgba(255, 63, 164, 0.35); transform: scale(1.05); }
.cast-chip .portrait img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.cast-chip .name { font-family: var(--font-head); font-weight: 800; font-size: 1.12rem; color: var(--cream); margin-bottom: 2px; }
.cast-chip .actor { font-size: 0.8rem; color: var(--text-dim); line-height: 1.3; }

.cast-nav {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  transition: background 0.25s, transform 0.25s var(--ease), border-color 0.25s;
}
.cast-nav svg { width: 20px; height: 20px; fill: none; stroke: var(--cream); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.cast-nav:hover { background: var(--pink); border-color: var(--pink); transform: translateY(-50%) scale(1.08); }
.cast-nav.prev { left: 10px; }
.cast-nav.next { right: 10px; }

/* ============ Newsletter ============ */
.newsletter-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 16px 22px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.98rem;
  outline: none;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.newsletter-form input[type="email"]:focus { border-color: var(--yellow); box-shadow: 0 0 0 5px rgba(255, 207, 63, 0.25); }
.newsletter-form button {
  padding: 16px 30px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  transition: transform 0.3s var(--ease), background 0.3s;
}
.newsletter-form button:hover { transform: translateY(-3px) scale(1.03); background: #2a1750; }
.newsletter-note { margin-top: 16px; font-size: 0.8rem; color: rgba(255,255,255,0.7); }

/* ============ Footer ============ */
.site-footer {
  padding: 60px 0 30px;
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand .brand { margin-bottom: 12px; }
.footer-brand p { color: var(--text-dim); max-width: 32ch; font-size: 0.92rem; margin-bottom: 14px; }
.footer-byline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}
.footer-byline img { height: 20px; width: 20px; opacity: 0.85; }
.footer-col h4 {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { font-size: 0.95rem; color: var(--cream); opacity: 0.85; transition: opacity 0.25s, color 0.25s; }
.footer-col a:hover { opacity: 1; color: var(--teal); }
.footer-platforms { display: flex; flex-wrap: wrap; gap: 10px; }
.footer-platforms img { height: 30px; opacity: 0.9; transition: transform 0.3s, opacity 0.3s; }
.footer-platforms a:hover img { transform: translateY(-3px); opacity: 1; }
.footer-social { display: flex; flex-wrap: wrap; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s var(--ease), background 0.3s, border-color 0.3s;
}
.footer-social a:hover { transform: translateY(-4px) rotate(-6deg); background: var(--pink); border-color: var(--pink); }
.footer-social svg { width: 18px; height: 18px; fill: var(--cream); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* ============ Responsive ============ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-aside { align-items: stretch; max-width: 480px; }
  .hero-aside .release-sticker { align-self: flex-end; }
  .premise-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .cast-carousel { padding: 0 20px; }
  .cast-carousel::before, .cast-carousel::after { width: 40px; }
  .cast-carousel .cast-nav { display: none; }
  .footer-top { flex-direction: column; }
}

@media (max-width: 760px) {
  .brand img { height: 34px; }
  .nav-cta { padding: 8px 14px; font-size: 0.78rem; }
  .hero { padding-top: 120px; }
  .feature-grid { grid-template-columns: 1fr; }
  .countdown-cell { width: 68px; padding: 14px 4px; }
  .countdown-cell .num { font-size: 1.5rem; }
  .countdown-sep { font-size: 1.4rem; }
  .marquee-track span { font-size: 0.85rem; }
  .footer-top { gap: 30px; }
}

@media (min-width: 1440px) {
  :root { --container: 1400px; }
  .hero h1 { font-size: clamp(3rem, 6.4vw, 6.2rem); }
  .hero-tagline { font-size: 1.25rem; }
  .hero-newsletter h2 { font-size: clamp(1.3rem, 2vw, 1.9rem); }
  .countdown-block h2 { font-size: clamp(1.8rem, 3.6vw, 3rem); }
  .section-head { max-width: 720px; }
  .section-head h2 { font-size: clamp(2rem, 3.8vw, 3.3rem); }
  .hotbox-welcome h2 { font-size: clamp(1.9rem, 3.4vw, 3rem); }
  .feature-grid { gap: 26px; }
  .countdown-cell { width: 120px; }
  .countdown-cell .num { font-size: 2.6rem; }
  .platform-row img { height: 58px; }
  .store-btn { padding: 14px 22px 14px 16px; font-size: 0.95rem; }
  .store-btn img { height: 27px; }
  .cast-scroll { column-gap: 22px; }
  .cast-chip .portrait { width: 116px; height: 116px; }
}

@media (min-width: 1800px) {
  :root { --container: 1600px; }
  .hero h1 { font-size: clamp(3rem, 6vw, 7rem); }
  .section-head h2 { font-size: clamp(2rem, 3.4vw, 3.6rem); }
  .hotbox-welcome h2 { font-size: clamp(1.9rem, 3vw, 3.3rem); }
  .feature-grid { gap: 30px; }
  .countdown-cell { width: 132px; }
  .countdown-cell .num { font-size: 2.9rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
