    /* ─── DESIGN TOKENS ─────────────────────────────────────── */
    :root {
      /* Brand */
      --pink:    #ff2d6e;
      --purple:  #7c3aed;
      --blue:    #2563eb;
      --grad:    linear-gradient(135deg, #1A3A8A 0%, #C71876 100%);
      --grad-subtle: linear-gradient(135deg, rgba(37,99,235,0.12) 0%, rgba(124,58,237,0.12) 50%, rgba(255,45,110,0.12) 100%);

      /* Parents-persona card gradient */
      --card-hero-grad: linear-gradient(135deg, #1a0a2e 0%, #2e0a1e 100%);

      /* Backgrounds */
      --bg:         #0b0d18;
      --bg-card:    #13152a;
      --bg-raised:  #1a1d35;
      --bg-border:  rgba(255,255,255,0.07);

      /* Text */
      --text:       #d4d6e8;
      --text-muted: #7e80a0;
      --white:      #ffffff;

      /* Status */
      --green: #22c55e;
      --amber: #f59e0b;

      /* Typography */
      --font-head: 'Sora', sans-serif;
      --font-body: 'Inter', sans-serif;

      /* Shape */
      --radius-sm: 10px;
      --radius-md: 16px;
      --radius-lg: 24px;

      /* Shadows */
      --shadow-card: 0 4px 30px rgba(0,0,0,0.35);
      --shadow-glow: 0 0 40px rgba(255,45,110,0.15);
      --transition:  all 0.3s cubic-bezier(0.4,0,0.2,1);
    }

    /* ─── RESET & BASE ──────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { font-size: 16px; scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      background: var(--bg);
      color: var(--text);
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
    }
    h1, h2, h3, h4, h5 {
      font-family: var(--font-head);
      color: var(--white);
      line-height: 1.15;
      letter-spacing: -0.025em;
    }
    p { line-height: 1.75; }
    a { color: var(--pink); text-decoration: none; transition: var(--transition); }
    a:hover { color: var(--purple); }
    ::selection { background: rgba(255,45,110,0.25); color: var(--white); }
    img { max-width: 100%; display: block; }

    /* ─── LAYOUT ────────────────────────────────────────────── */
    .container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
    .section    { padding: 96px 0; }
    .section-sm { padding: 64px 0; }
    .text-center { text-align: center; }

    /* ─── TYPOGRAPHY UTILITIES ───────────────────────────────── */
    .grad-text {
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .pink   { color: var(--pink) !important; }
    .green  { color: var(--green) !important; }
    .amber  { color: var(--amber) !important; }
    .muted  { color: var(--text-muted); }

    /* ─── SECTION LABELS ─────────────────────────────────────── */
    .label {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 99px;
      margin-bottom: 20px;
    }
    .label-pink   { background: rgba(255,45,110,0.12);  color: var(--pink);  border: 1px solid rgba(255,45,110,0.25); }
    .label-purple { background: rgba(124,58,237,0.12); color: #a78bfa;      border: 1px solid rgba(124,58,237,0.25); }
    .label-green  { background: rgba(34,197,94,0.1);   color: var(--green); border: 1px solid rgba(34,197,94,0.25); }
    .label-amber  { background: rgba(245,158,11,0.1);  color: var(--amber); border: 1px solid rgba(245,158,11,0.25); }

    /* ─── BUTTONS ────────────────────────────────────────────── */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-head);
      font-weight: 700;
      border: none;
      cursor: pointer;
      border-radius: var(--radius-sm);
      transition: var(--transition);
      text-decoration: none;
    }
    .btn-primary {
      background: var(--grad);
      color: var(--white);
      box-shadow: 0 6px 24px rgba(255,45,110,0.3);
      padding: 14px 32px;
      font-size: 1rem;
    }
    .btn-primary:hover {
      filter: brightness(1.1);
      transform: translateY(-2px);
      box-shadow: 0 10px 32px rgba(255,45,110,0.4);
      color: var(--white);
    }
    .btn-lg { padding: 18px 44px; font-size: 1.1rem; border-radius: 14px; }
    .btn-xl { padding: 22px 56px; font-size: 1.2rem; border-radius: 14px; }
    .btn-ghost {
      background: transparent;
      color: var(--text);
      border: 1.5px solid var(--bg-border);
      padding: 14px 28px;
      font-size: 0.95rem;
    }
    .btn-ghost:hover {
      border-color: var(--pink);
      color: var(--pink);
      background: rgba(255,45,110,0.05);
    }

    /* ─── CARDS ──────────────────────────────────────────────── */
    .card {
      background: var(--bg-card);
      border: 1px solid var(--bg-border);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-card);
      transition: var(--transition);
    }
    .card:hover { transform: translateY(-4px); box-shadow: 0 8px 40px rgba(0,0,0,0.45); }

    /* ─── ANNOUNCEMENT BAR ───────────────────────────────────── */
    .pill-bar {
      background: linear-gradient(90deg, rgba(15,17,34,0.97) 0%, rgba(37,99,235,0.14) 32%, rgba(124,58,237,0.2) 68%, rgba(15,17,34,0.97) 100%);
      border-bottom: 1px solid var(--bg-border);
      overflow: hidden;
      white-space: nowrap;
      position: sticky;
      top: 0;
      z-index: 100;
      backdrop-filter: blur(10px);
    }
    .pill-bar-track {
      display: inline-flex;
      animation: marquee 28s linear infinite;
      padding: 12px 0;
    }
    .pill-bar-track span {
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #a78bfa;
      padding: 0 32px;
    }
    .pill-bar-track span.dot { color: var(--pink); padding: 0 8px; letter-spacing: 0; font-size: 1rem; }
    @keyframes marquee {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ─── HERO ───────────────────────────────────────────────── */
    .hero {
      padding: 80px 0 96px;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -120px; left: 50%; transform: translateX(-50%);
      width: 900px; height: 600px;
      background: radial-gradient(ellipse, rgba(124,58,237,0.12) 0%, rgba(255,45,110,0.07) 40%, transparent 70%);
      pointer-events: none;
    }
    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 400px;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    .hero-eyebrow {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 24px;
      flex-wrap: wrap;
    }
    .hero-eyebrow-tag {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text-muted);
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--bg-border);
      padding: 5px 14px;
      border-radius: 99px;
    }
    .hero-eyebrow-tag.hero-status-badge {
      background: rgba(34,197,94,0.1);
      border-color: rgba(34,197,94,0.3);
      color: var(--green);
      font-weight: 800;
    }
    .hero h1 {
      font-size: clamp(2.2rem, 4.5vw, 3.4rem);
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 24px;
    }
    .hero-sub {
      font-size: 1.1rem;
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 36px;
      max-width: 560px;
    }
    .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 44px; }
    .hero-trust {
      display: flex;
      align-items: center;
      gap: 20px;
      padding-top: 32px;
      border-top: 1px solid var(--bg-border);
      flex-wrap: wrap;
    }
    .trust-item { display: flex; align-items: center; gap: 8px; }
    .trust-item .num { font-family: var(--font-head); font-size: 1.2rem; font-weight: 800; color: var(--white); }
    .trust-item .desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.3; }
    .trust-divider { width: 1px; height: 32px; background: var(--bg-border); }
    .stars { color: var(--amber); font-size: 0.85rem; letter-spacing: 1px; }

    /* Registration card in hero */
    .hero-reg-card {
      background: var(--card-hero-grad);
      border: 1px solid rgba(124,58,237,0.25);
      border-radius: var(--radius-lg);
      padding: 36px 32px;
      box-shadow: 0 8px 60px rgba(124,58,237,0.15), var(--shadow-card);
      position: relative;
      overflow: hidden;
    }
    .hero-reg-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; height: 3px;
      background: var(--grad);
      border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }
    .webinar-date-badge {
      display: flex;
      align-items: center;
      gap: 8px;
      background: rgba(245,158,11,0.1);
      border: 1px solid rgba(245,158,11,0.25);
      border-radius: 99px;
      padding: 6px 16px;
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--amber);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 20px;
      width: fit-content;
    }
    .hero-reg-heading {
      font-size: 1.15rem;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 8px;
      line-height: 1.3;
    }
    .hero-reg-sub {
      font-size: 0.88rem;
      color: var(--text-muted);
      margin-bottom: 24px;
      line-height: 1.6;
    }
    .reg-form .form-group { margin-bottom: 14px; }
    .reg-form label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: 5px; }
    .reg-form input, .reg-form select {
      width: 100%;
      background: rgba(255,255,255,0.05);
      border: 1px solid var(--bg-border);
      border-radius: var(--radius-sm);
      padding: 12px 14px;
      font-family: var(--font-body);
      font-size: 0.95rem;
      color: var(--white);
      transition: var(--transition);
      outline: none;
    }
    .reg-form input:focus, .reg-form select:focus {
      border-color: rgba(124,58,237,0.5);
      background: rgba(255,255,255,0.07);
      box-shadow: 0 0 0 3px rgba(124,58,237,0.12);
    }
    .reg-form input::placeholder { color: var(--text-muted); }
    .reg-form select option { background: #1a1d35; }
    .reg-submit {
      width: 100%;
      padding: 16px;
      font-size: 1rem;
      border-radius: var(--radius-sm);
      margin-top: 4px;
      justify-content: center;
    }
    .reg-privacy {
      text-align: center;
      font-size: 0.75rem;
      color: var(--text-muted);
      margin-top: 12px;
      line-height: 1.5;
    }
    .countdown-row {
      display: flex;
      gap: 8px;
      justify-content: center;
      margin-bottom: 24px;
    }
    .cd-block {
      background: rgba(255,255,255,0.05);
      border: 1px solid var(--bg-border);
      border-radius: var(--radius-sm);
      padding: 8px 14px;
      text-align: center;
      min-width: 64px;
    }
    .cd-block .cd-num { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: var(--white); line-height: 1; }
    .cd-block .cd-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-top: 4px; }

    /* ─── STATS STRIP ────────────────────────────────────────── */
    .stats-strip {
      background: var(--bg-raised);
      border-top: 1px solid var(--bg-border);
      border-bottom: 1px solid var(--bg-border);
      padding: 28px 0;
    }
    .stats-grid {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      flex-wrap: wrap;
    }
    .stat-item {
      flex: 1;
      min-width: 150px;
      text-align: center;
      padding: 12px 24px;
      border-right: 1px solid var(--bg-border);
    }
    .stat-item:last-child { border-right: none; }
    .stat-item .snum { font-family: var(--font-head); font-size: 2rem; font-weight: 900; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
    .stat-item .sdesc { font-size: 0.82rem; color: var(--text-muted); margin-top: 2px; }

    /* ─── SECTION: PROBLEM / SCIENCE ────────────────────────── */
    .story-section { background: var(--bg); }
    .section-header { text-align: center; margin-bottom: 56px; }
    .section-header h2 { margin-bottom: 14px; }
    .section-header p { font-size: 1rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; line-height: 1.8; }

    .story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
    .story-card {
      background: var(--bg-card);
      border: 1px solid var(--bg-border);
      border-radius: var(--radius-md);
      padding: 28px;
      transition: var(--transition);
    }
    .story-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
    .story-tag {
      display: inline-block;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: 99px;
      margin-bottom: 14px;
    }
    .story-tag.blue   { background: rgba(37,99,235,0.1);  color: #60a5fa; }
    .story-tag.red    { background: rgba(255,45,110,0.1); color: var(--pink); }
    .story-tag.amber  { background: rgba(245,158,11,0.1); color: var(--amber); }
    .story-tag.green  { background: rgba(34,197,94,0.1);  color: var(--green); }
    .story-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--white); line-height: 1.4; }
    .story-card p  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; }
    .story-card .stat-callout {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      margin-top: 16px;
    }
    .stat-pill {
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--bg-border);
      border-radius: 99px;
      padding: 4px 14px;
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--text);
    }

    .pivot-banner {
      margin-top: 48px;
      background: linear-gradient(135deg, rgba(124,58,237,0.1) 0%, rgba(255,45,110,0.1) 100%);
      border: 1px solid rgba(124,58,237,0.2);
      border-radius: var(--radius-lg);
      padding: 40px 52px;
      text-align: center;
    }
    .pivot-banner h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); margin-bottom: 12px; }
    .pivot-banner p  { font-size: 0.95rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; line-height: 1.8; }

    /* ─── SECTION: THE SHIFT ─────────────────────────────────── */
    .transform-section { background: linear-gradient(180deg, var(--bg) 0%, #0e1020 100%); }
    .transform-grid {
      display: grid;
      grid-template-columns: 1fr 64px 1fr;
      gap: 0;
      margin-top: 56px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid var(--bg-border);
    }
    .transform-col { padding: 32px 28px; background: var(--bg-card); }
    .transform-col.after-col { background: rgba(34,197,94,0.03); border-left: 1px solid rgba(34,197,94,0.12); }
    .transform-arrow-col {
      background: var(--bg-raised);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      color: var(--text-muted);
    }
    .transform-head {
      display: flex;
      align-items: center;
      gap: 12px;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--bg-border);
      margin-bottom: 20px;
    }
    .t-badge {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 99px;
    }
    .t-badge.before { background: rgba(255,45,110,0.1); color: var(--pink); }
    .t-badge.after  { background: rgba(34,197,94,0.1);  color: var(--green); }
    .transform-head h3 { font-size: 1rem; font-weight: 700; }
    .t-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 12px 0;
      border-bottom: 1px solid var(--bg-border);
    }
    .t-item:last-child { border-bottom: none; }
    .t-icon { font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
    .t-item strong { display: block; font-size: 0.9rem; color: var(--white); margin-bottom: 2px; }
    .t-item span   { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

    /* ─── SECTION: INSIDE THE WEBINAR ───────────────────────── */
    .program-section { background: #0e1020; }
    .insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
    .insight-card {
      background: var(--bg-card);
      border: 1px solid var(--bg-border);
      border-radius: var(--radius-md);
      padding: 28px 24px;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }
    .insight-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; height: 2px;
      background: var(--grad);
      opacity: 0;
      transition: var(--transition);
    }
    .insight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: rgba(124,58,237,0.2); }
    .insight-card:hover::before { opacity: 1; }
    .insight-num {
      font-family: var(--font-head);
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 14px;
    }
    .insight-icon { font-size: 1.6rem; margin-bottom: 14px; line-height: 1; }
    .insight-card h4 { font-size: 0.98rem; font-weight: 700; margin-bottom: 8px; color: var(--white); line-height: 1.4; }
    .insight-card p  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }
    .insight-reveal {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--pink);
      margin-top: 14px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    /* ─── SECTION: SOCIAL PROOF ──────────────────────────────── */
    .proof-section { background: #0e1020; }
    .proof-nums {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
      margin-bottom: 56px;
      padding: 36px;
      background: var(--bg-card);
      border: 1px solid var(--bg-border);
      border-radius: var(--radius-lg);
    }
    .proof-big-score { text-align: center; }
    .proof-big-score .pscore { font-family: var(--font-head); font-size: 4rem; font-weight: 900; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
    .proof-big-score .pstars { color: var(--amber); font-size: 1.1rem; margin: 4px 0; }
    .proof-big-score p { font-size: 0.82rem; color: var(--text-muted); }
    .proof-num-item { text-align: center; }
    .proof-num-item .pnum { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--white); }
    .proof-num-item .pdesc { font-size: 0.82rem; color: var(--text-muted); max-width: 100px; line-height: 1.4; }
    .proof-divider { width: 1px; height: 60px; background: var(--bg-border); }

    .stories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .story-proof-card {
      background: var(--bg-card);
      border: 1px solid var(--bg-border);
      border-radius: var(--radius-md);
      padding: 28px;
      display: flex;
      flex-direction: column;
      transition: var(--transition);
    }
    .story-proof-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
    .story-change {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 18px;
      flex-wrap: wrap;
    }
    .change-from, .change-to {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: 99px;
    }
    .change-from { background: rgba(255,45,110,0.1); color: var(--pink); }
    .change-to   { background: rgba(34,197,94,0.1);  color: var(--green); }
    .change-arrow { font-size: 0.8rem; color: var(--text-muted); }
    .story-proof-card h4 { font-size: 0.98rem; font-weight: 700; color: var(--white); margin-bottom: 10px; line-height: 1.4; }
    .story-proof-card p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; flex: 1; }
    .story-quote {
      font-style: italic;
      font-size: 0.88rem;
      color: var(--text);
      border-left: 2px solid var(--pink);
      padding-left: 14px;
      margin-top: 16px;
      line-height: 1.6;
    }

    /* ─── SECTION: LOGISTICS ─────────────────────────────────── */
    .logistics-section { background: var(--bg); }
    .logistics-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 48px; }
    .logistics-card {
      background: var(--bg-card);
      border: 1px solid var(--bg-border);
      border-radius: var(--radius-md);
      padding: 28px 20px;
      text-align: center;
      transition: var(--transition);
    }
    .logistics-card:hover { border-color: rgba(124,58,237,0.3); transform: translateY(-3px); }
    .logistics-icon { font-size: 1.6rem; margin-bottom: 14px; line-height: 1; }
    .logistics-card h4 { font-size: 0.78rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
    .logistics-card .lval { font-size: 1rem; color: var(--white); font-weight: 600; line-height: 1.4; }
    .logistics-card .lsub { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }
    .free-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(34,197,94,0.1);
      border: 1px solid rgba(34,197,94,0.3);
      border-radius: 99px;
      padding: 6px 18px;
      font-size: 0.8rem;
      font-weight: 800;
      color: var(--green);
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-top: 14px;
    }

    /* ─── SECTION: COACH ─────────────────────────────────────── */
    .coach-section { background: #0e1020; }
    .coach-grid {
      display: grid;
      grid-template-columns: 340px 1fr;
      gap: 64px;
      align-items: start;
    }
    .coach-img-wrap {
      position: relative;
    }
    .coach-img-placeholder {
      width: 100%;
      aspect-ratio: 3/4;
      background: var(--card-hero-grad);
      border: 1px solid rgba(124,58,237,0.25);
      border-radius: var(--radius-lg);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 5rem;
      overflow: hidden;
      box-shadow: 0 0 60px rgba(124,58,237,0.1);
    }
    .coach-img-placeholder img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: var(--radius-lg);
    }
    .coach-credentials {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 16px 0 24px;
    }
    .cred-pill {
      background: rgba(124,58,237,0.1);
      border: 1px solid rgba(124,58,237,0.2);
      border-radius: 99px;
      padding: 5px 14px;
      font-size: 0.75rem;
      font-weight: 600;
      color: #a78bfa;
    }
    .coach-body h2 { margin-bottom: 4px; }
    .coach-title { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 24px; }
    .coach-body p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 16px; }
    .coach-quote-block {
      background: var(--bg-card);
      border-left: 3px solid var(--pink);
      border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
      padding: 22px 28px;
      margin-top: 8px;
      font-size: 1rem;
      color: var(--text);
      line-height: 1.8;
      font-style: italic;
    }

    /* ─── SECTION: FAQ ───────────────────────────────────────── */
    .faq-section { background: var(--bg); }
    .faq-list { max-width: 760px; margin: 48px auto 0; }
    .faq-item {
      border: 1px solid var(--bg-border);
      border-radius: var(--radius-md);
      margin-bottom: 10px;
      overflow: hidden;
      transition: border-color 0.25s ease;
    }
    .faq-item.open { border-color: rgba(124,58,237,0.35); }
    .faq-q {
      width: 100%;
      background: none;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 22px 28px;
      text-align: left;
      font-family: var(--font-head);
      font-weight: 600;
      font-size: 0.98rem;
      color: var(--white);
      transition: var(--transition);
    }
    .faq-q:hover { background: rgba(255,255,255,0.02); }
    .faq-item.open .faq-q { background: linear-gradient(90deg, rgba(124,58,237,0.08), rgba(255,45,110,0.08)); }
    .faq-q i { font-size: 0.85rem; color: var(--pink); flex-shrink: 0; transition: transform 0.25s ease; }
    .faq-item.open .faq-q i { transform: rotate(45deg); }
    .faq-a { display: none; padding: 0 28px 22px; font-size: 0.92rem; color: var(--text-muted); line-height: 1.8; }
    .faq-item.open .faq-a { display: block; }

    /* ─── SECTION: FINAL CTA ─────────────────────────────────── */
    .cta-section {
      background: var(--bg);
      text-align: center;
      padding: 96px 0;
      position: relative;
      overflow: hidden;
    }
    .cta-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 50% 50%, rgba(124,58,237,0.1) 0%, transparent 65%);
    }
    .cta-section .container { position: relative; z-index: 1; }
    .cta-section h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; max-width: 700px; margin: 0 auto 20px; }
    .cta-section p  { font-size: 1.05rem; color: var(--text-muted); max-width: 520px; margin: 0 auto 36px; line-height: 1.8; }
    .cta-trust-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
      flex-wrap: wrap;
      margin-top: 20px;
      padding-top: 20px;
      border-top: 1px solid var(--bg-border);
      font-size: 0.82rem;
      color: var(--text-muted);
    }
    .cta-trust-row span { display: flex; align-items: center; gap: 6px; }
    .cta-trust-row i { color: var(--green); }

    /* ─── FOOTER ─────────────────────────────────────────────── */
    .footer {
      background: var(--bg-raised);
      border-top: 1px solid var(--bg-border);
      padding: 28px 0;
    }
    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }
    .footer-brand {
      font-family: var(--font-head);
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--white);
    }
    .footer-links { display: flex; gap: 20px; }
    .footer-links a { font-size: 0.82rem; color: var(--text-muted); }
    .footer-links a:hover { color: var(--pink); }
    .footer-copy { font-size: 0.78rem; color: var(--text-muted); }

    /* ─── REGISTRATION MODAL ─────────────────────────────────── */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.7);
      backdrop-filter: blur(8px);
      z-index: 1000;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
    }
    .modal-overlay.open { display: flex; }
    .modal-box {
      background: linear-gradient(135deg, rgba(20,23,44,0.98) 0%, rgba(19,21,42,0.98) 100%);
      border: 1px solid rgba(124,58,237,0.25);
      border-radius: var(--radius-lg);
      padding: 48px;
      max-width: 520px;
      width: 100%;
      position: relative;
      overflow: hidden;
      box-shadow: 0 20px 80px rgba(0,0,0,0.5), 0 0 70px rgba(124,58,237,0.16);
    }
    .modal-box::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; height: 4px;
      background: var(--grad);
      border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }
    .modal-close {
      position: absolute;
      top: 18px; right: 20px;
      background: none;
      border: none;
      color: var(--text-muted);
      font-size: 1.1rem;
      cursor: pointer;
      transition: var(--transition);
      line-height: 1;
      padding: 4px;
    }
    .modal-close:hover { color: var(--white); }
    .modal-box h2 { font-size: 1.5rem; margin-bottom: 6px; }
    .modal-box .modal-sub { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 28px; line-height: 1.6; }
    .modal-success {
      display: none;
      text-align: center;
      padding: 20px 0;
    }
    .modal-success-icon { font-size: 3rem; margin-bottom: 16px; }
    .modal-success h3 { font-size: 1.4rem; margin-bottom: 10px; }
    .modal-success p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; }

    /* ─── RESPONSIVE ─────────────────────────────────────────── */
    @media (max-width: 900px) {
      .hero-inner { grid-template-columns: 1fr; gap: 48px; }
      .hero-reg-card { max-width: 480px; margin: 0 auto; }
      .story-grid { grid-template-columns: 1fr; }
      .transform-grid { grid-template-columns: 1fr; }
      .transform-arrow-col { display: none; }
      .transform-col.after-col { border-left: none; border-top: 1px solid rgba(34,197,94,0.12); }
      .insights-grid { grid-template-columns: 1fr 1fr; }
      .stories-grid { grid-template-columns: 1fr; }
      .logistics-grid { grid-template-columns: repeat(3, 1fr); }
      .coach-grid { grid-template-columns: 1fr; gap: 40px; }
      .coach-img-wrap { max-width: 300px; }
      .section { padding: 64px 0; }
      .section-sm { padding: 48px 0; }
    }
    @media (max-width: 600px) {
      .hero h1 { font-size: 1.9rem; text-align: center; }
      .hero-eyebrow, .hero-cta { justify-content: center; }
      .hero-sub { text-align: center; margin: 0 auto 36px; }
      .hero-trust { justify-content: center; }
      .insights-grid { grid-template-columns: 1fr; }
      .logistics-grid { grid-template-columns: 1fr 1fr; }
      .stats-grid { flex-direction: column; }
      .stat-item { border-right: none; border-bottom: 1px solid var(--bg-border); }
      .stat-item:last-child { border-bottom: none; }
      .proof-nums { flex-direction: column; gap: 24px; }
      .proof-divider { width: 80px; height: 1px; }
      .pivot-banner { padding: 28px 20px; }
      .modal-box { padding: 32px 24px; }
      .cta-section h2 { font-size: 1.7rem; }
      .footer-inner { flex-direction: column; text-align: center; }
      .section { padding: 48px 0; }
      .section-sm { padding: 36px 0; }
    }

    /* ============================================================
       LIGHT THEME OVERRIDES
    ============================================================ */
    [data-theme="light"] {
      --bg:         #FAF8FC;
      --bg-card:    #ffffff;
      --bg-raised:  #f0f1f5;
      --bg-border:  rgba(26, 26, 46, 0.10);
      --text:       #3d4159;
      --text-muted: #4c5168;
      --white:      #1a1a2e;
      --grad-cta: linear-gradient(135deg, #3557b7 0%, #aa2c75 100%);
      --card-hero-grad: linear-gradient(135deg, #f3eef8 0%, #fce4ee 100%);
      --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);
      --shadow-glow: 0 0 30px rgba(255, 45, 110, 0.10);
    }

    /* Sections with hardcoded dark backgrounds */
    [data-theme="light"] .program-section,
    [data-theme="light"] .proof-section,
    [data-theme="light"] .coach-section {
      background: #f3f1f6;
    }

    [data-theme="light"] .transform-section {
      background: linear-gradient(180deg, var(--bg) 0%, #f3f1f6 100%);
    }

    [data-theme="light"] .story-section {
      background: var(--bg);
    }

    /* Cards */
    [data-theme="light"] .card {
      background: var(--bg-card);
      border-color: var(--bg-border);
    }

    [data-theme="light"] .card:hover {
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    }

    /* Insight cards */
    [data-theme="light"] .insight-card {
      background: var(--bg-card);
      border-color: var(--bg-border);
    }

    [data-theme="light"] .insight-card:hover {
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
      border-color: rgba(124, 58, 237, 0.15);
    }

    /* Story / proof cards */
    [data-theme="light"] .story-card,
    [data-theme="light"] .story-proof-card {
      background: var(--bg-card);
    }

    [data-theme="light"] .story-card:hover,
    [data-theme="light"] .story-proof-card:hover {
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    }

    /* Stats strip */
    [data-theme="light"] .stats-strip {
      background: #f3f1f6;
    }

    /* Stat pills */
    [data-theme="light"] .stat-pill {
      background: rgba(26, 26, 46, 0.04);
      border-color: rgba(26, 26, 46, 0.08);
    }

    /* Proof nums box */
    [data-theme="light"] .proof-nums {
      background: var(--bg-card);
      border-color: var(--bg-border);
    }

    /* Hero registration card */
    [data-theme="light"] .hero-reg-card {
      background: linear-gradient(135deg, #f3eef8 0%, #fce4ee 100%);
      border-color: rgba(124, 58, 237, 0.15);
      box-shadow: 0 8px 40px rgba(124, 58, 237, 0.08);
    }

    /* CTA buttons: calmer gradient + white text on light surfaces */
    [data-theme="light"] .btn-primary {
      background: var(--grad-cta);
      color: #ffffff;
      box-shadow: 0 10px 24px rgba(53, 87, 183, 0.14), 0 6px 16px rgba(170, 44, 117, 0.12);
    }

    [data-theme="light"] .btn-primary:hover {
      color: #ffffff;
      filter: brightness(1.03);
      box-shadow: 0 14px 28px rgba(53, 87, 183, 0.16), 0 10px 20px rgba(170, 44, 117, 0.14);
    }

    /* Hero eyebrow tags */
    [data-theme="light"] .hero-eyebrow-tag {
      background: rgba(26, 26, 46, 0.04);
      border-color: rgba(26, 26, 46, 0.08);
    }

    /* Countdown blocks */
    [data-theme="light"] .cd-block {
      background: rgba(26, 26, 46, 0.04);
      border-color: rgba(26, 26, 46, 0.08);
    }

    /* Pill bar / announcement */
    [data-theme="light"] .pill-bar {
      background: linear-gradient(90deg, rgba(250,248,252,0.97) 0%, rgba(37,99,235,0.08) 32%, rgba(124,58,237,0.10) 68%, rgba(250,248,252,0.97) 100%);
      border-bottom-color: rgba(124, 58, 237, 0.12);
    }

    /* Pivot banner */
    [data-theme="light"] .pivot-banner {
      background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(255, 45, 110, 0.05) 100%);
      border-color: rgba(124, 58, 237, 0.12);
    }

    /* Transform columns */
    [data-theme="light"] .transform-col {
      background: var(--bg-card);
    }

    [data-theme="light"] .transform-col.after-col {
      background: rgba(34, 197, 94, 0.03);
    }

    [data-theme="light"] .transform-arrow-col {
      background: #f0f1f5;
    }

    /* Logistics cards */
    [data-theme="light"] .logistics-card {
      background: var(--bg-card);
    }

    /* Coach image */
    [data-theme="light"] .coach-img-placeholder {
      background: linear-gradient(135deg, #f3eef8 0%, #fce4ee 100%);
      border-color: rgba(124, 58, 237, 0.12);
      box-shadow: 0 0 40px rgba(124, 58, 237, 0.06);
    }

    /* Coach credentials */
    [data-theme="light"] .cred-pill {
      background: rgba(124, 58, 237, 0.06);
      border-color: rgba(124, 58, 237, 0.12);
    }

    /* Coach quote block */
    [data-theme="light"] .coach-quote-block {
      background: #f3f1f6;
    }

    /* FAQ Q hover */
    [data-theme="light"] .faq-q:hover {
      background: rgba(26, 26, 46, 0.02);
    }

    [data-theme="light"] .faq-item.open .faq-q {
      background: linear-gradient(90deg, rgba(124, 58, 237, 0.05), rgba(255, 45, 110, 0.05));
    }

    /* CTA section glow */
    [data-theme="light"] .cta-section::before {
      background: radial-gradient(ellipse at 50% 50%, rgba(124, 58, 237, 0.06) 0%, transparent 65%);
    }

    /* Hero background glow */
    [data-theme="light"] .hero::before {
      background: radial-gradient(ellipse, rgba(124, 58, 237, 0.06) 0%, rgba(255, 45, 110, 0.04) 40%, transparent 70%);
    }

    /* Footer */
    [data-theme="light"] .footer {
      background: #f0f1f5;
    }

    /* Modal */
    [data-theme="light"] .modal-overlay {
      background: rgba(0, 0, 0, 0.3);
    }

    [data-theme="light"] .modal-box {
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 246, 252, 0.98) 100%);
      border-color: rgba(124, 58, 237, 0.15);
      box-shadow: 0 24px 80px rgba(0, 0, 0, 0.12), 0 0 40px rgba(124, 58, 237, 0.06);
    }

    /* Form inputs */
    [data-theme="light"] .reg-form input,
    [data-theme="light"] .reg-form select {
      background: rgba(26, 26, 46, 0.04);
      border-color: rgba(26, 26, 46, 0.12);
      color: #1a1a2e;
    }

    [data-theme="light"] .reg-form input:focus,
    [data-theme="light"] .reg-form select:focus {
      background: rgba(26, 26, 46, 0.06);
      box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.08);
    }

    [data-theme="light"] .reg-form input::placeholder {
      color: #8a8aa0;
    }

    [data-theme="light"] .reg-form select option {
      background: #ffffff;
      color: #1a1a2e;
    }

    /* Selection */
    [data-theme="light"] ::selection {
      background: rgba(255, 45, 110, 0.15);
      color: #1a1a2e;
    }
