:root {
  --black: #050508;
  --navy: #0a0f1e;
  --navy-mid: #0d1530;
  --navy-light: #111d3c;
  --blue-glow: #1a3a8f;
  --accent: #2563eb;
  --accent-bright: #3b82f6;
  --accent-glow: rgba(37, 99, 235, 0.4);
  --white: #f8f9ff;
  --white-dim: rgba(248,249,255,0.7);
  --white-faint: rgba(248,249,255,0.12);
  --border: rgba(37,99,235,0.18);
  --border-bright: rgba(59,130,246,0.35);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

/* ── UTILITY ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 6vw, 80px);
  line-height: 0.95;
  letter-spacing: 1px;
  color: var(--white);
}
.glow-text { color: var(--accent-bright); text-shadow: 0 0 40px var(--accent-glow); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px var(--accent-glow), 0 0 60px rgba(37,99,235,0.15); }
  50% { box-shadow: 0 0 40px var(--accent-glow), 0 0 100px rgba(37,99,235,0.25); }
}
@keyframes scanline {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100vh); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes borderGlow {
  0%, 100% { border-color: var(--border); }
  50% { border-color: var(--border-bright); }
}
.fade-in { animation: fadeUp 0.8s ease forwards; opacity: 0; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(5,5,8,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 3px;
  color: var(--white);
  text-decoration: none;
  position: relative;
}
.nav-logo::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-bright), transparent);
  background-size: 200% 100%;
  animation: logoSweep 2.5s ease-in-out infinite;
}
@keyframes logoSweep {
  0%   { background-position: -100% center; opacity: 0.4; }
  50%  { background-position: 100% center; opacity: 1; }
  100% { background-position: 200% center; opacity: 0.4; }
}
.nav-logo span { color: var(--accent-bright); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-dim);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--accent-bright); }
.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 3px;
  transition: all 0.3s !important;
}
.nav-cta:hover {
  background: var(--accent-bright) !important;
  box-shadow: 0 0 20px var(--accent-glow);
}
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; z-index: 1001; position: relative; }
.nav-burger span { display: block; width: 26px; height: 2.5px; background: #f8f9ff; border-radius: 2px; transition: all 0.3s; box-shadow: 0 0 4px rgba(248,249,255,0.4); }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(26,58,143,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(37,99,235,0.08) 0%, transparent 60%),
    linear-gradient(180deg, rgba(5,5,8,0) 0%, rgba(5,5,8,0.6) 100%);
  z-index: 1;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
}
.hero-content {
  position: relative; z-index: 2;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--accent-bright);
}
.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 10vw, 140px);
  line-height: 0.9;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 8px;
}
.hero-headline .line-accent { color: var(--accent-bright); display: block; }
.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  color: var(--white-dim);
  max-width: 520px;
  line-height: 1.7;
  margin: 24px 0 44px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px;
  background: var(--accent);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  animation: glowPulse 3s ease-in-out infinite;
}
.btn-primary:hover {
  background: var(--accent-bright);
  box-shadow: 0 8px 40px var(--accent-glow);
  transform: translateY(-2px);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px;
  background: transparent;
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  border: 1px solid var(--border-bright);
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background: var(--white-faint);
  border-color: var(--accent-bright);
  transform: translateY(-2px);
}
.hero-stats {
  display: flex; gap: 48px;
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px; color: var(--white);
  line-height: 1;
  perspective: 200px;
}
.stat-num span { color: var(--accent-bright); }
.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--white-dim);
  margin-top: 4px;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--white-dim);
  z-index: 2;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--accent-bright), transparent);
  animation: float 2s ease-in-out infinite;
}

/* ── ABOUT ── */
#about {
  padding: 120px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
#about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}
.about-photo-wrap {
  position: relative;
}
.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--navy-light);
  border-radius: 4px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--white-dim);
  position: relative;
  overflow: hidden;
}
.about-photo::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(37,99,235,0.08) 0%, transparent 60%);
}
.photo-icon { font-size: 48px; opacity: 0.3; }
.photo-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; opacity: 0.5;
}
.about-corner {
  position: absolute;
  width: 20px; height: 20px;
  border-color: var(--accent-bright);
  border-style: solid;
}
.about-corner.tl { top: -6px; left: -6px; border-width: 2px 0 0 2px; }
.about-corner.tr { top: -6px; right: -6px; border-width: 2px 2px 0 0; }
.about-corner.bl { bottom: -6px; left: -6px; border-width: 0 0 2px 2px; }
.about-corner.br { bottom: -6px; right: -6px; border-width: 0 2px 2px 0; }
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 100px; height: 100px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: 0 0 40px var(--accent-glow);
  animation: glowPulse 3s ease-in-out infinite;
}
.about-badge .num { font-family: 'Bebas Neue', sans-serif; font-size: 28px; line-height: 1; }
.about-badge .txt { font-family: 'Barlow Condensed', sans-serif; font-size: 9px; letter-spacing: 1px; text-align: center; }
.about-content { }
.about-bio {
  font-size: 17px; font-weight: 300;
  color: var(--white-dim);
  line-height: 1.8;
  margin: 28px 0 36px;
}
.about-bio strong { color: var(--white); font-weight: 300; }
.philosophy-list { list-style: none; margin-bottom: 40px; }
.philosophy-list li {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px; font-weight: 300; color: var(--white-dim);
}
.philosophy-list li::before {
  content: '→';
  color: var(--accent-bright);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
}
.social-links { display: flex; gap: 12px; }
.social-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--white-dim);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  transition: all 0.3s;
}
.social-link:hover {
  border-color: var(--accent-bright);
  color: var(--accent-bright);
  background: var(--white-faint);
}

/* ── COACHING ── */
#coaching {
  padding: 120px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.coaching-header { text-align: center; margin-bottom: 72px; }
.coaching-header .section-title { margin-bottom: 20px; }
.coaching-header p {
  font-size: 18px; font-weight: 300;
  color: var(--white-dim); max-width: 500px; margin: 0 auto;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 44px 40px 48px;
  position: relative;
  transition: all 0.4s ease;
  animation: borderGlow 4s ease-in-out infinite;
}
.pricing-card:hover {
  border-color: var(--accent-bright);
  transform: translateY(-8px);
  box-shadow: 0 24px 80px rgba(37,99,235,0.2);
}
.pricing-card.featured {
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-mid) 100%);
  border-color: var(--accent);
  box-shadow: 0 0 60px rgba(37,99,235,0.15), inset 0 1px 0 rgba(59,130,246,0.2);
}
.pricing-card.featured:hover {
  box-shadow: 0 24px 100px rgba(37,99,235,0.35), inset 0 1px 0 rgba(59,130,246,0.2);
}
.popular-badge {
  position: absolute;
  top: 4px; left: 50%;
  transform: translateX(-50%);
  background: rgba(5,5,8,0.9);
  color: var(--accent-bright);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 5px; text-transform: uppercase;
  padding: 5px 22px;
  border-radius: 2px;
  border: 1px solid var(--accent-bright);
  box-shadow: 0 0 16px rgba(59,130,246,0.25), inset 0 0 12px rgba(59,130,246,0.06);
  white-space: nowrap;
  backdrop-filter: blur(8px);
}
.plan-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--accent-bright);
  margin-bottom: 12px;
}
.plan-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px; letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 6px;
}
.plan-price {
  display: flex; align-items: baseline; gap: 4px;
  margin: 24px 0 32px;
}
.price-currency {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px; color: var(--accent-bright);
}
.price-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px; line-height: 1; color: var(--white);
}
.price-period {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; color: var(--white-dim);
  letter-spacing: 1px;
}
.plan-features { list-style: none; margin-bottom: 40px; }
.plan-features li {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
  font-size: 15px; font-weight: 300; color: var(--white-dim);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.plan-features li:last-child { border-bottom: none; }
.check {
  width: 20px; height: 20px;
  background: rgba(37,99,235,0.15);
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--accent-bright);
  flex-shrink: 0;
}
.plan-btn {
  display: block; width: 100%;
  padding: 16px;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: all 0.3s ease;
  cursor: pointer; border: none;
}
.plan-btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border-bright);
}
.plan-btn-outline:hover {
  background: var(--white-faint);
  border-color: var(--accent-bright);
}
.plan-btn-solid {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 0 30px var(--accent-glow);
}
.plan-btn-solid:hover {
  background: var(--accent-bright);
  box-shadow: 0 8px 40px var(--accent-glow);
  transform: translateY(-2px);
}

/* ── TRANSFORMATIONS ── */
#transformations {
  padding: 120px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}
#transformations::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-bright) 50%, transparent);
  background-size: 200% 1px;
  animation: borderSweep 2.5s ease-in-out infinite;
}
.transforms-header { text-align: center; margin-bottom: 72px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}
.gallery-card {
  border-radius: 4px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.4s ease;
}
.gallery-card:hover { border-color: var(--accent-bright); transform: scale(1.02); }
.gallery-before-after {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
}
.gallery-img {
  aspect-ratio: 2/3;
  background: var(--navy-light);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.gallery-img:first-child { border-right: 1px solid var(--border); }
.gallery-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}
.gallery-tag {
  position: absolute; top: 12px; left: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  font-weight: 600;
  z-index: 2;
}
.tag-before { background: rgba(255,255,255,0.1); color: var(--white-dim); }
.tag-after { background: var(--accent); color: var(--white); }
.gallery-info {
  padding: 16px 20px;
  background: var(--navy-mid);
}
.gallery-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; font-weight: 600; letter-spacing: 1px;
  color: var(--white);
}
.gallery-stats {
  font-size: 13px; color: var(--accent-bright); margin-top: 4px;
  font-weight: 500;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px 28px;
  transition: all 0.4s ease;
  position: relative;
}
.testimonial-card:hover {
  border-color: var(--accent-bright);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(37,99,235,0.15);
}
.quote-mark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px; line-height: 0.8;
  color: var(--accent); opacity: 0.3;
  margin-bottom: 8px;
}
.testimonial-text {
  font-size: 15px; font-weight: 300; color: var(--white-dim);
  line-height: 1.7; font-style: italic;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex; align-items: center; gap: 14px;
}
.author-avatar {
  width: 44px; height: 44px;
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--white-dim);
}
.author-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 600; letter-spacing: 1px;
  color: var(--white);
}
.author-tag {
  font-size: 12px; color: var(--accent-bright); margin-top: 2px;
}
.stars { color: var(--accent-bright); font-size: 13px; margin-bottom: 16px; }

/* ── WHY ── */
#why {
  padding: 120px 0;
  background: var(--black);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 100px;
  align-items: start;
  margin-top: 72px;
}
.why-left { }
.why-feature {
  display: flex; gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.why-feature:last-child { border-bottom: none; }
.feature-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px; color: var(--accent);
  opacity: 0.3; line-height: 1;
  flex-shrink: 0; width: 52px;
}
.feature-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px; letter-spacing: 1px;
  color: var(--white); margin-bottom: 8px;
}
.feature-desc {
  font-size: 15px; font-weight: 300;
  color: var(--white-dim); line-height: 1.7;
}
.why-right {
  position: sticky; top: 120px;
}
.why-callout {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
}
.why-callout::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
}
.callout-quote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px; letter-spacing: 1px;
  color: var(--white); line-height: 1.2;
  margin-bottom: 24px;
}
.callout-quote span:nth-of-type(2) { color: var(--accent-bright) }
.callout-quote span::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  height: 2px;
  background: var(--accent-bright);
  box-shadow: 0 0 8px var(--accent-glow);
  width: 0;
  transition: width 0s;
}
.callout-quote.underline-in span::after {
  animation: underlineGrow 0.8s 0.3s ease forwards;
}
.callout-body {
  font-size: 16px; font-weight: 300;
  color: var(--white-dim); line-height: 1.8;
  margin-bottom: 36px;
}
.callout-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-bottom: 36px;
}
.c-stat {
  padding: 20px; background: var(--navy-mid);
  border: 1px solid var(--border); border-radius: 4px;
  text-align: center;
}
.c-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px; color: var(--accent-bright);
}
.c-stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--white-dim);
  margin-top: 4px;
}

/* ── APPLICATION FORM ── */
#apply {
  padding: 120px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
#apply::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-bright) 50%, transparent);
  background-size: 200% 1px;
  animation: borderSweep 2.5s ease-in-out infinite;
}
.apply-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.apply-left { }
.apply-intro {
  font-size: 17px; font-weight: 300; color: var(--white-dim);
  line-height: 1.8; margin: 24px 0 40px;
}
.apply-checklist { list-style: none; }
.apply-checklist li {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 500;
  letter-spacing: 1px; color: var(--white-dim);
  border-bottom: 1px solid var(--border);
}
.apply-checklist li::before {
  content: '✓';
  color: var(--accent-bright);
  font-weight: 700;
  flex-shrink: 0;
}
.form-card {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 48px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex; flex-direction: column; gap: 8px;
}
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--white-dim);
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 14px 18px;
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 15px; font-weight: 300;
  transition: all 0.3s;
  outline: none;
  appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(248,249,255,0.25); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent-bright);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}
.form-textarea { resize: none; height: 120px; }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%233b82f6' viewBox='0 0 16 16'%3E%3Cpath d='M8 10.5l-5-5h10l-5 5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 18px center; cursor: pointer; }
.form-select option { background: var(--navy-mid); }
.form-submit {
  width: 100%; margin-top: 28px;
  padding: 18px;
  background: var(--accent);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  border: none; border-radius: 3px; cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 0 30px var(--accent-glow);
}
.form-submit:hover {
  background: var(--accent-bright);
  box-shadow: 0 8px 40px var(--accent-glow);
  transform: translateY(-2px);
}

/* ── SOCIAL ── */
#social {
  padding: 80px 0;
  background: var(--black);
  width: 100%;
}
.social-header { text-align: center; margin-bottom: 72px; }
.social-platforms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}
.platform-card {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 44px 32px;
  text-align: center;
  text-decoration: none;
  transition: all 0.4s ease;
  display: flex; flex-direction: column;
  align-items: center; gap: 16px;
}
.platform-card:hover {
  border-color: var(--accent-bright);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(37,99,235,0.2);
}
.platform-icon { font-size: 40px; }
.platform-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: 2px; color: var(--white);
}
.platform-handle {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; letter-spacing: 2px;
  color: var(--accent-bright); text-transform: uppercase;
}
.platform-desc {
  font-size: 13px; font-weight: 300; color: var(--white-dim);
  line-height: 1.6;
}
.platform-btn {
  display: inline-block;
  padding: 10px 24px;
  border: 1px solid var(--border-bright);
  border-radius: 3px;
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s;
  margin-top: 8px;
}
.platform-card:hover .platform-btn {
  background: var(--accent); border-color: var(--accent);
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding: 60px 0 36px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}
.footer-brand { }
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px; letter-spacing: 3px;
  color: var(--white); margin-bottom: 16px;
}
.footer-logo span { color: var(--accent-bright); }
.footer-tagline {
  font-size: 14px; font-weight: 300;
  color: var(--white-dim); line-height: 1.7;
  max-width: 240px;
}
.footer-email {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent-bright);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; letter-spacing: 1px;
  text-decoration: none; margin-top: 20px;
  transition: color 0.3s;
}
.footer-email:hover { color: var(--white); }
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--white); margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  font-size: 14px; font-weight: 300;
  color: var(--white-dim); text-decoration: none;
  transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--accent-bright); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 1px;
  color: var(--white-dim);
}
.footer-socials { display: flex; gap: 12px; }
.footer-social {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white-dim); text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
}
.footer-social:hover {
  border-color: var(--accent-bright);
  color: var(--accent-bright);
  background: var(--white-faint);
}

/* ── OBSERVE ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── MOBILE NAV ── */
.mobile-menu {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(5,5,8,0.98);
  backdrop-filter: blur(20px);
  z-index: 1100;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px; letter-spacing: 3px;
  color: var(--white); text-decoration: none;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--accent-bright); }
.menu-close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; cursor: pointer; color: var(--white);
  background: rgba(37,99,235,0.15);
  border: 1px solid var(--border-bright);
  border-radius: 50%;
  transition: all 0.3s;
  line-height: 1;
}
.menu-close:hover { color: var(--accent-bright); background: rgba(37,99,235,0.3); border-color: var(--accent-bright); }

/* ── RESPONSIVE ── */

/* Tablet (max 900px) */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex !important; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-photo-wrap { order: 2; }
  .about-content { order: 1; }
  .about-photo { aspect-ratio: unset !important; height: 360px !important; max-width: 100% !important; width: 100% !important; margin: 0 auto; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; width: 100%; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-right { position: static; }
  .apply-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .social-platforms { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-stats { gap: 28px; flex-wrap: wrap; }
  .callout-stats { grid-template-columns: 1fr 1fr; }
  #about { padding: 80px 0; }
  #coaching { padding: 80px 0; }
  #transformations { padding: 80px 0; }
  #why { padding: 80px 0; }
  #apply { padding: 80px 0; }
}

/* Large phones (max 600px) */
@media (max-width: 600px) {
  .pricing-card.featured { overflow: visible !important; }
  .pricing-card.featured .popular-badge { top: -13px; }
  *, *::before, *::after { box-sizing: border-box !important; }
  html { font-size: 15px; }
  html, body { overflow-x: hidden !important; width: 100% !important; max-width: 100vw !important; }
  body { -webkit-text-size-adjust: 100%; }
  section, footer, nav, div { max-width: 100vw; }
  .container { padding: 0 24px !important; width: 100% !important; max-width: 100% !important; }

  nav { padding: 18px 0; }
  .nav-logo { font-size: 20px !important; letter-spacing: 3px; }

  #hero {
    min-height: 100svh !important;
    min-height: 100dvh !important;
    display: flex !important;
    align-items: center !important;
  }
  .hero-content {
    padding-top: 100px !important;
    padding-bottom: 60px !important;
  }
  .hero-eyebrow {
    font-size: 9px !important;
    letter-spacing: 3px !important;
    margin-bottom: 28px !important;
    opacity: 0.7;
  }
  .hero-headline {
    font-size: clamp(52px, 14vw, 72px) !important;
    line-height: 0.88 !important;
    margin-bottom: 0 !important;
    letter-spacing: 1px !important;
  }
  .hero-sub {
    font-size: 14px !important;
    line-height: 1.75 !important;
    margin: 28px 0 40px !important;
    max-width: 88% !important;
    opacity: 0.75;
    font-weight: 300;
  }
  .hero-ctas {
    flex-direction: row !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
  }
  .btn-primary {
    width: auto !important;
    padding: 13px 22px !important;
    font-size: 11px !important;
    letter-spacing: 1.5px !important;
    border-radius: 100px !important;
    gap: 7px !important;
  }
  .btn-secondary {
    width: auto !important;
    padding: 13px 20px !important;
    font-size: 11px !important;
    letter-spacing: 1.5px !important;
    border-radius: 100px !important;
  }
  .hero-stats {
    gap: 0 !important;
    flex-wrap: nowrap !important;
    margin-top: 56px !important;
    padding-top: 32px !important;
    border-top: 1px solid rgba(37,99,235,0.15) !important;
    justify-content: space-between;
  }
  .hero-stats > div {
    flex: 1;
    text-align: center;
  }
  .hero-stats > div + div {
    border-left: 1px solid rgba(37,99,235,0.12);
  }
  .stat-num { font-size: 30px !important; }
  .stat-label { font-size: 9px !important; letter-spacing: 1.5px; opacity: 0.6; }
  .hero-grid { background-size: 40px 40px !important; }

  .section-title { font-size: clamp(34px, 9vw, 52px) !important; }
  .section-label { font-size: 9px !important; letter-spacing: 4px; }

  #about { padding: 80px 0; }
  .about-photo { height: 300px !important; }
  .about-bio { font-size: 15px; margin: 24px 0 32px; line-height: 1.85; }
  .philosophy-list li { font-size: 14px; padding: 14px 0; }

  #coaching { padding: 80px 0; }
  .coaching-header { margin-bottom: 52px; }
  .coaching-header p { font-size: 15px; }
  .pricing-grid { max-width: 100%; gap: 16px; }
  .pricing-card { padding: 32px 24px 36px; }
  .price-num { font-size: 56px; }
  .plan-features li { font-size: 14px; }

  #transformations { padding: 80px 0; }
  .gallery-grid { grid-template-columns: 1fr !important; gap: 16px; width: 100%; overflow: hidden; }
  .gallery-card { width: 100% !important; }
  .gallery-img { aspect-ratio: 3/4; }
  .testimonials-grid { grid-template-columns: 1fr !important; gap: 16px; }
  .testimonial-card { width: 100% !important; padding: 28px 24px; }
  .testimonial-text { font-size: 14px; line-height: 1.75; }

  #why { padding: 80px 0; }
  .why-feature { gap: 16px; padding: 28px 0; }
  .feature-num { font-size: 36px; width: 40px; }
  .feature-title { font-size: 20px; }
  .feature-desc { font-size: 14px; line-height: 1.7; }
  .why-callout { padding: 36px 28px; }
  .callout-quote { font-size: 22px; }
  .callout-body { font-size: 14px; margin-bottom: 28px; line-height: 1.8; }
  .callout-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .c-stat { padding: 16px 12px; }
  .c-stat-num { font-size: 28px; }

  #apply { padding: 80px 0; }
  .apply-intro { font-size: 15px; line-height: 1.8; }
  .apply-checklist li { font-size: 13px; padding: 12px 0; }
  .form-card { padding: 28px 20px; border-radius: 8px; }
  .form-input, .form-select, .form-textarea { padding: 13px 16px; font-size: 14px; border-radius: 6px; }
  .form-label { font-size: 9px !important; letter-spacing: 2.5px; }
  .form-submit {
    padding: 16px !important;
    font-size: 12px !important;
    letter-spacing: 3px !important;
    border-radius: 100px !important;
    margin-top: 24px !important;
  }

  #social { padding: 72px 0 !important; }
  .social-platforms { width: 100% !important; max-width: 100% !important; padding: 0 !important; }
  .platform-card { width: 100% !important; padding: 36px 24px !important; border-radius: 8px !important; }

  footer { padding: 56px 0 32px; }
  .footer-inner { grid-template-columns: 1fr !important; gap: 36px; margin-bottom: 40px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-logo { font-size: 26px; }
  .footer-tagline { font-size: 13px; max-width: 100%; line-height: 1.7; }
}

/* Small phones (max 390px) */
@media (max-width: 390px) {
  .container { padding: 0 20px !important; }
  .hero-headline { font-size: clamp(44px, 13vw, 60px) !important; }
  .section-title { font-size: clamp(30px, 9vw, 46px) !important; }
  .pricing-card { padding: 28px 18px 32px; }
  .price-num { font-size: 48px; }
  .form-card { padding: 24px 16px; }
  .why-callout { padding: 28px 20px; }
  .callout-quote { font-size: 20px; }
  .hero-stats { gap: 0 !important; }
  .stat-num { font-size: 26px !important; }
  .btn-primary { font-size: 10px !important; padding: 12px 18px !important; }
  .btn-secondary { font-size: 10px !important; padding: 12px 16px !important; }
}

/* Very small phones (max 320px) */
@media (max-width: 320px) {
  .container { padding: 0 16px !important; }
  .hero-headline { font-size: 38px !important; }
  .section-title { font-size: 28px !important; }
  .price-num { font-size: 42px; }
  .callout-stats { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column !important; }
  .btn-primary, .btn-secondary { width: 100% !important; justify-content: center !important; }
}

/* ── FIXED UI ELEMENTS ── */
#loadBar {
  position:fixed;top:0;left:0;height:3px;
  background:linear-gradient(90deg,#2563eb,#3b82f6,#60a5fa);
  z-index:9999;width:0%;transition:width 0.4s ease;box-shadow:0 0 12px #3b82f6;
}
#cursorGlow{
    position:fixed;
    inset:auto;
    width:350px;
    height:350px;
    pointer-events:none;
    z-index:9999;
    border-radius:50%;
    transform:translate(-50%,-50%);
    background:radial-gradient(
        circle,
        rgba(37,99,235,.30) 0%,
        rgba(37,99,235,.15) 25%,
        rgba(37,99,235,.07) 50%,
        transparent 75%
    );
    filter:blur(40px);

}
#scrollProgress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #3b82f6, #60a5fa);
  z-index: 10001;
  width: 0%;
  box-shadow: 0 0 10px #3b82f6;
  transition: width 0.1s linear;
}

/* ── EXTRA ANIMATIONS ── */
.btn-primary, .btn-secondary, .plan-btn, .form-submit, .nav-cta {
  will-change: transform;
}

@keyframes counterShimmer {
  0%   { opacity: 0; transform: translateY(20px) scale(0.8); }
  60%  { opacity: 1; transform: translateY(-4px) scale(1.05); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.stat-num.counted { animation: counterShimmer 0.6s cubic-bezier(0.23,1,0.32,1) forwards; }

.reveal-child {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-child.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
  .pricing-card, .testimonial-card, .gallery-card, .platform-card, .why-callout {
    transform-style: preserve-3d;
    will-change: transform;
  }
}

@keyframes glitchIn {
  0%   { clip-path: inset(80% 0 0 0); transform: skewX(8deg); opacity:0; }
  20%  { clip-path: inset(20% 0 60% 0); transform: skewX(-4deg); opacity:1; }
  40%  { clip-path: inset(50% 0 20% 0); transform: skewX(2deg); }
  60%  { clip-path: inset(10% 0 70% 0); transform: skewX(-1deg); }
  80%  { clip-path: inset(0% 0 0% 0); transform: skewX(0.5deg); }
  100% { clip-path: inset(0% 0 0% 0); transform: skewX(0); }
}
.hero-headline { animation: glitchIn 1s ease-out forwards; }

nav,
section,
footer{
    position:relative;
    z-index:2;
}
#heroCanvas {
  position: fixed !important;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  pointer-events: none;
  opacity: 1;
}

section,
nav,
footer,
.mobile-menu,
.container {
  position: relative;
  z-index: 2;
}
@keyframes sectionFlash {
  0%   { box-shadow: inset 0 0 0px rgba(37,99,235,0); }
  30%  { box-shadow: inset 0 0 80px rgba(37,99,235,0.07); }
  100% { box-shadow: inset 0 0 0px rgba(37,99,235,0); }
}
section.flash-in { animation: sectionFlash 1.2s ease-out; }

@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
.type-cursor {
  display: inline-block;
  width: 3px; height: 0.85em;
  background: #3b82f6;
  margin-left: 4px;
  vertical-align: middle;
  animation: blink 0.8s infinite;
}

@keyframes shake {
  0%,100% { transform: translateX(0); }
  20%      { transform: translateX(-8px); }
  40%      { transform: translateX(8px); }
  60%      { transform: translateX(-4px); }
  80%      { transform: translateX(4px); }
}
.shake { animation: shake 0.4s ease; border-color: #ef4444 !important; }

.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(60px) rotate3d(1,0,0,40deg);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.23,1,0.32,1);
}
.hero-word.in {
  opacity: 1;
  transform: translateY(0) rotate3d(0,0,0,0);
}

@keyframes slideFromLeft {
  from { opacity:0; transform: translateX(-50px); }
  to   { opacity:1; transform: translateX(0); }
}
@keyframes slideFromRight {
  from { opacity:0; transform: translateX(50px); }
  to   { opacity:1; transform: translateX(0); }
}
.section-title.anim-left  { animation: slideFromLeft  0.8s cubic-bezier(0.23,1,0.32,1) both; }
.section-title.anim-right { animation: slideFromRight 0.8s cubic-bezier(0.23,1,0.32,1) both; }

@keyframes flipIn {
  from { opacity:0; transform: perspective(600px) rotateY(25deg) translateY(20px); }
  to   { opacity:1; transform: perspective(600px) rotateY(0deg)  translateY(0); }
}
.testimonial-card.flip-in { animation: flipIn 0.7s cubic-bezier(0.23,1,0.32,1) both; }

@keyframes featureSlide {
  from { opacity:0; transform: translateX(-30px); }
  to   { opacity:1; transform: translateX(0); }
}
.why-feature.feat-in { animation: featureSlide 0.65s cubic-bezier(0.23,1,0.32,1) both; }

@keyframes numPop {
  0%   { transform: scale(0.5); opacity:0; color: var(--accent-bright); text-shadow: 0 0 40px rgba(59,130,246,0.9); }
  60%  { transform: scale(1.2); opacity:1; }
  100% { transform: scale(1);   opacity:0.3; color: var(--accent); text-shadow: none; }
}
.feature-num.num-pop { animation: numPop 0.8s cubic-bezier(0.23,1,0.32,1) both; }

@keyframes underlineGrow {
  from { width: 0; }
  to   { width: 100%; }
}

@keyframes checkPop {
  from { opacity:0; transform: translateX(-20px); }
  to   { opacity:1; transform: translateX(0); }
}
.apply-checklist li.check-in { animation: checkPop 0.5s cubic-bezier(0.23,1,0.32,1) both; }

@keyframes formGlow {
  0%   { box-shadow: 0 0 0px rgba(37,99,235,0); }
  50%  { box-shadow: 0 0 60px rgba(37,99,235,0.18), 0 0 120px rgba(37,99,235,0.08); }
  100% { box-shadow: 0 0 0px rgba(37,99,235,0); }
}
.form-card.form-glow-in { animation: formGlow 1.5s ease; }

@keyframes bounceIn {
  0%   { opacity:0; transform: scale(0.7) translateY(30px); }
  60%  { opacity:1; transform: scale(1.04) translateY(-6px); }
  80%  { transform: scale(0.98) translateY(2px); }
  100% { transform: scale(1) translateY(0); }
}
.platform-card.bounce-in { animation: bounceIn 0.75s cubic-bezier(0.23,1,0.32,1) both; }

@keyframes footerFade {
  from { opacity:0; transform: translateY(24px); }
  to   { opacity:1; transform: translateY(0); }
}
.footer-brand.footer-in   { animation: footerFade 0.7s 0s   ease both; }
.footer-col:nth-child(2).footer-in { animation: footerFade 0.7s 0.1s ease both; }
.footer-col:nth-child(3).footer-in { animation: footerFade 0.7s 0.2s ease both; }
.footer-col:nth-child(4).footer-in { animation: footerFade 0.7s 0.3s ease both; }

@keyframes borderSweep {
  from { background-position: -200% center; }
  to   { background-position: 200% center; }
}

@keyframes rippleAnim {
  to { transform: scale(2.5); opacity: 0; }
}

/* ── MODAL STEP INDICATOR ── */
#appModal {
  display:none;position:fixed;inset:0;z-index:2000;
  background:rgba(5,5,8,0.92);backdrop-filter:blur(16px);overflow-y:auto;
}
.mstep {
  display:flex;flex-direction:column;align-items:center;gap:6px;
}
.mstep-num {
  width:36px;height:36px;border-radius:50%;
  border:2px solid var(--border);
  display:flex;align-items:center;justify-content:center;
  font-family:'Bebas Neue',sans-serif;font-size:16px;
  color:var(--white-dim);
  transition:all 0.3s;
}
.mstep-label {
  font-family:'Barlow Condensed',sans-serif;
  font-size:11px;letter-spacing:2px;text-transform:uppercase;
  color:var(--white-dim);
  transition:color 0.3s;
}
.mstep.active .mstep-num {
  border-color:var(--accent-bright);
  background:var(--accent);
  color:var(--white);
  box-shadow:0 0 16px var(--accent-glow);
}
.mstep.active .mstep-label { color:var(--accent-bright); }
.mstep.done .mstep-num {
  border-color:var(--accent);
  background:rgba(37,99,235,0.15);
  color:var(--accent-bright);
}
.mstep-line {
  width:60px;height:1px;
  background:var(--border);
  margin-bottom:22px;
  flex-shrink:0;
}
@media(max-width:600px){
  #appModal > div { padding:12px; }
  #appModal > div > div { padding:28px 20px; }
  .mstep-line { width:30px; }
  #step1 > div, #step2 > div:first-of-type { grid-template-columns:1fr !important; }
}
