/* =============================================
   THE FOCUS MOVEMENT — SCROLL TO SKILL BOOTCAMP
   Design System: Layered Depth + Neon Glow CTAs
   Fonts: Anton (headings) + DM Sans (body)
   ============================================= */

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

:root {
  --bg:        #08070F;
  --surface:   #0F0E1A;
  --primary:   #1E1B4B;
  --secondary: #3730A3;
  --cta:       #A5F3FC;
  --text:      #EEF2FF;
  --text-muted:#94A3B8;
  --border:    #312E81;
  --urgency:   #F59E0B;
  --font-head: 'Anton', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* === CONTAINER === */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  transition: all 200ms ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--cta);
  color: #020617;
  padding: 14px 32px;
  font-size: 16px;
  box-shadow: 0 0 0 0 rgba(165, 243, 252, 0.4);
}
.btn-primary:hover {
  background: #67E8F9;
  box-shadow: 0 0 24px rgba(165, 243, 252, 0.35);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  padding: 14px 24px;
  font-size: 16px;
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  color: var(--text);
  border-color: var(--cta);
}

.btn-nav {
  background: var(--cta);
  color: #020617;
  padding: 10px 22px;
  font-size: 14px;
}
.btn-nav:hover {
  background: #67E8F9;
  box-shadow: 0 0 16px rgba(165, 243, 252, 0.3);
}

.btn-lg { padding: 18px 36px; font-size: 17px; }
.btn-xl { padding: 20px 40px; font-size: 18px; width: 100%; }

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(8, 7, 15, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 300ms ease;
}
.nav.scrolled { border-bottom-color: var(--border); }

/* === MOBILE NAV === */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: background 200ms ease;
}
.nav-hamburger:hover { background: rgba(255,255,255,0.06); }

.nav-ham-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: transform 280ms ease, opacity 200ms ease;
  transform-origin: center;
}

/* X animation when nav is open */
.nav.nav-open .nav-ham-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.nav-open .nav-ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav.nav-open .nav-ham-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Drawer */
.nav-drawer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms ease;
  background: var(--surface);
  border-bottom: 1px solid transparent;
  transition: max-height 320ms ease, border-color 320ms ease;
}
.nav.nav-open .nav-drawer {
  max-height: 360px;
  border-bottom-color: var(--border);
}

.nav-drawer-inner {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 1080px;
  margin: 0 auto;
}

.nav-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 16px;
}

.nav-drawer-links a {
  display: block;
  padding: 12px 4px;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(49,46,129,0.4);
  transition: color 150ms ease;
}
.nav-drawer-links a:last-child { border-bottom: none; }
.nav-drawer-links a:hover { color: var(--cta); }

.nav-drawer-cta {
  width: 100%;
  margin-top: 8px;
  justify-content: center;
}

@media (max-width: 640px) {
  .nav-hamburger { display: flex; }
  .nav-inner .btn-nav { display: none; }
}

.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 140px 24px 80px;
  text-align: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse at center, rgba(49, 46, 129, 0.4) 0%, transparent 70%);
  pointer-events: none;
  animation: heroGlowPulse 6s ease-in-out infinite;
}

@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -60%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%, -60%) scale(1.06); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  animation: heroFadeUp 0.6s ease-out both;
}

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

.badge {
  display: inline-block;
  background: rgba(49, 46, 129, 0.5);
  border: 1px solid var(--border);
  color: var(--cta);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(56px, 11vw, 104px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(17px, 2.5vw, 21px);
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 36px;
}

/* === COUNTDOWN === */
.countdown-wrapper {
  margin-bottom: 40px;
}

.countdown-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.countdown {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(30, 27, 75, 0.6);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  min-width: 72px;
  backdrop-filter: blur(8px);
}

.countdown-num {
  font-family: var(--font-head);
  font-size: 40px;
  line-height: 1;
  color: var(--urgency);
  animation: countdown-glow 1s ease-in-out infinite alternate;
}

@keyframes countdown-glow {
  from { text-shadow: 0 0 8px rgba(245, 158, 11, 0.4); }
  to   { text-shadow: 0 0 20px rgba(245, 158, 11, 0.7); }
}

.countdown-unit-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

.countdown-sep {
  font-family: var(--font-head);
  font-size: 32px;
  color: var(--border);
  margin-bottom: 16px;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 440px;
  margin-bottom: 16px;
}

.hero-trust {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* Social proof strip */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(165, 243, 252, 0.06);
  border: 1px solid rgba(165, 243, 252, 0.15);
  border-radius: 40px;
  padding: 8px 18px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.hero-social-proof strong { color: var(--cta); }
.hero-proof-dots {
  display: flex;
  gap: -4px;
}
.proof-dot {
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  background: var(--border);
  margin-right: -6px;
}
.proof-dot:nth-child(1) { background: #6366f1; }
.proof-dot:nth-child(2) { background: #8b5cf6; }
.proof-dot:nth-child(3) { background: #a78bfa; }

/* Hero mockup image */
.hero-mockup-wrap {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}
.hero-mockup {
  width: 300px;
  max-width: 92%;
  border-radius: 20px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(165, 243, 252, 0.1), 0 0 60px rgba(165, 243, 252, 0.04);
}

/* Method section visual */
.section-visual {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}
.section-visual-img {
  width: 100%;
  max-width: 560px;
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(165, 243, 252, 0.08);
}

/* Pricing section visual */
.pricing-visual {
  margin-bottom: 48px;
  display: flex;
  justify-content: center;
}
.pricing-visual-img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(165, 243, 252, 0.08);
}

/* Logo image */
.logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollBounce 2s ease-in-out infinite;
  opacity: 0.5;
}

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

/* === SECTIONS === */
.section {
  padding: 100px 0;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cta);
  margin-bottom: 16px;
}

.section-headline {
  font-family: var(--font-head);
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.65;
  margin-bottom: 56px;
}

/* === PROBLEM SECTION === */
.problem-section { background: var(--surface); }

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
  margin-top: 48px;
}

.stat-card {
  background: rgba(30, 27, 75, 0.4);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
}

.stat-num {
  font-family: var(--font-head);
  font-size: clamp(60px, 8vw, 96px);
  color: var(--cta);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}

.problem-text p {
  margin-bottom: 16px;
  color: var(--text-muted);
}
.problem-lead {
  font-family: var(--font-head);
  font-size: 28px !important;
  color: var(--text) !important;
  line-height: 1.2;
  margin-bottom: 20px !important;
}
.problem-emphasis {
  color: var(--text) !important;
  font-weight: 700;
  font-size: 18px;
}

.study-card {
  background: rgba(165, 243, 252, 0.05);
  border: 1px solid rgba(165, 243, 252, 0.2);
  border-radius: 12px;
  padding: 28px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.study-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(165, 243, 252, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.study-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cta);
  margin-bottom: 8px;
}

.study-quote {
  font-size: 16px;
  color: var(--text);
  font-style: italic;
  margin-bottom: 8px;
  line-height: 1.65;
}

.study-note {
  font-size: 14px;
  color: var(--text-muted);
}

/* === METHOD SECTION === */
.method-section { background: var(--bg); }

.focus-method {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.focus-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  overflow: hidden;
  transition: border-color 250ms ease, transform 250ms ease;
}
.focus-card:hover {
  border-color: rgba(165, 243, 252, 0.3);
  transform: translateX(6px);
}

.focus-letter {
  font-family: var(--font-head);
  font-size: 80px;
  line-height: 1;
  color: rgba(55, 48, 163, 0.35);
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
  letter-spacing: -2px;
}

.focus-title {
  font-family: var(--font-head);
  font-size: 28px;
  color: var(--text);
  margin-bottom: 6px;
}

.focus-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 560px;
}

.focus-week {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cta);
  background: rgba(165, 243, 252, 0.1);
  padding: 4px 10px;
  border-radius: 4px;
}

/* === INSIDE SECTION === */
.inside-section { background: var(--surface); }

.inside-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}

.inside-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: rgba(30, 27, 75, 0.3);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 200ms ease, transform 200ms ease;
}
.inside-item:hover {
  border-color: rgba(165, 243, 252, 0.25);
  transform: translateY(-2px);
}

.inside-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(165, 243, 252, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inside-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.inside-text p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === MID-PAGE CAPTURE === */
.midpage-capture {
  background: rgba(30, 27, 75, 0.4);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.midpage-title {
  font-family: var(--font-head);
  font-size: 36px;
  color: var(--text);
  margin-bottom: 10px;
}

.midpage-sub {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.form-trust {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* === EMAIL FORMS === */
.email-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.email-form input[type="email"] {
  background: rgba(8, 7, 15, 0.8);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 14px 18px;
  width: 100%;
  outline: none;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.email-form input[type="email"]::placeholder { color: var(--text-muted); }
.email-form input[type="email"]:focus {
  border-color: rgba(165, 243, 252, 0.5);
  box-shadow: 0 0 0 3px rgba(165, 243, 252, 0.08);
}

/* === PROOF SECTION === */
.proof-section { background: var(--bg); }

.proof-stat {
  text-align: center;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.proof-num {
  font-family: var(--font-head);
  font-size: clamp(64px, 10vw, 110px);
  line-height: 1;
  color: var(--cta);
}

.proof-label {
  font-size: 17px;
  color: var(--text-muted);
}

.proof-section .section-headline {
  text-align: center;
  margin-bottom: 48px;
}

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

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 200ms ease, transform 200ms ease;
}
.testimonial-card:hover {
  border-color: rgba(165, 243, 252, 0.2);
  transform: translateY(-3px);
}

.testimonial-stars {
  color: var(--urgency);
  font-size: 14px;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
}

.testimonial-stat {
  font-size: 13px;
  color: var(--cta);
  font-weight: 600;
}

/* === FIT SECTION === */
.fit-section { background: var(--surface); }

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.fit-card {
  border-radius: 12px;
  padding: 32px 28px;
  border: 2px solid;
}

.fit-yes {
  background: rgba(165, 243, 252, 0.04);
  border-color: rgba(165, 243, 252, 0.2);
}

.fit-no {
  background: rgba(245, 158, 11, 0.04);
  border-color: rgba(245, 158, 11, 0.2);
}

.fit-card-title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.fit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fit-list li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.55;
  padding-left: 20px;
  position: relative;
}

.fit-yes .fit-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--cta);
  font-weight: 700;
}

.fit-no .fit-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--urgency);
  font-weight: 700;
}

.fit-note {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(245, 158, 11, 0.15);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
}

/* === PRICING SECTION === */
.pricing-section { background: var(--bg); text-align: center; }

.pricing-card {
  max-width: 560px;
  margin: 48px auto 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px 40px;
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cta);
  color: #020617;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 20px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-value-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
  text-align: left;
}

.pricing-value-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-muted);
}

.pricing-display {
  text-align: center;
  margin-bottom: 28px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-amount {
  font-family: var(--font-head);
  font-size: 72px;
  color: var(--text);
  line-height: 1;
}

.pricing-term {
  font-size: 16px;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}

.pricing-launch-note {
  font-size: 13px;
  color: var(--urgency);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: -8px;
  margin-bottom: 28px;
}

.pricing-form { margin-bottom: 24px; }

.pricing-trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

/* === FOOTER === */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 48px 0;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-tagline {
  font-size: 15px;
  color: var(--text-muted);
}

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

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 200ms;
}
.footer-links a:hover { color: var(--text); }

.footer-copy {
  font-size: 12px;
  color: rgba(148, 163, 184, 0.5);
}

/* === STICKY BAR === */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 14, 26, 0.97);
  border-top: 1px solid var(--border);
  padding: 12px 24px;
  z-index: 90;
  transform: translateY(100%);
  transition: transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(12px);
}
.sticky-bar.visible { transform: translateY(0); }

.sticky-bar-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-bar-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.sticky-btn {
  padding: 10px 22px;
  font-size: 15px;
  white-space: nowrap;
}

/* === EXIT POPUP === */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 7, 15, 0.85);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease;
  backdrop-filter: blur(4px);
}
.overlay.active {
  opacity: 1;
  pointer-events: all;
}

.popup {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  position: relative;
  text-align: center;
  transform: scale(0.95) translateY(12px);
  transition: transform 300ms ease;
}
.overlay.active .popup {
  transform: scale(1) translateY(0);
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--text-muted);
  transition: color 200ms;
}
.popup-close:hover { color: var(--text); }

.popup-badge {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cta);
  margin-bottom: 12px;
}

.popup-title {
  font-family: var(--font-head);
  font-size: 48px;
  color: var(--text);
  line-height: 1;
  margin-bottom: 12px;
}

.popup-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.popup-dismiss {
  margin-top: 16px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(148, 163, 184, 0.5);
  cursor: pointer;
  transition: color 200ms;
  text-decoration: underline;
}
.popup-dismiss:hover { color: var(--text-muted); }

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 350ms ease, transform 350ms ease;
  transition-delay: var(--delay, 0ms);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .hero-ctas {
    width: 100%;
  }

  .btn-lg { width: 100%; }

  .focus-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .focus-letter {
    font-size: 56px;
    right: 16px;
  }

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

  .sticky-bar-text { display: none; }

  .study-card {
    flex-direction: column;
  }

  .midpage-capture {
    padding: 32px 20px;
  }

  .countdown-unit {
    min-width: 58px;
    padding: 10px 12px;
  }
  .countdown-num { font-size: 30px; }

  .popup { padding: 40px 24px; }
  .popup-title { font-size: 36px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 52px; }
  .section-headline { font-size: 34px; }
  .proof-num { font-size: 72px; }
  .pricing-amount { font-size: 56px; }

  .countdown {
    gap: 4px;
  }
  .countdown-unit {
    min-width: 52px;
    padding: 8px 10px;
  }
  .countdown-sep { font-size: 22px; }
}
