:root {
  --bg: #ffffff;
  --text: #1f2937;
  --muted: #667085;
  --lime: #b7f34a;
  --lime-deep: #87cb22;
  --yellow: #ffd84d;
  --pink: #ff6ba8;
  --pink-soft: #ffe0ee;
  --card: #ffffff;
  --line: rgba(31, 41, 55, 0.08);
  --shadow: 0 24px 60px rgba(255, 107, 168, 0.12), 0 10px 24px rgba(31, 41, 55, 0.08);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background:
    radial-gradient(circle at 10% 15%, rgba(183, 243, 74, 0.18), transparent 18%),
    radial-gradient(circle at 92% 18%, rgba(255, 216, 77, 0.18), transparent 18%),
    radial-gradient(circle at 85% 72%, rgba(255, 107, 168, 0.12), transparent 20%),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

button,
input {
  font: inherit;
}

button {
  border: none;
  cursor: pointer;
}

.page-shell {
  min-height: 100vh;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.header-inner,
.footer-inner,
.hero-actions,
.hero-badges,
.site-nav,
.stats-strip,
.benefits-grid,
.plan-switcher,
.menu-grid {
  display: flex;
}

.header-inner {
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--lime), var(--yellow));
  display: grid;
  place-items: center;
  box-shadow: 0 14px 24px rgba(183, 243, 74, 0.3);
}

.brand-text {
  font-size: 1.1rem;
}

.site-nav {
  align-items: center;
  gap: 26px;
}

.site-nav a,
.footer-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--pink);
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(31, 41, 55, 0.08);
  padding: 12px;
  flex-direction: column;
  justify-content: space-between;
}

.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--text);
  border-radius: 999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--pink), #ff8b4d);
  color: #fff;
  box-shadow: 0 18px 34px rgba(255, 107, 168, 0.28);
}

.button-secondary {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(31, 41, 55, 0.06);
}

.button-full {
  width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(183, 243, 74, 0.22);
  color: #45690b;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-section {
  padding: 42px 0 28px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 30px;
  align-items: center;
}

.hero-copy h1,
.section-heading h2,
.cta-card h2 {
  margin: 0;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  max-width: 11ch;
}

.hero-text,
.section-heading p,
.plan-panel p,
.menu-card p,
.cta-card p,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 610px;
  font-size: 1.08rem;
  margin: 22px 0 0;
}

.hero-actions {
  gap: 14px;
  margin: 30px 0 22px;
  flex-wrap: wrap;
}

.hero-badges {
  gap: 12px;
  flex-wrap: wrap;
}

.badge-pill,
.plan-tag,
.menu-badge,
.menu-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 800;
}

.badge-pill {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(31, 41, 55, 0.05);
}

.hero-visual {
  position: relative;
  min-height: 620px;
  isolation: isolate;
}

.hero-orbit {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
}

.orbit-one {
  inset: 52px 72px auto auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 216, 77, 0.55), rgba(255, 216, 77, 0));
}

.orbit-two {
  inset: auto auto 70px 40px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 107, 168, 0.25), rgba(255, 107, 168, 0));
}

.floating-card,
.glass-card,
.benefit-card,
.plan-panel,
.menu-card,
.cta-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.floating-card,
.glass-card {
  backdrop-filter: blur(18px);
}

.floating-card {
  position: absolute;
  border-radius: 32px;
}

.avocado-card {
  top: 24px;
  right: 24px;
  width: 220px;
  padding: 16px;
  transform: rotate(10deg);
  animation: floatY 5.5s ease-in-out infinite;
}

.avocado-card img {
  border-radius: 24px;
}

.strawberry-card {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  font-size: 2.3rem;
  background: linear-gradient(145deg, rgba(255,255,255,0.88), rgba(255,224,238,0.95));
}

.strawberry-a {
  top: 140px;
  left: 8px;
  animation: floatY 4.8s ease-in-out infinite;
}

.strawberry-b {
  top: 280px;
  right: 220px;
  animation: floatY 5.8s ease-in-out infinite 0.4s;
}

.strawberry-c {
  bottom: 80px;
  right: 28px;
  animation: floatY 4.6s ease-in-out infinite 0.8s;
}

.meal-showcase {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%) rotate(-9deg);
  width: min(100%, 410px);
}

.meal-lid {
  width: 74%;
  height: 42px;
  margin: 0 auto -6px;
  border-radius: 22px 22px 14px 14px;
  background: linear-gradient(180deg, #f9fafb, #e7edf4);
  box-shadow: 0 14px 20px rgba(31, 41, 55, 0.1);
}

.meal-box {
  position: relative;
  padding: 22px;
  border-radius: 34px;
  background: linear-gradient(160deg, #ffffff, #eef3f7);
  border: 2px solid rgba(31, 41, 55, 0.06);
  box-shadow: 0 30px 60px rgba(31, 41, 55, 0.12);
}

.meal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.meal-cell {
  min-height: 130px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}

.meal-cell::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 24px;
  opacity: 0.9;
}

.cell-salad {
  background: linear-gradient(145deg, #dff7ae, #86cb3f);
}

.cell-salad::after {
  background:
    radial-gradient(circle at 20% 20%, #fff6, transparent 25%),
    radial-gradient(circle at 75% 45%, #74a51c 10%, transparent 12%),
    radial-gradient(circle at 45% 68%, #5a8f12 12%, transparent 13%),
    radial-gradient(circle at 30% 80%, #fff2 14%, transparent 16%);
}

.cell-rice {
  background: linear-gradient(145deg, #fff3b2, #ffd54d);
}

.cell-rice::after {
  background:
    radial-gradient(circle at 35% 35%, #fffde9 9%, transparent 10%),
    radial-gradient(circle at 60% 55%, #ffe175 11%, transparent 12%),
    radial-gradient(circle at 48% 72%, #fff7d0 10%, transparent 11%),
    radial-gradient(circle at 72% 28%, #f8ca2a 8%, transparent 9%);
}

.cell-salmon {
  background: linear-gradient(145deg, #ffc3a7, #ff8c67);
}

.cell-salmon::after {
  background:
    linear-gradient(25deg, rgba(255,255,255,0.36), rgba(255,255,255,0) 35%),
    repeating-linear-gradient(130deg, rgba(255,255,255,0.16), rgba(255,255,255,0.16) 8px, transparent 8px, transparent 16px);
}

.cell-berries {
  background: linear-gradient(145deg, #ffc4da, #ff6ba8);
}

.cell-berries::after {
  background:
    radial-gradient(circle at 30% 34%, #fff4 10%, transparent 11%),
    radial-gradient(circle at 55% 50%, #c22763 14%, transparent 15%),
    radial-gradient(circle at 70% 24%, #ffd7e7 11%, transparent 12%),
    radial-gradient(circle at 38% 72%, #b81453 13%, transparent 14%);
}

.meal-shadow {
  width: 82%;
  height: 28px;
  margin: 14px auto 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31,41,55,0.18), rgba(31,41,55,0));
}

.delivery-note {
  position: absolute;
  left: 42px;
  bottom: 46px;
  border-radius: 24px;
  padding: 18px 20px;
  display: grid;
  gap: 4px;
}

.delivery-note strong {
  font-size: 1.75rem;
}

.stats-strip {
  gap: 18px;
  padding: 10px 0 0;
  flex-wrap: wrap;
}

.stat-card,
.benefit-card,
.plan-panel,
.menu-card {
  border-radius: var(--radius-lg);
  padding: 26px;
}

.stat-card {
  flex: 1 1 220px;
}

.stat-card strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 6px;
}

.benefits-section,
.menu-section {
  padding: 92px 0 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2,
.cta-card h2 {
  font-size: clamp(2.3rem, 4vw, 4.4rem);
}

.benefits-grid {
  gap: 18px;
  flex-wrap: wrap;
}

.benefit-card {
  flex: 1 1 280px;
}

.benefit-icon {
  width: 72px;
  height: 72px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  font-size: 2rem;
  margin-bottom: 18px;
}

.benefit-icon.lime { background: rgba(183, 243, 74, 0.3); }
.benefit-icon.yellow { background: rgba(255, 216, 77, 0.3); }
.benefit-icon.pink { background: rgba(255, 107, 168, 0.2); }

.plans-section {
  padding: 92px 0 0;
}

.plans-layout {
  background: linear-gradient(135deg, rgba(183,243,74,0.18), rgba(255,216,77,0.18), rgba(255,107,168,0.12));
  border-radius: 44px;
  padding: 34px;
}

.section-heading.compact {
  margin-bottom: 20px;
}

.plan-switcher {
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.plan-tab {
  min-height: 52px;
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  font-weight: 800;
  color: var(--text);
}

.plan-tab.active {
  background: var(--text);
  color: #fff;
}

.plan-panels {
  position: relative;
}

.plan-panel {
  display: none;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: start;
}

.plan-panel.active {
  display: grid;
}

.plan-panel ul {
  margin: 0;
  padding-left: 20px;
  color: var(--text);
  line-height: 1.8;
  font-weight: 700;
}

.plan-tag {
  background: rgba(183, 243, 74, 0.28);
  color: #45690b;
  margin-bottom: 16px;
}

.menu-grid {
  gap: 18px;
  align-items: stretch;
  flex-wrap: wrap;
}

.menu-card {
  position: relative;
  overflow: hidden;
}

.menu-card.featured {
  flex: 1.4 1 420px;
  min-height: 370px;
  background: linear-gradient(145deg, #ffffff, #fff6df);
}

.small-card {
  flex: 1 1 250px;
  min-height: 240px;
}

.accent-card {
  background: linear-gradient(145deg, #fff, #ffe6f0);
}

.menu-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.menu-badge {
  background: rgba(183, 243, 74, 0.28);
  color: #45690b;
}

.menu-price {
  background: rgba(255, 216, 77, 0.3);
}

.menu-visual {
  position: absolute;
  right: 24px;
  bottom: 18px;
}

.bowl-visual {
  width: 220px;
  height: 220px;
}

.bowl-shell {
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffffff, #f1f4f8);
  box-shadow: 0 16px 34px rgba(31, 41, 55, 0.12);
}

.bowl-fill {
  position: absolute;
  border-radius: 50%;
}

.fill-green { inset: 46px 84px 74px 44px; background: #8cd73b; }
.fill-orange { inset: 58px 40px 78px 110px; background: #ff8d5d; }
.fill-pink { inset: 110px 44px 44px 98px; background: #ff77b3; }
.fill-cream { inset: 108px 106px 42px 42px; background: #ffec98; }

.mini-fruits {
  display: flex;
  gap: 10px;
  margin-top: 22px;
  font-size: 2rem;
}

.alt span:last-child {
  color: var(--pink);
}

.cta-section {
  padding: 92px 0;
}

.cta-card {
  border-radius: 40px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,0.96), rgba(255,243,248,0.96));
}

.cta-form {
  display: grid;
  gap: 14px;
}

.cta-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.cta-form input {
  min-height: 58px;
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 0 18px;
  background: #fff;
}

.form-note {
  margin: 0;
  font-size: 0.95rem;
}

.site-footer {
  padding: 0 0 36px;
}

.footer-inner {
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 28px 0 0;
  border-top: 1px solid rgba(31, 41, 55, 0.08);
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
}

@media (max-width: 980px) {
  .hero-grid,
  .cta-card,
  .plan-panel {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 560px;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-header.menu-open .site-nav {
    display: flex;
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 14px;
    background: rgba(255,255,255,0.96);
    border-radius: 28px;
    box-shadow: 0 20px 40px rgba(31,41,55,0.12);
  }

  .site-header.menu-open .site-nav a {
    padding: 14px 16px;
    border-radius: 18px;
    background: #f8fafc;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .header-inner {
    min-height: 74px;
  }

  .hero-section {
    padding-top: 24px;
  }

  .hero-copy h1 {
    max-width: 12ch;
  }

  .hero-visual {
    min-height: 500px;
  }

  .avocado-card {
    width: 170px;
    top: 0;
    right: 0;
  }

  .strawberry-card {
    width: 72px;
    height: 72px;
    font-size: 1.9rem;
  }

  .strawberry-b {
    right: 160px;
  }

  .meal-showcase {
    width: min(100%, 320px);
    top: 56%;
  }

  .meal-cell {
    min-height: 95px;
  }

  .delivery-note {
    left: 8px;
    bottom: 18px;
  }

  .plans-layout,
  .cta-card {
    padding: 24px;
    border-radius: 30px;
  }

  .menu-card.featured,
  .small-card {
    min-height: auto;
  }

  .menu-visual {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 18px;
  }
}

@media (max-width: 480px) {
  .button,
  .plan-tab,
  .cta-form input {
    min-height: 52px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .avocado-card {
    width: 138px;
    padding: 10px;
  }

  .strawberry-a {
    top: 110px;
    left: 2px;
  }

  .strawberry-b {
    top: 214px;
    right: 112px;
  }

  .strawberry-c {
    right: 8px;
    bottom: 52px;
  }

  .meal-showcase {
    width: 260px;
  }

  .meal-box {
    padding: 14px;
    border-radius: 26px;
  }

  .meal-grid {
    gap: 10px;
  }

  .meal-cell {
    min-height: 76px;
    border-radius: 20px;
  }

  .delivery-note {
    padding: 14px 16px;
  }

  .delivery-note strong {
    font-size: 1.4rem;
  }

  .benefits-section,
  .menu-section,
  .plans-section,
  .cta-section {
    padding-top: 72px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }
}
