/* ═══════════════════════════════════════════════════════════════
   Opulent — Premium Design System
   House Music & Amapiano · South Africa
   ═══════════════════════════════════════════════════════════════ */

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  --bg:            #121212;
  --bg-2:          #181818;
  --bg-card:       #181818;
  --bg-card-hover: #282828;
  --bg-input:      #2a2a2a;

  --border:        rgba(255,255,255,0.08);
  --border-subtle: rgba(255,255,255,0.04);
  --border-bright: rgba(255,255,255,0.15);

  --magenta:  #E91E63;
  --cyan:     #00E5FF;
  --gold:     #D4AF37;
  --red:      #EF4444;

  --text-1:   #FFFFFF;
  --text-2:   #B3B3B3;
  --text-3:   #6A6A6A;

  --grad-hero:    linear-gradient(135deg, #A117F2 0%, #0D7EFF 50%, #E91E63 100%);
  --grad-magenta: linear-gradient(135deg, #E91E63 0%, #FF6B9D 100%);
  --grad-card:    linear-gradient(135deg, rgba(161,23,242,0.15) 0%, rgba(13,126,255,0.15) 100%);

  --glow-magenta: 0 0 60px rgba(233,30,99,0.25);
  --glow-card:    0 8px 32px rgba(0,0,0,0.4);

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-full: 9999px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --font-body: Arial, Helvetica, sans-serif;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-1);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
ul { list-style: none; }

/* ── Utilities ──────────────────────────────────────────────── */
.hidden { display: none !important; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ── Scroll animations ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ══════════════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 80px;
  background: transparent;
  transition: background 0.35s, backdrop-filter 0.35s, -webkit-backdrop-filter 0.35s;
}
.navbar.scrolled {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.navbar-logo {
  height: 40px;
  width: 40px;
  border-radius: 8px;
  object-fit: contain;
}
.navbar-brand-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.brand-by {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-2);
  opacity: 0.7;
  margin-left: 2px;
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.navbar-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-2);
  position: relative;
  transition: color 0.2s;
}
.navbar-links a:hover,
.navbar-links a.active {
  color: #fff;
}
.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--magenta);
  border-radius: 1px;
  transition: width 0.25s var(--ease-out);
}
.navbar-links a:hover::after,
.navbar-links a.active::after {
  width: 100%;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 999;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background: #1a1a1a;
  z-index: 1001;
  padding: 100px 32px 40px;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-out);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu a {
  display: block;
  padding: 16px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-2);
  border-bottom: 1px solid var(--border-subtle);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: #fff; }

/* ══════════════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn-magenta {
  background: var(--cyan);
  color: #000;
}
.btn-magenta:hover {
  background: #33eaff;
  transform: scale(1.04);
  color: #000;
}
.btn-cyan {
  background: var(--cyan);
  color: #000;
}
.btn-cyan:hover {
  background: #33eaff;
  transform: scale(1.04);
  color: #000;
}
.btn-white {
  background: #fff;
  color: #000;
}
.btn-white:hover {
  transform: scale(1.04);
  background: #f0f0f0;
  color: #000;
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-outline-white:hover {
  background: #fff;
  color: #000;
  transform: scale(1.04);
}
.btn-magenta {
  background: var(--grad-magenta);
  color: #fff;
}
.btn-magenta:hover {
  transform: scale(1.04);
  box-shadow: var(--glow-magenta);
  color: #fff;
}
.btn-lg {
  padding: 18px 40px;
  font-size: 1rem;
}
.btn-sm {
  padding: 10px 20px;
  font-size: 0.8rem;
}

/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 120px 32px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
  opacity: 0.5;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, var(--bg) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}
.hero-brand-logo {
  display: block;
  max-width: 380px;
  margin: 0 auto 48px;
  height: auto;
}
.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 24px;
  color: #fff;
}
.hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: var(--text-2);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
/* Feature grid (multi-column card layout) */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}
.feature-grid .feature-card {
  padding: 40px 32px;
}
.feature-grid .feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.feature-grid .feature-card p {
  font-size: 1rem;
  margin: 0;
}

/* Key stats band */
.keystats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.keystat {
  text-align: center;
  padding: 36px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-xl);
}
.keystat .num {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #E91E63, #00E5FF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.keystat .lbl {
  color: var(--text-2);
  margin-top: 10px;
  font-size: 0.95rem;
}

/* Genre strip (below key stats) */
.genre-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin-top: 52px;
  color: var(--magenta);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.95rem;
}
.genre-row .g-sep {
  color: var(--text-3);
  opacity: 0.55;
  font-weight: 400;
}

/* ══════════════════════════════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════════════════════════════ */
.section {
  padding: 120px 32px;
}
.section-dark {
  background: var(--bg);
}
.section-alt {
  background: var(--bg-2);
}
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 12px;
  text-align: center;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
  text-align: center;
  color: #fff;
}
.section-sub {
  color: var(--text-2);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* ── Feature cards (list layout) ────────────────────────────── */
.features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.feature-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: none;
  border-radius: var(--r-xl);
  padding: 56px 48px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.feature-card h3 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  color: #fff;
  text-align: left;
}
.feature-card p {
  color: var(--magenta);
  font-size: clamp(1rem, 2vw, 1.3rem);
  line-height: 1.6;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════════════════════════
   IT'S FREE BAND
   ══════════════════════════════════════════════════════════════ */
.free-band {
  position: relative;
  background: linear-gradient(135deg, #E91E63 0%, #B0003A 50%, var(--bg) 100%);
  padding: 80px 32px;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 360px;
}
.free-band-content {
  position: relative;
  z-index: 2;
  max-width: 100%;
  text-align: center;
}
.free-band h2 {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 900;
  color: #000;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}
.free-band h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #000;
  opacity: 0.8;
}
.free-band-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 48%;
  background-image: url('everyone-strip.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 40%);
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 40%);
}

@media (min-width: 769px) {
  .free-band-content {
    max-width: 50%;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .free-band {
    padding: 60px 24px;
    flex-direction: column;
    gap: 32px;
    align-items: stretch;
    min-height: auto;
  }
  .free-band-image {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: var(--r-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    background-position: center;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 25%);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 25%);
  }
}

/* ══════════════════════════════════════════════════════════════
   PLANS COMPARISON
   ══════════════════════════════════════════════════════════════ */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.plan-card {
  background: var(--bg-card);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--glow-card);
}
.plan-badge {
  display: inline-block;
  background: var(--magenta);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-full);
  margin-bottom: 16px;
}
.plan-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #fff;
}
.plan-price {
  font-size: 1.1rem;
  color: var(--text-2);
  margin-bottom: 24px;
}
.plan-price strong {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
}
.plan-features {
  margin-bottom: 32px;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.5;
}
.plan-features .check {
  color: var(--magenta);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
  background: none;
  border-radius: 0;
  width: auto;
  height: auto;
  display: inline;
  align-items: unset;
  justify-content: unset;
  font-size: inherit;
}
.plan-cta {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: var(--r-full);
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s var(--ease-out);
}
.plan-cta:hover {
  background: #fff;
  color: #000;
  transform: scale(1.02);
}
.plan-cta-primary {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #000;
}
.plan-cta-primary:hover {
  background: #33eaff;
  border-color: #33eaff;
}

/* ══════════════════════════════════════════════════════════════
   DOWNLOAD SECTION
   ══════════════════════════════════════════════════════════════ */
.download-section {
  text-align: center;
  padding: 120px 32px;
}
.download-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 40px;
  color: #fff;
}
.download-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.download-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #000;
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--r-md);
  border: 1px solid var(--border-bright);
  transition: border-color 0.2s, transform 0.2s;
  text-decoration: none;
}
.download-badge:hover {
  border-color: #fff;
  transform: translateY(-2px);
  color: #fff;
}
.download-badge-icon {
  font-size: 1.5rem;
}
.download-badge-text {
  text-align: left;
}
.download-badge-text small {
  font-size: 0.65rem;
  color: var(--text-2);
  display: block;
  letter-spacing: 0.05em;
}
.download-badge-text strong {
  font-size: 1rem;
  font-weight: 700;
}

/* Download CTA strip (above "What's included") */
.download-strip {
  padding: 32px 32px 8px;
  text-align: center;
}
.download-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.download-actions .btn {
  min-width: 240px;
}
.download-actions .download-badge {
  padding: 16px 30px;
  border-radius: var(--r-full);
}
.download-note {
  margin-top: 18px;
  color: var(--text-3);
  font-size: 0.8rem;
}

/* ══════════════════════════════════════════════════════════════
   CTA BANNER
   ══════════════════════════════════════════════════════════════ */
.cta-banner {
  text-align: center;
  padding: 100px 32px;
  background: linear-gradient(135deg, rgba(161,23,242,0.12) 0%, rgba(13,126,255,0.12) 100%);
}
.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  color: #fff;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.footer {
  background: #000;
  padding: 80px 32px 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}
.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand-logo img {
  height: 36px;
  width: 36px;
  border-radius: 8px;
}
.footer-brand-logo span {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-2);
  padding: 6px 0;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--magenta);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: 0.8rem;
  color: var(--text-3);
  transition: color 0.2s;
}
.footer-legal a:hover { color: #fff; }
.footer-copy {
  font-size: 0.8rem;
  color: var(--text-3);
}
.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #282828;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}
.footer-social:hover {
  background: var(--text-2);
  transform: scale(1.1);
  color: #fff;
}

/* ══════════════════════════════════════════════════════════════
   AUTH PAGES
   ══════════════════════════════════════════════════════════════ */
.auth-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background: var(--bg);
}
.auth-container { width: 100%; max-width: 460px; }
.auth-logo {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: block;
  margin: 0 auto 24px;
  object-fit: contain;
}
.auth-title {
  font-size: 1.8rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.auth-subtitle {
  color: var(--text-2);
  text-align: center;
  font-size: 0.9rem;
  margin-bottom: 32px;
}

/* ── Forms ──────────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 8px;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text-1);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--magenta);
  box-shadow: 0 0 0 3px rgba(29,185,84,0.15);
}
.form-group input::placeholder { color: var(--text-3); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.5;
}
.checkbox-wrapper input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: var(--magenta);
  margin-top: 2px;
  flex-shrink: 0;
}
.password-wrapper { position: relative; }
.password-toggle {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-3);
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
}
.password-toggle:hover { color: var(--text-1); }

.strength-meter { margin-top: 8px; }
.strength-bar-track {
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.strength-bar-fill {
  height: 100%;
  border-radius: 2px;
  transition: width 0.3s, background 0.3s;
}
.strength-label {
  font-size: 0.72rem;
  color: var(--text-3);
  margin-top: 5px;
  min-height: 16px;
}

.role-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.role-option {
  padding: 20px 16px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
}
.role-option:hover { border-color: var(--border-bright); }
.role-option.selected {
  border-color: var(--magenta);
  background: rgba(233,30,99,0.06);
}
.role-option input[type="radio"] { display: none; }
.role-option .role-title {
  font-weight: 700;
  color: var(--text-1);
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.role-option .role-desc { font-size: 0.78rem; color: var(--text-2); }

/* ══════════════════════════════════════════════════════════════
   PRICING PAGE
   ══════════════════════════════════════════════════════════════ */
.pricing-hero {
  text-align: center;
  padding: 120px 24px 40px;
  background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(233,30,99,0.1) 0%, transparent 55%);
}
.pricing-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
  line-height: 1.05;
}
.pricing-hero h1 span {
  color: var(--magenta);
}
.pricing-hero > p { color: var(--text-2); font-size: 1rem; max-width: 480px; margin: 0 auto; }

.billing-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
  padding-bottom: 48px;
}
.billing-row span {
  font-size: 0.875rem;
  color: var(--text-2);
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s;
}
.billing-row span.active { color: var(--text-1); }
.toggle-pill {
  width: 48px; height: 26px;
  border-radius: 13px;
  background: var(--border);
  cursor: pointer;
  position: relative;
  transition: background 0.3s;
  border: none;
  padding: 0;
  flex-shrink: 0;
}
.toggle-pill.on { background: var(--magenta); }
.toggle-pill::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.3s var(--ease-out);
}
.toggle-pill.on::after { transform: translateX(22px); }
.save-badge {
  font-size: 0.72rem;
  color: var(--magenta);
  font-weight: 700;
  background: rgba(29,185,84,0.1);
  padding: 3px 10px;
  border-radius: var(--r-full);
  letter-spacing: 0.02em;
  border: 1px solid rgba(29,185,84,0.2);
}

.plan-tabs {
  display: flex;
  justify-content: center;
  max-width: 520px;
  margin: 0 auto 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 5px;
  gap: 4px;
}
.plan-tab {
  flex: 1;
  padding: 11px 0;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-2);
  background: transparent;
  border: none;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all 0.25s;
}
.plan-tab:hover { color: var(--text-1); }
.plan-tab.active {
  background: var(--grad-magenta);
  color: #fff;
  box-shadow: 0 2px 16px rgba(233,30,99,0.35);
}
.plan-tab .tier-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 9px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 999px;
  text-transform: lowercase;
  vertical-align: middle;
  white-space: nowrap;
}

.plan-spotlight {
  max-width: 940px;
  margin: 0 auto 72px;
  padding: 0 24px;
}
.spotlight-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transition: border-color 0.3s;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}
.spotlight-card[data-plan="standard"] {
  border-color: rgba(233,30,99,0.3);
}
.spotlight-card[data-plan="producer"] {
  border-color: rgba(255,215,0,0.3);
}
.spotlight-left {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.spotlight-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-full);
  margin-bottom: 16px;
  width: fit-content;
  border: 1px solid transparent;
}
.spotlight-card[data-plan="free"] .spotlight-tag {
  background: rgba(179,179,179,0.1);
  color: var(--text-2);
  border-color: rgba(179,179,179,0.2);
}
.spotlight-card[data-plan="standard"] .spotlight-tag {
  background: rgba(233,30,99,0.1);
  color: var(--magenta);
  border-color: rgba(233,30,99,0.25);
}
.spotlight-card[data-plan="producer"] .spotlight-tag {
  background: rgba(255,215,0,0.1);
  color: #FFD700;
  border-color: rgba(255,215,0,0.25);
}
.spotlight-name {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}
.spotlight-tagline { color: var(--text-2); font-size: 0.95rem; margin-bottom: 28px; }
.spotlight-price {
  font-size: 3.8rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 4px;
  line-height: 1;
}
.spotlight-price .cur { font-size: 1.4rem; font-weight: 600; vertical-align: super; margin-top: 6px; display: inline-block; }
.spotlight-price .per { font-size: 1rem; font-weight: 400; color: var(--text-2); letter-spacing: 0; }
.spotlight-annual {
  font-size: 0.85rem;
  color: var(--magenta);
  font-weight: 500;
  margin-bottom: 32px;
  min-height: 20px;
}
.spotlight-cta {
  display: block;
  width: 100%;
  padding: 15px;
  border-radius: var(--r-md);
  border: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.22s var(--ease-out);
  text-align: center;
}
.spotlight-cta:hover { transform: translateY(-2px); }
.cta-free {
  background: var(--bg-card-hover);
  color: var(--text-1);
  border: 1px solid var(--border);
}
.cta-standard {
  background: var(--grad-magenta);
  color: #fff;
}
.cta-producer {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #000;
}
.spotlight-note {
  text-align: center;
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--text-3);
}
.spotlight-right {
  padding: 52px 40px;
  border-left: 1px solid var(--border);
}
.spotlight-right h3 {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-bottom: 20px;
}
.spotlight-list { list-style: none; margin-bottom: 32px; }
.spotlight-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.5;
}
.spotlight-list li.no { opacity: 0.35; }
.spotlight-list .ico {
  flex-shrink: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  display: inline;
  align-items: unset;
  justify-content: unset;
  font-size: 0.9rem;
  font-weight: 700;
  margin-top: 0;
  background: none;
}
.ico-yes { color: var(--magenta); background: none; }
.ico-no  { color: var(--text-3); background: none; }

#spot-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-subtle);
}
#spot-highlights li:last-child { border-bottom: none; }
#spot-highlights li span.ico {
  width: auto; height: auto;
  border-radius: 0;
  flex-shrink: 0;
  margin-top: 0;
  background: none;
  display: inline;
  align-items: unset;
  justify-content: unset;
}
#spot-highlights li span:last-child {
  color: var(--text-1);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
}

.compare-section {
  max-width: 940px;
  margin: 0 auto;
  padding: 0 24px 100px;
}
.compare-section h2 {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.compare-table th,
.compare-table td {
  padding: 15px 20px;
  text-align: center;
  font-size: 0.875rem;
}
.compare-table thead th {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  font-weight: 700;
  color: var(--text-1);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}
.compare-table thead th.highlight { color: var(--magenta); }
.compare-table tbody tr { border-bottom: 1px solid var(--border-subtle); }
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody tr:hover { background: rgba(233,30,99,0.03); }
.compare-table td:first-child {
  text-align: left;
  color: var(--text-2);
  font-weight: 500;
}
.compare-table td.highlight-col { background: rgba(233,30,99,0.03); }
.tbl-check { color: var(--magenta); font-weight: 700; font-size: 1rem; }
.tbl-cross { color: var(--text-3); font-size: 1rem; }
.tbl-text { color: var(--text-1); font-weight: 600; }

/* ══════════════════════════════════════════════════════════════
   CHECKOUT
   ══════════════════════════════════════════════════════════════ */
.checkout-page {
  min-height: 100vh;
  padding: 80px 24px;
  background: radial-gradient(ellipse 70% 40% at 50% 0%, rgba(233,30,99,0.08) 0%, transparent 50%);
}
.checkout-container { max-width: 880px; margin: 0 auto; }
.checkout-header { text-align: center; margin-bottom: 48px; }
.checkout-header h1 {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.checkout-subtitle { color: var(--text-2); font-size: 0.95rem; }
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.checkout-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
}
.checkout-panel h2 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}
.order-item-name { color: var(--text-2); font-size: 0.875rem; }
.order-item-price { font-weight: 600; }
.order-divider { height: 1px; background: var(--border); margin: 16px 0; }
.order-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0 0;
}
.order-total .label { font-size: 1rem; font-weight: 700; }
.order-total .amount {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.secure-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  color: var(--text-3);
  font-size: 0.78rem;
}

.checkout-loading { text-align: center; padding: 60px 0; }
.spinner {
  width: 40px; height: 40px;
  margin: 0 auto 16px;
  border: 3px solid var(--border);
  border-top-color: var(--magenta);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.checkout-loading p { color: var(--text-2); }
.checkout-error, .checkout-success { text-align: center; padding: 60px 32px; }
.checkout-success h2, .checkout-error h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 16px 0 12px;
}
.checkout-success p, .checkout-error p { color: var(--text-2); margin-bottom: 28px; }

/* ══════════════════════════════════════════════════════════════
   POLICY PAGES
   ══════════════════════════════════════════════════════════════ */
.policy {
  max-width: 760px;
  margin: 0 auto;
  padding: 120px 24px 100px;
}
.policy h1 {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  line-height: 1.1;
}
.policy .updated {
  color: var(--text-3);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  margin-bottom: 48px;
  display: block;
}
.policy h2 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 40px 0 12px;
  color: var(--text-1);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-subtle);
}
.policy h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 24px 0 8px;
  color: var(--text-1);
}
.policy h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--magenta);
  margin: 20px 0 8px;
}
.policy p, .policy li {
  color: var(--text-2);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 12px;
}
.policy ul, .policy ol { padding-left: 22px; margin-bottom: 20px; }
.policy li { margin-bottom: 6px; }
.policy strong { color: var(--text-1); font-weight: 600; }
.policy a { color: var(--magenta); }
.policy a:hover { color: #ff6b9d; }
.policy code {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 2px 8px;
  font-size: 0.85em;
  color: var(--magenta);
}

.policy-callout {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--magenta);
  border-radius: var(--r-md);
  padding: 20px 24px;
  margin: 20px 0;
}
.policy-callout p { margin-bottom: 0; }

/* ══════════════════════════════════════════════════════════════
   DOWNLOAD PAGE
   ══════════════════════════════════════════════════════════════ */
.install-steps { max-width: 600px; margin: 0 auto; }
.install-step {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.step-num {
  min-width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--grad-magenta);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(233,30,99,0.3);
}
.step-content h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.step-content p { color: var(--text-2); font-size: 0.875rem; }

/* ══════════════════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 860px;
  margin: 0 auto 60px;
}
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  text-align: center;
  transition: border-color 0.2s;
}
.contact-card:hover { border-color: var(--border-bright); }
.contact-card .icon { font-size: 1.8rem; margin-bottom: 14px; }
.contact-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-card p { color: var(--text-2); font-size: 0.88rem; line-height: 1.55; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .section { padding: 80px 24px; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .navbar-links { display: none; }
  .nav-toggle { display: block; }
  .mobile-overlay.open { display: block; }
  .mobile-menu { display: flex; }

  .hero { padding: 100px 20px 60px; min-height: auto; }
  .hero-brand-logo { max-width: 240px; }

  .section { padding: 60px 20px; }
  .feature-card { padding: 36px 28px; }

  .spotlight-card { grid-template-columns: 1fr; }
  .spotlight-left { padding: 36px 28px; }
  .spotlight-right { border-left: none; border-top: 1px solid var(--border); padding: 32px 28px; }
  .spotlight-price { font-size: 2.8rem; }

  .plans-grid { grid-template-columns: 1fr; max-width: 400px; }

  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-panel { padding: 24px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand-col { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.5rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .feature-card { padding: 28px 20px; }
  .feature-card h3 { font-size: 1.5rem; }
  .feature-card p { font-size: 1rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .policy { padding: 80px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .role-grid { grid-template-columns: 1fr; }
}

/* Age Gate Overlay */
.age-gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(10, 10, 16, 0.92);
  backdrop-filter: blur(8px);
}
.age-gate-card {
  width: 100%;
  max-width: 420px;
  background: var(--card, #15151f);
  border: 1px solid var(--border, #26263a);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
.age-gate-logo { width: 64px; height: 64px; border-radius: 14px; margin-bottom: 16px; }
.age-gate-title { font-size: 1.4rem; margin-bottom: 8px; color: var(--text, #fff); }
.age-gate-subtitle { font-size: 0.95rem; color: var(--text-2, #a0a0b0); margin-bottom: 24px; }
.age-gate-actions { display: flex; flex-direction: column; gap: 12px; }
.age-gate-under18 {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border, #26263a);
  text-align: left;
}
.age-gate-under18 p { font-size: 0.92rem; color: var(--text-2, #a0a0b0); margin-bottom: 16px; }
.btn-ghost {
  background: transparent;
  color: var(--text, #fff);
  border: 1px solid var(--border, #26263a);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.05); }
