:root {
  --bg: #FAFAF8;
  --fg: #1A1A1A;
  --accent: #FF4D00;
  --accent-dim: #FFF0EB;
  --muted: #6B6B6B;
  --border: #E0E0D8;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

/* NAV */
.nav {
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
  padding: 3px 10px;
  border: 1px solid var(--border);
  border-radius: 20px;
}

/* HERO */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 48px 96px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 12px;
  max-width: 460px;
}
.hero-sub-sub {
  font-size: 15px;
  color: var(--fg);
  font-weight: 500;
  max-width: 460px;
}

/* PULSE GRAPHIC */
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.pulse-graphic {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pulse-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  opacity: 0;
  animation: ring-expand 3s ease-out infinite;
}
.pulse-ring-1 { width: 100px; height: 100px; animation-delay: 0s; }
.pulse-ring-2 { width: 160px; height: 160px; animation-delay: 1s; }
.pulse-ring-3 { width: 220px; height: 220px; animation-delay: 2s; }
@keyframes ring-expand {
  0% { opacity: 0.8; transform: scale(0.8); }
  100% { opacity: 0; transform: scale(1); }
}
.pulse-center {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pulse-icon {
  color: white;
  font-size: 28px;
  line-height: 1;
}

/* STATS */
.hero-stats {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: white;
}
.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
}
.stat-row:last-child { border-bottom: none; }
.stat-label {
  font-size: 13px;
  color: var(--muted);
}
.stat-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
}

/* HOW IT WORKS */
.how-it-works {
  padding: 96px 48px;
  border-top: 1px solid var(--border);
  background: white;
}
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 64px;
  max-width: 540px;
}
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 900px;
}
.step {
  flex: 1;
  padding: 0 32px 0 0;
}
.step-connector {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin-top: 24px;
  flex-shrink: 0;
}
.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.3;
}
.step-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.step-content p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* CAPABILITIES */
.capabilities {
  padding: 96px 48px;
  border-top: 1px solid var(--border);
}
.cap-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.cap-card {
  background: var(--bg);
  padding: 40px 36px;
}
.cap-icon {
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 16px;
}
.cap-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.cap-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* MANIFESTO */
.manifesto {
  padding: 96px 48px;
  border-top: 1px solid var(--border);
  background: var(--fg);
  color: white;
}
.manifesto-inner {
  max-width: 720px;
  margin: 0 auto;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 600;
  font-style: italic;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: white;
  margin-bottom: 40px;
}
.manifesto-body {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 20px;
}

/* CLOSING */
.closing {
  padding: 96px 48px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.closing-inner {
  max-width: 600px;
  margin: 0 auto;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}

/* FOOTER */
.footer {
  padding: 28px 48px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--fg);
}
.footer-tagline {
  font-size: 13px;
  color: var(--muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav, .footer { padding: 20px 24px; }
  .hero {
    padding: 56px 24px 64px;
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-right { order: -1; }
  .how-it-works, .capabilities, .manifesto, .closing { padding: 64px 24px; }
  .steps { flex-direction: column; gap: 40px; }
  .step-connector { display: none; }
  .step { padding: 0; }
  .cap-grid { grid-template-columns: 1fr; }
  .section-headline { margin-bottom: 40px; }
}