:root {
  --bg: #F7F4EF;
  --surface: #FFFFFF;
  --primary: #1A5C47;
  --accent: #2A8C6E;
  --accent-light: #E8F4EF;
  --fg: #1A1A1A;
  --muted: #6B7280;
  --border: #E2DDD5;
}

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

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

h1, h2, h3, h4 {
  font-family: 'Outfit', system-ui, sans-serif;
  line-height: 1.15;
}

/* ---- HERO ---- */
.hero {
  background: var(--bg);
  padding: 80px 48px 64px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(42,140,110,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: var(--accent-light);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
}
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-mockup {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  width: 100%;
  max-width: 320px;
  box-shadow: 0 24px 64px rgba(26,92,71,0.08), 0 1px 4px rgba(0,0,0,0.04);
}
.mockup-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.mockup-stats {
  display: flex;
  gap: 24px;
  margin-top: 24px;
}
.stat-val {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
}
.stat-key {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
/* ---- STATS ROW ---- */
.stats-row {
  background: var(--primary);
  color: white;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 48px;
  flex: 1;
}
.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-text {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  max-width: 180px;
  margin: 0 auto;
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}
/* ---- MANIFESTO ---- */
.manifesto {
  background: var(--surface);
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
}
.manifesto-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 24px;
}
.manifesto blockquote {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
  border-left: 4px solid var(--accent);
  padding-left: 24px;
  margin-bottom: 28px;
}
.manifesto p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
}
/* ---- INGREDIENTS ---- */
.ingredients {
  background: var(--bg);
  padding: 80px 48px;
}
.ingredients-header {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}
.ingredients h2, .outcomes h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}
.ingredients-header p, .outcomes-header p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}
.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.ingredient-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ingredient-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26,92,71,0.08);
}
.ingredient-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}
.ingredient-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.ingredient-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}
/* ---- OUTCOMES ---- */
.outcomes {
  background: var(--surface);
  padding: 80px 48px;
  border-top: 1px solid var(--border);
}
.outcomes-header {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.outcome-card {
  background: var(--bg);
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid var(--border);
}
.outcome-time {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
}
.outcome-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.outcome-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}
/* ---- CLOSING ---- */
.closing {
  background: var(--primary);
  padding: 96px 48px;
  text-align: center;
}
.closing-inner { max-width: 680px; margin: 0 auto; }
.closing h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
}
.closing p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 32px;
}
.closing-tagline {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #7FC4A5;
  letter-spacing: 0.02em;
}
/* ---- FOOTER ---- */
footer {
  background: var(--bg);
  padding: 40px 48px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--muted);
}
.footer-copy {
  font-size: 13px;
  color: var(--muted);
}
/* ---- HERO MOCKUP ---- */
.mockup-inner { display: flex; flex-direction: column; }
.protection-bar {
  height: 8px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
  margin-top: 12px;
}
.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  border-radius: 100px;
  animation: barAnim 1.5s ease forwards;
}
@keyframes barAnim {
  from { width: 0%; }
  to { width: 92%; }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero { padding: 56px 24px 48px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .product-mockup { max-width: 280px; margin: 0 auto; }
  .stats-row { flex-direction: column; gap: 28px; padding: 48px 32px; }
  .stat-divider { width: 48px; height: 1px; }
  .stat-item { padding: 0; }
  .stat-text { max-width: 100%; }
  .manifesto { padding: 56px 24px; }
  .ingredients { padding: 56px 24px; }
  .outcomes { padding: 56px 24px; }
  .closing { padding: 64px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .stat-number { font-size: 28px; }
  .hero h1 { font-size: 32px; }
  .ingredient-grid { grid-template-columns: 1fr; }
  .outcome-grid { grid-template-columns: 1fr; }
}