/* ── Variables ── */
:root {
  --navy: #0D1B2A;
  --cream: #F9F5EE;
  --terracotta: #C8623B;
  --terracotta-light: #E8825A;
  --slate: #3A4A5C;
  --muted: #8A9AAB;
  --border: #E2D9CA;
  --white: #FFFFFF;
  --radius: 10px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--cream);
  color: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Navbar ── */
.navbar {
  padding: 1.25rem 2.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--navy);
}
.navbar-inner { display: flex; align-items: center; }
.nav-logo {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--cream);
  letter-spacing: -0.02em;
}

/* ── Hero ── */
.hero {
  background: var(--navy);
  padding: 5rem 2.5rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(200,98,59,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
}
.hero-headline {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--cream);
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 1.0625rem;
  color: rgba(249,245,238,0.7);
  line-height: 1.7;
  max-width: 480px;
}

/* ── Funnel Widget ── */
.funnel-widget {
  background: rgba(249,245,238,0.05);
  border: 1px solid rgba(249,245,238,0.12);
  border-radius: var(--radius);
  padding: 1.5rem;
  font-family: 'DM Sans', sans-serif;
}
.funnel-step {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  margin-bottom: 0.5rem;
  border: 1px solid rgba(249,245,238,0.08);
  background: rgba(249,245,238,0.04);
}
.funnel-step.active { border-color: var(--terracotta); background: rgba(200,98,59,0.12); }
.funnel-label { font-size: 0.8125rem; color: rgba(249,245,238,0.65); font-weight: 500; }
.funnel-count {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--cream);
  min-width: 28px;
  text-align: right;
}
.funnel-msg {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(200,98,59,0.18);
  border-radius: 6px;
  border: 1px solid rgba(200,98,59,0.3);
}
.msg-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta-light);
  flex-shrink: 0;
  margin-top: 0.3rem;
}
.funnel-msg span { font-size: 0.75rem; color: rgba(249,245,238,0.85); line-height: 1.5; }

/* ── Stats Row ── */
.stats-row {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: stretch;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2.5rem;
}
.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  text-align: center;
}
.stat-number {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--terracotta);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.375rem;
}
.stat-label {
  font-size: 0.8125rem;
  color: var(--slate);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px;
  background: var(--border);
  margin: 1.5rem 0;
}

/* ── How Section ── */
.how-section {
  padding: 5rem 2.5rem;
  max-width: 1140px;
  margin: 0 auto;
}
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}
.section-headline {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 640px;
  margin-bottom: 3rem;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.step-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--terracotta);
  margin-bottom: 1rem;
}
.how-step h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.625rem;
  letter-spacing: -0.01em;
}
.how-step p { font-size: 0.9375rem; color: var(--slate); line-height: 1.65; }

/* ── Features Grid ── */
.features-section {
  padding: 4rem 2.5rem 5rem;
  background: var(--navy);
}
.features-section .section-headline { color: var(--cream); }
.features-section .section-label { color: var(--terracotta-light); }
.features-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: rgba(249,245,238,0.04);
  border: 1px solid rgba(249,245,238,0.1);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: border-color 0.2s, background 0.2s;
}
.feature-card:hover { border-color: rgba(249,245,238,0.25); background: rgba(249,245,238,0.07); }
.feature-icon {
  color: var(--terracotta-light);
  margin-bottom: 1rem;
}
.feature-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.feature-card p { font-size: 0.875rem; color: rgba(249,245,238,0.6); line-height: 1.6; }

/* ── Outcomes ── */
.outcomes-section {
  padding: 5rem 2.5rem;
  max-width: 1140px;
  margin: 0 auto;
}
.outcomes-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.outcomes-text p {
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.outcomes-quote {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  position: relative;
}
.quote-mark {
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--terracotta);
  line-height: 0.8;
  margin-bottom: 0.75rem;
}
blockquote {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 1.25rem;
}
cite {
  font-size: 0.8125rem;
  color: rgba(249,245,238,0.5);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* ── Closing ── */
.closing-section {
  background: var(--terracotta);
  padding: 5rem 2.5rem;
}
.closing-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.closing-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}

/* ── Footer ── */
.site-footer {
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 1.75rem 2.5rem;
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--navy);
}
.footer-tagline { font-size: 0.8125rem; color: var(--muted); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .how-steps { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .outcomes-inner { grid-template-columns: 1fr; }
  .stats-row { flex-wrap: wrap; }
  .stat-item { flex: 1 1 45%; }
  .stat-divider { display: none; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .navbar, .footer-inner { padding-left: 1.25rem; padding-right: 1.25rem; }
  .hero, .how-section, .features-section, .outcomes-section, .closing-section { padding-left: 1.25rem; padding-right: 1.25rem; }
  .footer-inner { flex-direction: column; gap: 0.25rem; text-align: center; }
}