:root {
  --bg: #f5f0e8;
  --bg-alt: #ebe4d8;
  --surface: #ffffff;
  --fg: #1a1a2e;
  --fg-muted: #6b6b7e;
  --accent: #c8a84b;
  --accent-dark: #a88a30;
  --border: #d8d0c2;
  --dark-bg: #1a1a2e;
  --dark-surface: #242440;
  --dark-fg: #f0ead8;
  --dark-muted: #9090a8;
  --dark-border: #2e2e52;
}

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

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

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
}

/* HERO */
.hero {
  min-height: 100vh;
  background: var(--dark-bg);
  color: var(--dark-fg);
  display: flex;
  align-items: center;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,168,75,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200,168,75,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-noise-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.4;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  color: var(--dark-fg);
  margin-bottom: 28px;
}

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

.lede {
  font-size: 1.15rem;
  color: var(--dark-muted);
  max-width: 480px;
  line-height: 1.7;
}

/* Pipeline Widget */
.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.pipeline-widget {
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  padding: 28px 32px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(200,168,75,0.08) inset;
}

.widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.widget-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-fg);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.widget-badge {
  background: rgba(200,168,75,0.15);
  color: var(--accent);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(200,168,75,0.3);
}

.pipeline-stage {
  display: grid;
  grid-template-columns: 110px 1fr 28px;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.stage-label {
  font-size: 12px;
  color: var(--dark-muted);
  font-family: 'DM Sans', sans-serif;
}

.stage-bar {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #4a4a7a, #7070b0);
  border-radius: 3px;
  transition: width 0.6s ease;
}

.bar-gold {
  background: linear-gradient(90deg, var(--accent-dark), var(--accent));
}

.stage-count {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-fg);
  text-align: right;
}

.widget-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--dark-border);
}

.metric { text-align: center; }

.metric-value {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-fg);
  font-family: 'Playfair Display', serif;
}

.metric-label {
  display: block;
  font-size: 10px;
  color: var(--dark-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

/* FEATURES */
.features {
  padding: 120px 60px;
  background: var(--bg);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 72px;
}

.section-header h2 {
  font-size: 2.6rem;
  margin-bottom: 16px;
  color: var(--fg);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--fg-muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

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

.feature-card:hover {
  background: #fff;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: rgba(200,168,75,0.06);
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* HOW IT WORKS */
.how-it-works {
  padding: 100px 60px;
  background: var(--dark-bg);
  color: var(--dark-fg);
}

.how-it-works .section-header {
  margin-bottom: 64px;
}

.how-it-works .section-header h2 {
  color: var(--dark-fg);
  font-size: 2.6rem;
}

.process-steps {
  max-width: 720px;
  margin: 0 auto;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--dark-border);
  align-items: start;
}

.step:last-child { border-bottom: none; }

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: rgba(200,168,75,0.25);
  line-height: 1;
  padding-top: 4px;
}

.step-content h3 {
  font-size: 1.4rem;
  color: var(--dark-fg);
  margin-bottom: 12px;
}

.step-content p {
  font-size: 0.98rem;
  color: var(--dark-muted);
  line-height: 1.7;
}

/* OUTCOMES */
.outcomes {
  padding: 80px 60px;
  background: var(--accent);
}

.outcomes-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.outcomes-stat { text-align: center; }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--dark-bg);
  line-height: 1;
}

.stat-desc {
  font-size: 0.88rem;
  color: rgba(26,26,46,0.7);
  max-width: 180px;
  margin-top: 8px;
  line-height: 1.5;
}

.outcomes-divider {
  width: 1px;
  height: 80px;
  background: rgba(26,26,46,0.2);
}

/* CLOSING */
.closing {
  padding: 100px 60px;
  background: var(--bg);
  text-align: center;
}

.closing-statement {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--fg);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.5;
  font-style: italic;
}

/* FOOTER */
footer {
  padding: 40px 60px;
  background: var(--dark-bg);
  color: var(--dark-muted);
  text-align: center;
  font-size: 0.85rem;
}

/* MOBILE */
@media (max-width: 900px) {
  .hero { padding: 60px 28px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { justify-content: flex-start; }
  .features { padding: 80px 28px; }
  .feature-grid { grid-template-columns: 1fr; }
  .how-it-works { padding: 80px 28px; }
  .step { grid-template-columns: 1fr; gap: 8px; }
  .step-number { font-size: 1.8rem; }
  .outcomes-inner { flex-direction: column; gap: 32px; }
  .outcomes-divider { width: 60px; height: 1px; }
  .closing { padding: 80px 28px; }
  footer { padding: 32px 28px; }
}