:root {
  --bg-dark: #050508;
  --bg-light: #f6f5fa;
  --text-main: #0b0b10;
  --text-muted: #8b8b98;
  --accent: #ff5bbd;
  --accent-soft: rgba(255, 91, 189, 0.18);
  --border-soft: rgba(255, 255, 255, 0.14);
  --card-bg: rgba(10, 10, 16, 0.78);
  --radius-xl: 24px;
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.35);
}

/* BASIC RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-main);
  background: radial-gradient(circle at top, #181828 0, #050508 55%);
  min-height: 100vh;
  overflow-x: hidden;
}

/* GLOBAL BACKGROUND IMAGE */
.hero-bg {
  position: fixed;
  inset: 0;
  background-size: cover;
  background-position: center 18%;
  opacity: 0.4;
  filter: saturate(1.1) contrast(1.05);
  z-index: -4;
  transform: translate3d(0, 0, 0);
  transition: opacity 1.2s ease;
  pointer-events: none;
}

.hero-bg-layer {
  opacity: 0;
}

.hero-bg-layer.is-visible {
  opacity: 0.8;
}

.hero-bg-layer:nth-of-type(2) {
  z-index: -5;
}

.hero-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 91, 189, 0.12), transparent 55%),
              linear-gradient(to bottom, rgba(0, 0, 0, 0.48), rgba(5, 5, 8, 0.9) 70%);
  z-index: -2;
}

/* HEADER / NAV */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 18px 7vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
  mix-blend-mode: normal;
}

.logo {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px);
  background: rgba(3, 3, 8, 0.7);
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(5, 5, 12, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
}

.nav-link {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 0.8rem;
  text-transform: lowercase;
  letter-spacing: 0.16em;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.7);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.nav-link.active {
  background: #ffffff;
  color: #050508;
}

/* LAYOUT */
main {
  margin-top: 72px;
}

.section {
  min-height: 100vh;
  padding: 96px 7vw 88px;
  display: flex;
  align-items: center;
}

.section-light {
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.12), transparent 60%);
  color: #f7f6ff;
}

.section-dark {
  background: radial-gradient(circle at top, rgba(5, 5, 12, 0.85), rgba(5, 5, 12, 1));
  color: #f7f6ff;
}

.section-inner {
  max-width: 1040px;
  margin: 0 auto;
}

.section-inner.narrow {
  max-width: 760px;
}

.section-label {
  font-family: "Space Grotesk", system-ui, sans-serif;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 18px;
}

.section-heading h2 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  margin: 0 0 12px;
}

.section-heading p {
  max-width: 520px;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* HERO */
.hero {
  align-items: flex-end;
}

.hero-inner {
  max-width: 760px;
  margin: 0 auto 8vh;
  text-align: left;
  color: #ffffff;
}

.hero h1 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(3.5rem, 8vw, 5.4rem);
  margin: 4px 0 12px;
  letter-spacing: 0.03em;
}

.hero-subtitle {
  font-size: 1.02rem;
  max-width: 480px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 11px 24px;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease,
    box-shadow 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: #ffffff;
  color: #050508;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.btn-ghost {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* LINKS */
.btn-link {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-decoration: none;
  color: var(--accent);
}

.btn-link:hover {
  text-decoration: underline;
}

/* GRID & CARDS */
.grid-two {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 26px;
  margin-top: 30px;
}

.card {
  border-radius: var(--radius-xl);
  padding: 20px 20px 18px;
  background: rgba(248, 247, 252, 0.95);
  border: 1px solid rgba(15, 15, 35, 0.06);
  box-shadow: 0 22px 60px rgba(8, 8, 20, 0.2);
}

.section-light .card {
  color: var(--text-main);
}

.section-dark .card {
  background: var(--card-bg);
  border-color: var(--border-soft);
}

.card h3 {
  margin: 0 0 8px;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.1rem;
}

.muted {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.section-light .muted {
  color: var(--text-muted);
}

.section-dark .muted {
  color: rgba(227, 227, 243, 0.78);
}

.small {
  font-size: 0.8rem;
}

.tiny {
  font-size: 0.72rem;
}

/* EMBEDS */
.embed-wrap {
  margin-top: 14px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(5, 5, 16, 0.1);
}

.section-dark .embed-wrap {
  border-color: rgba(255, 255, 255, 0.16);
}

.video-embed iframe {
  width: 100%;
  height: 260px;
}

/* PILLS */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.pill {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #2b0f1e;
  font-weight: 700;
  border: 1px solid rgba(255, 91, 189, 0.4);
}

/* TRACK LIST */
.track-list {
  margin-top: 26px;
}

.track-list ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 0.9rem;
}

.track-list li {
  padding: 6px 0;
  border-bottom: 1px dashed rgba(120, 120, 142, 0.4);
}

.track-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pill-live {
  background: rgba(255, 91, 189, 0.12);
  color: var(--accent);
  border: 1px solid rgba(255, 91, 189, 0.28);
  padding: 6px 12px;
}

.top-tracks-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
}

.top-tracks-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(120, 120, 142, 0.4);
}

.top-tracks-list li:last-child {
  border-bottom: none;
}

.track-rank {
  width: 34px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.track-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.track-title {
  font-weight: 700;
  color: var(--text-main);
}

.section-dark .track-title {
  color: #ffffff;
}

.track-artists {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.track-actions {
  display: flex;
  gap: 10px;
}

.track-link {
  text-decoration: none;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  white-space: nowrap;
}

.track-link:hover {
  text-decoration: underline;
}

/* VIDEOS */
.video-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.video-pill {
  text-decoration: none;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 8px 14px;
  border-radius: 999px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(3, 3, 8, 0.5);
}

.video-pill:hover {
  background: #ffffff;
  color: #050508;
}

.glass {
  background: rgba(8, 8, 20, 0.85);
  backdrop-filter: blur(20px);
}

/* SHOP */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.merch-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.merch-img-placeholder {
  height: 160px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 91, 189, 0.12), rgba(90, 85, 255, 0.18));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  color: rgba(10, 10, 22, 0.8);
}

.merch-info p {
  margin: 0 0 4px;
}

/* EXCLUSIVE SIGNUP */
.signup-form {
  margin-top: 24px;
}

.input-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.input-row input {
  flex: 1;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 11px 16px;
  background: rgba(9, 9, 18, 0.8);
  color: #ffffff;
  font-size: 0.9rem;
  outline: none;
}

.input-row input::placeholder {
  color: rgba(220, 220, 242, 0.6);
}

/* ABOUT / SOCIALS */
.social-row {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-link {
  text-decoration: none;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(15, 15, 30, 0.4);
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.9);
}

.social-link:hover {
  background: #050508;
  color: #ffffff;
}

/* FOOTER */
.site-footer {
  padding: 20px 7vw 28px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(227, 227, 243, 0.7);
}

/* REVEAL SCROLL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .grid-two {
    grid-template-columns: 1fr;
  }

  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-inner {
    margin-bottom: 16vh;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding-inline: 4vw;
  }

  .nav {
    overflow-x: auto;
    max-width: 75vw;
  }

  .section {
    padding-inline: 5vw;
    padding-top: 96px;
  }

  .shop-grid {
    grid-template-columns: 1fr;
  }

  .hero-bg {
    opacity: 0.55;
    background-position: center 20%;
  }

  .hero-inner {
    text-align: left;
  }

  .hero-ctas {
    flex-wrap: wrap;
  }

  .input-row {
    flex-direction: column;
  }
}
