/* ═══════════════════════════════════════════════════════════════
   MOVID ACADEMY — AI SKILLS DEPARTMENT
   Dark editorial · electric purple/teal · Bebas Neue display
═══════════════════════════════════════════════════════════════ */

:root {
  --purple:      #0f766e;
  --purple-l:    #14b8a6;
  --purple-d:    #0a5c55;
  --teal:        #2fa899;
  --teal-l:      #3dc4b3;
  --gold:        #f5c842;
  --danger:      #ef4444;
  --bg:          #050e0d;
  --bg2:         #081413;
  --bg3:         #0f1e1d;
  --bg4:         #162b2a;
  --white:       #ffffff;
  --gray:        #6a9490;
  --gray-l:      #a8ccc9;
  --dgray:       #7ab2ae;
  --nav-h:       68px;
  --max-w:       1160px;
  --pad:         clamp(20px, 5vw, 72px);
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

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

/* grain */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999; opacity: .45;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
button { cursor: pointer; }

/* ── TOP FLASH BAR ───────────────────────────────────────────── */
#top-flash-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 40px;
  background: linear-gradient(90deg, #c0190a, #f97316, #e63000, #ff4500, #f97316, #c0190a);
  background-size: 300% 100%;
  animation: flashBreath 4s ease-in-out infinite;
  color: #ffffff;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

/* breathing — slowly pulses left to right and back */
@keyframes flashBreath {
  0%   { background-position: 0%   50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0%   50%; }
}

/* countdown digits block */
#top-flash-bar .flash-countdown {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(0,0,0,.25);
  padding: 2px 10px;
  letter-spacing: 1px;
}

#top-flash-bar .flash-countdown .cd-sep {
  opacity: .7;
  animation: cdBlink 1s step-end infinite;
}

@keyframes cdBlink {
  0%,100% { opacity: .7; }
  50%      { opacity: .2; }
}

/* ── NAV ─────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  background: rgba(7,5,18,.95);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(15,118,110,.12);
}

.nav-brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.nav-brand img { width: 38px; height: 38px; object-fit: contain; }
.nav-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px; letter-spacing: 3px; color: var(--white);
}

.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gray);
  padding: 8px 14px; transition: color .2s;
}
.nav-links a:hover { color: var(--white); }

.nav-register-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--purple); color: var(--white);
  border: none; padding: 12px 22px;
  clip-path: polygon(6px 0%,100% 0%,calc(100% - 6px) 100%,0% 100%);
  transition: background .2s;
  animation: pulseNav 3s ease-in-out infinite;
}
.nav-register-btn:hover { background: var(--purple-l); }

@keyframes pulseNav {
  0%,100% { box-shadow: 0 0 0 0 rgba(15,118,110,.5); }
  50%      { box-shadow: 0 0 0 10px rgba(15,118,110,0); }
}

.nav-hamburger {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; padding: 6px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--gray-l); border-radius: 2px; transition: all .3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-mobile {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: rgba(7,5,18,.98); backdrop-filter: blur(30px);
  border-bottom: 1px solid rgba(15,118,110,.12);
  padding: 20px var(--pad) 28px;
  flex-direction: column; gap: 4px;
  z-index: 799;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gray-l);
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.04);
  transition: color .2s;
}
.nav-mobile a:hover { color: var(--white); }
.nav-mobile .nav-register-btn {
  margin-top: 16px; text-align: center; clip-path: none;
  padding: 16px; animation: none;
}

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 80px) var(--pad) 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}

/* ambient blobs */
.hero::before {
  content: '';
  position: fixed; top: -20%; left: -15%;
  width: 60%; height: 70%;
  background: radial-gradient(ellipse, rgba(15,118,110,.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: fixed; bottom: -20%; right: -10%;
  width: 50%; height: 60%;
  background: radial-gradient(ellipse, rgba(47,168,153,.07) 0%, transparent 70%);
  pointer-events: none;
}

/* vertical accent lines */
.hero-lines {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  overflow: hidden;
}
.hero-lines span {
  position: absolute; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(15,118,110,.08), transparent);
}
.hero-lines span:nth-child(1) { left: 33%; }
.hero-lines span:nth-child(2) { left: 66%; background: linear-gradient(to bottom, transparent, rgba(47,168,153,.05), transparent); }

.hero-left { position: relative; z-index: 2; }

/* Department eyebrow */
.dept-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 5px;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 24px;
}
.dept-eyebrow::before {
  content: ''; width: 22px; height: 1px; background: var(--teal);
}
.dept-icon {
  width: 26px; height: 26px; border-radius: 5px;
  background: rgba(47,168,153,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
}

/* Main headline */
.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 9vw, 140px);
  line-height: .88; letter-spacing: -1px;
  margin-bottom: 32px;
}
.hero-h1 .line-solid    { display: block; color: var(--white); }
.hero-h1 .line-outline  {
  display: block; color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,.18);
}
.hero-h1 .line-accent   { display: block; color: var(--purple); }

.hero-sub {
  font-size: clamp(16px,1.8vw,19px);
  color: var(--gray-l); line-height: 1.75;
  max-width: 480px; margin-bottom: 36px;
}
.hero-sub strong { color: var(--white); font-weight: 600; }

/* Stat row */
.hero-stats {
  display: flex; gap: 28px; flex-wrap: wrap; margin-bottom: 40px;
}
.h-stat { display: flex; flex-direction: column; gap: 3px; }
.h-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px; line-height: 1; color: var(--white);
}
.h-stat-num span { color: var(--purple); }
.h-stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gray);
}

/* CTA buttons */
.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
}
.btn-primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--purple), var(--purple-l));
  color: var(--white); border: none;
  padding: 17px 36px;
  clip-path: polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%);
  transition: transform .2s, box-shadow .2s;
  display: inline-block;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(15,118,110,.4);
}
.btn-ghost {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase;
  background: transparent; color: var(--teal);
  border: 1px solid rgba(47,168,153,.45);
  padding: 15px 24px; transition: all .2s;
  display: inline-block;
}
.btn-ghost:hover { background: var(--teal); color: var(--bg); }

/* ── HERO RIGHT — floating feature cards ─────────────────────── */
.hero-right {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; gap: 16px;
}

.feature-card {
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,.06);
  padding: 24px 28px;
  display: flex; gap: 18px; align-items: flex-start;
  transition: transform .3s, border-color .3s;
  animation: slideInRight .6s ease both;
}
.feature-card:nth-child(1) { animation-delay: .1s; border-top: 2px solid var(--purple); }
.feature-card:nth-child(2) { animation-delay: .2s; border-top: 2px solid var(--teal); }
.feature-card:nth-child(3) { animation-delay: .3s; border-top: 2px solid var(--gold); }
.feature-card:hover {
  transform: translateX(-4px);
  border-color: rgba(255,255,255,.12);
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

.fc-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px; line-height: 1; color: rgba(255,255,255,.06);
  flex-shrink: 0; width: 36px;
}
.fc-body {}
.fc-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--white); margin-bottom: 5px;
}
.fc-desc { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ── SECTION BASE ────────────────────────────────────────────── */
.section {
  padding: clamp(64px,8vw,100px) var(--pad);
}
.section-inner {
  max-width: var(--max-w); margin: 0 auto;
}
.s-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 5px;
  text-transform: uppercase; color: var(--teal);
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.s-tag::before { content: ''; width: 22px; height: 1px; background: var(--teal); }
.s-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px,5vw,68px); line-height: 1.02;
  margin-bottom: 16px;
}
.s-title .accent { color: var(--purple); }
.s-title .teal   { color: var(--teal); }
.s-sub {
  font-size: 17px; color: var(--gray); line-height: 1.75;
  max-width: 580px; margin-bottom: 52px;
}

/* reveal on scroll */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── TRACKS SECTION ──────────────────────────────────────────── */
.tracks { background: var(--bg2); }

.tracks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
}

.track-card {
  background: var(--bg3);
  padding: clamp(28px,3vw,44px);
  position: relative; overflow: hidden;
  transition: background .25s, transform .25s;
  cursor: default;
  display: flex;
  flex-direction: column;
}
.track-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
}
.track-card:nth-child(1)::before { background: var(--purple); }
.track-card:nth-child(2)::before { background: var(--teal); }
.track-card:nth-child(3)::before { background: var(--gold); }
.track-card:nth-child(4)::before { background: var(--purple-l); }

.track-card:hover { background: var(--bg4); transform: translateY(-3px); }

/* ghost number */
.track-card::after {
  font-family: 'Bebas Neue', sans-serif; font-size: 100px;
  position: absolute; bottom: -10px; right: 8px; line-height: 1;
  color: rgba(255,255,255,.04); pointer-events: none;
}
.track-card:nth-child(1)::after { content: '01'; }
.track-card:nth-child(2)::after { content: '02'; }
.track-card:nth-child(3)::after { content: '03'; }
.track-card:nth-child(4)::after { content: '04'; }

.track-badge {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; padding: 4px 10px; border-radius: 2px;
  margin-bottom: 18px;
}
.badge-free   { background: rgba(47,168,153,.15);  color: var(--teal); }
.badge-paid   { background: rgba(15,118,110,.15);  color: var(--purple-l); }
.badge-bundle { background: rgba(245,200,66,.12);  color: var(--gold); }

.track-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(26px,2.5vw,36px); line-height: 1;
  color: var(--white); margin-bottom: 12px;
}
.track-desc {
  font-size: 14px; color: var(--gray); line-height: 1.7;
  margin-bottom: 20px;
}

/* track feature list */
.track-features {
  list-style: none; display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 24px;
}
.track-features li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 13px; color: var(--gray-l); line-height: 1.5;
}
.track-features li::before {
  content: '→'; color: var(--teal); flex-shrink: 0;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  margin-top: 1px;
}

/* Pushes price/cta to bottom of each card for alignment */
.track-price-spacer { flex: 1; min-height: 12px; }

.track-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px; line-height: 1; color: var(--white);
  margin-bottom: 4px;
}
.track-price span { font-size: 22px; color: var(--gray); }
.track-price-note {
  font-size: 12px; color: var(--gray); margin-bottom: 20px;
}
.track-free-tag {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px; line-height: 1; color: var(--teal);
  margin-bottom: 4px;
}

.track-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase;
  background: none; border: 1px solid rgba(255,255,255,.12);
  color: var(--gray-l); padding: 11px 18px;
  width: 100%; transition: all .2s;
}
.track-cta:hover { border-color: var(--purple); color: var(--purple-l); }
.track-cta.primary {
  background: linear-gradient(135deg, var(--purple), var(--purple-l));
  border-color: transparent; color: var(--white);
  clip-path: polygon(6px 0%,100% 0%,calc(100% - 6px) 100%,0% 100%);
}
.track-cta.primary:hover { opacity: .9; }

/* ── COACHING CARD ─────────────────────────────────────────────── */
.badge-coaching {
  background: rgba(245,200,66,.12); color: var(--gold);
}

.coaching-card {
  margin-top: 2px;
  background: var(--bg3);
  border-top: 3px solid var(--gold);
  padding: clamp(32px,4vw,52px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(32px,5vw,80px);
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: background .25s;
}
.coaching-card::after {
  content: 'COACH';
  font-family: 'Bebas Neue', sans-serif; font-size: 160px;
  color: rgba(245,200,66,.03);
  position: absolute; right: -10px; bottom: -20px;
  line-height: 1; pointer-events: none;
}
.coaching-card:hover { background: var(--bg4); }

.coaching-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px,3.5vw,52px); line-height: 1;
  color: var(--white); margin-bottom: 14px; margin-top: 10px;
}
.coaching-desc {
  font-size: 15px; color: var(--gray); line-height: 1.75;
  max-width: 600px; margin-bottom: 22px;
}
.coaching-features {
  list-style: none; display: flex; flex-direction: column; gap: 8px;
}
.coaching-features li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 13px; color: var(--gray-l); line-height: 1.5;
}
.coaching-features li::before {
  content: '→'; color: var(--gold); flex-shrink: 0;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  margin-top: 1px;
}

.coaching-right {
  text-align: center; flex-shrink: 0; min-width: 200px;
}
.coaching-price-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gray); margin-bottom: 8px;
}
.coaching-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px; line-height: 1.05;
  color: var(--gold); margin-bottom: 8px;
}
.coaching-price-note {
  font-size: 12px; color: var(--gray); line-height: 1.5;
  margin-bottom: 20px;
}
.coaching-cta { width: 100%; clip-path: none; }
.coaching-sub-note {
  font-size: 11px; color: var(--dgray); margin-top: 10px;
  letter-spacing: .5px;
}

@media (max-width: 768px) {
  .coaching-card {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .coaching-right { text-align: left; }
  .coaching-cta { width: auto; }
}

/* ── HOW IT WORKS ────────────────────────────────────────────── */
.how { background: var(--bg); }

.how-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.how-step {
  background: var(--bg3); padding: clamp(28px,3vw,40px);
  position: relative;
}
.how-step:nth-child(1) { border-top: 3px solid var(--teal); }
.how-step:nth-child(2) { border-top: 3px solid var(--purple); }
.how-step:nth-child(3) { border-top: 3px solid var(--gold); }

.step-num-bg {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px; line-height: 1;
  color: rgba(255,255,255,.04);
  position: absolute; top: 12px; right: 16px;
}
.step-icon { font-size: 32px; margin-bottom: 18px; display: block; }
.step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--white); margin-bottom: 8px;
}
.step-desc { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ── TESTIMONIALS ────────────────────────────────────────────── */
.testi { background: var(--bg2); }

.testi-wrap { overflow: hidden; }
.testi-track {
  display: flex; gap: 20px;
  transition: transform .5s ease;
}
.testi-card {
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,.05);
  padding: 36px; position: relative; flex-shrink: 0;
  width: calc(33.333% - 14px); min-width: calc(33.333% - 14px);
  display: flex; flex-direction: column;
}
.testi-card::before {
  content: '"'; font-family: 'Bebas Neue', sans-serif;
  font-size: 80px; color: var(--purple); opacity: .1;
  position: absolute; top: 12px; left: 20px; line-height: 1;
}
.testi-text {
  font-size: 15px; color: var(--gray-l); line-height: 1.75;
  flex: 1; padding-top: 10px; margin-bottom: 24px;
  max-height: 175px; overflow-y: auto; padding-right: 4px;
}
.testi-text::-webkit-scrollbar { width: 3px; }
.testi-text::-webkit-scrollbar-thumb { background: rgba(15,118,110,.4); border-radius: 3px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--purple), var(--teal));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 16px;
}
.testi-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700; letter-spacing: 1px;
}
.testi-role  { font-size: 12px; color: var(--gray); }
.testi-track-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--purple-l); margin-top: 3px;
}
.carousel-btns { display: flex; gap: 10px; margin-top: 24px; }
.cbtn {
  width: 42px; height: 42px;
  border: 1px solid rgba(15,118,110,.35);
  background: transparent; color: var(--purple);
  font-size: 16px; display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.cbtn:hover { background: var(--purple); color: var(--white); }

/* ── FINAL CTA / REGISTRATION ────────────────────────────────── */
.register-section {
  background: linear-gradient(135deg, rgba(15,118,110,.08), rgba(47,168,153,.05));
  border-top: 1px solid rgba(15,118,110,.15);
}

.register-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: clamp(64px,8vw,100px) var(--pad);
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}

/* Left — pitch */
.reg-pitch {}
.reg-pitch-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 5px;
  text-transform: uppercase; color: var(--teal);
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.reg-pitch-eyebrow::after { content: ''; width: 20px; height: 1px; background: var(--teal); }
.reg-pitch-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px,5vw,68px); line-height: 1.02;
  margin-bottom: 16px;
}
.reg-pitch-sub {
  font-size: 16px; color: var(--gray); line-height: 1.75; margin-bottom: 32px;
}

/* Guarantee chips */
.reg-guarantees { display: flex; flex-direction: column; gap: 10px; }
.guarantee-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--gray-l); line-height: 1.5;
}
.guarantee-item::before {
  content: '✓';
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: rgba(47,168,153,.15); color: var(--teal);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 11px;
  display: flex; align-items: center; justify-content: center;
}

/* Right — form card */
.form-card {
  background: var(--bg3);
  border: 1px solid rgba(15,118,110,.2);
  padding: clamp(28px,3vw,44px);
  position: relative;
}
.form-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--teal));
}

.form-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px; margin-bottom: 4px;
}
.form-sub { font-size: 14px; color: var(--gray); margin-bottom: 28px; }

.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gray); margin-bottom: 7px;
}
.form-input {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--white); font-family: 'Barlow', sans-serif;
  font-size: 15px; padding: 13px 16px; outline: none;
  transition: border-color .2s; border-radius: 0; -webkit-appearance: none;
}
.form-input:focus { border-color: var(--purple); background: rgba(15,118,110,.04); }
.form-input option { background: var(--bg3); color: var(--white); }
.form-input.err { border-color: var(--danger); }

.form-err {
  display: none; color: var(--danger);
  font-size: 12px; margin-bottom: 12px; line-height: 1.5;
}

.form-submit {
  width: 100%; margin-top: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--purple), var(--purple-l));
  color: var(--white); border: none; padding: 18px;
  clip-path: polygon(6px 0%,100% 0%,calc(100% - 6px) 100%,0% 100%);
  transition: opacity .2s;
}
.form-submit:hover:not(:disabled) { opacity: .9; }
.form-submit:disabled { opacity: .5; cursor: not-allowed; }

.form-note {
  font-size: 12px; color: var(--dgray);
  text-align: center; margin-top: 14px; line-height: 1.55;
}

/* Flash sale banner on form */
.flash-banner {
  display: none;
  background: rgba(245,200,66,.08);
  border: 1px solid rgba(245,200,66,.25);
  border-left: 3px solid var(--gold);
  padding: 10px 14px; margin-bottom: 18px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 1px;
  color: var(--gold);
  animation: flashIn .4s ease both;
}

@keyframes flashIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

/* ── FOOTER ──────────────────────────────────────────────────── */
footer {
  background: var(--bg);
  border-top: 1px solid rgba(255,255,255,.04);
  padding: 28px var(--pad);
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px; letter-spacing: 3px; color: var(--dgray);
}
.footer-links { display: flex; gap: 20px; list-style: none; flex-wrap: wrap; }
.footer-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--dgray); text-decoration: none; transition: color .2s;
}
.footer-links a:hover { color: var(--purple-l); }
.footer-copy { font-size: 12px; color: var(--dgray); }

/* ── MODAL ───────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.88); backdrop-filter: blur(12px);
  z-index: 9000; display: none;
  align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal-box {
  background: var(--bg2);
  border: 1px solid rgba(15,118,110,.3);
  width: 100%; max-width: 480px; padding: 0;
  position: relative; overflow: hidden;
  animation: modalIn .3s ease;
}
.modal-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--teal));
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(-18px) scale(.97); }
  to   { opacity: 1; transform: none; }
}
.modal-inner { padding: clamp(28px,4vw,44px); }
.modal-x {
  position: absolute; top: 16px; right: 16px;
  background: none; border: 1px solid rgba(255,255,255,.1);
  color: var(--gray); width: 34px; height: 34px; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.modal-x:hover { border-color: var(--purple); color: var(--purple-l); }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }
  .register-inner { grid-template-columns: 1fr; gap: 48px; }
  .form-card { position: static; }
  .tracks-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-card { width: calc(50% - 10px); min-width: calc(50% - 10px); }
}
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav-links { display: none; }
  .nav-register-btn { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding-top: calc(var(--nav-h) + 48px); }
  .how-steps { grid-template-columns: 1fr; }
  .tracks-grid { grid-template-columns: 1fr; }
  .testi-card { width: 100%; min-width: 100%; }
  footer { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 20px; }
}

/* ── THEME TOGGLE SLIDER ─────────────────────────────────────── */
.theme-toggle {
  position: relative;
  display: flex;
  align-items: center;
  width: 104px; height: 28px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px;
  padding: 3px;
  cursor: pointer;
  flex-shrink: 0;
  overflow: hidden;
}
.tt-thumb {
  position: absolute;
  top: 3px; left: 3px;
  width: calc(50% - 3px);
  height: calc(100% - 6px);
  background: var(--purple);
  border-radius: 14px;
  transition: left .25s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
[data-theme="light"] .tt-thumb { left: calc(50%); }

.tt-label {
  position: relative;
  z-index: 1;
  flex: 1;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color .25s;
  pointer-events: none;
  user-select: none;
}
.tt-dark  { color: #fff; }
.tt-light { color: var(--gray); }

[data-theme="light"] .tt-dark  { color: var(--gray); }
[data-theme="light"] .tt-light { color: #fff; }

[data-theme="light"] .theme-toggle {
  background: rgba(0,0,0,.05);
  border-color: rgba(0,0,0,.14);
}

/* ── LIGHT THEME ─────────────────────────────────────────────── */
[data-theme="light"] {
  --purple:   #0a5c55;
  --purple-l: #0f766e;
  --purple-d: #073d38;
  --teal:     #0d9488;
  --teal-l:   #14b8a6;
  --bg:       #f0faf9;
  --bg2:      #e6f7f5;
  --bg3:      #ffffff;
  --bg4:      #d1eeeb;
  --white:    #0d1a19;
  --gray:     #3d7a75;
  --gray-l:   #1a4a46;
  --dgray:    #2a5450;
}

/* Grain */
[data-theme="light"] body::after { opacity: .12; }

/* Flash bar stays vivid — no override needed */

/* Nav */
[data-theme="light"] .nav {
  background: rgba(240,250,249,.96);
  border-bottom-color: rgba(15,118,110,.15);
}
[data-theme="light"] .nav-mobile {
  background: rgba(240,250,249,.99);
  border-bottom-color: rgba(15,118,110,.14);
}

/* Hero */
[data-theme="light"] .hero::before { background: radial-gradient(ellipse, rgba(15,118,110,.07) 0%, transparent 70%); }
[data-theme="light"] .hero::after  { background: radial-gradient(ellipse, rgba(13,148,136,.05) 0%, transparent 70%); }
[data-theme="light"] .hero-lines span { background: linear-gradient(to bottom, transparent, rgba(15,118,110,.07), transparent); }
[data-theme="light"] .hero-h1 .line-outline { -webkit-text-stroke-color: rgba(0,0,0,.13); }

/* Cards */
[data-theme="light"] .feature-card  { border-color: rgba(0,0,0,.07); }
[data-theme="light"] .track-card    { border-color: rgba(0,0,0,.07); }
[data-theme="light"] .how-step      { border-color: rgba(0,0,0,.07); }
[data-theme="light"] .testi-card    { border-color: rgba(0,0,0,.07); }
[data-theme="light"] .coaching-card { border-color: rgba(0,0,0,.07); }
[data-theme="light"] .step-num-bg   { color: rgba(0,0,0,.04); }
[data-theme="light"] .fc-num        { color: rgba(0,0,0,.06); }
[data-theme="light"] .testi-text::-webkit-scrollbar-thumb { background: rgba(15,118,110,.25); }

/* Register section */
[data-theme="light"] .register-section {
  background: linear-gradient(135deg, rgba(15,118,110,.06), rgba(47,168,153,.04));
  border-color: rgba(15,118,110,.12);
}

/* Form */
[data-theme="light"] .form-card { border-color: rgba(15,118,110,.2); }
[data-theme="light"] .form-input {
  background: rgba(0,0,0,.025);
  border-color: rgba(0,0,0,.12);
  color: var(--white);
}
[data-theme="light"] .form-input:focus {
  border-color: var(--purple);
  background: rgba(15,118,110,.03);
}
[data-theme="light"] .form-input option { background: var(--bg3); color: var(--white); }

/* Flash banner */
[data-theme="light"] .flash-banner {
  background: rgba(180,83,9,.06);
  border-color: rgba(180,83,9,.2);
}

/* Modal */
[data-theme="light"] .modal-overlay { background: rgba(0,0,0,.55); }
[data-theme="light"] .modal-box { border-color: rgba(15,118,110,.25); }

/* Footer */
[data-theme="light"] footer { border-top-color: rgba(0,0,0,.08); }

/* Coloured/gradient buttons use var(--white) for text; in light mode --white becomes dark
   (#0d1a19) which is unreadable on the dark teal button backgrounds. Force white. */
[data-theme="light"] .btn-primary,
[data-theme="light"] .track-cta.primary,
[data-theme="light"] .form-submit,
[data-theme="light"] .cbtn:hover { color: #ffffff; }