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

:root {
  --bg: #111110;
  --bg-2: #1A1A18;
  --fg: #F2EDE7;
  --fg-muted: #8A8885;
  --accent: #E8780F;
  --accent-warm: #F5A623;
  --border: #2E2E2C;
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── Typography ─── */
.serif { font-family: var(--serif); }

/* ─── Navbar ─── */
.navbar {
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: baseline;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.wordmark {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

/* ─── Hero ─── */
.hero {
  padding: 96px 48px 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 420px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.heat-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}
.heat-orb--primary {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, #E8780F 0%, transparent 70%);
  opacity: 0.6;
  animation: pulse 4s ease-in-out infinite;
}
.heat-orb--secondary {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, #F5A623 0%, transparent 70%);
  opacity: 0.35;
  animation: pulse 4s ease-in-out infinite 1s;
}
.heat-orb--tertiary {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, #fff5e6 0%, transparent 70%);
  opacity: 0.15;
  animation: pulse 4s ease-in-out infinite 2s;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 0.8; }
}
.stat-card {
  position: relative;
  z-index: 1;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 32px;
  text-align: center;
  box-shadow: 0 0 40px rgba(232, 120, 15, 0.15);
}
.stat-number {
  display: block;
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  display: block;
}

/* ─── The Gap ─── */
.the-gap {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 96px 48px;
}
.the-gap-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.gap-badge {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 20px;
  padding: 6px 14px;
  margin-bottom: 28px;
  font-weight: 500;
}
.gap-headline {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.gap-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.gap-body--accent {
  color: var(--fg);
  font-size: 18px;
}

/* ─── How It Works ─── */
.how-it-works {
  padding: 96px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-heading {
  font-family: var(--serif);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 64px;
}
.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.step {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 260px;
}
.step-number {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.5;
  line-height: 1;
}
.step-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.step-content p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}
.step-connector {
  padding: 0 20px;
  flex-shrink: 0;
}

/* ─── Outcomes ─── */
.outcomes {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 96px 48px;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  max-width: 960px;
  margin: 0 auto;
}
.outcome {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.outcome-icon { flex-shrink: 0; }
.outcome h3 {
  font-size: 17px;
  font-weight: 600;
}
.outcome p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ─── Closing ─── */
.closing {
  padding: 120px 48px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.closing-inner {
  position: relative;
  display: inline-block;
}
.closing-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(232, 120, 15, 0.2) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.closing-statement {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.03em;
  position: relative;
  margin-bottom: 28px;
}
.closing-body {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.65;
  position: relative;
}

/* ─── Footer ─── */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 48px;
}
.footer-inner {
  display: flex;
  align-items: baseline;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-wordmark {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
}
.footer-meta {
  font-size: 13px;
  color: var(--fg-muted);
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .navbar { padding: 20px 24px; }
  .hero { padding: 64px 24px 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { min-height: 220px; }
  .the-gap { padding: 64px 24px; }
  .how-it-works { padding: 64px 24px; }
  .steps { flex-direction: column; align-items: flex-start; gap: 32px; }
  .step-connector { display: none; }
  .outcomes { padding: 64px 24px; }
  .outcomes-grid { grid-template-columns: 1fr; gap: 36px; }
  .closing { padding: 80px 24px; }
  .footer { padding: 24px; }
}