@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Unbounded:wght@600;700;800&display=swap");

:root {
  --pink: #ff2ec4;
  --pink-soft: #ff6bdb;
  --violet: #9b2cff;
  --deep: #07040f;
  --panel: #10081c;
  --ink: #f7f0ff;
  --mute: #b39bc8;
  --line: rgba(255, 46, 196, 0.22);
  --glow: 0 0 32px rgba(255, 46, 196, 0.45);
  --radius: 18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  background: var(--deep);
  hyphens: auto;
  -webkit-hyphens: auto;
}
body {
  font-family: "Outfit", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 70% -10%, rgba(155, 44, 255, 0.28), transparent 55%),
    radial-gradient(900px 500px at -10% 20%, rgba(255, 46, 196, 0.18), transparent 50%),
    var(--deep);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px));
  line-height: 1.65;
  letter-spacing: 0.01em;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
img.logo {
  width: auto;
  height: auto;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  background: transparent;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }

.scanlines {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.045;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 2px,
    rgba(255, 255, 255, 0.35) 3px
  );
}

/* ——— Header ——— */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(16px, 4vw, 40px);
  background: linear-gradient(180deg, rgba(7, 4, 15, 0.92), rgba(7, 4, 15, 0.55) 70%, transparent);
  backdrop-filter: blur(10px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img.logo {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 12px rgba(255, 46, 196, 0.55));
}
.brand-name {
  font-family: "Unbounded", "Outfit", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-shadow: 0 0 18px rgba(255, 46, 196, 0.55);
}
.nav-links {
  display: none;
  gap: 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--mute);
}
.nav-links a:hover { color: var(--pink-soft); }
.btn-neon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  background: linear-gradient(120deg, var(--pink), var(--violet));
  box-shadow: var(--glow);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
  text-wrap: balance;
}
.btn-neon:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(255, 46, 196, 0.65);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s, background 0.2s;
  text-wrap: balance;
}
.btn-ghost:hover {
  border-color: var(--pink);
  background: rgba(255, 46, 196, 0.08);
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 110px 20px 96px;
  overflow: hidden;
}
.hero-orb {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 46, 196, 0.35), transparent 68%);
  filter: blur(20px);
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
  animation: breathe 5s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.08); }
}
.hero-stage {
  position: relative;
  z-index: 2;
  width: min(920px, 100%);
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  text-align: center;
}
.hero-logo-wrap {
  position: relative;
  width: min(260px, 62vw);
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  animation: floaty 4.8s ease-in-out infinite;
}
.hero-logo-wrap::before {
  content: "";
  position: absolute;
  inset: -18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155, 44, 255, 0.55), transparent 70%);
  filter: blur(28px);
  z-index: -1;
}
.hero-logo-wrap img.logo {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.55))
          drop-shadow(0 0 28px rgba(255, 46, 196, 0.45));
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink-soft);
}
.hero-copy .eyebrow i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 10px var(--pink);
  animation: pulse 1.4s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.hero-copy h1 {
  font-family: "Unbounded", "Outfit", sans-serif;
  font-size: clamp(48px, 12vw, 84px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  background: linear-gradient(180deg, #fff 20%, var(--pink-soft) 70%, var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 24px rgba(255, 46, 196, 0.35));
  text-wrap: balance;
}
.hero-copy p {
  max-width: 460px;
  margin: 0 auto 28px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--mute);
  text-wrap: pretty;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.hero-scroll {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  opacity: 0.7;
}

/* ——— Marquee ——— */
.marquee {
  border-block: 1px solid var(--line);
  background: rgba(255, 46, 196, 0.05);
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 36px;
  padding: 14px 0;
  animation: slide 28s linear infinite;
  font-family: "Unbounded", "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--pink-soft);
}
.marquee-track span::before {
  content: "●";
  margin-right: 40px;
  color: var(--violet);
}
@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ——— Sections ——— */
.section {
  padding: clamp(44px, 7vw, 80px) clamp(16px, 4vw, 40px);
  max-width: 1100px;
  margin: 0 auto;
}
.section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 26px;
  max-width: 640px;
}
.section-head h2 {
  font-family: "Unbounded", "Outfit", sans-serif;
  font-size: clamp(26px, 5.5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  text-wrap: balance;
}
.section-head p {
  color: var(--mute);
  font-size: 15px;
  line-height: 1.65;
  text-align: left;
  max-width: none;
}

/* Featured spotlight */
.spotlight {
  display: grid;
  gap: 20px;
}
.spotlight-main {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 380px;
  isolation: isolate;
  cursor: pointer;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.spotlight-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transform: scale(1.04);
  transition: transform 0.8s var(--ease);
}
.spotlight-main:hover img { transform: scale(1.1); }
.spotlight-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 4, 15, 0.92) 0%, rgba(7, 4, 15, 0.45) 55%, transparent 100%),
    linear-gradient(0deg, rgba(7, 4, 15, 0.85) 0%, transparent 45%);
}
.spotlight-body {
  position: relative;
  z-index: 2;
  max-width: 460px;
  padding: clamp(24px, 5vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 360px;
}
.tag {
  display: inline-flex;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(120deg, var(--pink), var(--violet));
  margin-bottom: 12px;
}
.spotlight-body h3 {
  font-family: "Unbounded", "Outfit", sans-serif;
  font-size: clamp(28px, 5.5vw, 44px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  text-wrap: balance;
}
.spotlight-body p {
  color: var(--mute);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 12px;
  color: var(--pink-soft);
  font-weight: 600;
}
.spotlight-side {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.side-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 1px solid transparent;
  cursor: pointer;
  transition: border-color 0.25s, transform 0.25s var(--ease);
}
.side-item:hover {
  border-color: var(--pink);
  transform: translateY(-4px);
  box-shadow: var(--glow);
}
.side-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.side-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 32px 12px 12px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.88));
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  text-wrap: balance;
}

/* Drama wall */
.wall {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.poster {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 3 / 4.2;
  cursor: pointer;
  border: 1px solid rgba(255, 46, 196, 0.14);
  background: var(--panel);
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
}
.poster:hover {
  transform: translateY(-6px) scale(1.015);
  border-color: rgba(255, 46, 196, 0.55);
  box-shadow: 0 18px 42px rgba(155, 44, 255, 0.38), 0 0 28px rgba(255, 46, 196, 0.28);
}
.poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.poster .shade {
  position: absolute;
  inset: auto 0 0 0;
  padding: 40px 12px 12px;
  background: linear-gradient(transparent, rgba(7, 4, 15, 0.95));
}
.poster .shade strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 3px;
  line-height: 1.25;
  text-wrap: balance;
}
.poster .shade span {
  font-size: 11px;
  color: var(--mute);
  line-height: 1.35;
}
.poster .badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  background: rgba(7, 4, 15, 0.75);
  border: 1px solid var(--line);
  color: var(--pink-soft);
}
.poster.tall { grid-row: span 2; aspect-ratio: auto; min-height: 100%; }
.poster.wide { grid-column: span 2; aspect-ratio: 16 / 9; }

/* Channels */
.channels {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.channel {
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  transition: all 0.25s var(--ease);
}
.channel:hover,
.channel.is-on {
  background: linear-gradient(120deg, var(--pink), var(--violet));
  border-color: transparent;
  box-shadow: var(--glow);
}

/* Why strip */
.why {
  display: grid;
  gap: 14px;
}
.why-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 46, 196, 0.08), rgba(155, 44, 255, 0.04));
}
.why-item .num {
  font-family: "Unbounded", "Outfit", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--pink-soft);
  text-shadow: 0 0 16px rgba(255, 46, 196, 0.45);
}
.why-item h3 { font-size: 16px; margin-bottom: 6px; font-weight: 700; }
.why-item p { font-size: 14px; color: var(--mute); line-height: 1.55; }

/* Closing band */
.finale {
  margin: 20px clamp(16px, 4vw, 40px) 28px;
  border-radius: 32px;
  border: 1px solid var(--line);
  padding: clamp(36px, 7vw, 64px) 24px;
  text-align: center;
  background:
    radial-gradient(600px 240px at 50% 0%, rgba(255, 46, 196, 0.3), transparent 60%),
    linear-gradient(160deg, #14081f, #090412);
  box-shadow: 0 0 60px rgba(155, 44, 255, 0.15);
}
.finale img.logo {
  width: 96px;
  height: 96px;
  margin: 0 auto 18px;
  filter: drop-shadow(0 0 18px rgba(255, 46, 196, 0.55));
}
.finale h2 {
  font-family: "Unbounded", "Outfit", sans-serif;
  font-size: clamp(30px, 7vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 12px;
  text-wrap: balance;
}
.finale p {
  color: var(--mute);
  max-width: 460px;
  margin: 0 auto 26px;
  font-size: 16px;
  line-height: 1.7;
}

.site-foot {
  padding: 24px clamp(16px, 4vw, 40px) 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.28);
  font-size: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Fixed download dock */
.dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, transparent, rgba(7, 4, 15, 0.88) 28%, rgba(7, 4, 15, 0.97));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.dock-inner {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dock-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 56px;
  padding: 14px 22px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0;
  color: #fff;
  background: linear-gradient(120deg, var(--pink) 0%, #d946ef 45%, var(--violet) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 10px 36px rgba(255, 46, 196, 0.45);
  animation: dockPulse 2.8s ease-in-out infinite;
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
  text-align: center;
  text-wrap: balance;
}
.dock-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18) inset,
    0 14px 42px rgba(255, 46, 196, 0.6);
}
.dock-btn:active { transform: scale(0.98); }
.dock-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}
.dock-sub {
  text-align: center;
  font-size: 11px;
  color: var(--mute);
  letter-spacing: 0.02em;
}
@keyframes dockPulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12) inset, 0 10px 36px rgba(255, 46, 196, 0.4); }
  50% { box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18) inset, 0 12px 44px rgba(155, 44, 255, 0.55); }
}

/* Reveal motion */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

@media (min-width: 720px) {
  .nav-links { display: flex; }
  .spotlight {
    grid-template-columns: 1.4fr 0.9fr;
    align-items: stretch;
  }
  .spotlight-side {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
  }
  .wall {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
  }
  .poster { aspect-ratio: auto; height: 100%; }
  .why { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 980px) {
  .hero-stage {
    grid-template-columns: 0.85fr 1.15fr;
    text-align: left;
    gap: 48px;
  }
  .hero-logo-wrap { margin: 0; width: min(300px, 100%); }
  .hero-copy p { margin-left: 0; }
  .hero-actions { justify-content: flex-start; }
  .hero-copy h1 { font-size: 72px; }
  .dock-inner { max-width: 560px; }
}
