/* =============================================
   PLAYMAKER STUDIO — Custom Landing Page Theme
   ============================================= */

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

:root {
  --bg-dark:      #0d2318;
  --bg-mid:       #132a1e;
  --bg-cream:     #f7f5f0;
  --accent-lime:  #c6ff3a;
  --accent-green: #4a7c59;
  --text-white:   #f0efe9;
  --text-muted:   #a0b4a8;
  --text-dark:    #1a2e22;
  --font-head:    'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --section-pad:  100px 24px;
  --max-w:        1100px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* --- Typography Scale --- */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-lime);
  margin-bottom: 20px;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 32px;
  background: rgba(13,35,24,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(198,255,58,0.1);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 300;
  letter-spacing: 0.05em;
}

/* --- Manifesto Section --- */
.manifesto {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 24px 100px;
  overflow: hidden;
  background: var(--bg-dark);
}

.manifesto-field-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.field-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(198,255,58,0.08);
}

.field-circle-1 {
  width: 600px; height: 600px;
  right: -100px; top: 50%; transform: translateY(-50%);
}

.field-circle-2 {
  width: 350px; height: 350px;
  right: 80px; top: 50%; transform: translateY(-50%);
  border-color: rgba(198,255,58,0.15);
}

.field-lines {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 45%;
  background:
    linear-gradient(to right, var(--bg-dark) 0%, transparent 40%),
    repeating-linear-gradient(
      90deg,
      transparent, transparent 80px,
      rgba(198,255,58,0.04) 80px, rgba(198,255,58,0.04) 81px
    );
}

.manifesto-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.manifesto-label {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-lime);
  margin-bottom: 28px;
  font-weight: 500;
}

.manifesto-headline {
  font-family: var(--font-head);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text-white);
  margin-bottom: 36px;
}

.headline-accent {
  color: var(--accent-lime);
}

.manifesto-sub {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 64px;
  font-weight: 300;
}

.manifesto-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-number {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(198,255,58,0.2);
}

/* --- Outcomes Section --- */
.outcomes {
  background: var(--bg-mid);
  padding: var(--section-pad);
}

.outcomes-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.outcomes-header {
  margin-bottom: 64px;
}

.outcomes-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text-white);
  max-width: 500px;
  line-height: 1.1;
}

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

.outcome-card {
  background: #0d2318;
  padding: 48px 40px;
  position: relative;
  transition: background 0.2s ease;
}

.outcome-card:hover {
  background: #112a1e;
}

.outcome-icon {
  margin-bottom: 28px;
}

.outcome-name {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.outcome-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 28px;
  font-weight: 300;
}

.outcome-figure {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-lime);
  letter-spacing: -0.02em;
}

/* --- Proof Section --- */
.proof {
  background: var(--bg-dark);
  padding: var(--section-pad);
}

.proof-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.proof-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text-white);
  margin-bottom: 28px;
}

.proof-body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 300;
}

.proof-markers {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.marker {
  display: flex;
  align-items: center;
  gap: 20px;
}

.marker-bar {
  width: 60px;
  height: 6px;
  border-radius: 3px;
  flex-shrink: 0;
}

.marker-bar-green { background: rgba(74,124,89,0.4); }
.marker-bar-mid   { background: rgba(74,124,89,0.25); }
.marker-bar-lime  { background: var(--accent-lime); }

.marker-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.marker-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-white);
}

.marker-val {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* --- Process Section --- */
.process {
  background: var(--bg-cream);
  padding: var(--section-pad);
}

.process-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.process-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text-dark);
  margin-bottom: 64px;
  max-width: 500px;
}

.process .section-eyebrow {
  color: var(--accent-green);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 80px;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-num {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-green);
  letter-spacing: 0.05em;
  margin-top: 4px;
  flex-shrink: 0;
}

.step-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.step-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #4a6b52;
  font-weight: 300;
}

/* --- Closing Section --- */
.closing {
  background: var(--bg-dark);
  padding: 120px 24px;
  text-align: center;
}

.closing-inner {
  max-width: 800px;
  margin: 0 auto;
}

.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text-white);
  margin-bottom: 32px;
}

.closing-body {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  font-weight: 300;
}

/* --- Footer --- */
.footer {
  background: #081a11;
  padding: 40px 24px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 4px;
}

.footer-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 300;
}

.footer-meta {
  font-size: 0.75rem;
  color: rgba(198,255,58,0.4);
  letter-spacing: 0.05em;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .manifesto {
    padding: 120px 20px 80px;
  }

  .manifesto-headline {
    font-size: clamp(2.5rem, 11vw, 4rem);
  }

  .manifesto-stats {
    gap: 24px;
  }

  .stat-divider {
    display: none;
  }

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

  .outcome-card {
    padding: 36px 28px;
  }

  .proof-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .closing {
    padding: 80px 20px;
  }

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

/* =============================================
   COACHING PAGE
   ============================================= */

/* Hero */
.coaching-hero {
  padding: 140px 24px 80px;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.coaching-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--bg-dark) 0%, transparent 30%),
    repeating-linear-gradient(
      90deg,
      transparent, transparent 80px,
      rgba(198,255,58,0.03) 80px, rgba(198,255,58,0.03) 81px
    );
  pointer-events: none;
}

.coaching-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.coaching-hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-lime);
  margin-bottom: 20px;
}

.coaching-hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text-white);
  margin-bottom: 28px;
}

.coaching-hero-sub {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 580px;
  font-weight: 300;
  margin-bottom: 48px;
}

.coaching-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(198,255,58,0.08);
  border: 1px solid rgba(198,255,58,0.2);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.8rem;
  color: var(--accent-lime);
  font-weight: 500;
}

.coaching-hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-lime);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Pricing */
.coaching-pricing {
  background: var(--bg-mid);
  padding: var(--section-pad);
}

.coaching-pricing-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.coaching-section-header {
  margin-bottom: 56px;
}

.coaching-section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text-white);
  margin-bottom: 16px;
  line-height: 1.1;
}

.coaching-section-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 480px;
}

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

.pricing-card {
  background: #0d2318;
  border: 1px solid rgba(198,255,58,0.08);
  border-radius: 16px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.pricing-card:hover {
  border-color: rgba(198,255,58,0.25);
  transform: translateY(-4px);
}

.pricing-card-featured {
  border-color: rgba(198,255,58,0.3);
  background: #0e281a;
}

.pricing-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-lime);
  color: var(--text-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
}

.pricing-tier {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-lime);
  margin-bottom: 12px;
}

.pricing-name {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.pricing-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 28px;
}

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

.pricing-dollar {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
}

.pricing-value {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.04em;
  line-height: 1;
}

.pricing-per {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
}

.pricing-per-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-top: 4px;
  margin-bottom: 32px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
  flex: 1;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.5;
}

.pricing-feature-check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--accent-lime);
}

.pricing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  background: rgba(198,255,58,0.1);
  border: 1px solid rgba(198,255,58,0.3);
  border-radius: 8px;
  color: var(--accent-lime);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  letter-spacing: -0.01em;
}

.pricing-cta:hover {
  background: rgba(198,255,58,0.18);
  border-color: rgba(198,255,58,0.5);
}

.pricing-cta-featured {
  background: var(--accent-lime);
  color: var(--text-dark);
  border-color: var(--accent-lime);
}

.pricing-cta-featured:hover {
  background: #d4ff55;
  border-color: #d4ff55;
}

/* Testimonials */
.coaching-testimonials {
  background: var(--bg-dark);
  padding: var(--section-pad);
}

.coaching-testimonials-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

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

.testimonial-card {
  background: var(--bg-mid);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-white);
  font-weight: 300;
  font-style: italic;
}

.testimonial-quote::before {
  content: '"';
  font-size: 3rem;
  font-family: var(--font-head);
  color: var(--accent-lime);
  display: block;
  line-height: 0.8;
  margin-bottom: 12px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(198,255,58,0.1);
  padding-top: 20px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-white);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-white);
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 300;
}

.testimonial-placeholder {
  background: var(--bg-mid);
  border: 1px dashed rgba(198,255,58,0.2);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.testimonial-placeholder-icon {
  color: rgba(198,255,58,0.3);
}

.testimonial-placeholder-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* Contact Form */
.coaching-contact {
  background: var(--bg-cream);
  padding: var(--section-pad);
}

.coaching-contact-inner {
  max-width: 640px;
  margin: 0 auto;
}

.coaching-contact .section-eyebrow {
  color: var(--accent-green);
}

.coaching-contact .coaching-section-title {
  color: var(--text-dark);
}

.coaching-contact .coaching-section-sub {
  color: #4a6b52;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.03em;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 16px;
  background: white;
  border: 1px solid #d0d8d0;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: border-color 0.2s ease;
  outline: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--accent-green);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231a2e22' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--bg-dark);
  color: var(--text-white);
  border: none;
  border-radius: 8px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
  letter-spacing: -0.01em;
  width: 100%;
  margin-top: 8px;
}

.form-submit:hover {
  background: #12291d;
}

.form-success {
  display: none;
  padding: 24px;
  background: white;
  border: 1px solid rgba(74,124,89,0.3);
  border-radius: 12px;
  text-align: center;
}

.form-success-show {
  display: block;
}

.form-success-icon {
  margin-bottom: 12px;
  color: var(--accent-green);
}

.form-success-title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-success-body {
  font-size: 0.9rem;
  color: #4a6b52;
  font-weight: 300;
}

/* Responsive */
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

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

@media (max-width: 768px) {
  .coaching-hero {
    padding: 120px 20px 60px;
  }

  .coaching-hero-headline {
    font-size: clamp(2.25rem, 9vw, 3.5rem);
  }

  .pricing-card {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .pricing-grid {
    max-width: 100%;
  }

  .testimonial-card {
    padding: 28px 24px;
  }
}

/* =============================================
   DASHBOARD — Parent-facing dashboard
   ============================================= */

/* Shared Form Styles */
.form-error {
  background: rgba(200, 60, 60, 0.08);
  border: 1px solid rgba(200, 60, 60, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  color: #e06060;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Auth Pages */
.auth-page {
  min-height: 100vh;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.auth-card {
  background: var(--bg-mid);
  border: 1px solid rgba(198,255,58,0.1);
  border-radius: 20px;
  padding: 48px 40px;
  width: 100%;
  max-width: 420px;
}

.auth-logo {
  display: block;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent-lime);
  text-decoration: none;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.auth-title {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.auth-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 32px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.auth-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 24px;
  background: var(--accent-lime);
  color: var(--text-dark);
  border: none;
  border-radius: 8px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
  letter-spacing: -0.01em;
  margin-top: 4px;
}

.auth-submit:hover {
  background: #d4ff55;
}

.auth-switch {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 24px;
}

.auth-switch a {
  color: var(--accent-lime);
  font-weight: 500;
  text-decoration: none;
}

/* Dashboard Layout */
.dash-page {
  display: flex;
  min-height: 100vh;
  background: #0f1a11;
}

/* Sidebar */
.dash-sidebar {
  width: 240px;
  flex-shrink: 0;
  background: #0a1410;
  border-right: 1px solid rgba(198,255,58,0.08);
  display: flex;
  flex-direction: column;
  padding: 28px 20px;
  position: sticky;
  top: 0;
  height: 100vh;
}

.dash-logo {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent-lime);
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}

.dash-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.dash-nav-item:hover {
  background: rgba(198,255,58,0.06);
  color: var(--text-white);
}

.dash-nav-item.active {
  background: rgba(198,255,58,0.1);
  color: var(--accent-lime);
}

.dash-sidebar-footer {
  padding-top: 20px;
  border-top: 1px solid rgba(198,255,58,0.08);
}

.dash-logout {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.8rem;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 6px;
  width: 100%;
  transition: color 0.15s ease;
}

.dash-logout:hover {
  color: #e06060;
}

/* Main Content */
.dash-main {
  flex: 1;
  padding: 40px 48px;
  overflow: auto;
}

.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.dash-welcome {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-bottom: 4px;
}

.dash-name {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.02em;
}

.dash-back {
  margin-bottom: 8px;
}

.dash-back-link {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.dash-back-link:hover {
  color: var(--accent-lime);
}

/* Primary Button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--accent-lime);
  color: var(--text-dark);
  border: none;
  border-radius: 8px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.btn-primary:hover {
  background: #d4ff55;
}

/* Empty State */
.dash-empty {
  text-align: center;
  padding: 80px 24px;
  max-width: 400px;
  margin: 0 auto;
}

.dash-empty-icon {
  margin-bottom: 24px;
}

.dash-empty h2 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
}

.dash-empty p {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 32px;
}

/* Children Grid */
.dash-children-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.child-card {
  background: var(--bg-mid);
  border: 1px solid rgba(198,255,58,0.08);
  border-radius: 16px;
  padding: 28px 24px;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.child-card:hover {
  border-color: rgba(198,255,58,0.25);
  transform: translateY(-2px);
}

.child-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.child-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  flex-shrink: 0;
}

.child-avatar-lg {
  width: 72px;
  height: 72px;
  font-size: 1.35rem;
}

.child-card-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}

.child-card-info {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* Skill Bars */
.skill-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.skill-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.skill-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
  text-transform: capitalize;
  flex-shrink: 0;
}

.skill-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.skill-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(198,255,58,0.12);
  border: 1px solid rgba(198,255,58,0.2);
  transition: background 0.2s ease;
}

.skill-dot.filled {
  background: var(--accent-lime);
  border-color: var(--accent-lime);
}

.child-card-footer {
  padding-top: 16px;
  border-top: 1px solid rgba(198,255,58,0.08);
}

.child-card-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-lime);
  text-decoration: none;
}

/* Child Detail Hero */
.child-hero {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
  padding: 32px 0;
}

.child-hero-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.child-hero-name {
  font-family: var(--font-head);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.03em;
}

.child-hero-meta {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* Dashboard Sections */
.dash-section {
  margin-bottom: 40px;
}

.dash-section-title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

/* Skill Cards */
.skill-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.skill-card {
  background: var(--bg-mid);
  border: 1px solid rgba(198,255,58,0.08);
  border-radius: 12px;
  padding: 24px 20px;
}

.skill-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.skill-card-label {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
}

.skill-card-val {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-lime);
}

.skill-card-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.5;
}

/* Session List */
.session-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.session-row {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-mid);
  border: 1px solid rgba(198,255,58,0.06);
  border-radius: 10px;
  padding: 16px 20px;
}

.session-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 56px;
}

.session-day {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
}

.session-year {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.session-info {
  flex: 1;
}

.session-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-white);
}

.session-notes {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-top: 4px;
}

.session-status {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  flex-shrink: 0;
}

.session-status.attended {
  background: rgba(74,124,89,0.2);
  color: #8fc4a0;
}

.session-status.missed {
  background: rgba(180,80,60,0.15);
  color: #d08060;
}

/* Coach Notes */
.coach-notes-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.coach-note {
  background: var(--bg-mid);
  border: 1px solid rgba(198,255,58,0.06);
  border-radius: 12px;
  padding: 20px 24px;
}

.coach-note-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.coach-note-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-lime);
}

.coach-note-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 300;
}

.coach-note-body {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-white);
  font-weight: 300;
}

/* Empty State */
.empty-state {
  background: var(--bg-mid);
  border: 1px dashed rgba(198,255,58,0.15);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
}

.empty-state p {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
}

/* Next Session Banner */
.next-session-banner {
  background: rgba(74,124,89,0.08);
  border: 1px solid rgba(74,124,89,0.2);
  border-radius: 12px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.next-session-icon {
  flex-shrink: 0;
}

.next-session-label {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-lime);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.next-session-info {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 24px;
  backdrop-filter: blur(4px);
}

.modal {
  background: var(--bg-mid);
  border: 1px solid rgba(198,255,58,0.15);
  border-radius: 20px;
  padding: 36px 32px;
  width: 100%;
  max-width: 480px;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.modal-header h2 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: -0.02em;
}

.modal-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}

#add-child-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Responsive — Dashboard */
@media (max-width: 900px) {
  .skill-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .dash-page {
    flex-direction: column;
  }

  .dash-sidebar {
    width: 100%;
    height: auto;
    position: static;
    flex-direction: row;
    align-items: center;
    padding: 16px 20px;
    border-right: none;
    border-bottom: 1px solid rgba(198,255,58,0.08);
  }

  .dash-logo {
    margin-bottom: 0;
    margin-right: auto;
  }

  .dash-nav,
  .dash-sidebar-footer {
    display: none;
  }

  .dash-main {
    padding: 24px 20px;
  }

  .dash-children-grid {
    grid-template-columns: 1fr;
  }

  .child-hero {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .session-row {
    flex-wrap: wrap;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .auth-card {
    padding: 32px 24px;
  }
}
