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

:root {
  --bg: #FAF9F7;
  --bg-alt: #F2F0EC;
  --fg: #1C1B1A;
  --fg-muted: #6B6762;
  --accent: #F97316;
  --accent-dark: #EA580C;
  --accent-soft: #FFF0E6;
  --emerald: #059669;
  --emerald-soft: #ECFDF5;
  --border: #E5E2DC;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

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

/* === HERO === */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 100px 80px 80px;
  overflow: hidden;
  min-height: 90vh;
}

.hero-bg-shape {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle at center, #FFF3E0 0%, #FFEDD5 35%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.hero-eyebrow {
  margin-bottom: 28px;
}

.badge {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid #FED7AA;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 62px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 24px;
}

.headline-accent {
  color: var(--accent);
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 440px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.meta-value {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
}

.meta-label {
  font-size: 11px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

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

/* Funnel Widget */
.hero-visual {
  position: relative;
  z-index: 1;
}

.funnel-widget {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.06);
}

.funnel-stage {
  margin-bottom: 20px;
}

.funnel-stage:last-of-type { margin-bottom: 0; }

.stage-label {
  display: block;
  font-size: 11px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.stage-count {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--fg);
  float: right;
}

.stage-bar {
  height: 8px;
  background: var(--bg-alt);
  border-radius: 100px;
  overflow: hidden;
}

.stage-fill {
  height: 100%;
  border-radius: 100px;
}

.w100 { width: 100%; background: #D1D5DB; }
.w75 { width: 75%; background: #F97316; opacity: 0.5; }
.w28 { width: 28%; background: #F97316; opacity: 0.7; }
.w32 { width: 32%; background: #059669; }

.funnel-stage.highlight .stage-count { color: var(--emerald); }

.funnel-legend {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}

/* === STATS === */
.stats {
  background: var(--fg);
  color: white;
  padding: 64px 80px;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.stat-card {
  padding: 32px 40px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.stat-card:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* === PROCESS === */
.process {
  padding: 100px 80px;
  background: var(--bg);
}

.section-header {
  margin-bottom: 60px;
}

.section-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  padding: 0 32px;
}

.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }

.step-connector {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin-top: 28px;
  flex-shrink: 0;
}

.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-soft);
  -webkit-text-stroke: 1.5px var(--accent);
  line-height: 1;
  margin-bottom: 20px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--fg);
}

.step-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* === DIFFERENTIATORS === */
.differentiators {
  background: var(--bg-alt);
  padding: 100px 80px;
}

.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.diff-intro {
  margin-top: 20px;
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Comparison table */
.comparison-table {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}

.comp-header {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.comp-col-label,
.comp-col {
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.comp-col-label { text-align: left; }
.comp-col.accent, .comp-col:last-child { color: var(--accent); }

.comp-row {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  border-bottom: 1px solid var(--border);
}

.comp-row:last-child { border-bottom: none; }

.comp-feature {
  padding: 14px 20px;
  font-size: 13px;
  color: var(--fg-muted);
}

.comp-val {
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  color: var(--fg-muted);
}

.comp-val.accent { color: var(--accent); font-weight: 600; }
.comp-row:nth-child(odd) { background: white; }
.comp-row:nth-child(even) { background: #FAFAF8; }

/* === MANIFESTO === */
.manifesto {
  background: var(--fg);
  color: white;
  padding: 100px 80px;
}

.manifesto-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.quote-text {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 500;
  line-height: 1.4;
  color: white;
}

.manifesto-detail p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}

.manifesto-detail p:last-child { margin-bottom: 0; }

/* === FOOTER === */
.footer {
  background: #111110;
  color: rgba(255,255,255,0.5);
  padding: 48px 80px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-note {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  text-align: right;
  max-width: 360px;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 80px 40px 60px; }
  .hero-visual { display: none; }
  .stats-inner { grid-template-columns: 1fr; }
  .stat-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .process-steps { flex-direction: column; gap: 32px; }
  .step-connector { display: none; }
  .diff-grid { grid-template-columns: 1fr; gap: 40px; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 32px; }
  .stats, .process, .differentiators, .manifesto { padding: 64px 40px; }
  .footer { padding: 40px; }
}

@media (max-width: 640px) {
  .hero { padding: 60px 24px 40px; }
  .stats, .process, .differentiators, .manifesto { padding: 48px 24px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
  .footer-note { text-align: left; }
  .comp-header, .comp-row { grid-template-columns: 1fr 1fr; }
  .comp-col-label, .comp-col:last-child { display: none; }
}