/* Base Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #faf9f6;
  --bg-alt: #f0ece4;
  --fg: #0f1a2e;
  --fg-muted: #5a6a7e;
  --accent: #f59e0b;
  --accent-hover: #d97706;
  --navy: #0f1a2e;
  --cream: #faf9f6;
}

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

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

/* Navigation */
.nav {
  padding: 24px 0;
  border-bottom: 1px solid rgba(15,26,46,0.08);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.nav-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 0.875rem;
  color: var(--fg-muted);
  font-weight: 400;
}

/* Hero */
.hero {
  padding: 100px 0 80px;
  background: var(--cream);
}

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

.hero-eyebrow {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 28px;
  max-width: 700px;
}

.hero-sub {
  font-size: 1.2rem;
  line-height: 1.65;
  color: var(--fg-muted);
  max-width: 560px;
}

/* Problem */
.problem {
  padding: 80px 0;
  background: var(--navy);
}

.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.problem-stat {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat-number {
  font-family: 'Fraunces', serif;
  font-size: 5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.problem-quote blockquote {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  border-left: 3px solid var(--accent);
  padding-left: 24px;
}

/* Features */
.features {
  padding: 100px 0;
  background: var(--cream);
}

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

.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 56px;
  line-height: 1.2;
}

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

.feature-card {
  background: white;
  border: 1px solid rgba(15,26,46,0.08);
  border-radius: 16px;
  padding: 32px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.feature-card:hover {
  box-shadow: 0 8px 32px rgba(15,26,46,0.1);
  transform: translateY(-2px);
}

.feature-icon {
  color: var(--accent);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* How It Works */
.howitworks {
  padding: 100px 0;
  background: var(--bg);
}

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

.steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 8px;
}

.step {
  display: flex;
  gap: 24px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(15,26,46,0.08);
}

.step:nth-child(odd) {
  padding-right: 48px;
  border-right: 1px solid rgba(15,26,46,0.08);
}

.step:nth-child(even) {
  padding-left: 48px;
}

.step-number {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  min-width: 40px;
}

.step-content h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Manifesto */
.manifesto {
  padding: 100px 0;
  background: var(--navy);
}

.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.manifesto-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  font-style: normal;
  color: white;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}

.manifesto-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* Closing */
.closing {
  padding: 100px 0;
  background: var(--cream);
}

.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.closing-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Footer */
.footer {
  padding: 48px 0;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
}

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

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

.footer-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
}

.footer-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .problem-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .step:nth-child(odd) {
    padding-right: 0;
    border-right: none;
  }

  .step:nth-child(even) {
    padding-left: 0;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero {
    padding: 60px 0 50px;
  }

  .features,
  .howitworks,
  .manifesto,
  .closing {
    padding: 60px 0;
  }
}