:root {
  --bg: #F8F4EE;
  --fg: #1B1B1B;
  --fg-muted: #5A5A5A;
  --accent: #FF6B35;
  --primary: #1B4332;
  --surface: #FFFFFF;
  --border: #E0D9CF;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

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

/* NAV */
.nav {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.875rem;
  color: var(--fg-muted);
}

/* HERO */
.hero {
  padding: 5rem 2rem 4rem;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.hero-label {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  max-width: 14ch;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--fg-muted);
  max-width: 52ch;
  margin-bottom: 3rem;
  font-weight: 300;
}
.hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 0.2rem; }
.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.25rem;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-label {
  font-size: 0.875rem;
  color: var(--fg-muted);
}

/* WHAT IT DOES */
.what-it-does { padding: 5rem 2rem; border-bottom: 1px solid var(--border); }
.wid-inner { max-width: 1200px; margin: 0 auto; }
.wid-header { margin-bottom: 3rem; }
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.section-sub { font-size: 1rem; color: var(--fg-muted); }
.wid-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.wid-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
}
.wid-icon {
  width: 48px;
  height: 48px;
  background: #E8F4F0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--primary);
}
.wid-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.wid-card p { font-size: 0.95rem; color: var(--fg-muted); line-height: 1.55; }

/* FEATURES */
.features { padding: 5rem 2rem; background: var(--primary); color: #fff; }
.features-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.features-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.features-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.features-body { font-size: 0.95rem; color: rgba(255,255,255,0.75); line-height: 1.65; margin-bottom: 1rem; }
.features-right { }
.features-img-text {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 2.5rem;
}
.fit-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}
.fit-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.fit-row:last-child { margin-bottom: 0; }

/* MANIFESTO */
.manifesto { padding: 5rem 2rem; background: var(--accent); color: #fff; }
.manifesto-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.manifesto-quote blockquote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 3.5vw, 2.25rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

/* CLOSING */
.closing { padding: 5rem 2rem; border-bottom: 1px solid var(--border); }
.closing-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 18ch;
  margin: 0 auto 1.5rem;
  color: var(--fg);
}
.closing-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 52ch;
  margin: 0 auto;
  font-weight: 300;
}

/* FOOTER */
.footer { padding: 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 1.5rem; }
.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--primary);
}
.footer-copy { font-size: 0.875rem; color: var(--fg-muted); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 3.5rem 1.5rem 3rem; }
  .hero-stats { gap: 2rem; }
  .features-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .wid-grid { grid-template-columns: 1fr; }
  .what-it-does, .features, .manifesto, .closing { padding: 3.5rem 1.5rem; }
  .nav { padding: 1rem 1.5rem; }
  .footer { padding: 1.5rem; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 1.5rem; }
  .stat-num { font-size: 1.75rem; }
  .closing-headline { font-size: 2rem; }
}