/* ===== BASE ===== */
:root {
  --bg: #faf8f4;
  --bg-alt: #f0ede6;
  --fg: #0e0e0e;
  --fg-muted: #6b6560;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --warm-dark: #1a1714;
  --warm-mid: #2d2924;
  --warm-surface: #3a352f;
  --warm-text: #e8e2d8;
  --warm-muted: #a09a90;
}

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

html { scroll-behavior: smooth; }

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

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(14, 14, 14, 0.08);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
  color: var(--fg);
}

nav {
  display: flex;
  gap: 32px;
}

nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

nav a:hover { color: var(--fg); }

/* ===== HERO ===== */
.hero {
  padding: 100px 32px 96px;
  background: var(--bg);
  border-bottom: 1px solid rgba(14, 14, 14, 0.06);
}

.hero-inner {
  max-width: 820px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 19px;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.65;
  margin-bottom: 56px;
  font-weight: 300;
}

.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 0;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -2px;
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  max-width: 160px;
  line-height: 1.4;
}

.hero-divider {
  width: 1px;
  height: 60px;
  background: rgba(14, 14, 14, 0.15);
  margin: 0 48px;
  flex-shrink: 0;
}

/* ===== PAIN ===== */
.pain {
  padding: 96px 32px;
  background: var(--warm-dark);
  color: var(--warm-text);
}

.pain-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.section-heading {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 56px;
}

.pain .section-heading { color: var(--warm-text); }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}

.pain-card {
  background: var(--warm-mid);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.06);
}

.pain-icon {
  width: 36px;
  height: 36px;
  background: rgba(245, 158, 11, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 20px;
}

.pain-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--warm-text);
}

.pain-card p {
  font-size: 15px;
  color: var(--warm-muted);
  line-height: 1.6;
}

.pain-quote {
  border-left: 3px solid var(--accent);
  padding-left: 28px;
}

.pain-quote p {
  font-size: 18px;
  font-style: italic;
  color: var(--warm-muted);
  line-height: 1.65;
  margin-bottom: 10px;
}

.pain-quote cite {
  font-size: 14px;
  font-style: normal;
  color: var(--warm-muted);
  opacity: 0.7;
}

/* ===== SOLUTION ===== */
.solution {
  padding: 96px 32px;
  background: var(--bg);
}

.solution-inner {
  max-width: 1100px;
  margin: 0 auto;
}

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

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(14,14,14,0.08);
  align-items: start;
}

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

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -2px;
  line-height: 1;
  padding-top: 4px;
}

.step-body h3 {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--fg);
}

.step-body p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 600px;
}

/* ===== FEATURES ===== */
.features {
  padding: 96px 32px;
  background: var(--bg-alt);
  border-top: 1px solid rgba(14,14,14,0.06);
}

.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0;
}

.feature {
  padding: 40px 32px;
  border: 1px solid rgba(14,14,14,0.07);
  margin: -1px 0 0 -1px;
}

.feature-marker {
  width: 24px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 20px;
}

.feature h3 {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--fg);
}

.feature p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 96px 32px;
  background: var(--warm-dark);
}

.manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
  align-items: start;
}

.manifesto-text {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 600;
  line-height: 1.45;
  color: var(--warm-text);
  margin-bottom: 20px;
}

.manifesto-attr {
  font-size: 14px;
  color: var(--warm-muted);
}

.manifesto-stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 8px;
}

.m-stat {
  padding-left: 20px;
  border-left: 3px solid var(--accent);
}

.m-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1px;
  margin-bottom: 6px;
}

.m-desc {
  font-size: 14px;
  color: var(--warm-muted);
  line-height: 1.5;
}

/* ===== FOOTER ===== */
footer {
  background: var(--fg);
  color: var(--warm-text);
  padding: 64px 32px 40px;
}

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

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .wordmark {
  color: var(--warm-text);
  display: block;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--warm-muted);
  max-width: 260px;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm-muted);
  margin-bottom: 16px;
}

.footer-col span, .footer-col a {
  display: block;
  font-size: 14px;
  color: var(--warm-text);
  text-decoration: none;
  margin-bottom: 10px;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer-col a:hover { opacity: 1; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--warm-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .header-inner { padding: 16px 20px; }
  nav { display: none; }
  .hero { padding: 72px 20px 64px; }
  .hero-stat-row { flex-direction: column; gap: 24px; }
  .hero-divider { display: none; }
  .hero-stat { flex-direction: row; align-items: center; gap: 12px; }
  .stat-num { font-size: 32px; }
  .stat-label { max-width: none; }
  .pain { padding: 72px 20px; }
  .solution { padding: 72px 20px; }
  .step { grid-template-columns: 48px 1fr; gap: 16px; }
  .step-num { font-size: 32px; }
  .features { padding: 72px 20px; }
  .manifesto { padding: 72px 20px; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .hero-headline { letter-spacing: -1px; }
  .features-grid { grid-template-columns: 1fr; }
}