:root {
  --bg: #F4EDE1;
  --surface: #FFFFFF;
  --fg: #1C2B24;
  --fg-muted: #6B7D74;
  --accent: #2A5C45;
  --accent-warm: #D4956A;
  --accent-light: #E8F0EC;
  --border: #D5CCC0;
  --danger: #C84B31;
  --warning: #D4956A;
  --success: #2A5C45;
}

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

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

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

/* NAV */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 237, 225, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

/* HERO */
.hero {
  padding: 5rem 2rem 4rem;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 0.35rem 0.85rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}
.hero-content h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.underline-green {
  background: linear-gradient(180%, transparent 60%, var(--accent-light) 60%);
  padding: 0 2px;
}
.hero-lede {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
}

/* Freshness meter */
.freshness-meter {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.meter-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin-bottom: 1.25rem;
}
.meter-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.produce-name {
  font-size: 0.85rem;
  font-weight: 500;
  min-width: 100px;
  color: var(--fg);
}
.meter-bar {
  flex: 1;
  height: 6px;
  background: #E8E2D8;
  border-radius: 999px;
  overflow: hidden;
}
.meter-fill {
  display: block;
  height: 100%;
  background: var(--accent);
  border-radius: 999px;
  transition: width 0.5s ease;
}
.meter-fill.warning { background: var(--warning); }
.meter-pct {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--fg);
  min-width: 32px;
  text-align: right;
}
.meter-pct.warning { color: var(--warning); }
.meter-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--fg-muted);
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: 0.5rem;
}

/* SECTION TAG */
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 0.75rem;
}
.section-tag + h2 { margin-top: 0; }

/* PROBLEM */
.problem {
  background: var(--accent);
  color: #F4EDE1;
  padding: 5rem 2rem;
}
.problem-inner { max-width: 1100px; margin: 0 auto; }
.problem-header { margin-bottom: 3rem; }
.problem-header h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.problem-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.stat-number {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--accent-warm);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-desc {
  font-size: 0.9rem;
  color: rgba(244,237,225,0.7);
  line-height: 1.5;
}
.problem-callout {
  font-size: 1rem;
  color: rgba(244,237,225,0.6);
  border-top: 1px solid rgba(244,237,225,0.2);
  padding-top: 1.5rem;
  font-style: italic;
}

/* FEATURES */
.features {
  padding: 5rem 2rem;
}
.features-inner { max-width: 1100px; margin: 0 auto; }
.features-inner h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
  color: var(--fg);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.feature-icon { margin-bottom: 1rem; }
.feature-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--fg);
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* HOW */
.how {
  background: var(--accent-light);
  padding: 5rem 2rem;
}
.how-inner { max-width: 1100px; margin: 0 auto; }
.how-inner h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
  color: var(--fg);
}
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(42, 92, 69, 0.15);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(42, 92, 69, 0.3);
  line-height: 1;
}
.step-content h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--fg);
}
.step-content p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 600px;
}

/* OUTCOMES */
.outcomes { padding: 5rem 2rem; }
.outcomes-inner { max-width: 1100px; margin: 0 auto; }
.outcomes-inner h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
  color: var(--fg);
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.outcome {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.outcome-metric { flex-shrink: 0; }
.outcome h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--fg);
}
.outcome p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* CLOSING */
.closing {
  background: var(--fg);
  color: var(--bg);
  padding: 5rem 2rem;
}
.closing-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.closing h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--bg);
}
.closing p {
  font-size: 1rem;
  color: rgba(244,237,225,0.65);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.closing-vision {
  font-size: 0.95rem;
  color: rgba(244,237,225,0.45);
  font-style: italic;
  margin-top: 1.5rem;
}

/* FOOTER */
.site-footer {
  background: var(--fg);
  border-top: 1px solid rgba(244,237,225,0.1);
  padding: 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--bg);
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(244,237,225,0.4);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-lede { font-size: 0.95rem; }
  .features-grid { grid-template-columns: 1fr; }
  .problem-stats { grid-template-columns: 1fr; gap: 1.5rem; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; gap: 0.5rem; }
  .step-num { font-size: 1.8rem; }
  .footer-inner { flex-direction: column; gap: 0.5rem; }
}