/* ============================================
   eResonate — Global Live Music Platform
   Dark & Electric — Concert Energy
   ============================================ */

:root {
  --bg: #070B18;
  --bg-card: #0D1428;
  --bg-dark: #040812;
  --bg-light: #F6F4FB;
  --bg-light-card: #ECE9F7;
  --accent: #A855F7;
  --accent-glow: rgba(168, 85, 247, 0.3);
  --accent2: #D946EF;
  --money: #3EE08C;
  --text: #F5F4FB;
  --text-dark: #181820;
  --text-muted: #8D91B8;
  --text-muted-dark: #555566;
  --text-dim: #4A4F78;
  --border: rgba(255, 255, 255, 0.07);
  --border-light: rgba(0, 0, 0, 0.08);
  --border-accent: rgba(168, 85, 247, 0.35);
  --logo-green: #28A064;
  --logo-blue: #28A0DC;
  --radius: 12px;
  --radius-lg: 20px;
  --nav-h: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

.accent { color: var(--accent); }
.section { padding: 7rem 0; }
.section-dark {
  background:
    radial-gradient(ellipse 70% 50% at 85% 0%, rgba(168, 85, 247, 0.07), transparent 60%),
    radial-gradient(ellipse 60% 45% at 10% 100%, rgba(217, 70, 239, 0.05), transparent 60%),
    var(--bg-dark);
}

/* Gradient display numbers — stage-light drama */
.stat-num, .big-num, .tour-num, .raise-num, .earnings-y2-num, .disconnect-stat {
  background: linear-gradient(120deg, var(--accent) 20%, var(--accent2) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 800px;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 3rem;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  font-family: 'DM Sans', sans-serif;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  box-shadow: 0 0 28px var(--accent-glow), 0 4px 20px rgba(217, 70, 239, 0.25);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #BC7BFF, #EC6BFA);
  box-shadow: 0 0 44px rgba(178, 102, 255, 0.55), 0 6px 28px rgba(217, 70, 239, 0.35);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.05);
}
.btn-nav {
  padding: 0.6rem 1.4rem;
  font-size: 0.875rem;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  border-radius: 6px;
  box-shadow: 0 0 18px var(--accent-glow);
}
.btn-nav:hover { background: linear-gradient(135deg, #BC7BFF, #EC6BFA); }
.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.875rem; }
.btn-large { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================ NAV */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  background: rgba(7, 7, 15, 0.9);
  backdrop-filter: blur(20px);
  border-color: var(--border);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
}
.nav-logo-text { color: var(--logo-green); }
.logo-resonate { color: var(--logo-blue); }
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(7, 7, 15, 0.97);
  border-top: 1px solid var(--border);
  padding: 1rem 2rem 1.5rem;
}
.nav-mobile a {
  padding: 0.75rem 0;
  font-size: 1rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.nav-mobile a:last-child { border-bottom: none; margin-top: 0.5rem; }
.nav-mobile.open { display: flex; }

/* ============================================ HERO */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
  background:
    radial-gradient(ellipse 75% 55% at 75% 15%, rgba(168, 85, 247, 0.16), transparent 60%),
    radial-gradient(ellipse 55% 45% at 15% 85%, rgba(217, 70, 239, 0.12), transparent 65%),
    radial-gradient(ellipse 40% 35% at 50% 50%, rgba(80, 150, 255, 0.06), transparent 70%),
    var(--bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
#waveCanvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0.6;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, transparent 30%, var(--bg) 80%),
              linear-gradient(to bottom, transparent 50%, var(--bg) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.hero-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.25rem;
  transition-delay: 0.1s;
}
.hero-headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  transition-delay: 0.2s;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 2.5rem;
  transition-delay: 0.3s;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  transition-delay: 0.4s;
}
.hero-quotes {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  transition-delay: 0.5s;
}
.hero-quotes blockquote {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-left: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  max-width: 400px;
  flex: 1;
  min-width: 280px;
}
.hero-quotes p {
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.hero-quotes cite {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: normal;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
  color: var(--text-dim);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ============================================ OPPORTUNITY */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s;
}
.stat-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
  box-shadow: 0 12px 44px rgba(168, 85, 247, 0.18);
}
.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.stat-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.opportunity-cta {
  text-align: center;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(178, 102, 255, 0.08) 0%, transparent 100%);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
}
.opportunity-cta p {
  font-size: 1.35rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
}

/* ============================================ PROBLEM */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.problem-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.problem-card--center {
  border-color: var(--border-accent);
  background: rgba(178, 102, 255, 0.05);
}
.problem-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.problem-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.problem-card li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.problem-card li::before {
  content: '—';
  color: var(--accent);
  font-size: 0.75rem;
  flex-shrink: 0;
}
.ad-problem {
  display: flex;
  gap: 3rem;
  align-items: center;
  padding: 2.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  flex-wrap: wrap;
}
.ad-problem-text { flex: 2; min-width: 240px; }
.ad-problem-text h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.ad-problem-text p { color: var(--text-muted); font-size: 0.95rem; }
.ad-problem-stat { flex: 1; text-align: center; min-width: 180px; }
.big-num {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.ad-problem-stat p { font-size: 0.85rem; color: var(--text-muted); }

/* ============================================ SOLUTION */
.solution-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.solution-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s;
}
.solution-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
}
.solution-icon { font-size: 1.75rem; margin-bottom: 1rem; }
.solution-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.solution-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================ HOW IT WORKS */
.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
}
.how-step {
  flex: 1;
  min-width: 180px;
  padding: 2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
}
.step-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.how-step h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.how-step p { font-size: 0.875rem; color: var(--text-muted); }
.how-arrow {
  display: flex;
  align-items: center;
  padding: 0 0.5rem;
  font-size: 1.5rem;
  color: var(--accent);
  opacity: 0.5;
  align-self: center;
  flex-shrink: 0;
}

/* ============================================ PLATFORM TABS */
.platform-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
}
.tab-btn.active, .tab-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 16px var(--accent-glow);
}
.tab-content { min-height: 420px; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.tab-text h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.tab-sub { color: var(--text-muted); margin-bottom: 1rem; font-size: 0.95rem; }
.feature-list { margin-bottom: 2rem; }
.feature-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.feature-icon { color: var(--accent); flex-shrink: 0; margin-top: 1px; }
.venue-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  padding: 0.75rem 1rem;
  background: rgba(178, 102, 255, 0.07);
  border-radius: 8px;
  border: 1px solid var(--border-accent);
}

/* Mock UI visuals */
.mock-screen {
  background: #0A1020;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.mock-bar {
  height: 36px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 1rem;
  gap: 6px;
}
.mock-bar::before {
  content: '';
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
  box-shadow: 16px 0 0 rgba(62,224,140,0.6), 32px 0 0 rgba(0,255,100,0.4);
}
.mock-content { padding: 1rem; }
.mock-stage {
  width: 100%;
  aspect-ratio: 16/7;
  background: linear-gradient(135deg, #1a0a2e 0%, #240a38 50%, #0a1a2e 100%);
  border-radius: 8px;
  margin-bottom: 0.75rem;
  position: relative;
  overflow: hidden;
}
.mock-stage::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 40%; height: 50%;
  background: radial-gradient(ellipse, rgba(168,85,247,0.4) 0%, transparent 70%);
}
.mock-title { font-size: 0.875rem; font-weight: 600; margin-bottom: 0.25rem; }
.mock-subs { font-size: 0.75rem; color: var(--accent); margin-bottom: 0.75rem; }
.mock-chat { display: flex; flex-direction: column; gap: 0.25rem; }
.mock-msg {
  font-size: 0.75rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  width: fit-content;
}

.artist-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.artist-avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  margin-bottom: 1rem;
}
.artist-name { font-weight: 700; font-size: 1.1rem; margin-bottom: 0.5rem; }
.artist-stats {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}
.artist-rev {
  font-size: 0.875rem;
  color: var(--money);
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  background: rgba(62, 224, 140, 0.1);
  border-radius: 6px;
  display: inline-block;
}
.venue-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 2;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.venue-stats-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.vs-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.vs-row:last-child { border-bottom: none; }
.vs-row span:first-child { color: var(--text-muted); }
.vs-row span:last-child { font-weight: 600; }

.greenroom-card {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 0 40px rgba(168,85,247,0.08);
}
.gr-header {
  background: rgba(168,85,247,0.1);
  padding: 1rem 1.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-accent);
}
.gr-body { padding: 1.5rem; }
.gr-artist-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.gr-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  flex-shrink: 0;
}
.gr-fans {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.gr-fan {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--border-accent);
  margin-right: -8px;
}
.gr-merch {
  font-size: 0.85rem;
  color: var(--money);
  font-weight: 600;
  padding: 0.5rem 1rem;
  background: rgba(62,224,140,0.08);
  border-radius: 8px;
  border: 1px solid rgba(62,224,140,0.2);
  text-align: center;
}

/* Differentiators */
.differentiators {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.differentiators h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.diff-item {
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.diff-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.diff-item h4 {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
.diff-item p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.5; }

/* ============================================ TOUR */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.tour-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
}
.tour-card--highlight {
  border-color: var(--border-accent);
  background: rgba(168,85,247,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.tour-center-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.3;
}
.tour-num {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.tour-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.tour-card p { font-size: 0.875rem; color: var(--text-muted); }
.tour-sponsor {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.platform-proof {
  background: rgba(178, 102, 255, 0.05);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  padding: 2rem;
}
.platform-proof h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.platform-proof p { font-size: 0.9rem; color: var(--text-muted); }

/* ============================================ GROWTH */
.growth-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.growth-item {
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s, transform 0.3s;
}
.growth-item:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
}
.growth-item h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--accent);
}
.growth-item p { font-size: 0.875rem; color: var(--text-muted); }

/* ============================================ TEAM */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 0.3s;
}
.team-card:hover { border-color: var(--border-accent); }
.team-card--featured {
  grid-column: span 1;
  border-color: var(--border-accent);
  background: rgba(168,85,247,0.04);
}
img.team-avatar, img.tl-avatar, img.advisor-avatar {
  object-fit: cover;
  object-position: center top;
}
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(168,85,247,0.3), rgba(217,70,239,0.3));
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
  margin-bottom: 1rem;
}
.team-avatar--ceo {
  background: linear-gradient(135deg, rgba(168,85,247,0.5), rgba(217,70,239,0.3));
}
.team-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.team-title {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.team-creds { padding: 0; }
.team-creds li {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
}
.team-bio { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

.advisors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.advisor-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.advisor-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.advisor-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.advisor-title {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.advisor-card p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.advisor-quote {
  border-left: 2px solid var(--accent);
  padding-left: 1rem;
  font-size: 0.83rem;
  font-style: italic;
  color: var(--text);
}

/* ============================================ RAISE */
.raise-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.raise-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-content: start;
}
.raise-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}
.raise-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.raise-label { font-size: 0.75rem; color: var(--text-muted); line-height: 1.4; }
.raise-comparables h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.comparable {
  padding: 1.25rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
}
.comp-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--money);
}
.comp-detail { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }
.raise-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  padding: 1rem;
  border-left: 2px solid var(--accent);
  padding-left: 1rem;
}
.raise-cta { text-align: center; }

/* ============================================ JOIN */
.join-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.join-tab-btn {
  padding: 0.65rem 2rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
}
.join-tab-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.join-tab-btn:hover:not(.active) {
  border-color: rgba(255,255,255,0.2);
  color: var(--text);
}
.join-forms { max-width: 680px; }
.join-form { display: none; }
.join-form.active { display: block; }
.form h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.form > p {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
  margin-bottom: 1rem;
}
.form select { cursor: pointer; }
.form input::placeholder,
.form textarea::placeholder { color: var(--text-dim); }
.form input:focus,
.form select:focus,
.form textarea:focus { border-color: var(--accent); }
.form textarea { resize: vertical; min-height: 100px; }
.form-row + .btn-full,
.form select + .btn-full,
.form input + .btn-full,
.form textarea + .btn-full { margin-top: 0.5rem; }

/* ============================================ FOOTER */
#footer {
  background: #030610;
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}
.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.footer-logo-img {
  height: 44px;
  width: auto;
  display: block;
}
.footer-logo > span { color: var(--logo-green); }
.footer-logo .logo-resonate { color: var(--logo-blue); }
.footer-brand > p {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 1rem;
}
.footer-taglines {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-taglines span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.6;
  letter-spacing: 0.05em;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: var(--text-dim);
  padding: 0.3rem 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-legal a { color: var(--text-dim); margin: 0 0.25rem; }
.footer-legal a:hover { color: var(--text); }

/* ============================================ LIGHT SECTIONS */
.section-light { background: var(--bg-light); }
.section-title.dark { color: var(--text-dark); }
.section-sub.dark { color: var(--text-muted-dark); }
.section-label.dark { color: var(--accent); }

/* ============================================ DISCONNECT */
.disconnect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.disconnect-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 2rem;
}
.disconnect-card--highlight {
  border-color: var(--accent);
  background: #fff;
  position: relative;
}
.disconnect-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}
.disconnect-card p { font-size: 0.9rem; color: var(--text-muted-dark); line-height: 1.6; }
.disconnect-stat {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-top: 1.25rem;
}
.disconnect-stat-label { font-size: 0.8rem; color: var(--text-muted-dark); margin-top: 0.4rem; }
.disconnect-solution {
  text-align: center;
  padding: 2rem;
  background: rgba(168, 85, 247, 0.06);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: var(--radius-lg);
  font-size: 1.2rem;
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
}

/* ============================================ WHY MUSIC FIRST */
.gtm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.gtm-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 2rem;
}
.gtm-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.gtm-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}
.gtm-card p { font-size: 0.875rem; color: var(--text-muted-dark); line-height: 1.6; margin-bottom: 0.75rem; }
.gtm-note {
  font-size: 0.8rem;
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}

/* ============================================ TECH LEADERSHIP */
.tech-leadership {
  margin-bottom: 3rem;
  padding: 2.5rem;
  background: rgba(168, 85, 247, 0.04);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
}
.tl-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.tl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.tl-card {
  display: flex;
  gap: 1.25rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.tl-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(168,85,247,0.5), rgba(217,70,239,0.3));
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
  flex-shrink: 0;
}
.tl-info h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.tl-title {
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.tl-info p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }
.tl-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  line-height: 1.6;
}

/* ============================================ EARNINGS COMPARISON */
.earnings-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: start;
}
.earnings-other, .earnings-er {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.earnings-er {
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(168, 85, 247, 0.08);
}
.earnings-other h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}
.earnings-er h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.earnings-sub { font-size: 0.83rem; color: var(--text-muted-dark); margin-bottom: 1.25rem; }
.earnings-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem;
}
.earnings-row:last-child { border-bottom: none; }
.earnings-platform { color: var(--text-muted-dark); }
.earnings-amount { font-weight: 700; font-family: 'Outfit', sans-serif; }
.earnings-amount.low { color: var(--text-muted-dark); font-size: 1rem; }
.earnings-amount.high { color: var(--accent); font-size: 1.25rem; }
.er-row { border-color: rgba(168,85,247,0.1); }
.earnings-breakdown {
  margin-top: 0.5rem;
  padding: 0.75rem;
  background: rgba(168,85,247,0.04);
  border-radius: 8px;
  font-size: 0.8rem;
  color: var(--text-muted-dark);
  line-height: 1.8;
}
.earnings-year2 {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 2px solid var(--accent);
  text-align: center;
}
.earnings-y2-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.earnings-y2-label { font-size: 0.8rem; color: var(--text-muted-dark); line-height: 1.4; }
.earnings-vs {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent);
  align-self: center;
  opacity: 0.5;
}

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

@media (max-width: 1024px) {
  .earnings-layout { grid-template-columns: 1fr; }
  .earnings-vs { display: none; }
}

@media (max-width: 768px) {
  .disconnect-grid { grid-template-columns: 1fr; }
  .gtm-grid { grid-template-columns: 1fr; }
  .tl-grid { grid-template-columns: 1fr; }
  .tl-card { flex-direction: column; }
  .earnings-layout { grid-template-columns: 1fr; }
  .earnings-vs { display: none; }
  .nav-links { display: none; }
  .btn-nav { display: none; }
  .nav-toggle { display: flex; }
  .section { padding: 4rem 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-grid { grid-template-columns: 1fr; }
  .solution-cards { grid-template-columns: 1fr; }
  .how-steps { flex-direction: column; }
  .how-arrow { transform: rotate(90deg); align-self: flex-start; margin-left: 2rem; }
  .tab-layout { grid-template-columns: 1fr; }
  .tour-grid { grid-template-columns: 1fr; }
  .tour-card--highlight { min-height: 200px; }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .advisors-grid { grid-template-columns: 1fr; }
  .raise-layout { grid-template-columns: 1fr; }
  .raise-metrics { grid-template-columns: repeat(2, 1fr); }
  .growth-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .ad-problem { flex-direction: column; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .growth-grid { grid-template-columns: 1fr; }
  .raise-metrics { grid-template-columns: 1fr 1fr; }
  .hero-headline { font-size: 2.5rem; }
  .footer-links { grid-template-columns: 1fr; }
}
