:root {
  color-scheme: dark;
  --bg: #12051f;
  --bg-soft: #1d0c35;
  --surface: rgba(31, 17, 54, 0.76);
  --surface-strong: rgba(33, 16, 57, 0.94);
  --surface-light: rgba(255, 255, 255, 0.1);
  --border: rgba(255, 255, 255, 0.12);
  --text: #fff7ff;
  --muted: #d3b8ef;
  --accent: #a855f7;
  --accent-2: #06b6d4;
  --accent-3: #ff5ea8;
  --gold: #ffb703;
  --shadow: 0 26px 70px rgba(10, 2, 25, 0.38);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

html.light {
  color-scheme: light;
  --bg: #fff4fb;
  --bg-soft: #fdf0ff;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: rgba(255, 255, 255, 0.98);
  --surface-light: rgba(255, 94, 168, 0.08);
  --border: rgba(136, 39, 109, 0.12);
  --text: #31123b;
  --muted: #7b4b8d;
  --shadow: 0 24px 50px rgba(146, 35, 121, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 94, 168, 0.28), transparent 28%),
    radial-gradient(circle at top right, rgba(6, 182, 212, 0.2), transparent 22%),
    radial-gradient(circle at center right, rgba(168, 85, 247, 0.2), transparent 24%),
    linear-gradient(180deg, var(--bg) 0%, #19072c 100%);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent);
  opacity: 0.35;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(18, 5, 31, 0.74);
  border-bottom: 1px solid var(--border);
}

html.light .site-header {
  background: rgba(255, 244, 251, 0.88);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 82px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  padding: 6px;
  box-shadow: var(--shadow);
  object-fit: contain;
}

.brand-copy strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.brand-copy span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 26px;
}

.nav-link {
  position: relative;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--text);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-btn,
.menu-btn {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.menu-btn {
  font-size: 1.15rem;
}

.header-cta {
  display: none;
}

.mobile-menu {
  display: none;
  padding: 0 0 22px;
}

.mobile-menu.is-open {
  display: block;
}

.mobile-panel {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.mobile-panel a {
  display: block;
  padding: 10px 0;
  color: var(--muted);
  font-weight: 700;
}

.hero {
  padding: 48px 0 28px;
}

.hero-grid,
.split-grid {
  display: grid;
  gap: 28px;
}

.glass-card {
  border: 1px solid var(--border);
  background: var(--surface);
  backdrop-filter: blur(18px);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 94, 168, 0.34);
  background: linear-gradient(90deg, rgba(168, 85, 247, 0.18), rgba(255, 94, 168, 0.14));
  color: #ffe0f1;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

html.light .eyebrow {
  color: #a21caf;
}

.display {
  margin: 18px 0 12px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.8rem, 8vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.display span {
  display: block;
}

.gradient-text {
  background: linear-gradient(90deg, #ff9ad5 0%, #ffd166 28%, #67e8f9 62%, #c084fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

html.light .gradient-text {
  background: linear-gradient(90deg, #db2777 0%, #d97706 35%, #0891b2 65%, #7c3aed 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.lead {
  font-size: 1.06rem;
  color: var(--muted);
  max-width: 62ch;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: white;
  background: linear-gradient(90deg, #ff6b6b 0%, #ff4d9d 45%, #ffb703 100%);
  box-shadow: 0 18px 34px rgba(255, 77, 157, 0.34);
}

.btn-secondary {
  background: var(--surface);
  border-color: var(--border);
}

.btn-ghost {
  color: #ecfeff;
  background: linear-gradient(90deg, rgba(34, 211, 238, 0.34), rgba(59, 130, 246, 0.34));
  border-color: rgba(103, 232, 249, 0.35);
}

.stat-grid,
.card-grid,
.mini-grid {
  display: grid;
  gap: 16px;
}

.stat-pill,
.panel,
.media-card,
.list-card,
.timeline-card,
.contact-card {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.stat-pill {
  padding: 16px 18px;
}

.stat-pill strong {
  display: block;
  font-size: 1.5rem;
  font-family: "Poppins", sans-serif;
}

.muted {
  color: var(--muted);
}

.showcase {
  position: relative;
  padding: 20px;
}

.showcase::before,
.showcase::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.7;
}

.showcase::before {
  width: 180px;
  height: 180px;
  top: -30px;
  right: -40px;
  background: rgba(255, 94, 168, 0.32);
}

.showcase::after {
  width: 140px;
  height: 140px;
  left: -30px;
  bottom: -40px;
  background: rgba(6, 182, 212, 0.24);
}

.showcase-card {
  position: relative;
  z-index: 1;
  padding: 20px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(255, 94, 168, 0.2), transparent 26%),
    linear-gradient(180deg, rgba(39, 13, 66, 0.96), rgba(17, 7, 31, 0.96));
  color: white;
  overflow: hidden;
}

.showcase-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.player-thumb {
  width: 96px;
  height: 96px;
  border-radius: 26px;
  background: white;
  padding: 8px;
  object-fit: contain;
}

.wave-strip {
  display: flex;
  align-items: end;
  gap: 6px;
  min-height: 84px;
  margin: 24px 0 18px;
}

.wave-strip span {
  width: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold), var(--accent-3), var(--accent-2));
  animation: bounceWave 1.8s ease-in-out infinite;
}

.wave-strip span:nth-child(2) { height: 34px; animation-delay: 0.1s; }
.wave-strip span:nth-child(3) { height: 68px; animation-delay: 0.2s; }
.wave-strip span:nth-child(4) { height: 46px; animation-delay: 0.3s; }
.wave-strip span:nth-child(5) { height: 78px; animation-delay: 0.4s; }
.wave-strip span:nth-child(6) { height: 54px; animation-delay: 0.5s; }
.wave-strip span:nth-child(7) { height: 70px; animation-delay: 0.6s; }
.wave-strip span:nth-child(8) { height: 42px; animation-delay: 0.7s; }
.wave-strip span:nth-child(1) { height: 56px; }

.section {
  padding: 34px 0 70px;
}

.section-title {
  margin: 0 0 10px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.section-intro {
  max-width: 62ch;
  color: var(--muted);
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.panel {
  padding: 24px;
}

.panel h3,
.media-card h3,
.list-card h3,
.timeline-card h3,
.contact-card h3 {
  margin: 0 0 10px;
  font-family: "Poppins", sans-serif;
  font-size: 1.35rem;
}

.media-card {
  overflow: hidden;
}

.media-thumb {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
}

.media-body {
  padding: 20px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tag {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--surface-light);
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 700;
}

.feature-list,
.simple-list,
.contact-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.simple-list li,
.contact-list li {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

html.light .simple-list li,
html.light .contact-list li {
  background: rgba(15, 23, 42, 0.04);
}

.video-grid,
.release-grid,
.community-grid,
.connect-grid {
  display: grid;
  gap: 18px;
}

.video-card,
.release-card,
.community-card,
.faq-card {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.video-card img,
.release-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.video-content,
.release-content,
.community-card,
.faq-card {
  padding: 20px;
}

.video-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.metric {
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  text-align: center;
}

html.light .metric {
  background: linear-gradient(180deg, rgba(219,39,119,0.06), rgba(6,182,212,0.04));
}

.metric strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-card {
  padding: 22px;
  position: relative;
}

.timeline-card::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-3), var(--accent), transparent);
}

.timeline-card > * {
  margin-left: 18px;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  outline: none;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

html.light .field input,
html.light .field textarea,
html.light .field select {
  background: rgba(15, 23, 42, 0.03);
}

.site-footer {
  padding: 26px 0 42px;
  border-top: 1px solid var(--border);
  background: rgba(22, 7, 37, 0.58);
}

html.light .site-footer {
  background: rgba(255, 250, 253, 0.78);
}

.footer-grid {
  display: grid;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stack-16 > * + * { margin-top: 16px; }
.stack-20 > * + * { margin-top: 20px; }
.stack-24 > * + * { margin-top: 24px; }

@keyframes bounceWave {
  0%, 100% { transform: scaleY(0.7); opacity: 0.75; }
  50% { transform: scaleY(1.15); opacity: 1; }
}

@media (min-width: 720px) {
  .stat-grid,
  .card-grid,
  .video-grid,
  .release-grid,
  .community-grid,
  .connect-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .nav-links,
  .header-cta {
    display: flex;
  }

  .menu-btn,
  .mobile-menu {
    display: none !important;
  }

  .hero-grid,
  .split-grid,
  .footer-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }

  .card-grid,
  .video-grid,
  .release-grid,
  .community-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .connect-grid {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .form-grid.form-grid-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


.btn-secondary { color: var(--text); }
.btn-ghost { color: #f8fafc; text-shadow: 0 1px 0 rgba(0,0,0,0.18); }
.header-cta { color: #f8fafc; }
html.light .btn-secondary { color: #31123b; background: rgba(255,255,255,0.92); }
html.light .btn-ghost { color: #ffffff; background: linear-gradient(90deg, #06b6d4 0%, #3b82f6 100%); border-color: rgba(59,130,246,0.26); }
html.light .header-cta { color: #ffffff; }


@media (max-width: 719px) {
  .container {
    width: min(var(--container), calc(100% - 20px));
  }

  .site-header {
    padding: 6px 0;
  }

  .nav-row {
    gap: 10px;
    min-height: 68px;
  }

  .brand {
    min-width: 0;
    flex: 1 1 auto;
    gap: 10px;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    padding: 5px;
    flex: 0 0 auto;
  }

  .brand-copy {
    min-width: 0;
  }

  .brand-copy strong {
    font-size: 0.95rem;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-copy span {
    display: none;
  }

  .nav-actions {
    flex: 0 0 auto;
    gap: 8px;
  }

  .icon-btn,
  .menu-btn {
    width: 42px;
    height: 42px;
    font-size: 0.95rem;
    box-shadow: 0 12px 24px rgba(10, 2, 25, 0.18);
  }

  .menu-btn {
    font-size: 0;
    position: relative;
  }

  .menu-btn::before {
    content: "=";
    font-size: 1rem;
    line-height: 1;
  }

  .mobile-menu {
    padding: 0 0 14px;
  }

  .mobile-panel {
    padding: 14px 16px;
    border-radius: 18px;
  }

  .mobile-panel a {
    padding: 12px 0;
  }
}




@media (max-width: 719px) {
  .brand-copy,
  .brand-copy strong,
  .brand-copy span {
    display: none !important;
  }
}


.release-card {
  background: linear-gradient(180deg, rgba(28, 10, 44, 0.96), rgba(17, 7, 31, 0.98));
}
.release-content {
  background: linear-gradient(180deg, rgba(30, 11, 49, 0.98), rgba(20, 8, 36, 1));
}
.release-content h3 {
  color: #fff8fc;
}
.release-content .muted {
  color: #f4cde1;
}
html.light .release-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,245,250,0.98));
}
html.light .release-content {
  background: linear-gradient(180deg, rgba(255,250,253,0.98), rgba(255,241,248,1));
}
html.light .release-content h3 {
  color: #43152d;
}
html.light .release-content .muted {
  color: #7a3d5b;
}

