/* ═══════════════════════════════════════════════════════════════
   DanceBuddies — Global Stylesheet
   Vibe: Cocomelon meets Nike Kids. Bright, bold, high-energy.
   Fonts: Baloo 2 (headings, display) + Nunito (body)
═══════════════════════════════════════════════════════════════ */

/* ── TOKENS ──────────────────────────────────────────────────── */
:root {
  /* Brand colors */
  --yellow:    #FFD63A;
  --orange:    #FF7340;
  --pink:      #FF5FA3;
  --purple:    #7C3AED;
  --purple-lt: #A78BFA;
  --blue:      #3AABFF;
  --teal:      #00C9B1;
  --green:     #22C55E;
  --red:       #EF4444;

  /* Backgrounds */
  --bg-warm:   #FFF8F0;
  --bg-cool:   #F0F4FF;
  --bg-dark:   #0F0A1A;
  --bg-mid:    #1A1035;

  /* Text */
  --text:      #1A1A2E;
  --text-mid:  #44475a;
  --text-muted:#6b7280;

  /* Gradients */
  --grad-hero:  linear-gradient(155deg, #7C3AED 0%, #EC4899 50%, #F59E0B 100%);
  --grad-warm:  linear-gradient(135deg, #FFF3E0 0%, #FFF0F7 100%);
  --grad-cool:  linear-gradient(180deg, #EEF2FF 0%, #F0FFF9 100%);
  --grad-dark:  linear-gradient(160deg, #0F0A1A 0%, #1E1248 100%);
  --grad-brand: linear-gradient(90deg, #7C3AED, #EC4899, #F59E0B);

  /* Spacing */
  --sec-py: 88px;
  --sec-py-sm: 60px;
  --radius-card: 24px;
  --radius-btn: 50px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.18);
  --shadow-xl: 0 32px 80px rgba(0,0,0,0.25);
}

/* ── RESET & BASE ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', 'Segoe UI', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-warm);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { text-decoration: none; color: inherit; }

/* ── LAYOUT ──────────────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TYPOGRAPHY SYSTEM ───────────────────────────────────────── */
.section-eyebrow {
  font-family: 'Nunito', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--purple);
  text-align: center;
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Baloo 2', 'Nunito', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text);
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 52px;
  line-height: 1.7;
}

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

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn:hover  { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: white;
  box-shadow: 0 6px 24px rgba(124,58,237,0.4);
}
.btn-primary:hover { box-shadow: 0 10px 32px rgba(124,58,237,0.55); }

.btn-ghost {
  background: rgba(255,255,255,0.18);
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.28); }

.btn-outline {
  background: transparent;
  color: var(--purple);
  border: 2.5px solid var(--purple);
  box-shadow: none;
}
.btn-outline:hover {
  background: var(--purple);
  color: white;
  box-shadow: 0 6px 20px rgba(124,58,237,0.3);
}

.btn-yt {
  background: linear-gradient(135deg, #FF0000, #CC0000);
  color: white;
  box-shadow: 0 6px 24px rgba(255,0,0,0.3);
}
.btn-yt:hover { box-shadow: 0 10px 32px rgba(255,0,0,0.45); }

.btn-xl { font-size: 1.1rem; padding: 18px 40px; }
.btn-full { width: 100%; justify-content: center; }
.btn-emoji { font-size: 1.2em; }

/* ── NAV ─────────────────────────────────────────────────────── */
.topnav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 28px;
  background: rgba(255,248,240,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(124,58,237,0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--text);
}

.nav-logo-icon { font-size: 1.5rem; }

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-mid);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--purple); }

.nav-cta {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: white;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(124,58,237,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124,58,237,0.45);
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  background: var(--grad-hero);
  padding: 80px 24px 100px;
  position: relative;
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: center;
}

/* Background floating shapes */
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  background: white;
}

.shape-1 {
  width: 320px; height: 320px;
  top: -80px; left: -80px;
  animation: floatA 8s ease-in-out infinite;
}

.shape-2 {
  width: 200px; height: 200px;
  bottom: -60px; right: 8%;
  animation: floatB 10s ease-in-out infinite;
}

.shape-3 {
  width: 120px; height: 120px;
  top: 30%; left: 42%;
  animation: floatA 12s ease-in-out infinite 2s;
}

.shape-4 {
  width: 80px; height: 80px;
  top: 15%; right: 18%;
  animation: floatB 7s ease-in-out infinite 1s;
}

@keyframes floatA {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-24px) scale(1.04); }
}

@keyframes floatB {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(20px) rotate(8deg); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content { color: white; }

.launch-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.95);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.launch-dot {
  width: 8px; height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.85); }
}

.hero-title {
  font-family: 'Baloo 2', sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.18);
}

.hero-title-highlight {
  display: block;
  color: var(--yellow);
  text-shadow: 0 4px 20px rgba(255,214,58,0.4);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  opacity: 0.92;
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.65;
}

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat { text-align: center; }

.stat-num {
  display: block;
  font-family: 'Baloo 2', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  opacity: 0.75;
  text-transform: uppercase;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.3);
}

/* Hero card stack */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-stack {
  position: relative;
  width: 220px;
  height: 280px;
}

.hero-buddy-card {
  position: absolute;
  background: white;
  border-radius: 20px;
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--shadow-xl);
  transition: transform 0.3s ease;
}

.hbc-back  {
  width: 160px;
  bottom: 0; left: 0;
  transform: rotate(-12deg) translateY(10px);
  opacity: 0.85;
  z-index: 0;
}

.hbc-mid   {
  width: 175px;
  bottom: 20px; right: 0;
  transform: rotate(8deg);
  opacity: 0.92;
  z-index: 1;
}

.hbc-front {
  width: 195px;
  top: 0; left: 50%; transform: translateX(-50%);
  z-index: 2;
  animation: cardFloat 4s ease-in-out infinite;
}

@keyframes cardFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-12px); }
}

.hbc-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  margin: 0 auto 10px;
}

.hbc-bea   { background: linear-gradient(135deg, #FFD63A, #FF9A3A); }
.hbc-marco { background: linear-gradient(135deg, #1A2E5A, #3AABFF); }
.hbc-luna  { background: linear-gradient(135deg, #C9B7F5, #7C3AED); }

.hbc-name {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--text);
}

.hbc-badge {
  margin-top: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--purple);
  background: rgba(124,58,237,0.1);
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
}

/* ── TICKER ──────────────────────────────────────────────────── */
.ticker-wrap {
  background: var(--yellow);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 3px solid rgba(0,0,0,0.06);
  border-bottom: 3px solid rgba(0,0,0,0.06);
}

.ticker-inner {
  display: inline-block;
  animation: ticker 30s linear infinite;
  font-size: 0.92rem;
  font-weight: 800;
  color: #1A1A2E;
  letter-spacing: 0.3px;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── COACH CODY ──────────────────────────────────────────────── */
.coach-section {
  background: var(--grad-cool);
  padding: var(--sec-py) 24px;
}

.coach-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.coach-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.coach-avatar-ring {
  width: 240px; height: 240px;
  border-radius: 50%;
  background: var(--grad-brand);
  padding: 5px;
  box-shadow: 0 12px 48px rgba(124,58,237,0.3);
  animation: ringPulse 6s ease-in-out infinite;
}

@keyframes ringPulse {
  0%, 100% { box-shadow: 0 12px 48px rgba(124,58,237,0.3); }
  50%       { box-shadow: 0 20px 64px rgba(124,58,237,0.5); }
}

.coach-avatar-circle {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #3AABFF, #7C3AED);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 6px solid white;
}

.coach-avatar-circle img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.coach-fallback-emoji { font-size: 96px; }

.coach-speech-bubble {
  position: relative;
  background: white;
  border-radius: 16px;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
  box-shadow: var(--shadow-md);
  text-align: center;
  max-width: 220px;
  font-style: italic;
}

.coach-speech-bubble::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border: 10px solid transparent;
  border-bottom-color: white;
  border-top: 0;
  margin-top: -10px;
}

.coach-content .section-title { text-align: left; }
.coach-content .section-eyebrow { text-align: left; }

.coach-bio {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 22px;
  max-width: 480px;
}

.coach-traits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.trait-chip {
  background: white;
  border: 2px solid rgba(124,58,237,0.15);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.coach-quote {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--purple);
  font-style: italic;
  border-left: 4px solid var(--purple);
  padding-left: 16px;
  margin-top: 4px;
}

/* ── BUDDIES ─────────────────────────────────────────────────── */
.buddies-section {
  background: white;
  padding: var(--sec-py) 24px;
}

.buddies-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.buddy-card {
  position: relative;
  background: white;
  border-radius: var(--radius-card);
  padding: 28px 18px;
  text-align: center;
  border: 3px solid transparent;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}

.buddy-card:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: var(--card-color);
  box-shadow: 0 20px 56px var(--card-glow);
}

.buddy-glow {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-card);
  background: radial-gradient(ellipse at top, var(--card-glow, transparent) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.buddy-card:hover .buddy-glow { opacity: 1; }

.buddy-avatar {
  width: 110px; height: 110px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 4px solid white;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transition: transform 0.3s ease;
}

.buddy-card:hover .buddy-avatar { transform: scale(1.08); }

.buddy-avatar img { width: 100%; height: 100%; object-fit: cover; }

.buddy-emoji { font-size: 56px; }

/* Avatar bg per character (shown when no image) */
#avatar-bea   { background: linear-gradient(135deg, #FFD63A, #FF9A3A); }
#avatar-marco { background: linear-gradient(135deg, #1A2E5A, #3AABFF); }
#avatar-luna  { background: linear-gradient(135deg, #C9B7F5, #7C3AED); }
#avatar-nova  { background: linear-gradient(135deg, #FF3A3A, #FF7340); }
#avatar-ziggy { background: linear-gradient(135deg, #4ADE80, #7C3AED); }

.buddy-name {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 6px;
}

.buddy-style-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.bst-bea   { background: #FFF3CC; color: #A07800; }
.bst-marco { background: #DBEAFE; color: #1E40AF; }
.bst-luna  { background: #EDE9FE; color: #5B21B6; }
.bst-nova  { background: #FFE4E6; color: #BE123C; }
.bst-ziggy { background: #DCFCE7; color: #166534; }

.buddy-vibe {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

.buddy-move {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.move-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.move-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--purple);
  font-style: italic;
}

/* Hover overlay */
.buddy-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 4, 28, 0.82);
  border-radius: calc(var(--radius-card) - 3px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.buddy-card:hover .buddy-hover-overlay { opacity: 1; }

.buddy-hover-overlay p {
  font-size: 0.88rem;
  color: white;
  line-height: 1.55;
  font-weight: 600;
}

.buddies-note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ── AGE GROUPS ──────────────────────────────────────────────── */
.ages-section {
  background: var(--grad-warm);
  padding: var(--sec-py) 24px;
}

.age-selector {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.age-btn {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2.5px solid rgba(124,58,237,0.25);
  background: white;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.2s ease;
}

.age-btn:hover {
  border-color: var(--purple);
  color: var(--purple);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.age-btn.active {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: white;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(124,58,237,0.4);
}

.age-panels { max-width: 700px; margin: 0 auto; }

.age-panel { display: none; }
.age-panel.active { display: block; }

.age-panel {
  background: white;
  border-radius: var(--radius-card);
  padding: 40px 48px;
  box-shadow: var(--shadow-lg);
  animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.age-panel-emoji {
  font-size: 3.5rem;
  margin-bottom: 14px;
  display: block;
  text-align: center;
}

.age-panel h3 {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 6px;
  color: var(--text);
}

.age-panel-tagline {
  text-align: center;
  font-style: italic;
  color: var(--purple);
  font-weight: 700;
  margin-bottom: 24px;
  font-size: 0.98rem;
}

.age-features {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

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

.age-features li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: white;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 900;
  flex-shrink: 0;
}

.age-buddies-tag {
  text-align: center;
  font-size: 0.92rem;
  color: var(--text-muted);
  padding: 12px 20px;
  background: rgba(124,58,237,0.06);
  border-radius: 12px;
}

.age-buddies-tag strong { color: var(--text); }

/* ── HOW IT WORKS ────────────────────────────────────────────── */
.how-section {
  background: white;
  padding: var(--sec-py) 24px;
}

.steps-flow {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}

.step-card {
  flex: 1;
  min-width: 140px;
  max-width: 170px;
  background: var(--bg-warm);
  border-radius: 20px;
  padding: 26px 18px;
  text-align: center;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 2px solid transparent;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(124,58,237,0.15);
}

.step-card-celebrate {
  background: linear-gradient(135deg, #EDE9FE, #FCE7F3);
}

.step-num-badge {
  position: absolute;
  top: -14px; right: -8px;
  width: 30px; height: 30px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(124,58,237,0.4);
}

.step-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
  display: block;
}

.step-card h3 {
  font-family: 'Baloo 2', sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
  margin-bottom: 6px;
  color: var(--text);
}

.step-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.step-arrow {
  font-size: 1.4rem;
  color: var(--purple-lt);
  align-self: center;
  padding: 0 4px;
  margin-top: -14px;
  flex-shrink: 0;
}

/* ── DISCIPLINE SECTION ──────────────────────────────────────── */
.discipline-section {
  background: var(--grad-dark);
  padding: var(--sec-py) 24px;
  color: white;
}

.discipline-section .section-eyebrow { color: var(--yellow); }
.discipline-section .section-title   { color: white; text-align: left; }

.discipline-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.discipline-body {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 36px;
}

.discipline-features { display: grid; gap: 20px; }

.df-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.df-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.df-text strong {
  display: block;
  font-weight: 800;
  color: white;
  margin-bottom: 4px;
}

.df-text span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* Progress card */
.discipline-visual { display: flex; align-items: center; justify-content: center; }

.progress-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 28px;
  backdrop-filter: blur(16px);
  width: 100%;
  max-width: 320px;
}

.pc-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.pc-buddy-icon { font-size: 2.2rem; }

.pc-name {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: white;
}

.pc-level {
  font-size: 0.78rem;
  color: var(--yellow);
  font-weight: 700;
}

.pc-streak {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,214,58,0.15);
  border: 1px solid rgba(255,214,58,0.3);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 20px;
}

.pc-streak-num {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--yellow);
}

.pc-streak-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
}

.pc-progress-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
  font-weight: 600;
}

.pc-progress-bar {
  background: rgba(255,255,255,0.12);
  border-radius: 50px;
  height: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.pc-progress-fill {
  height: 100%;
  background: var(--grad-brand);
  border-radius: 50px;
  transition: width 0.6s ease;
}

.pc-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge-chip {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(255,255,255,0.12);
  color: white;
  border: 1px solid rgba(255,255,255,0.18);
}

.badge-locked {
  opacity: 0.45;
}

/* ── YOUTUBE SECTION ─────────────────────────────────────────── */
.youtube-section {
  background: #FFF8F0;
  padding: var(--sec-py) 24px;
  border-top: 3px solid rgba(255,0,0,0.08);
}

.youtube-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}

.yt-icon-wrap {
  flex-shrink: 0;
  animation: ytBounce 3s ease-in-out infinite;
}

@keyframes ytBounce {
  0%, 100% { transform: scale(1) rotate(-3deg); }
  50%       { transform: scale(1.08) rotate(3deg); }
}

.yt-content { flex: 1; }
.yt-content .section-title { text-align: left; font-size: clamp(1.5rem, 4vw, 2.2rem); }
.yt-content .section-eyebrow { text-align: left; color: #CC0000; }

.yt-body {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 500px;
}

/* ── PRICING ─────────────────────────────────────────────────── */
.pricing-section {
  background: var(--bg-cool);
  padding: var(--sec-py) 24px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
  align-items: start;
}

.pricing-card {
  background: white;
  border-radius: var(--radius-card);
  padding: 36px 28px;
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pricing-card-featured {
  border-color: var(--purple);
  box-shadow: 0 12px 48px rgba(124,58,237,0.2);
  transform: scale(1.04);
}

.pricing-card-featured:hover {
  transform: scale(1.04) translateY(-6px);
}

.pricing-badge-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(124,58,237,0.4);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pricing-tier {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}

.price-amount {
  font-family: 'Baloo 2', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}

.price-period {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
}

.pricing-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.55;
}

.pricing-features {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

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

.pf-check {
  color: var(--green);
  font-weight: 900;
  font-size: 1rem;
  width: 18px;
  flex-shrink: 0;
}

.pf-x {
  color: var(--text-muted);
  opacity: 0.4;
  font-size: 1rem;
  width: 18px;
  flex-shrink: 0;
}

.pf-locked { color: var(--text-muted); }

/* ── WAITLIST ─────────────────────────────────────────────────── */
.waitlist-section {
  background: var(--grad-hero);
  padding: 96px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.waitlist-bg-shapes { position: absolute; inset: 0; pointer-events: none; }

.wshape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
}

.wshape-1 {
  width: 400px; height: 400px;
  top: -100px; left: -100px;
}

.wshape-2 {
  width: 300px; height: 300px;
  bottom: -80px; right: -60px;
}

.waitlist-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.waitlist-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
  display: block;
  animation: rocketLaunch 3s ease-in-out infinite;
}

@keyframes rocketLaunch {
  0%, 100% { transform: translateY(0) rotate(-10deg); }
  50%       { transform: translateY(-14px) rotate(10deg); }
}

.waitlist-title {
  font-family: 'Baloo 2', sans-serif;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 900;
  color: white;
  margin-bottom: 16px;
  line-height: 1.1;
}

.waitlist-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 40px;
  line-height: 1.65;
}

.waitlist-form {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto 16px;
  flex-wrap: wrap;
}

.wf-input-wrap { flex: 1; min-width: 240px; }

.wf-input {
  width: 100%;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 22px;
  border-radius: 50px;
  border: none;
  outline: none;
  background: rgba(255,255,255,0.95);
  color: var(--text);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: box-shadow 0.2s;
}

.wf-input::placeholder { color: #9CA3AF; }

.wf-input:focus {
  box-shadow: 0 4px 20px rgba(0,0,0,0.15), 0 0 0 3px rgba(255,255,255,0.5);
}

.btn-wf {
  font-size: 1rem;
  padding: 16px 32px;
  background: white;
  color: var(--purple);
  border: none;
  border-radius: 50px;
  font-weight: 800;
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-wf:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.25);
}

.btn-wf:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.wf-message {
  font-size: 0.95rem;
  font-weight: 700;
  min-height: 24px;
  margin-top: 8px;
  transition: opacity 0.2s;
}

.wf-success { color: #86EFAC; }
.wf-error   { color: #FCA5A5; }

.waitlist-fine {
  margin-top: 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-dark);
  padding: 48px 24px 32px;
  color: rgba(255,255,255,0.55);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.footer-logo {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: white;
  display: block;
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 0.85rem;
}

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

.footer-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer-links a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  text-align: center;
  font-size: 0.82rem;
}

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

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content { order: 1; }
  .hero-visual  { order: 0; display: none; }

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

@media (max-width: 768px) {
  :root {
    --sec-py: 60px;
  }

  .topnav { padding: 12px 16px; }
  .nav-links { display: none; }

  .hero { padding: 60px 16px 72px; min-height: auto; }

  .coach-layout { grid-template-columns: 1fr; text-align: center; }
  .coach-content .section-title { text-align: center; }
  .coach-content .section-eyebrow { text-align: center; }
  .coach-traits { justify-content: center; }
  .coach-quote { text-align: left; }

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

  .steps-flow { gap: 8px; }
  .step-arrow { display: none; }
  .step-card  { min-width: 150px; flex: 0 0 calc(50% - 8px); }

  .discipline-inner { grid-template-columns: 1fr; gap: 48px; }
  .discipline-section .section-title { text-align: center; }
  .discipline-section .section-eyebrow { text-align: center; }

  .youtube-inner { flex-direction: column; text-align: center; }
  .yt-content .section-title { text-align: center; }
  .yt-content .section-eyebrow { text-align: center; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .pricing-card-featured { transform: none; }
  .pricing-card-featured:hover { transform: translateY(-6px); }

  .waitlist-form { flex-direction: column; }
  .wf-input-wrap { min-width: unset; }
  .btn-wf { width: 100%; justify-content: center; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .buddies-grid { grid-template-columns: 1fr; }

  .hero-title { font-size: 2.4rem; }

  .age-panel { padding: 28px 24px; }

  .step-card { flex: 0 0 100%; max-width: 100%; }
}
