:root {
  --bg: #F9F7F2;
  --bg-alt: #F2EEE6;
  --fg: #111110;
  --fg-muted: #5C5A55;
  --accent: #E07A28;
  --accent-dark: #B8621A;
  --teal: #1B4D3E;
  --teal-light: #2A7260;
  --border: #E0DDD5;
}

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

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

/* HEADER */
.site-header {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.wordmark-pilot { color: var(--fg); }
.wordmark-ai { color: var(--accent); }
.nav-tagline {
  font-size: 0.875rem;
  color: var(--fg-muted);
  font-weight: 300;
  letter-spacing: 0.01em;
}

/* HERO */
.hero {
  padding: 96px 0 80px;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.hero-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
  max-width: 680px;
}
.hero-sub {
  font-size: 1.125rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 56px;
  font-weight: 300;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}
.stat {
  display: flex;
  flex-direction: column;
  padding-right: 48px;
}
.stat-number {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--teal);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  margin-top: 6px;
  line-height: 1.3;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  margin-right: 48px;
  align-self: center;
}

/* MARKET */
.market {
  background: var(--bg-alt);
  padding: 88px 0;
}
.market-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 20px;
}
.section-title.centered {
  text-align: center;
}
.market-body {
  font-size: 1.125rem;
  color: var(--fg-muted);
  margin-bottom: 48px;
  font-weight: 300;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.pain-item {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 28px 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.pain-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.pain-text {
  font-size: 0.9375rem;
  color: var(--fg);
  line-height: 1.5;
}

/* PROCESS */
.process {
  padding: 88px 0;
}
.process-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.process .section-title {
  margin-bottom: 56px;
}
.process-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.step {
  flex: 1;
  padding: 36px 32px;
  border: 1px solid var(--border);
  position: relative;
}
.step-number {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--bg-alt);
  line-height: 1;
  letter-spacing: -0.04em;
  -webkit-text-stroke: 1px var(--border);
  margin-bottom: 20px;
}
.step-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.step-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.step-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 500;
  border: 1px solid var(--teal);
  padding: 4px 10px;
}
.step-connector {
  width: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-connector::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--border);
}

/* OUTCOMES */
.outcomes {
  background: var(--teal);
  padding: 88px 0;
}
.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.outcomes .section-title {
  color: #fff;
  margin-bottom: 48px;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.outcome {
  border-left: 1px solid rgba(255,255,255,0.2);
  padding-left: 24px;
}
.outcome-metric {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.outcome-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}
.outcomes-note {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.outcomes-note p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}

/* CLOSING */
.closing {
  padding: 112px 0;
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.closing-content {
  max-width: 640px;
}
.closing-statement {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  font-weight: 300;
}

/* FOOTER */
.site-footer {
  background: var(--fg);
  color: #fff;
  padding: 64px 0 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.footer-brand .wordmark {
  font-size: 1.5rem;
  margin-bottom: 16px;
  display: block;
}
.footer-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col-title {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  margin-bottom: 4px;
}
.footer-col span:not(.footer-col-title) {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
}
.footer-bottom {
  max-width: 1100px;
  margin: 48px auto 0;
  padding: 24px 32px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 64px 0 56px; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .stat { padding-right: 0; }
  .stat-divider { display: none; }
  .pain-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; }
  .step-connector { display: none; }
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: 1fr; }
  .hero-inner, .market-inner, .process-inner, .outcomes-inner, .closing-inner, .footer-inner, .footer-bottom, .header-inner { padding: 0 20px; }
}
@media (max-width: 480px) {
  .outcomes-grid { grid-template-columns: 1fr; }
}