:root {
  --green: #22c55e;
  --green-d: #16a34a;
  --green-l: #dcfce7;
  --green-ll: #f0fdf4;
  --text: #14532d;
  --text-m: #374151;
  --text-l: #6b7280;
  --bg: #f0fdf4;
  --card: #ffffff;
  --shadow: 0 1px 4px rgba(0,0,0,0.06), 0 4px 20px rgba(0,0,0,0.06);
  --r: 16px;
  --r-sm: 10px;
  --r-pill: 100px;
}

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

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text-m);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── Page Wrapper ─── */
.page {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

/* ─── Hero ─── */
.hero {
  text-align: center;
  padding: 60px 20px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #7c3aed22, #2563eb22);
  border: 1.5px solid #a5b4fc;
  color: #4338ca;
  padding: 6px 18px;
  border-radius: var(--r-pill);
  font-size: 0.85rem;
  font-weight: 700;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -2px;
  line-height: 1;
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--text-l);
  max-width: 520px;
  line-height: 1.6;
}

.cta-btn {
  display: inline-block;
  background: var(--green);
  color: white;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: var(--r-pill);
  font-size: 1.05rem;
  font-weight: 800;
  transition: all 0.2s ease;
  margin-top: 4px;
  box-shadow: 0 4px 20px rgba(34,197,94,0.35);
}

.cta-btn:hover {
  background: var(--green-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(34,197,94,0.4);
}

.cta-btn.white {
  background: white;
  color: var(--green-d);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.cta-btn.white:hover {
  background: var(--green-l);
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
}

/* ─── Hero Stats ─── */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 12px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.stat-n {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}

.stat-l {
  font-size: 0.75rem;
  color: var(--text-l);
  font-weight: 500;
}

.stat-div {
  width: 1px;
  height: 36px;
  background: #d1d5db;
}

/* ─── Sections ─── */
.section {
  margin-top: 60px;
  text-align: center;
}

.section-h {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.section-p {
  font-size: 1rem;
  color: var(--text-l);
  margin-bottom: 32px;
}

/* ─── Meal Pills ─── */
.meal-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.meal-pill {
  background: white;
  border: 2px solid var(--green-l);
  color: var(--green-d);
  padding: 12px 24px;
  border-radius: var(--r-pill);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: var(--shadow);
  transition: all 0.2s ease;
}

.meal-pill:hover {
  background: var(--green-l);
  border-color: var(--green);
  transform: translateY(-2px);
}

/* ─── Feature Grid ─── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 18px;
}

.feat-card {
  background: white;
  border-radius: var(--r);
  padding: 28px 24px;
  text-align: left;
  box-shadow: var(--shadow);
  border-top: 3px solid transparent;
  transition: all 0.2s ease;
}

.feat-card:hover {
  border-top-color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}

.feat-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.feat-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.feat-card p {
  font-size: 0.875rem;
  color: var(--text-l);
  line-height: 1.65;
}

/* ─── Steps ─── */
.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.step-card {
  background: white;
  border-radius: var(--r);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  flex: 1;
  min-width: 180px;
  max-width: 240px;
  position: relative;
}

.step-num {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
}

.step-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  margin-top: 6px;
}

.step-card h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}

.step-card p {
  font-size: 0.82rem;
  color: var(--text-l);
  line-height: 1.5;
}

.step-arrow {
  font-size: 1.5rem;
  color: var(--green);
  font-weight: 900;
  flex-shrink: 0;
}

/* ─── CTA Section ─── */
.cta-section {
  margin-top: 60px;
}

.cta-card {
  background: linear-gradient(135deg, var(--green-d), #15803d);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cta-emoji {
  font-size: 3rem;
}

.cta-card h2 {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.cta-card p {
  font-size: 1.05rem;
  opacity: 0.85;
}

/* ─── Footer ─── */
.footer {
  text-align: center;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--green-l);
  color: var(--text-l);
  font-size: 0.875rem;
}

/* ─── Responsive ─── */
@media (max-width: 640px) {
  .hero-title { font-size: 2.8rem; }
  .hero { padding: 40px 10px 36px; }
  .steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); }
  .hero-stats { gap: 16px; }
  .stat-n { font-size: 1.3rem; }
  .section-h { font-size: 1.5rem; }
}

@media (max-width: 420px) {
  .hero-title { font-size: 2.2rem; }
  .hero-sub { font-size: 1rem; }
  .feat-grid { grid-template-columns: 1fr; }
}
