/* ============================================
   DARK MUSIC DISTRIBUTION — Design System
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Colors */
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-surface: #141414;
  --bg-surface-hover: #1a1a1a;
  --bg-elevated: #1e1e1e;

  --accent-green: #38bdf8;
  --accent-green-dark: #0ea5e9;
  --accent-green-glow: rgba(56, 189, 248, 0.15);
  --accent-purple: #9c89ee;
  --accent-purple-dark: #7c5ce0;
  --accent-purple-glow: rgba(156, 137, 238, 0.15);

  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.65);
  --text-tertiary: rgba(255, 255, 255, 0.4);

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.12);
  --border-medium: rgba(255, 255, 255, 0.2);

  --gradient-green: linear-gradient(135deg, #7dd3fc 0%, #38bdf8 50%, #0284c7 100%);
  --gradient-purple: linear-gradient(135deg, #9c89ee, #7c5ce0);
  --gradient-dark: linear-gradient(180deg, #0a0a0a, #111111);
  --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 120px;
  --container-width: 1200px;
  --container-padding: 24px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 100px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow-green: 0 0 30px rgba(56, 189, 248, 0.2);
  --shadow-glow-purple: 0 0 30px rgba(156, 137, 238, 0.2);
}

/* ---------- Reset ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul, ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}

/* ---------- Utility Classes ---------- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  width: 100%;
}

.section-padding {
  padding: var(--section-padding) 0;
}

.text-gradient-green {
  background: var(--gradient-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-purple {
  background: var(--gradient-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Animation Classes ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.35s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(8) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(9) { transition-delay: 0.45s; opacity: 1; transform: translateY(0); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: var(--transition-base);
  white-space: nowrap;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-green);
  color: #0a0a0a;
  box-shadow: var(--shadow-glow-green);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(56, 189, 248, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-medium);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--text-secondary);
  transform: translateY(-2px);
}

.btn-purple {
  background: var(--gradient-purple);
  color: var(--text-primary);
  box-shadow: var(--shadow-glow-purple);
}

.btn-purple:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(156, 137, 238, 0.35);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

/* ---------- Tag / Badge ---------- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  background: var(--accent-green-glow);
  color: var(--accent-green);
  border: 1px solid rgba(56, 189, 248, 0.2);
}

.tag-purple {
  background: var(--accent-purple-glow);
  color: var(--accent-purple);
  border-color: rgba(156, 137, 238, 0.2);
}

.top-text {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 12px;
}

.top-text.grey {
  color: var(--text-tertiary);
}

.top-text.center {
  text-align: center;
}

/* ---------- Section Titles ---------- */
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
}

/* ============================================
   1. ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
  background: linear-gradient(90deg, #7c5ce0, #9c89ee, #7c5ce0);
  padding: 10px 16px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  z-index: 1001;
  position: relative;
}

.announcement-bar .timer {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}

.announcement-bar .timer span {
  background: rgba(0, 0, 0, 0.25);
  padding: 2px 8px;
  border-radius: 4px;
  min-width: 28px;
  text-align: center;
}

.announcement-bar .btn-sm {
  padding: 6px 18px;
  font-size: 0.78rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
}

.announcement-bar .btn-sm:hover {
  background: rgba(0, 0, 0, 0.5);
}

/* ============================================
   2. NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition-base);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  z-index: 1002;
}

.navbar-logo .logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-green);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.navbar-logo .logo-text-accent {
  color: var(--accent-green);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.nav-link .arrow {
  font-size: 0.7rem;
  transition: var(--transition-fast);
}

.nav-item:hover .arrow {
  transform: rotate(180deg);
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #1a1a1a;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition-fast);
  box-shadow: var(--shadow-lg);
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.nav-dropdown a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

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

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  z-index: 1002;
  cursor: pointer;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(56,189,248,0.14), rgba(156,137,238,0.10));
  border: 1px solid rgba(56,189,248,0.30);
  box-shadow: 0 4px 16px rgba(56,189,248,0.18), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, background 0.3s ease;
  animation: hamburgerGlow 2.6s ease-in-out infinite;
}

.hamburger:hover {
  transform: translateY(-2px) scale(1.06);
  background: linear-gradient(145deg, rgba(56,189,248,0.24), rgba(156,137,238,0.18));
  box-shadow: 0 8px 24px rgba(56,189,248,0.40);
}

.hamburger:active {
  transform: scale(0.94);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: linear-gradient(90deg, #38bdf8, #9c89ee);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55), opacity 0.25s ease, width 0.3s ease;
  border-radius: 3px;
}

.hamburger span:nth-child(2) { width: 16px; align-self: flex-start; margin-left: 11px; }

.hamburger:hover span:nth-child(2) { width: 22px; margin-left: 11px; }

.hamburger.active {
  animation: none;
  background: linear-gradient(145deg, rgba(156,137,238,0.22), rgba(56,189,248,0.16));
  box-shadow: 0 6px 22px rgba(156,137,238,0.38);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  width: 22px;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
  width: 22px;
}

@keyframes hamburgerGlow {
  0%, 100% { box-shadow: 0 4px 16px rgba(56,189,248,0.18), inset 0 1px 0 rgba(255,255,255,0.06); }
  50% { box-shadow: 0 6px 22px rgba(56,189,248,0.42), inset 0 1px 0 rgba(255,255,255,0.10); }
}

@media (prefers-reduced-motion: reduce) {
  .hamburger { animation: none; }
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(56,189,248,0.14), transparent 55%),
    radial-gradient(circle at 50% 90%, rgba(156,137,238,0.12), transparent 55%),
    rgba(8, 8, 10, 0.99);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  z-index: 1001;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.mobile-menu.active {
  display: flex;
  opacity: 1;
}

/* Mobile menu close (X) button */
.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(56,189,248,0.16), rgba(156,137,238,0.12));
  border: 1px solid rgba(56,189,248,0.32);
  box-shadow: 0 6px 20px rgba(56,189,248,0.22);
  color: var(--text-primary);
  cursor: pointer;
  z-index: 1003;
  opacity: 0;
  transform: scale(0.6) rotate(-90deg);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.25s ease, box-shadow 0.25s ease;
}

.mobile-menu.active .mobile-close {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  transition-delay: 0.15s;
}

.mobile-close:hover {
  background: linear-gradient(145deg, rgba(56,189,248,0.28), rgba(156,137,238,0.22));
  box-shadow: 0 8px 26px rgba(56,189,248,0.40);
  transform: scale(1.08) rotate(90deg);
}

.mobile-close svg { width: 22px; height: 22px; display: block; }

/* Universal back button (dashboard + app pages) */
.back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  padding: 0;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(56,189,248,0.14), rgba(156,137,238,0.10));
  border: 1px solid rgba(56,189,248,0.28);
  color: var(--text-primary);
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.25s ease, box-shadow 0.25s ease;
}

.back-btn svg { width: 20px; height: 20px; display: block; transition: transform 0.25s ease; }

.back-btn:hover {
  background: linear-gradient(145deg, rgba(56,189,248,0.24), rgba(156,137,238,0.18));
  box-shadow: 0 6px 18px rgba(56,189,248,0.30);
  transform: translateX(-2px);
}

.back-btn:hover svg { transform: translateX(-2px); }

.back-btn:active { transform: scale(0.94); }

.mobile-menu a {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--text-secondary);
  padding: 12px 30px;
  border-radius: var(--radius-pill);
  position: relative;
  opacity: 0;
  transform: translateY(22px);
  transition: color 0.25s, background 0.25s, transform 0.25s;
}

.mobile-menu.active a {
  animation: menuItemIn 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.mobile-menu a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 0;
  height: 2px;
  background: var(--gradient-green);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.mobile-menu a:not(.btn):hover {
  color: var(--text-primary);
  transform: scale(1.06);
}

.mobile-menu a:not(.btn):hover::after { width: 42%; }

.mobile-menu a.btn {
  min-width: 220px;
  text-align: center;
  justify-content: center;
}

.mobile-menu a.btn-primary {
  box-shadow: 0 10px 28px rgba(56, 189, 248, 0.35);
}

.mobile-menu.active a:nth-child(1) { animation-delay: 0.04s; }
.mobile-menu.active a:nth-child(2) { animation-delay: 0.09s; }
.mobile-menu.active a:nth-child(3) { animation-delay: 0.14s; }
.mobile-menu.active a:nth-child(4) { animation-delay: 0.19s; }
.mobile-menu.active a:nth-child(5) { animation-delay: 0.24s; }
.mobile-menu.active a:nth-child(6) { animation-delay: 0.29s; }
.mobile-menu.active a:nth-child(7) { animation-delay: 0.34s; }
.mobile-menu.active a:nth-child(8) { animation-delay: 0.39s; }
.mobile-menu.active a:nth-child(9) { animation-delay: 0.46s; }
.mobile-menu.active a:nth-child(10) { animation-delay: 0.52s; }

@keyframes menuItemIn {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-menu a, .mobile-menu.active a { animation: none !important; opacity: 1; transform: none; }
}

/* ============================================
   3. HERO SECTION
   ============================================ */
.hero {
  padding-top: 90px;
  padding-bottom: 24px;
  position: relative;
  overflow: hidden;
  min-height: auto;
  display: flex;
  align-items: flex-start;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(156, 137, 238, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hero-byline {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
}

.hero-info-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.hero-info-tag .badge {
  background: var(--accent-green);
  color: #0a0a0a;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.08em;
}

.hero-body {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-trust-avatars {
  display: flex;
}

.hero-trust-avatars .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg-primary);
  margin-left: -10px;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  overflow: hidden;
}

.hero-trust-avatars .avatar:first-child {
  margin-left: 0;
}

.hero-trust-avatars .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-trust-text {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-xl);
  position: relative;
  z-index: 1;
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at center, rgba(56, 189, 248, 0.1) 0%, transparent 70%);
  border-radius: var(--radius-xl);
  z-index: 0;
}

/* ============================================
   4. PARTNER MARQUEE
   ============================================ */
.marquee-section {
  padding: 50px 0 70px;
  position: relative;
  overflow: hidden;
}

.marquee-section .divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
  margin-bottom: 50px;
}

.marquee-wrapper {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.marquee-track .logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  opacity: 0.4;
  transition: opacity var(--transition-base);
  flex-shrink: 0;
}

.marquee-track .logo-item:hover {
  opacity: 0.8;
}

.marquee-track .logo-item svg {
  height: 32px;
  width: auto;
  fill: white;
}

.marquee-track .logo-item img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.5;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   5. INDEPENDENT NOT ALONE BANNER
   ============================================ */
.banner-section {
  position: relative;
  padding: 80px 0;
  background: var(--bg-secondary);
  overflow: hidden;
  transform: skewY(-3deg);
  margin: 40px 0;
}

.banner-section > * {
  transform: skewY(3deg);
}

.banner-marquee {
  display: flex;
  gap: 40px;
  animation: bannerScroll 15s linear infinite;
  width: max-content;
}

.banner-marquee h2 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.04) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  user-select: none;
}

@keyframes bannerScroll {
  0% { transform: translateX(0) skewY(3deg); }
  100% { transform: translateX(-50%) skewY(3deg); }
}

/* ============================================
   6. MONETIZE SECTION
   ============================================ */
.feature-section {
  padding: var(--section-padding) 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.feature-grid.reverse {
  direction: rtl;
}

.feature-grid.reverse > * {
  direction: ltr;
}

.feature-content {
  max-width: 520px;
}

.feature-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.feature-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.feature-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  transition: transform var(--transition-slow);
}

.feature-image:hover img {
  transform: scale(1.03);
}

.feature-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  pointer-events: none;
}

/* ============================================
   7. EXPRESS ADS PROMO
   ============================================ */
.promo-section {
  padding: var(--section-padding) 0;
}

.promo-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.promo-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.promo-content h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.promo-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.promo-ctas {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.promo-note {
  font-size: 0.82rem;
  color: var(--text-tertiary);
  font-style: italic;
}

.promo-image img {
  width: 100%;
  border-radius: var(--radius-lg);
}

/* ============================================
   8. ARTIST SHOWCASE
   ============================================ */
.artists-section {
  padding: var(--section-padding) 0;
  overflow: hidden;
}

.artists-header {
  text-align: center;
  margin-bottom: 60px;
}

.artists-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.15;
  max-width: 700px;
  margin: 0 auto;
}

.artists-scroll-wrapper {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}

.artists-scroll-track {
  display: flex;
  gap: 24px;
  animation: artistScroll 30s linear infinite;
  width: max-content;
}

.artist-card {
  width: 300px;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
}

.artist-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.artist-card:hover img {
  transform: scale(1.08);
}

.artist-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.artist-card .artist-name {
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: capitalize;
}

@keyframes artistScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   9. FEATURES GRID
   ============================================ */
.features-grid-section {
  padding: var(--section-padding) 0;
}

.features-grid-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.features-grid-section .section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.15;
  max-width: 700px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-green);
  opacity: 0;
  transition: var(--transition-base);
}

.feature-card:hover {
  border-color: var(--border-light);
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-4px);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--accent-green-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   10. HALL OF FAME / SUCCESS STORIES
   ============================================ */
.hall-of-fame-section {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

.hall-of-fame-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.hall-of-fame-section .section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.15;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.story-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-base);
}

.story-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
}

.story-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.story-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.story-card:hover .story-card-image img {
  transform: scale(1.05);
}

.story-card-content {
  padding: 24px;
}

.story-card-content .story-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-purple);
  margin-bottom: 8px;
}

.story-card-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.story-card-content p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ============================================
   11. AI NAVIGATOR (AUXY EQUIVALENT)
   ============================================ */
.ai-section {
  padding: var(--section-padding) 0;
}

.ai-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.ai-card::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(156, 137, 238, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.ai-content h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.ai-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.ai-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.ai-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.ai-features-list li .check {
  color: var(--accent-green);
  font-size: 1.1rem;
}

.ai-image {
  position: relative;
}

.ai-image img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.ai-image .glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at center, rgba(156, 137, 238, 0.1) 0%, transparent 70%);
  border-radius: var(--radius-xl);
  z-index: -1;
}

/* ============================================
   12. FAQ SECTION
   ============================================ */
.faq-section {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

.faq-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-section .section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.15;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-base);
}

.faq-item:hover {
  border-color: var(--border-light);
}

.faq-item.active {
  border-color: rgba(56, 189, 248, 0.2);
}

.faq-question {
  width: 100%;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition-fast);
}

.faq-question:hover {
  color: var(--accent-green);
}

.faq-question .icon {
  font-size: 1.2rem;
  transition: transform var(--transition-base);
  flex-shrink: 0;
  margin-left: 16px;
  color: var(--text-tertiary);
}

.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
  color: var(--accent-green);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 24px 22px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   13. NEWSLETTER / FINAL CTA
   ============================================ */
.cta-section {
  padding: var(--section-padding) 0;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.cta-section p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.cta-form input {
  flex: 1;
  padding: 16px 24px;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  color: var(--text-primary);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-base);
}

.cta-form input::placeholder {
  color: var(--text-tertiary);
}

.cta-form input:focus {
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px var(--accent-green-glow);
}

/* ============================================
   14. FOOTER
   ============================================ */
.footer {
  padding: 80px 0 30px;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand {
  max-width: 280px;
}

.footer-brand .navbar-logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  font-size: 1rem;
}

.footer-socials a:hover {
  background: var(--accent-green-glow);
  border-color: rgba(56, 189, 248, 0.3);
  color: var(--accent-green);
}

.footer-column h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer-column a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 6px 0;
  transition: var(--transition-fast);
}

.footer-column a:hover {
  color: var(--accent-green);
  transform: translateX(4px);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-tertiary);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: var(--text-tertiary);
  transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--text-primary);
}

/* ============================================
   STATS COUNTER
   ============================================ */
.stats-bar {
  padding: 60px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item .stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.stat-item .stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 991px) {
  :root {
    --section-padding: 80px;
  }

  /* Mobile nav: hide desktop links, show hamburger */
  .nav-links,
  .nav-ctas {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-content {
    text-align: center;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .feature-grid,
  .feature-grid.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
    direction: ltr;
  }

  .feature-content {
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .promo-card {
    grid-template-columns: 1fr;
    padding: 40px;
  }

  .ai-card {
    grid-template-columns: 1fr;
    padding: 40px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
    --container-padding: 20px;
  }

  .hero {
    padding-top: 120px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .stories-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cta-form {
    flex-direction: column;
  }

  .banner-marquee h2 {
    font-size: 2.5rem;
  }

  .artist-card {
    width: 240px;
    height: 320px;
  }

  .announcement-bar {
    font-size: 0.78rem;
    padding: 8px 12px;
  }

  .promo-card,
  .ai-card {
    padding: 28px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-byline {
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.88rem;
  }

  .feature-card {
    padding: 24px;
  }
}

/* ============================================
   LOADING ANIMATION
   ============================================ */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--border-subtle);
  border-top-color: var(--accent-green);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================
   SCROLLBAR STYLING
   ============================================ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ============================================
   SELECTION STYLING
   ============================================ */
::selection {
  background: var(--accent-green);
  color: var(--bg-primary);
}

/* ============================================
   MOBILE / ANDROID HARDENING (global)
   ============================================ */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
html, body {
  overflow-x: hidden;
  max-width: 100%;
}
*, *::before, *::after {
  -webkit-tap-highlight-color: transparent;
}
/* Media never overflows its container on small screens */
img, video, svg, canvas, iframe {
  max-width: 100%;
  height: auto;
}
/* Smooth momentum scrolling for any horizontal scroller */
.table-scroll, .overflow-scroll, .artists-track, .marquee-track {
  -webkit-overflow-scrolling: touch;
}
/* Respect device safe areas (notches / gesture bars) on Android & iOS */
@supports (padding: max(0px)) {
  .navbar, .announcement-bar, .footer-bottom {
    padding-left: max(var(--container-padding, 20px), env(safe-area-inset-left));
    padding-right: max(var(--container-padding, 20px), env(safe-area-inset-right));
  }
}

/* ---- Touch & sizing tweaks for phones ---- */
@media (max-width: 768px) {
  /* Prevent mobile browser zoom-on-focus: inputs must be >= 16px */
  input, select, textarea {
    font-size: 16px !important;
  }
  /* Comfortable tap targets (Android Material min = 48px) */
  .btn, .nav-ctas a, .mobile-menu a, button, .faq-question {
    min-height: 48px;
  }
  /* Keep long words/URLs from forcing horizontal scroll */
  body {
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  /* Fluid headings so nothing clips on narrow screens */
  .hero h1 { font-size: clamp(1.9rem, 8vw, 2.4rem); line-height: 1.15; }
  .section-title { font-size: clamp(1.5rem, 6vw, 2rem); }
  /* Any data table becomes swipeable instead of overflowing */
  table { display: block; width: 100%; overflow-x: auto; white-space: nowrap; }
}

@media (max-width: 480px) {
  :root { --container-padding: 16px; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   LANDING PRICING — stacked rows (matches onboarding)
   ============================================ */
.pricing-list { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.pricing-row {
  position: relative; border: 1px solid var(--border-light); border-radius: var(--radius-lg);
  padding: 28px; background: var(--gradient-card); overflow: hidden;
  transition: border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}
.pricing-row:hover { border-color: var(--accent-green); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.35); }
.pricing-row.popular { border-color: rgba(56,189,248,0.45); box-shadow: 0 0 0 3px rgba(56,189,248,0.12); }
.pricing-row .ribbon2 {
  position: absolute; top: 18px; right: -40px; transform: rotate(45deg);
  background: var(--gradient-green); color: #001018; font-size: 0.62rem; font-weight: 800;
  letter-spacing: 0.5px; padding: 5px 46px; box-shadow: 0 2px 8px rgba(0,0,0,0.35); z-index: 2;
}
.pr2-head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.pr2-name { font-size: 1.15rem; font-weight: 800; letter-spacing: 0.5px; color: var(--text-primary); }
.pr2-name .t-muted { color: var(--text-secondary); }
.pr2-name .t-blue { color: var(--accent-green); }
.pr2-name .t-purple { color: var(--accent-purple); }
.pr2-badge {
  font-size: 0.72rem; font-weight: 700; color: #34d399; background: rgba(52,211,153,0.12);
  border: 1px solid rgba(52,211,153,0.3); padding: 3px 10px; border-radius: 20px; white-space: nowrap;
}
.pr2-price { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-bottom: 4px; }
.pr2-price .was { text-decoration: line-through; color: var(--text-tertiary); font-size: 1.15rem; }
.pr2-price .now { font-size: 2rem; font-weight: 800; color: var(--text-primary); }
.pr2-price .per { color: var(--text-tertiary); font-size: 0.95rem; }
.pr2-billing { color: var(--text-tertiary); font-size: 0.88rem; margin-bottom: 4px; }
.pr2-feats {
  list-style: none; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 20px; padding: 18px 0 0; margin: 18px 0 0; border-top: 1px solid var(--border-subtle);
}
.pr2-feats li { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--text-secondary); }
.pr2-feats li .c { color: var(--accent-green); font-weight: 700; }
.pr2-feats li .x { color: var(--text-tertiary); }
.pr2-cta { margin-top: 22px; width: 100%; text-align: center; }
@media (max-width: 560px) {
  .pricing-row { padding: 22px; }
  .pr2-feats { grid-template-columns: 1fr; }
}


/* ---- Plan selection (onboarding) + animations (both pages) ---- */
.pricing-row.selectable { cursor: pointer; }
.pr2-radio {
  width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--border-medium);
  flex-shrink: 0; transition: border-color .2s, background .2s, box-shadow .2s;
}
.pricing-row.selected { border-color: var(--accent-green); box-shadow: 0 0 0 3px var(--accent-green-glow); background: rgba(56,189,248,0.06); }
.pricing-row.selected .pr2-radio { border-color: var(--accent-green); background: var(--accent-green); box-shadow: inset 0 0 0 4px var(--bg-primary); }

@keyframes popGlow {
  0%, 100% { box-shadow: 0 0 0 3px rgba(56,189,248,0.10); }
  50%      { box-shadow: 0 0 0 6px rgba(56,189,248,0.22); }
}
.pricing-row.popular { animation: popGlow 2.8s ease-in-out infinite; }
.pricing-row.popular.selected { animation: none; }

@media (prefers-reduced-motion: reduce) {
  .pricing-row, .pricing-row.popular { animation: none !important; transition: none !important; }
}
