/* ── tokens ── */
:root {
  --bg: #06080d;
  --surface: #0e1420;
  --surface2: #131b28;
  --text: #f0f2f7;
  --muted: #8892a4;
  --muted2: #5a6478;
  --line: rgba(255,255,255,.09);
  --line2: rgba(255,255,255,.05);
  --lime: #c8ff00;
  --lime-dim: rgba(200,255,0,.18);
  --cyan: #5de4ff;
  --shadow-sm: 0 4px 16px rgba(0,0,0,.3);
  --shadow: 0 20px 60px rgba(0,0,0,.45);
  --shadow-lg: 0 40px 100px rgba(0,0,0,.55);
  --radius: 24px;
  --radius-sm: 14px;
}

/* ── reset / base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 10% -5%, rgba(200,255,0,.13), transparent),
    radial-gradient(ellipse 50% 35% at 92% 8%, rgba(93,228,255,.11), transparent);
  pointer-events: none;
  z-index: 0;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; }

.section-padding { padding: 100px max(28px, 7vw); position: relative; z-index: 1; }

/* ── cursor glow ── */
.cursor-glow {
  position: fixed;
  width: 480px; height: 480px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(200,255,0,.09), transparent 65%);
  filter: blur(8px);
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: left .06s linear, top .06s linear;
}

/* ── nav ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px max(28px, 7vw);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  background: rgba(6,8,13,.75);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 8px 40px rgba(0,0,0,.4); }
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 900; font-size: 17px; letter-spacing: -.04em;
}
.brand-mark {
  display: grid; place-items: center;
  width: 34px; height: 34px; border-radius: 11px;
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  color: #05100a; font-weight: 900; font-size: 17px;
  flex-shrink: 0;
}
.brand-mark.small { width: 28px; height: 28px; font-size: 14px; border-radius: 9px; }
.nav-links {
  display: flex; gap: 30px;
  color: var(--muted); font-size: 14px; font-weight: 500;
}
.nav-links a { transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  padding: 10px 20px;
  border: 1px solid rgba(200,255,0,.35);
  border-radius: 999px;
  background: rgba(200,255,0,.08);
  color: var(--lime);
  font-weight: 700; font-size: 14px;
  transition: background .2s, border-color .2s;
}
.nav-cta:hover { background: rgba(200,255,0,.14); border-color: rgba(200,255,0,.5); }
.menu-btn {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px;
  background: none; border: 1px solid var(--line); border-radius: 10px; cursor: pointer;
  padding: 8px;
}
.menu-btn span {
  display: block; width: 100%; height: 2px;
  background: var(--text); border-radius: 2px; transition: .25s;
}
.menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── mobile menu ── */
.mobile-menu {
  display: none; position: fixed; inset: 0; top: 72px;
  z-index: 99;
  background: rgba(6,8,13,.97);
  backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; padding: 24px;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  font-size: 28px; font-weight: 800; letter-spacing: -.04em;
  color: var(--muted); padding: 14px 0; width: 100%; text-align: center;
  border-bottom: 1px solid var(--line); transition: color .2s;
}
.mobile-link:hover { color: var(--text); }
.mobile-cta { margin-top: 24px; width: 100%; font-size: 18px; }

/* ── buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 52px; padding: 0 24px; border-radius: 999px;
  font-weight: 800; font-size: 15px; border: none; cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary {
  background: var(--lime); color: #060f02;
  box-shadow: 0 12px 40px rgba(200,255,0,.28);
}
.btn.primary:hover { box-shadow: 0 18px 50px rgba(200,255,0,.38); }
.btn.ghost {
  background: rgba(255,255,255,.07);
  border: 1px solid var(--line);
  color: var(--text);
}
.btn.ghost:hover { background: rgba(255,255,255,.12); }
.inline-btn { height: 44px; padding: 0 20px; font-size: 14px; margin-top: 8px; }
.inline-btn .arrow { transition: transform .2s; }
.inline-btn:hover .arrow { transform: translateX(3px); }

/* ── eyebrow ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--muted); font-weight: 700; font-size: 11px;
  text-transform: uppercase; letter-spacing: .14em;
  margin-bottom: 20px;
}
.eyebrow-line { display: block; width: 28px; height: 2px; background: var(--lime); border-radius: 2px; flex-shrink: 0; }
.center-eyebrow { justify-content: center; }

/* ── headings ── */
h1 {
  font-size: clamp(52px, 7.5vw, 108px);
  line-height: .92; letter-spacing: -.07em;
  margin-bottom: 24px; font-weight: 900;
}
h1 em { font-style: normal; color: var(--lime); }
h2 {
  font-size: clamp(34px, 4.5vw, 62px);
  line-height: .95; letter-spacing: -.055em;
  margin-bottom: 20px; font-weight: 900;
}
h3 { font-size: 20px; font-weight: 700; letter-spacing: -.035em; margin-bottom: 10px; }
p { line-height: 1.7; color: var(--muted); }

/* ── hero ── */
.hero { min-height: calc(100vh - 73px); display: grid; align-items: center; }
.hero-grid {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: 72px; align-items: center;
}
.hero-subtext { font-size: 18px; max-width: 560px; margin-bottom: 0; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 36px 0 40px; }
.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 540px; }
.trust-item {
  padding: 16px 18px;
  border: 1px solid var(--line); border-radius: 18px;
  background: rgba(255,255,255,.04);
}
.trust-item strong { display: block; font-size: 22px; font-weight: 800; letter-spacing: -.04em; color: var(--text); }
.trust-item span { display: block; color: var(--muted); font-size: 12px; margin-top: 3px; }

/* ── hero visual ── */
.hero-visual { position: relative; min-height: 600px; display: grid; place-items: center; }
.phone-card {
  width: min(360px, 100%);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 38px;
  background: linear-gradient(160deg, rgba(255,255,255,.11) 0%, rgba(255,255,255,.04) 100%);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,.12);
  padding: 28px;
  position: relative; z-index: 2;
}
.phone-header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 4px;
}
.phone-pulse {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(200,255,0,.18), 0 0 0 10px rgba(200,255,0,.07);
  animation: pulse-ring 2.4s ease-in-out infinite;
}
@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 0 5px rgba(200,255,0,.18), 0 0 0 10px rgba(200,255,0,.07); }
  50% { box-shadow: 0 0 0 8px rgba(200,255,0,.1), 0 0 0 16px rgba(200,255,0,.03); }
}
.phone-label { font-size: 13px; color: var(--muted); font-weight: 600; flex: 1; }
.phone-time { font-size: 11px; color: var(--muted2); }

/* ring */
.score-ring { position: relative; display: grid; place-items: center; margin: 36px auto; width: 200px; height: 200px; }
.score-ring svg { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
.score-ring circle { fill: none; stroke-width: 12; }
.ring-track { stroke: rgba(255,255,255,.07); }
.ring-progress {
  stroke: url(#ringGrad);
  stroke-dasharray: 414;
  stroke-dashoffset: 74;
  stroke-linecap: round;
  filter: drop-shadow(0 0 10px rgba(200,255,0,.5));
}
.ring-inner { position: absolute; text-align: center; }
.ring-inner strong { display: block; font-size: 58px; font-weight: 900; letter-spacing: -.06em; line-height: 1; color: var(--text); }
.ring-inner span { display: block; font-size: 12px; color: var(--muted); margin-top: 2px; }

/* mini stats */
.mini-stats { display: grid; gap: 14px; }
.mini-stat { display: flex; align-items: center; gap: 10px; }
.mini-stat span { font-size: 12px; color: var(--muted); width: 58px; flex-shrink: 0; }
.bar-wrap { flex: 1; height: 7px; border-radius: 999px; background: rgba(255,255,255,.08); overflow: hidden; }
.bar { display: block; height: 100%; width: var(--w); border-radius: 999px; background: linear-gradient(90deg, var(--lime), var(--cyan)); }
.mini-stat em { font-style: normal; font-size: 11px; color: var(--muted2); width: 32px; text-align: right; }

/* floating metric cards */
.metric-card {
  position: absolute;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(10,16,28,.88);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  z-index: 3;
}
.metric-card.float-top { top: 40px; left: -10px; }
.metric-card.float-bottom { bottom: 60px; right: -10px; }
.metric-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--lime); flex-shrink: 0; }
.metric-icon { color: var(--lime); flex-shrink: 0; }
.metric-label { display: block; font-size: 11px; color: var(--muted); }
.metric-value { display: block; font-size: 15px; font-weight: 700; letter-spacing: -.03em; color: var(--text); }

/* ── pillars strip ── */
.pillars-strip {
  border-block: 1px solid var(--line);
  padding: 22px max(28px, 7vw);
  overflow: hidden;
  position: relative; z-index: 1;
}
.pillars-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 18px; flex-wrap: wrap;
  color: rgba(255,255,255,.38);
  font-weight: 800; font-size: 12px;
  text-transform: uppercase; letter-spacing: .13em;
}
.pillars-inner .dot { color: var(--muted2); font-size: 18px; line-height: 0; }

/* ── method / split ── */
.split-layout {
  display: grid; grid-template-columns: .85fr 1.15fr;
  gap: 64px; align-items: start;
}
.split-copy { position: sticky; top: 120px; }
.split-copy p { font-size: 17px; max-width: 460px; margin-bottom: 24px; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.feature-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.07) 0%, rgba(255,255,255,.03) 100%);
  box-shadow: var(--shadow-sm);
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200,255,0,.3);
  box-shadow: 0 12px 40px rgba(0,0,0,.4), 0 0 0 1px rgba(200,255,0,.1);
}
.step-num { display: block; color: var(--lime); font-size: 13px; font-weight: 800; letter-spacing: .05em; margin-bottom: 12px; }
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.65; margin: 0; }

/* ── program section ── */
.program-section { background: var(--surface); border-block: 1px solid var(--line); }
.section-heading { text-align: center; max-width: 680px; margin: 0 auto 36px; }
.section-heading h2 { margin-bottom: 12px; }
.section-sub { font-size: 17px; max-width: 520px; margin: 0 auto; }
.program-tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 20px; }
.tab {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  color: var(--muted);
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700; font-size: 14px; cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.tab.active { background: var(--text); color: #06080d; border-color: transparent; }
.tab:hover:not(.active) { background: rgba(255,255,255,.09); color: var(--text); }
.tab-panels { max-width: 760px; margin: 0 auto; }
.panel { display: none; padding: 44px; text-align: center; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface2); }
.panel.active { display: block; }
.panel-icon {
  display: grid; place-items: center;
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--lime-dim); border: 1px solid rgba(200,255,0,.2);
  color: var(--lime); margin: 0 auto 20px;
}
.panel h3 { font-size: 24px; margin-bottom: 12px; color: var(--text); }
.panel p { max-width: 520px; margin: 0 auto; font-size: 16px; }

/* ── phases ── */
.phases-section { background: var(--surface); border-block: 1px solid var(--line); }
.phases-timeline { position: relative; max-width: 860px; margin: 0 auto; display: grid; gap: 24px; }
.phase-connector {
  display: none;
}
.phase-card {
  display: grid; grid-template-columns: 100px 1fr;
  gap: 0;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.02) 100%);
  overflow: hidden;
  transition: border-color .25s, transform .25s;
}
.phase-card:hover { border-color: rgba(255,255,255,.18); transform: translateY(-3px); }
.phase-badge {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 28px 16px; gap: 6px;
  background: rgba(255,255,255,.04);
  border-right: 1px solid var(--line);
}
.phase-badge.accent { background: rgba(200,255,0,.07); border-color: rgba(200,255,0,.18); }
.phase-num {
  font-size: 28px; font-weight: 900; letter-spacing: -.05em; color: var(--muted2);
}
.phase-badge.accent .phase-num { color: var(--lime); }
.phase-weeks { font-size: 11px; color: var(--muted2); font-weight: 600; text-align: center; line-height: 1.3; }
.phase-badge.accent .phase-weeks { color: rgba(200,255,0,.7); }
.phase-content { padding: 28px 32px; }
.phase-header { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 14px; }
.phase-icon {
  display: grid; place-items: center; flex-shrink: 0;
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,.07); border: 1px solid var(--line);
  color: var(--muted);
}
.phase-icon.accent { background: rgba(200,255,0,.1); border-color: rgba(200,255,0,.2); color: var(--lime); }
.phase-header h3 { margin-bottom: 3px; font-size: 20px; }
.phase-tagline { font-size: 13px; color: var(--muted2); margin: 0; line-height: 1.4; }
.phase-desc { font-size: 14px; line-height: 1.7; color: var(--muted); margin-bottom: 16px; }
.phase-bullets {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.phase-bullets li {
  font-size: 12px; font-weight: 600;
  padding: 6px 12px; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(255,255,255,.05);
  color: var(--muted);
}

/* ── adaptability ── */
.adapt-section { background: var(--bg); }
.adapt-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 1000px; margin: 0 auto; }
.adapt-card {
  padding: 32px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.025) 100%);
  transition: border-color .25s, transform .25s;
}
.adapt-card:hover { border-color: rgba(200,255,0,.25); transform: translateY(-4px); }
.adapt-icon {
  display: grid; place-items: center;
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(200,255,0,.09); border: 1px solid rgba(200,255,0,.18);
  color: var(--lime); margin-bottom: 18px;
}
.adapt-card h3 { font-size: 18px; margin-bottom: 10px; }
.adapt-card > p { font-size: 14px; line-height: 1.7; color: var(--muted); margin-bottom: 16px; }
.adapt-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 8px;
}
.adapt-list li {
  font-size: 13px; color: var(--muted); padding-left: 18px; position: relative; line-height: 1.5;
}
.adapt-list li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--lime); font-size: 11px; top: 1px;
}

/* ── testimonials ── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-bottom: 48px;
}
.testimonial-card {
  padding: 32px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.02) 100%);
  display: flex; flex-direction: column; gap: 18px;
  transition: transform .25s, border-color .25s;
}
.testimonial-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.16); }
.stars { color: var(--lime); font-size: 14px; letter-spacing: 2px; }
blockquote { font-size: 15px; line-height: 1.7; color: var(--muted); flex: 1; font-style: normal; }
.testimonial-card footer { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  color: #060f02; font-weight: 800; font-size: 14px;
  display: grid; place-items: center; flex-shrink: 0;
}
.testimonial-card footer strong { display: block; font-size: 14px; color: var(--text); }
.testimonial-card footer span { display: block; font-size: 12px; color: var(--muted2); }

.results-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 0; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); overflow: hidden;
}
.stat-item { flex: 1; padding: 32px 24px; text-align: center; }
.stat-item strong { display: block; font-size: 42px; font-weight: 900; letter-spacing: -.06em; color: var(--text); margin-bottom: 4px; }
.stat-item span { font-size: 13px; color: var(--muted); }
.stat-divider { width: 1px; align-self: stretch; background: var(--line); }

/* ── apply section ── */
.apply-section { background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(200,255,0,.06), transparent 60%); }
.apply-wrapper {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 60px; align-items: start;
}
.apply-copy h2 { margin-bottom: 16px; }
.apply-copy > p { font-size: 17px; margin-bottom: 28px; max-width: 440px; }
.apply-perks { list-style: none; padding: 0; display: grid; gap: 14px; }
.apply-perks li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 500; color: var(--text);
}
.apply-perks li svg { color: var(--lime); flex-shrink: 0; }

/* ── email composer ── */
.email-composer {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.composer-chrome {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 20px;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid var(--line);
}
.chrome-dots { display: flex; gap: 6px; }
.chrome-dots span {
  width: 11px; height: 11px; border-radius: 50%;
  background: rgba(255,255,255,.12);
}
.chrome-dots span:nth-child(1) { background: #ff5f57; }
.chrome-dots span:nth-child(2) { background: #febc2e; }
.chrome-dots span:nth-child(3) { background: #28c840; }
.chrome-label {
  flex: 1; text-align: center;
  font-size: 13px; font-weight: 600; color: var(--muted);
  margin-right: 52px;
}
.composer-header { padding: 4px 0; border-bottom: 1px solid var(--line); }
.composer-row {
  display: flex; align-items: center; gap: 0;
  padding: 13px 20px; border-bottom: 1px solid var(--line2);
}
.composer-row:last-child { border-bottom: none; }
.composer-field-label {
  font-size: 13px; font-weight: 600; color: var(--muted2);
  width: 60px; flex-shrink: 0;
}
.composer-field-value {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--muted);
}
.to-avatar {
  display: grid; place-items: center;
  width: 22px; height: 22px; border-radius: 6px;
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  color: #060f02; font-weight: 800; font-size: 11px;
}
.composer-input {
  flex: 1; background: none; border: none; outline: none;
  color: var(--text); font-size: 14px; font-family: inherit;
  padding: 0;
}
.composer-input::placeholder { color: var(--muted2); }
.subject-row { padding-top: 14px; }
.composer-subject {
  font-size: 14px; font-weight: 600; color: var(--text);
  transition: color .2s;
}
.composer-body {
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--line);
}
.body-line {
  font-size: 14px; color: var(--muted); line-height: 1.6;
  margin-bottom: 12px;
}
.body-line:last-child { margin-bottom: 0; }
.body-muted { color: var(--muted2); font-size: 13px; }
.goal-options {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px; margin: 10px 0 4px;
}
.goal-option {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer; font-size: 13px; color: var(--muted);
  transition: border-color .2s, background .2s, color .2s;
  user-select: none;
}
.goal-option input[type="radio"] { display: none; }
.goal-option:hover { border-color: rgba(200,255,0,.25); color: var(--text); }
.goal-option:has(input:checked) {
  border-color: var(--lime);
  background: rgba(200,255,0,.08);
  color: var(--lime);
}
.composer-footer {
  padding: 16px 20px;
  display: flex; align-items: center; gap: 16px;
}
.send-btn { height: 44px; padding: 0 20px; font-size: 14px; }
.composer-privacy { font-size: 12px; color: var(--muted2); }
.send-error { font-size: 12px; color: #ff6b6b; width: 100%; margin-top: 4px; }
.spin-icon { animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── sent overlay ── */
.sent-overlay {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(6,8,13,.85); backdrop-filter: blur(16px);
  place-items: center;
}
.sent-overlay.show { display: grid; }
.sent-card {
  max-width: 420px; width: 90%;
  padding: 52px 40px;
  border: 1px solid rgba(200,255,0,.3);
  border-radius: 32px;
  background: var(--surface);
  text-align: center;
  box-shadow: 0 0 80px rgba(200,255,0,.15), var(--shadow-lg);
  animation: pop-in .35s cubic-bezier(.34,1.56,.64,1);
}
@keyframes pop-in {
  from { opacity: 0; transform: scale(.85); }
  to   { opacity: 1; transform: scale(1); }
}
.sent-icon {
  width: 72px; height: 72px; border-radius: 22px;
  background: var(--lime-dim); border: 1px solid rgba(200,255,0,.3);
  color: var(--lime); margin: 0 auto 24px;
  display: grid; place-items: center;
}
.sent-card h3 { font-size: 28px; font-weight: 900; letter-spacing: -.05em; color: var(--text); margin-bottom: 12px; }
.sent-card p { font-size: 15px; max-width: 320px; margin: 0 auto 28px; }

/* ── footer ── */
.footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  padding: 28px max(28px, 7vw);
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.footer-brand { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 15px; color: var(--text); }
.footer-tagline { font-size: 13px; }
.footer-copy { font-size: 13px; }

/* ── scroll reveal ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .18s; }
.delay-3 { transition-delay: .26s; }

/* ── gradient defs (SVG) ── */
svg defs { display: none; }

/* ── responsive ── */
@media (max-width: 1024px) {
  .hero-grid { gap: 48px; }
  .split-layout { gap: 48px; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .menu-btn { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 360px; }
  .metric-card.float-top, .metric-card.float-bottom { display: none; }
  .split-layout { grid-template-columns: 1fr; }
  .split-copy { position: static; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .adapt-grid { grid-template-columns: 1fr; }
  .phase-card { grid-template-columns: 80px 1fr; }
  .phase-content { padding: 22px 20px; }
  .apply-wrapper { grid-template-columns: 1fr; }
  .results-stats { flex-direction: column; }
  .stat-divider { width: 100%; height: 1px; align-self: auto; }
  h1 { font-size: 54px; }
  h2 { font-size: 38px; }
  .section-padding { padding: 72px 24px; }
  .trust-row { grid-template-columns: repeat(3, 1fr); }
  .composer-footer { flex-wrap: wrap; gap: 12px; }
  .composer-privacy { width: 100%; text-align: center; }
}
@media (max-width: 600px) {
  .feature-grid { grid-template-columns: 1fr; }
  .goal-options { grid-template-columns: 1fr; }
  .trust-row { grid-template-columns: 1fr; }
  .footer { flex-direction: column; align-items: flex-start; gap: 8px; }
  .pillars-inner .dot { display: none; }
  h1 { font-size: 44px; }
  .phase-card { grid-template-columns: 1fr; }
  .phase-badge { flex-direction: row; justify-content: flex-start; padding: 16px 20px; border-right: none; border-bottom: 1px solid var(--line); gap: 10px; }
  .phase-num { font-size: 20px; }
  .phase-bullets { flex-direction: column; }
}
