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

:root {
  --bg: #faf8f5;
  --fg: #111111;
  --accent: #d97706;
  --accent-light: #fef3c7;
  --muted: #6b6b6b;
  --surface: #f0ece4;
  --border: #e5e0d8;
  --nav-height: 64px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === TYPOGRAPHY === */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.2; }

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-height);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* === HERO === */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 32px 80px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-size: clamp(40px, 6vw, 72px);
  color: var(--fg);
  margin-bottom: 28px;
  max-width: 800px;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

.stat { max-width: 200px; }

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* === PIPELINE === */
.pipeline {
  background: var(--fg);
  color: #fff;
  padding: 96px 32px;
}

.pipeline-header {
  max-width: 1200px;
  margin: 0 auto 64px;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  color: #fff;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
}

.pipeline-flow {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.pipeline-step {
  padding: 32px 24px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  transition: background 0.2s;
}

.pipeline-step:hover { background: rgba(255,255,255,0.08); }

.step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

.pipeline-step h3 {
  font-size: 17px;
  color: #fff;
  margin-bottom: 10px;
}

.pipeline-step p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.pipeline-arrow {
  display: flex;
  align-items: center;
  padding-top: 64px;
  color: rgba(255,255,255,0.2);
}

/* === FEATURES === */
.features {
  padding: 96px 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.feature-card {
  background: var(--bg);
  padding: 40px 32px;
  transition: background 0.2s;
}

.feature-card:hover { background: var(--surface); }

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 17px;
  color: var(--fg);
  margin-bottom: 10px;
}

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

/* === OUTCOMES === */
.outcomes {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 32px;
}

.outcomes-inner {
  max-width: 800px;
  margin: 0 auto;
}

.outcomes-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

.outcomes-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.outcome-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  margin-top: 2px;
}

.outcome-item p {
  font-size: 17px;
  color: var(--fg);
  font-weight: 500;
  line-height: 1.4;
}

/* === CLOSING === */
.closing {
  padding: 96px 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.closing-statement {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--fg);
  max-width: 720px;
  line-height: 1.5;
  font-style: italic;
}

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 32px;
}

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

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
}

.footer-copy {
  font-size: 13px;
  color: var(--muted);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero { padding: 64px 20px 56px; }
  .hero-stats { gap: 24px; }
  .stat-divider { display: none; }
  .stat { max-width: 100%; }

  .pipeline { padding: 64px 20px; }
  .pipeline-flow {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .pipeline-arrow { display: none; }

  .features { padding: 64px 20px; }
  .features-grid { grid-template-columns: 1fr; }

  .outcomes { padding: 64px 20px; }
  .closing { padding: 64px 20px; }

  .footer { padding: 32px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .nav-inner { padding: 0 20px; }
  .nav-tagline { display: none; }
  .hero-headline { font-size: 36px; }
}