:root {
  --bg-primary: #0a0e17;
  --bg-secondary: #111827;
  --bg-card: #1a2235;
  --fg-primary: #f0f2f5;
  --fg-secondary: #9ca3af;
  --fg-muted: #6b7280;
  --accent: #c8a54e;
  --accent-glow: rgba(200, 165, 78, 0.15);
  --accent-bright: #e4c367;
  --danger: #ef4444;
  --border: rgba(255, 255, 255, 0.06);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* Hero */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
  background: 
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(200, 165, 78, 0.08) 0%, transparent 70%),
    var(--bg-primary);
}

.hero-badge {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent);
  border: 1px solid rgba(200, 165, 78, 0.3);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 40px;
  background: var(--accent-glow);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 28px;
  max-width: 800px;
  letter-spacing: -1px;
}

.hero h1 .highlight {
  color: var(--accent);
  font-style: italic;
}

.lede {
  font-size: 1.2rem;
  color: var(--fg-secondary);
  max-width: 580px;
  margin-bottom: 56px;
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 32px 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.stat { text-align: center; }

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  display: block;
  font-size: 0.82rem;
  color: var(--fg-muted);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

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

/* Problem */
.problem {
  padding: 100px 24px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problem-inner {
  max-width: 720px;
  margin: 0 auto;
}

.problem h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 32px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.problem p {
  color: var(--fg-secondary);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.problem em {
  color: var(--fg-primary);
  font-style: italic;
}

.problem-bold {
  color: var(--accent) !important;
  font-weight: 600;
  font-size: 1.15rem !important;
  margin-top: 32px;
}

/* Pillars */
.pillars {
  padding: 100px 24px;
}

.pillars-header {
  text-align: center;
  margin-bottom: 64px;
}

.pillars-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.pillars-header p {
  color: var(--fg-secondary);
  font-size: 1.1rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.pillar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  transition: border-color 0.3s, transform 0.3s;
}

.pillar:hover {
  border-color: rgba(200, 165, 78, 0.25);
  transform: translateY(-4px);
}

.pillar-number {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.pillar p {
  color: var(--fg-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Path */
.path {
  padding: 100px 24px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.path-inner {
  max-width: 720px;
  margin: 0 auto;
}

.path h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 64px;
  letter-spacing: -0.5px;
}

.path-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.path-step {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  position: relative;
}

.step-marker {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 12px;
}

.path-step h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.path-step p {
  color: var(--fg-secondary);
  font-size: 0.95rem;
}

.path-connector {
  width: 2px;
  height: 32px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  margin: 0 auto;
}

/* Closing */
.closing {
  padding: 120px 24px;
  text-align: center;
  background:
    radial-gradient(ellipse 50% 60% at 50% 100%, rgba(200, 165, 78, 0.06) 0%, transparent 70%),
    var(--bg-primary);
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.closing p {
  color: var(--fg-secondary);
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Footer */
.site-footer {
  padding: 48px 24px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 6px;
}

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

/* Responsive */
@media (max-width: 768px) {
  .hero { min-height: 80vh; padding: 60px 20px 40px; }
  .hero-stats { flex-direction: column; gap: 20px; padding: 24px 32px; }
  .stat-divider { width: 48px; height: 1px; }
  .pillars-grid { grid-template-columns: 1fr; gap: 16px; }
  .problem { padding: 64px 20px; }
  .pillars { padding: 64px 20px; }
  .path { padding: 64px 20px; }
  .path h2 { margin-bottom: 40px; }
  .closing { padding: 80px 20px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .lede { font-size: 1.05rem; }
}