:root {
  --bg: #0c0c0c;
  --fg: #f2ede6;
  --accent: #d4600a;
  --accent-dim: #a84e0a;
  --muted: #8a8278;
  --surface: #161411;
  --border: #2a2622;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

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

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 48px 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,96,10,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(72px, 12vw, 160px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.hero-lede {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 520px;
  font-weight: 300;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.hero-stripe {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-dim) 60%, transparent 100%);
  z-index: 2;
}

/* ── PILLARS ── */
.pillars {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pillar {
  padding: 72px 48px;
}

.pillar-divider {
  background: var(--border);
  width: 1px;
}

.pillar-number {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 24px;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.pillar-desc {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ── WHY ── */
.why {
  padding: 100px 48px;
}

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.why-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

.why-content {
  max-width: 680px;
  margin-bottom: 64px;
}

.why-text {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--fg);
  font-weight: 300;
  margin-bottom: 16px;
}

.why-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  border-top: 1px solid var(--border);
  padding-top: 48px;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.4;
}

/* ── CLOSING ── */
.closing {
  padding: 120px 48px 100px;
  border-top: 1px solid var(--border);
}

.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.closing-date {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 16px;
}

.closing-sub {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 300;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero {
    padding: 60px 24px 80px;
  }

  .hero-headline {
    font-size: clamp(56px, 16vw, 80px);
  }

  .pillars {
    grid-template-columns: 1fr;
  }

  .pillar-divider {
    display: none;
  }

  .pillar {
    padding: 48px 24px;
    border-bottom: 1px solid var(--border);
  }

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

  .why {
    padding: 72px 24px;
  }

  .why-stats {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .closing {
    padding: 80px 24px;
  }

  .stat-value {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 48px 20px 64px;
  }

  .hero-eyebrow {
    font-size: 0.6875rem;
  }

  .hero-lede {
    font-size: 1rem;
  }
}