:root {
  --bg: #F5F0E6;
  --bg-dark: #0D2B1A;
  --fg: #0D2B1A;
  --fg-muted: #4a6b4a;
  --accent: #E8A838;
  --white: #ffffff;
  --card-bg: #ffffff;
}

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

html { 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;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 240, 230, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(13, 43, 26, 0.08);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}

/* Hero */
.hero {
  padding: 6rem 2rem 5rem;
  background: var(--bg);
  overflow: hidden;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero-lede {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 400px;
  line-height: 1.7;
}
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero-card {
  background: var(--card-bg);
  border: 1px solid rgba(13, 43, 26, 0.1);
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: 0 2px 16px rgba(13, 43, 26, 0.06);
  transform: translateX(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-card:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 24px rgba(13, 43, 26, 0.1);
}
.hero-card-2 { transform: translateX(1.5rem); }
.hero-card-2:hover { transform: translateX(5.5rem); }
.hero-card-3 { transform: translateX(3rem); }
.hero-card-3:hover { transform: translateX(7rem); }
.hero-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card-text {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--fg);
}

/* Categories */
.categories {
  background: var(--bg-dark);
  color: var(--white);
  padding: 6rem 2rem;
}
.categories-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 3rem;
}
.category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.category-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}
.category-card:hover {
  background: rgba(255,255,255,0.1);
}
.category-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
}
.category-dot-1 { background: var(--accent); }
.category-dot-2 { background: #7ecb8e; }
.category-dot-3 { background: #4fa3d1; }
.category-dot-4 { background: #d16b4f; }
.category-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.category-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* Proof */
.proof {
  background: var(--bg);
  padding: 6rem 2rem;
}
.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.proof-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  background: var(--card-bg);
  border: 1px solid rgba(13, 43, 26, 0.1);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 2rem;
}
.proof-stat {
  padding: 2.5rem 2rem;
  text-align: center;
}
.proof-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 0.4rem;
}
.proof-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.4;
}
.proof-divider {
  width: 1px;
  height: 60px;
  background: rgba(13, 43, 26, 0.1);
}
.proof-note {
  text-align: center;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--fg-muted);
  letter-spacing: -0.01em;
}

/* Closing */
.closing {
  background: var(--accent);
  padding: 5rem 2rem;
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.closing-statement {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--bg-dark);
  max-width: 800px;
}

/* Footer */
.footer {
  background: var(--bg-dark);
  padding: 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
}
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-visual { flex-direction: row; flex-wrap: wrap; gap: 0.75rem; }
  .hero-card { flex: 1; min-width: 140px; transform: none !important; }
  .hero-card:hover { transform: none !important; }
  .hero-card-2, .hero-card-3 { transform: none !important; }
  .hero-card:hover { transform: none !important; }
  .category-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; gap: 0; }
  .proof-divider { width: 100%; height: 1px; }
  .footer-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
  .hero { padding: 4rem 1.5rem 3rem; }
  .categories, .proof, .closing { padding: 4rem 1.5rem; }
}