/* ============================================
   VERUS MUSIC GROUP — Style
   Dark theme / neon purple accents
   ============================================ */

/* ---------- Variables ---------- */
:root {
  --color-bg:         #0a0a14;
  --color-bg-alt:     #0f0f1e;
  --color-surface:    #151528;
  --color-surface-2:  #1a1a35;
  --color-border:     rgba(139, 92, 246, 0.15);
  --color-text:       #e8e8f0;
  --color-text-muted: #8888a8;
  --color-accent:     #8b5cf6;
  --color-accent-bright: #a78bfa;
  --color-accent-dim: rgba(139, 92, 246, 0.12);
  --color-accent-glow: rgba(139, 92, 246, 0.3);
  --color-pink:       #ec4899;
  --color-pink-dim:   rgba(236, 72, 153, 0.12);
  --font-display:     'Space Grotesk', sans-serif;
  --font-body:        'Inter', sans-serif;
  --ease:             cubic-bezier(.25, .46, .45, .94);
  --radius:           12px;
  --radius-sm:        8px;
  --container:        1200px;
  --nav-h:            72px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Utility ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent-bright);
  margin-bottom: 12px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn--primary {
  background: linear-gradient(135deg, var(--color-accent), var(--color-pink));
  color: #fff;
  box-shadow: 0 4px 20px var(--color-accent-glow);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--color-accent-glow);
}

.btn--sm {
  padding: 10px 22px;
  font-size: 0.82rem;
}

.btn__icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(10, 10, 20, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, var(--color-accent-bright), var(--color-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-text-muted);
  transition: color 0.3s var(--ease);
}
.nav__links a:hover { color: var(--color-text); }
.nav__cta-wrap a { color: #fff !important; }

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: all 0.3s var(--ease);
  border-radius: 2px;
}
.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 10, 20, 0.92) 0%,
    rgba(10, 10, 20, 0.7) 50%,
    rgba(10, 10, 20, 0.4) 100%
  );
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--color-accent-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 80px) 24px 80px;
  max-width: 600px;
  margin-left: max(24px, calc((100% - var(--container)) / 2 + 24px));
}
.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent-bright);
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero__accent {
  background: linear-gradient(135deg, var(--color-accent-bright), var(--color-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
}
.hero__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 36px;
}
.hero__price-label {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero__price-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent-bright);
}

@media (max-width: 768px) {
  .hero__content {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__price { justify-content: center; }
  .hero__bg::after {
    background: rgba(10, 10, 20, 0.8);
  }
}

/* ============================================
   PLATFORMS BAR
   ============================================ */
.platforms {
  padding: 48px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-alt);
}
.platforms .container {
  text-align: center;
}
.platforms__label {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.platforms__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.platform-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.platform-logo__text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-text-muted);
  opacity: 0.6;
  transition: opacity 0.3s var(--ease);
}
.platform-logo:hover .platform-logo__text { opacity: 1; }
.platform-logo--more span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-text-muted);
  font-style: italic;
}

/* ============================================
   FEATURES
   ============================================ */
.features {
  padding: 100px 0;
}
.features__header {
  text-align: center;
  margin-bottom: 64px;
}
.features__header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all 0.4s var(--ease);
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
  box-shadow: 0 8px 40px var(--color-accent-dim);
}
.feature-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-dim);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}
.feature-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-accent-bright);
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  padding: 100px 0;
  background: var(--color-bg-alt);
}
.how-it-works__header {
  text-align: center;
  margin-bottom: 72px;
}
.how-it-works__header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
}
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.step {
  flex: 1;
  max-width: 320px;
  text-align: center;
  padding: 0 20px;
}
.step__number {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-accent-bright);
  margin-bottom: 20px;
}
.step__icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-accent-dim), var(--color-pink-dim));
  border: 1px solid var(--color-border);
  border-radius: 50%;
  margin: 0 auto 24px;
}
.step__icon svg {
  width: 32px;
  height: 32px;
  color: var(--color-accent-bright);
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.step p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 1.6;
}
.step__connector {
  display: flex;
  align-items: center;
  padding-top: 80px;
  flex-shrink: 0;
}
.step__connector svg {
  width: 60px;
  height: 24px;
  color: var(--color-accent);
  opacity: 0.4;
}

/* ============================================
   CTA
   ============================================ */
.cta-section {
  padding: 100px 0;
}
.cta-banner {
  text-align: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 72px 48px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--color-accent-glow) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
}
.cta-banner__sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-text-muted);
  margin-bottom: 36px;
  position: relative;
}
.cta-banner .btn { position: relative; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--color-border);
  background: var(--color-bg);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-accent-bright), var(--color-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer__tagline {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}
.footer__links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__links a {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  transition: color 0.3s var(--ease);
}
.footer__links a:hover { color: var(--color-text); }
.footer__copy {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  opacity: 0.6;
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-surface);
    flex-direction: column;
    padding: 100px 32px 32px;
    gap: 24px;
    transition: right 0.35s var(--ease);
    border-left: 1px solid var(--color-border);
  }
  .nav__links.open { right: 0; }

  .hero {
    padding-top: calc(var(--nav-h) + 48px);
    padding-bottom: 48px;
  }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero__image-side { display: none; }

  .features { padding: 72px 0; }
  .features__grid { grid-template-columns: 1fr; }

  .how-it-works { padding: 72px 0; }
  .steps {
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }
  .step__connector {
    transform: rotate(90deg);
    padding-top: 0;
  }

  .cta-section { padding: 72px 0; }
  .cta-banner { padding: 48px 24px; }

  .platforms__logos { gap: 32px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .hero__price-amount { font-size: 1.6rem; }
  .platform-logo__text { font-size: 1.1rem; }
}
