:root {
  --bg: #FAF8F5;
  --bg-alt: #F0EDE7;
  --fg: #1A1A1A;
  --fg-muted: #6B6560;
  --accent: #E85D04;
  --accent-light: #FDF0E6;
  --border: #E2DDD8;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Figtree', system-ui, sans-serif;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

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

/* Header */
.site-header {
  border-bottom: 1px solid var(--border);
  padding: 18px 32px;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.wordmark {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--fg);
}

.tagline-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* Section base */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
}

/* Hero */
.hero {
  padding: 96px 0 80px;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.eyebrow-line {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--accent);
}

.eyebrow-text {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
  max-width: 800px;
}

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

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

.hero-url {
  font-family: 'Courier New', monospace;
  font-size: 0.82rem;
  color: var(--fg-muted);
  background: var(--bg-alt);
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.hero-status {
  font-size: 0.78rem;
  color: #2E7D32;
  font-weight: 500;
}

/* What you get */
.what-you-get {
  padding: 96px 0;
  background: var(--bg);
}

.cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.card {
  padding: 36px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: border-color 0.2s;
}

.card:hover {
  border-color: var(--accent);
}

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

.card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 12px;
}

.card-body {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--fg-muted);
}

/* Process */
.process {
  padding: 96px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

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

.step-connector {
  width: 48px;
  min-height: 80px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 80'%3E%3Cline x1='0' y1='40' x2='48' y2='40' stroke='%23E2DDD8' stroke-width='1'/%3E%3C/svg%3E") center no-repeat;
  flex-shrink: 0;
}

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--border);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 10px;
}

.step-body {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--fg-muted);
}

/* Outcomes */
.outcomes {
  padding: 96px 0;
  background: var(--fg);
  color: var(--bg);
}

.outcomes .section-label {
  color: var(--accent);
}

.outcomes-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 28px;
  max-width: 640px;
}

.outcomes-body {
  max-width: 580px;
  margin-bottom: 56px;
}

.outcomes-body p {
  font-size: 1rem;
  line-height: 1.75;
  color: #A8A29E;
  margin-bottom: 16px;
}

.outcomes-body p:last-child {
  margin-bottom: 0;
}

.stats-row {
  display: flex;
  gap: 64px;
  border-top: 1px solid #333;
  padding-top: 48px;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--bg);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.82rem;
  color: #78716C;
  line-height: 1.5;
  max-width: 140px;
}

/* Closing */
.closing {
  padding: 96px 0;
  border-top: 1px solid var(--border);
}

.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--fg);
  max-width: 700px;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  background: var(--bg-alt);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

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

.footer-wordmark {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
}

.footer-meta {
  font-size: 0.78rem;
  color: var(--fg-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .cards-row {
    grid-template-columns: 1fr;
  }

  .steps-row {
    flex-direction: column;
  }

  .step-connector {
    width: 100%;
    min-height: 32px;
    background: none;
    border-top: 1px solid var(--border);
    margin: 8px 0;
  }

  .stats-row {
    flex-direction: column;
    gap: 32px;
  }

  .hero {
    padding: 64px 0 56px;
  }

  .what-you-get,
  .process,
  .outcomes,
  .closing {
    padding: 64px 0;
  }

  .hero-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .section-inner,
  .hero-inner,
  .closing-inner {
    padding: 0 20px;
  }

  .site-header {
    padding: 14px 20px;
  }
}