:root {
  --bg: #0D0D0F;
  --surface: #16161A;
  --surface-2: #1E1E24;
  --accent: #F59E0B;
  --accent-dim: #B47707;
  --text: #FAFAF8;
  --text-muted: #9A9AA0;
  --text-dim: #5C5C64;
  --border: #242430;
  --radius: 8px;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* HERO */
.hero {
  padding: 120px 24px 80px;
  max-width: 860px;
  margin: 0 auto;
}

.hero-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-headline em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 32px;
  line-height: 1.65;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #0D0D0F;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  margin-bottom: 48px;
  transition: background 0.15s ease, transform 0.1s ease;
}
.btn-primary:hover { background: #D97706; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  width: fit-content;
}

.stat {
  padding: 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 64px;
  background: var(--border);
  flex-shrink: 0;
}

/* SECTION LABEL */
.section-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
}

/* PROOF */
.proof {
  border-top: 1px solid var(--border);
  padding: 80px 24px;
}

.proof-inner {
  max-width: 860px;
  margin: 0 auto;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}

.problem-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.problem-icon {
  display: block;
  font-size: 20px;
  margin-bottom: 12px;
  color: #EF4444;
}

.solution-statement {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
  max-width: 640px;
}

.solution-word {
  color: var(--accent);
}

/* PATH */
.path {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 80px 24px;
}

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

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.step {
  background: var(--bg);
  padding: 32px 28px;
}

.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}

.step h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* SPECIALTIES */
.specialties {
  border-top: 1px solid var(--border);
  padding: 80px 24px;
}

.specialties-inner {
  max-width: 860px;
  margin: 0 auto;
}

.specialties-intro {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 480px;
}

.skill-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.skill-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}

.skill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-bottom: 16px;
}

.skill-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.skill-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
}

.skill-meta {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
}

/* MANIFESTO */
.manifesto {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 80px 24px;
}

.manifesto-inner {
  max-width: 860px;
  margin: 0 auto;
}

.manifesto-quote {
  margin-bottom: 64px;
}

.manifesto-quote p:first-child {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 500;
  line-height: 1.4;
  color: var(--text);
  font-style: italic;
  margin-bottom: 20px;
  max-width: 680px;
}

.manifesto-attribution {
  font-size: 16px;
  color: var(--text-muted);
}

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

.timeline-item {
  display: grid;
  grid-template-columns: 100px 160px 1fr;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  gap: 24px;
}

.timeline-item:last-child {
  border-bottom: none;
}

.timeline-month {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.timeline-earn {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

.timeline-note {
  font-size: 14px;
  color: var(--text-muted);
}

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
}

.footer-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-note {
  font-size: 12px;
  color: var(--text-dim);
}

/* RESPONSIVE */
@media (max-width: 640px) {
  .hero { padding: 80px 20px 60px; }
  .hero-stats { flex-direction: column; width: 100%; }
  .stat { padding: 20px 24px; width: 100%; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: none; }
  .stat-divider { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .skill-grid { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 1fr; gap: 6px; }
  .footer-inner { flex-direction: column; }
}