/* ── Variables ── */
:root {
  --cream: #FAF6EF;
  --ink: #1A1A18;
  --ink-light: #4A4A44;
  --ink-faint: #8A8A80;
  --green: #2A4D1E;
  --green-mid: #3D6B2A;
  --green-light: #C8DFB8;
  --amber: #C8893A;
  --amber-light: #F0D9A8;
  --border: #E0DDD4;
  --surface: #FFFFFF;
}

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

/* ── Base ── */
body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
}

/* ── Nav ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 60px;
  border-bottom: 1px solid var(--border);
}
.nav-brand .brand-name {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.nav-tagline {
  font-size: 13px;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Hero ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 88vh;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  padding: 80px 60px 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 28px;
}
.hero-headline {
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 28px;
  line-height: 1.05;
}
.hero-headline em {
  font-style: italic;
  color: var(--green);
}
.hero-sub {
  font-size: 18px;
  color: var(--ink-light);
  max-width: 440px;
  margin-bottom: 44px;
  line-height: 1.65;
}
.hero-eyebrow {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.eyebrow-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-light);
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-mid);
  flex-shrink: 0;
}
.hero-visual {
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}
.pipeline-widget {
  width: 100%;
  max-width: 340px;
  background: #252522;
  border-radius: 16px;
  padding: 28px 32px;
  border: 1px solid rgba(255,255,255,0.06);
}
.pipeline-header {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}
.pipeline-stat {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
}
.stat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 40px;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.pipeline-bar {
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin: 20px 0 14px;
}
.bar-fill {
  height: 100%;
  background: var(--green-light);
  border-radius: 2px;
}
.pipeline-footer {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
}

/* ── Manifesto ── */
.manifesto {
  background: var(--green);
  padding: 100px 60px;
}
.manifesto-inner { max-width: 820px; }
.manifesto-quote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 400;
  font-style: italic;
  color: #FFFFFF;
  line-height: 1.25;
  margin-bottom: 40px;
}
.manifesto-body {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 620px;
  line-height: 1.7;
}

/* ── Features ── */
.features {
  padding: 100px 60px;
  background: var(--cream);
}
.features-header {
  margin-bottom: 64px;
}
.section-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 16px;
}
.features-title {
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 600;
  color: var(--ink);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.feature-card {
  background: var(--surface);
  padding: 40px 36px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.feature-card:nth-child(2n) { border-right: none; }
.feature-card:nth-child(3),
.feature-card:nth-child(4) { border-bottom: none; }
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--green-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 20px;
}
.feature-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 14px;
  color: var(--ink-light);
  line-height: 1.65;
}

/* ── Process ── */
.process {
  padding: 100px 60px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.process-inner { max-width: 900px; }
.process-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 64px;
  margin-top: 16px;
}
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.step-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
}
.step-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.step-desc {
  font-size: 14px;
  color: var(--ink-light);
  line-height: 1.65;
}
.step-connector {
  width: 80px;
  height: 1px;
  background: var(--border);
  margin-top: 28px;
  flex-shrink: 0;
}

/* ── Closing ── */
.closing {
  padding: 100px 60px;
  background: var(--ink);
}
.closing-inner { max-width: 760px; }
.closing-headline {
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 32px;
  line-height: 1.1;
}
.closing-body {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 40px;
}
.closing-statement {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-style: italic;
  color: var(--green-light);
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  line-height: 1.5;
}

/* ── Footer ── */
.footer {
  padding: 40px 60px;
  background: var(--cream);
  border-top: 1px solid var(--border);
}
.footer-inner { max-width: 900px; }
.footer-brand {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 6px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--ink-faint);
  margin-bottom: 16px;
}
.footer-meta {
  font-size: 12px;
  color: var(--ink-faint);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .nav { padding: 20px 28px; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-inner { padding: 60px 28px 48px; }
  .hero-visual { padding: 48px 28px; }
  .manifesto { padding: 72px 28px; }
  .features { padding: 72px 28px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { border-right: none; }
  .feature-card:nth-child(3) { border-bottom: 1px solid var(--border); }
  .feature-card:nth-child(4) { border-bottom: none; }
  .process { padding: 72px 28px; }
  .process-steps { flex-direction: column; gap: 40px; }
  .step-connector { display: none; }
  .closing { padding: 72px 28px; }
  .footer { padding: 32px 28px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 38px; }
  .closing-headline { font-size: 30px; }
}