/* ============================================================
   COOKSY — style.css
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  --emerald:     #084734;
  --lime:        #CEF17B;
  --lime-mid:    #AADD66;
  --cream:       #F5EFE3;
  --cream-deep:  #EFE7D5;
  --ink:         #084734;
  --muted:       rgba(8,71,52,0.5);
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --trans:       0.6s var(--ease-out);
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── UNIVERSAL MICRO-LABEL PILL ──────────────────────────────── */
.micro-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(170,221,102,0.25);
  border: 1.5px solid #AADD66;
  border-radius: 999px;
  padding: 7px 18px;
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #084734;
}

/* ── SECTION UTILITY ─────────────────────────────────────────── */
.section-header {
  text-align: center;
  padding: 0 24px;
  margin-bottom: 64px;
}
.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
  margin-top: 16px;
}
.section-subtext {
  font-size: 16px;
  color: var(--muted);
  max-width: 540px;
  margin: 16px auto 0;
  line-height: 1.7;
}

/* GSAP from-states */
.gsap-fade-up    { opacity: 0; transform: translateY(30px);  will-change: opacity, transform; }
.gsap-slide-left  { opacity: 0; transform: translateX(-48px); will-change: opacity, transform; }
.gsap-slide-right { opacity: 0; transform: translateX(48px);  will-change: opacity, transform; }

/* ── UNIVERSAL CONTEXT CTA BUTTON ────────────────────────────── */
.btn-context-cta,
.cta-outline-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1.5px solid #084734;
  border-radius: 999px;
  padding: 12px 32px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #084734;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.22,1,0.36,1);
}
.btn-context-cta .cta-arrow,
.cta-outline-btn .btn-arrow {
  display: inline-block;
  transition: margin-left 0.2s ease;
}
.btn-context-cta:hover,
.cta-outline-btn:hover {
  background: #084734;
  color: #CEF17B;
  border-color: #084734;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(8,71,52,0.15);
}
.btn-context-cta:hover .cta-arrow,
.cta-outline-btn:hover .btn-arrow { margin-left: 4px; }

/* Context CTA on dark backgrounds */
.btn-context-cta--light {
  border-color: #CEF17B;
  color: #CEF17B;
}
.btn-context-cta--light:hover {
  background: #CEF17B;
  color: #084734;
  border-color: #CEF17B;
}

/* ── MAIN WAITLIST BUTTON — LIQUID GLASS ─────────────────────── */
.btn-waitlist {
  display: block;
  width: min(440px, 90vw);
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, rgba(8,71,52,0.92), rgba(8,71,52,0.85));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(206,241,123,0.35);
  border-radius: 999px;
  padding: 16px 48px;
  color: #CEF17B;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 600;
  box-shadow:
    0 4px 16px rgba(8,71,52,0.25),
    0 1px 4px rgba(8,71,52,0.15),
    inset 0 1px 0 rgba(206,241,123,0.2),
    inset 0 -1px 0 rgba(0,0,0,0.1);
  transition: all 0.3s cubic-bezier(0.22,1,0.36,1);
}
.btn-waitlist:hover {
  background: rgba(8,71,52,1);
  box-shadow: 0 8px 32px rgba(8,71,52,0.35);
  transform: translateY(-2px);
  border-color: rgba(206,241,123,0.6);
}

/* ── NAV ─────────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 32px;
  min-width: 480px;
  max-width: 860px;
  padding: 12px 20px 12px 28px;
  border-radius: 999px;
  background: rgba(8,71,52,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(206,241,123,0.15);
  box-shadow: 0 4px 32px rgba(8,71,52,0.2);
  transition: var(--trans);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--lime);
  margin-right: auto;
  letter-spacing: -0.01em;
}
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: 13px; font-weight: 400; color: rgba(206,241,123,0.65); transition: color 0.3s; }
.nav-links a:hover { color: var(--lime); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  background: rgba(206,241,123,0.15);
  border: 1px solid rgba(206,241,123,0.3);
  color: var(--lime);
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 999px;
  transition: var(--trans);
  white-space: nowrap;
}
.btn-nav-cta:hover { background: rgba(206,241,123,0.25); transform: translateY(-1px); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--lime); border-radius: 2px; transition: var(--trans); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  position: fixed; inset: 0; z-index: 99;
  background: #084734;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}
.nav-overlay.open { opacity: 1; pointer-events: all; }
.nav-overlay-close {
  position: absolute; top: 24px; right: 28px;
  font-size: 24px; color: var(--lime); opacity: 0.7;
  cursor: pointer; background: none; border: none; padding: 8px;
  transition: opacity 0.2s;
}
.nav-overlay-close:hover { opacity: 1; }
.overlay-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 500;
  color: var(--lime); opacity: 0.85;
}
.overlay-link:hover { opacity: 1; }

/* ── HERO ────────────────────────────────────────────────────── */
#hero {
  background: radial-gradient(ellipse 90% 70% at 50% 30%, rgba(206,241,123,0.08) 0%, transparent 65%), #F5EFE3;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 60px 160px;
  overflow: hidden;
  position: relative;
}

/* Food emoji floats */
.hero-food-items {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.food-item {
  position: absolute;
  pointer-events: none;
  user-select: none;
  opacity: 0.75;
  line-height: 1;
}

@keyframes food-float-a {
  0%,100% { transform: translateY(0px) rotate(var(--rot)); }
  50%      { transform: translateY(-8px) rotate(var(--rot)); }
}
@keyframes food-float-b {
  0%,100% { transform: translateY(0px) rotate(var(--rot)); }
  50%      { transform: translateY(-12px) rotate(var(--rot)); }
}
@keyframes food-float-c {
  0%,100% { transform: translateY(0px) rotate(var(--rot)); }
  33%      { transform: translateY(-6px) rotate(var(--rot)); }
  66%      { transform: translateY(-10px) rotate(var(--rot)); }
}
.fi-1  { animation: food-float-a 5.0s ease-in-out infinite 0.0s; }
.fi-2  { animation: food-float-b 6.5s ease-in-out infinite 0.4s; }
.fi-3  { animation: food-float-c 7.2s ease-in-out infinite 1.1s; }
.fi-4  { animation: food-float-a 4.8s ease-in-out infinite 0.7s; }
.fi-5  { animation: food-float-b 5.5s ease-in-out infinite 1.5s; }
.fi-6  { animation: food-float-c 8.0s ease-in-out infinite 0.2s; }
.fi-7  { animation: food-float-a 4.4s ease-in-out infinite 2.1s; }
.fi-8  { animation: food-float-b 6.8s ease-in-out infinite 0.9s; }
.fi-9  { animation: food-float-c 5.8s ease-in-out infinite 1.7s; }
.fi-10 { animation: food-float-a 7.1s ease-in-out infinite 0.3s; }
.fi-11 { animation: food-float-b 4.9s ease-in-out infinite 2.4s; }
.fi-12 { animation: food-float-c 6.3s ease-in-out infinite 0.8s; }
.fi-13 { animation: food-float-a 5.7s ease-in-out infinite 1.3s; }
.fi-14 { animation: food-float-b 8.2s ease-in-out infinite 0.5s; }
.fi-15 { animation: food-float-c 4.6s ease-in-out infinite 2.8s; }
.fi-16 { animation: food-float-a 6.0s ease-in-out infinite 1.9s; }
.fi-17 { animation: food-float-b 5.2s ease-in-out infinite 2.6s; }
.fi-18 { animation: food-float-c 7.4s ease-in-out infinite 0.6s; }
.fi-19 { animation: food-float-a 4.2s ease-in-out infinite 1.0s; }
.fi-20 { animation: food-float-b 6.6s ease-in-out infinite 3.0s; }
.fi-21 { animation: food-float-b 5.4s ease-in-out infinite 0.6s; }
.fi-22 { animation: food-float-b 6.1s ease-in-out infinite 1.8s; }
.fi-23 { animation: food-float-b 4.7s ease-in-out infinite 2.2s; }
.fi-24 { animation: food-float-b 5.9s ease-in-out infinite 0.9s; }
.fi-25 { animation: food-float-b 7.3s ease-in-out infinite 1.4s; }
.fi-26 { animation: food-float-b 5.0s ease-in-out infinite 2.7s; }

.hero-inner {
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}
.hero-left {
  max-width: 680px;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Beta pill */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(206,241,123,0.2);
  color: #084734;
  border: 1px solid rgba(8,71,52,0.25);
  font-family: 'Manrope', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em;
  padding: 8px 20px;
  border-radius: 999px;
  margin-bottom: 32px;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.hero-tag.visible { opacity: 1; transform: translateY(0); }

.pulse-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #AADD66;
  animation: pulse-anim 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-anim {
  0%, 100% { box-shadow: 0 0 0 0 rgba(170,221,102,0.5); }
  50%       { box-shadow: 0 0 0 5px rgba(170,221,102,0); }
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 8vw, 96px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.headline-line { display: block; color: #084734; font-style: normal; }
.headline-line-2 { font-style: italic; color: #AADD66; }
.hero-headline .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
  will-change: opacity, transform;
}
.hero-headline .word.visible { opacity: 1; transform: translateY(0); }

/* Glassmorphic subtext */
#hero-subline {
  width: min(580px, 90vw);
  margin: 0 auto 44px;
  background: rgba(245,239,227,0.55);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(8,71,52,0.18);
  border-radius: 20px;
  padding: 22px 36px;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  color: #084734;
  line-height: 1.65;
  text-align: center;
  box-shadow:
    0 8px 32px rgba(8,71,52,0.08),
    0 2px 8px rgba(8,71,52,0.05),
    inset 0 1px 0 rgba(255,255,255,0.6),
    inset 0 -1px 0 rgba(8,71,52,0.05);
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out) 0.2s, transform 0.6s var(--ease-out) 0.2s;
}
#hero-subline.visible { opacity: 1; transform: translateY(0); }

.hero-cta-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  width: 100%;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.6s var(--ease-out) 0.3s, transform 0.6s var(--ease-out) 0.3s;
}
.hero-cta-wrap.visible { opacity: 1; transform: translateY(0); }

.hero-social-proof {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 12px; font-weight: 500; color: #084734;
  background: rgba(245,239,227,0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(8,71,52,0.2);
  border-radius: 999px; padding: 8px 20px;
  margin: 0 auto;
}
.proof-dot { width: 6px; height: 6px; border-radius: 50%; background: #AADD66; flex-shrink: 0; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2; opacity: 0.4;
  animation: chevron-bounce 2.2s ease-in-out infinite;
}
@keyframes chevron-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── PEEPING HUMANS ──────────────────────────────────────────── */
.peeping-humans {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}
.peep-fig {
  position: absolute;
  bottom: 0;
}
.peep-fig-1 { left: 4%;  bottom: -5px;  animation: peep-bob 3.2s ease-in-out infinite; }
.peep-fig-2 { left: 18%; bottom: 2px;   animation: peep-bob 4.1s ease-in-out infinite 0.5s; }
.peep-fig-3 { left: 33%; bottom: -8px;  animation: peep-bob 2.8s ease-in-out infinite 1.1s; }
.peep-fig-4 { left: 48%; bottom: 5px;   animation: peep-bob 3.7s ease-in-out infinite 0.3s; }
.peep-fig-5 { left: 64%; bottom: -3px;  animation: peep-bob 4.5s ease-in-out infinite 0.8s; }
.peep-fig-6 { left: 80%; bottom: 0px;   animation: peep-bob 3.0s ease-in-out infinite 1.4s; }

@keyframes peep-bob {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-4px); }
}

/* ── SLOGAN ──────────────────────────────────────────────────── */
#slogan {
  background: #EFE7D5;
  min-height: 200vh;
  position: relative;
}
.slogan-inner {
  position: sticky; top: 0; height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 0 5vw;
}
.slogan-sentence {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 4vw, 58px);
  font-weight: 500; font-style: italic;
  color: var(--ink); line-height: 1.35;
  text-align: center; max-width: 880px;
}
.slogan-word {
  display: inline-block;
  color: rgba(8,71,52,0.12);
  transition: color 0.4s var(--ease-out);
  will-change: color;
}
.slogan-word.lit { color: #084734; }

/* ── TESTIMONIALS ────────────────────────────────────────────── */
#testimonials {
  background: #F5EFE3;
  padding: clamp(40px,8vw,120px) 0 80px;
  position: relative;
  overflow: hidden;
}
.testi-stage {
  position: relative;
  height: 580px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
}
.testi-card-wrap {
  position: absolute;
  left: 50%; top: 50%;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), opacity 0.5s ease;
  cursor: pointer;
}
.testi-card {
  width: 340px; height: 340px;
  background: #F5EFE3;
  border: 2px solid rgba(8,71,52,0.2);
  position: relative;
  overflow: hidden;
  padding: 32px;
  clip-path: polygon(40px 0%, calc(100% - 40px) 0%, 100% 40px, 100% 100%, 0 100%, 0 0);
}
.testi-card--center {
  background: #084734;
  border-color: #CEF17B;
  box-shadow: 0 8px 0 4px rgba(8,71,52,0.15);
}
.testi-corner-line {
  position: absolute;
  top: 0px; right: 40px;
  width: 57px; height: 2px;
  background: rgba(8,71,52,0.2);
  transform: rotate(45deg);
  transform-origin: top right;
  z-index: 6;
  pointer-events: none;
}
.testi-card--center .testi-corner-line { background: rgba(206,241,123,0.4); }
.testi-card-inner {
  height: 100%; display: flex; flex-direction: column; gap: 14px;
}
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%; object-fit: cover; object-position: top;
  border: 2px solid rgba(8,71,52,0.15);
  flex-shrink: 0;
}
.testi-card--center .testi-avatar { border-color: rgba(206,241,123,0.3); }
.testi-quote {
  font-family: 'Playfair Display', serif;
  font-size: 17px; font-style: italic;
  color: #084734; line-height: 1.6;
  flex: 1;
}
.testi-card--center .testi-quote { color: #CEF17B; }
.testi-by {
  font-size: 12px; font-style: normal; font-family: 'Manrope', sans-serif;
  color: var(--muted);
  margin-top: auto;
}
.testi-card--center .testi-by { color: rgba(206,241,123,0.65); }
.testi-nav {
  display: flex; gap: 16px; justify-content: center; margin-top: 40px;
}
.testi-nav-btn {
  width: 56px; height: 56px;
  border: 2px solid #084734; background: #F5EFE3;
  color: #084734;
  font-size: 20px; font-family: 'Manrope', sans-serif;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.testi-nav-btn:hover { background: #084734; color: #CEF17B; border-color: #084734; }

/* Testimonials floating decor */
.sec-food {
  position: absolute;
  font-size: 26px;
  opacity: 0.3;
  pointer-events: none;
  user-select: none;
  animation: sec-food-float 6s ease-in-out infinite;
}
.sf-1 { top: 8%;  left: 3%;  font-size: 28px; animation-delay: 0s;   animation-duration: 5.5s; }
.sf-2 { top: 15%; right: 4%; font-size: 24px; animation-delay: 1.2s; animation-duration: 7s; }
.sf-3 { bottom: 20%; left: 6%; font-size: 26px; animation-delay: 0.7s; animation-duration: 6.2s; }
.sf-4 { bottom: 10%; right: 8%; font-size: 22px; animation-delay: 2s; animation-duration: 5s; }
.sf-5 { top: 50%; left: 1.5%; font-size: 24px; animation-delay: 0.3s; animation-duration: 6.8s; }
@keyframes sec-food-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* ── PROBLEM ─────────────────────────────────────────────────── */
#problem {
  background: #EFE7D5;
  min-height: 500vh;
  position: relative;
}
.problem-pin {
  width: 100%; height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 60px 24px;
  box-sizing: border-box;
  position: relative;
}
#problem-heading { text-align: center; margin-bottom: 0; }
.problem-cards-stage {
  position: relative;
  width: 100%; max-width: 1100px;
  height: 300px;
  margin-top: 48px;
}
.stat-card {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #084734;
  border: 2px solid #CEF17B;
  border-radius: 24px;
  padding: 40px 36px;
  min-height: 220px;
  width: 380px;
  max-width: 88vw;
  box-shadow: 0 8px 40px rgba(8,71,52,0.15);
  display: flex; flex-direction: column; justify-content: flex-end;
  opacity: 0;
}
#stat-1 { left: calc(50% - 420px); }
#stat-2 { left: calc(50% - 190px); }
#stat-3 { left: calc(50% + 40px); }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px; font-weight: 600;
  color: #CEF17B; line-height: 1;
}
.stat-label {
  font-size: 14px; color: rgba(206,241,123,0.7);
  margin-top: 12px; line-height: 1.5;
  font-family: 'Manrope', sans-serif;
}

/* ── FIX / QUIETLY ───────────────────────────────────────────── */
#fix-quietly {
  background: radial-gradient(
    125% 125% at 50% 10%,
    #CEF17B 0%,
    #AADD66 25%,
    #084734 65%
  );
  min-height: 300vh;
}
.fix-quietly-pin {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  box-sizing: border-box;
}
.fq-text-col {
  display: flex; flex-direction: column;
  align-items: center; gap: 20px;
  text-align: center;
}
.fq-line {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: #084734;
  line-height: 1.1;
  text-align: center;
}
.fq-1 { font-size: clamp(36px, 5.5vw, 68px); }
.fq-2 { font-size: clamp(64px, 10vw, 120px); color: #CEF17B; font-weight: 700; }

/* ── HOW IT WORKS ────────────────────────────────────────────── */
#how-it-works {
  background: #F5EFE3;
  padding: clamp(40px,8vw,120px) 24px clamp(40px,8vw,120px);
  position: relative;
  overflow: hidden;
}
.steps-progress-wrap { max-width: 1100px; margin: 0 auto 40px; padding: 0 24px; }
.steps-progress-track {
  width: 100%; height: 2px;
  background: rgba(8,71,52,0.1);
  border-radius: 2px; position: relative; overflow: hidden;
}
.steps-progress-fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 0%; background: #AADD66; border-radius: 2px;
  transition: width 0.4s var(--ease-out);
}
.steps-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 24px; max-width: 1100px; margin: 0 auto; padding: 0 24px;
}
.step-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  border-radius: 24px; padding: 40px;
  box-shadow: 0 8px 32px rgba(8,71,52,0.10);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  opacity: 0; transform: translateY(60px);
}
.step-card-content { display: flex; flex-direction: column; }
.step-card.visible {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out), box-shadow 0.4s;
}
.step-card:hover { transform: translateY(-2px); box-shadow: 0 16px 48px rgba(8,71,52,0.12); }
.step-card-1 { background: #084734; border: 2px solid #CEF17B; --section-bg: #084734; }
.step-card-2 { background: #AADD66; border: 2px solid #084734; --section-bg: #AADD66; }
.step-card-3 { background: #CEF17B; border: 2px solid #084734; --section-bg: #CEF17B; }
.step-numeral {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px; font-weight: 600;
  margin-bottom: 20px;
  display: block; line-height: 1;
}
.step-card-1 .step-numeral { color: rgba(206,241,123,0.3); }
.step-card-2 .step-numeral { color: rgba(8,71,52,0.2); }
.step-card-3 .step-numeral { color: rgba(8,71,52,0.2); }
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2vw, 26px); font-weight: 500;
  line-height: 1.25; margin-bottom: 14px;
}
.step-card-1 .step-title { color: #CEF17B; }
.step-card-2 .step-title, .step-card-3 .step-title { color: #084734; }
.step-body { font-size: 14px; line-height: 1.7; }
.step-card-1 .step-body { color: rgba(206,241,123,0.7); }
.step-card-2 .step-body, .step-card-3 .step-body { color: rgba(8,71,52,0.65); }

/* How It Works floating decor */
.hiw-f1 { top: 6%; left: 2%; font-size: 22px; animation-delay: 0.4s; animation-duration: 6s; }
.hiw-f2 { bottom: 15%; right: 3%; font-size: 24px; animation-delay: 1.5s; animation-duration: 5.5s; }
.hiw-f3 { top: 40%; right: 2%; font-size: 20px; animation-delay: 0.8s; animation-duration: 7s; }
.hiw-f4 { bottom: 5%; left: 5%; font-size: 22px; animation-delay: 2.2s; animation-duration: 6.5s; }
.hiw-f5 { top: 20%; left: 1.5%; font-size: 20px; animation-delay: 1.0s; animation-duration: 5.8s; }

/* ── BENEFITS ────────────────────────────────────────────────── */
#benefits {
  background: #EFE7D5;
  --section-bg: #EFE7D5;
  padding: clamp(40px,8vw,120px) 24px;
  position: relative; overflow: hidden;
}
.benefits-feature {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
  max-width: 1100px; margin: 80px auto;
}
.benefits-feature.reversed { direction: rtl; }
.benefits-feature.reversed > * { direction: ltr; }
.benefit-eyebrow {
  display: inline-block; margin-bottom: 14px;
  background: rgba(170,221,102,0.25);
  border: 1.5px solid #AADD66;
  color: #084734;
  border-radius: 999px; padding: 7px 18px;
  font-family: 'Manrope', sans-serif; font-size: 10px;
  font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
}
.benefit-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 38px); font-weight: 500;
  color: #084734; line-height: 1.2; margin-bottom: 18px;
}
.benefit-body { font-size: 15px; color: var(--muted); line-height: 1.75; }
.recipe-mock, .expiry-mock {
  background: #F5EFE3;
  border: 1.5px solid rgba(8,71,52,0.15);
  border-radius: 20px; padding: 28px;
  box-shadow: 0 8px 32px rgba(8,71,52,0.06);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.recipe-mock:hover, .expiry-mock:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(8,71,52,0.1);
}
.recipe-mock-title {
  font-size: 12px; font-weight: 700; color: #084734;
  margin-bottom: 16px; letter-spacing: 0.06em; text-transform: uppercase;
}
.recipe-mock-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0; border-bottom: 1px solid rgba(8,71,52,0.07);
  font-size: 14px; color: #084734;
}
.recipe-mock-item:last-child { border-bottom: none; }
.match-pill { font-size: 11px; font-weight: 700; padding: 3px 12px; border-radius: 999px; }
.match-green  { background: rgba(170,221,102,0.25); color: #084734; }
.match-yellow { background: rgba(206,241,123,0.3);  color: #084734; }
.match-mid    { background: rgba(8,71,52,0.08);     color: #084734; }
.expiry-item { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid rgba(8,71,52,0.07); }
.expiry-item:last-child { border-bottom: none; }
.expiry-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.expiry-text { font-size: 14px; color: #084734; flex: 1; }
.expiry-days { font-size: 12px; font-weight: 600; color: var(--muted); }

/* Benefits floating decor */
.ben-f1 { top: 5%;  left: 1%;  font-size: 24px; animation-delay: 0.5s; animation-duration: 6.2s; }
.ben-f2 { top: 30%; right: 2%; font-size: 22px; animation-delay: 1.8s; animation-duration: 5.4s; }
.ben-f3 { bottom: 20%; left: 3%; font-size: 20px; animation-delay: 0.9s; animation-duration: 7.1s; }
.ben-f4 { bottom: 8%; right: 4%; font-size: 24px; animation-delay: 2.5s; animation-duration: 6s; }

/* ── FEATURES ────────────────────────────────────────────────── */
#features {
  background: #F5EFE3;
  --section-bg: #F5EFE3;
  padding: clamp(40px,8vw,120px) 24px;
}
.features-intro { margin-bottom: 80px; }
.feature-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px;
  border-bottom: 1px solid rgba(8,71,52,0.08);
}
.feature-panel:last-child { border-bottom: none; }
.feature-panel-left {
  display: flex; flex-direction: column; gap: 20px;
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.feature-panel-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.feature-panel.visible .feature-panel-left,
.feature-panel.visible .feature-panel-right {
  opacity: 1;
  transform: translateX(0);
}
.feature-accent-line {
  width: 48px; height: 4px; border-radius: 2px;
}
.features-heading {
  font-size: clamp(40px, 5.5vw, 68px) !important;
}
.feature-panel-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 600; color: #084734;
  line-height: 1.15;
}
.feature-panel-body {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  color: rgba(8,71,52,0.65);
  line-height: 1.75;
  max-width: 480px;
}
/* ── IMAGE PLACEHOLDER (universal) ───────────────────────────── */
.img-placeholder {
  width: 100%;
  max-width: 480px;
  height: 360px;
  background: rgba(8,71,52,0.04);
  border: 2px dashed rgba(8,71,52,0.18);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.img-placeholder .ph-icon {
  font-size: 28px;
  opacity: 0.3;
}
.img-placeholder .ph-label {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(8,71,52,0.3);
}
.img-placeholder .ph-id {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  color: rgba(8,71,52,0.2);
  margin-top: 4px;
}

/* Phone placeholder (waitlist section) */
.phone-placeholder {
  width: 200px;
  height: 380px;
  background: rgba(8,71,52,0.08);
  border: 2px dashed rgba(8,71,52,0.2);
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: absolute;
  z-index: 0;
  pointer-events: none;
}
.phone-ph-faded { opacity: 0.6; }
.phone-ph-label {
  font-family: 'Manrope', sans-serif;
  font-size: 9px;
  color: rgba(8,71,52,0.25);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Step card-1 dark bg: lighten placeholder */
.step-card-1 .img-placeholder {
  background: rgba(206,241,123,0.05);
  border-color: rgba(206,241,123,0.2);
}
.step-card-1 .img-placeholder .ph-label,
.step-card-1 .img-placeholder .ph-id { color: rgba(206,241,123,0.25); }

/* Think kitchen floating food items */
.tk-food {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  opacity: 0.2;
  line-height: 1;
}

/* ── BRAND TAGLINE ───────────────────────────────────────────── */
#brand-tagline {
  background: #084734;
  padding: clamp(40px,8vw,120px) 80px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; min-height: 100vh;
  position: relative;
}
.brand-tagline-inner {
  display: flex; align-items: center; justify-content: center;
  max-width: 1200px; width: 100%;
  position: relative; z-index: 2;
}
.tagline-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 7.5vw, 96px); font-weight: 600;
  font-style: italic;
  color: #CEF17B; line-height: 1.1;
  letter-spacing: -0.02em;
  text-align: center;
}
.tagline-line {
  display: block; opacity: 0; transform: translateY(40px);
  will-change: opacity, transform;
}

/* ── FAQ ─────────────────────────────────────────────────────── */
#faq {
  background: #EFE7D5;
  padding: clamp(40px,8vw,120px) 24px;
}
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(8,71,52,0.12); }
.faq-btn {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; padding: 24px 0; text-align: left;
}
.faq-btn:hover .faq-question { color: #084734; opacity: 1; }
.faq-btn-left { display: flex; align-items: center; gap: 20px; }
.faq-num { font-size: 11px; font-weight: 700; color: var(--muted); letter-spacing: 0.1em; min-width: 26px; opacity: 0.5; }
.faq-question {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2vw, 22px); font-weight: 500;
  color: #084734; transition: opacity 0.3s;
}
.faq-icon { font-size: 24px; color: var(--muted); font-weight: 300; transition: transform 0.35s var(--ease-out); flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-out); }
.faq-answer-inner {
  padding: 0 0 24px 46px;
  font-size: 15px; color: var(--muted); line-height: 1.7;
}
.faq-item.open .faq-answer-inner {
  border-left: 3px solid #AADD66;
  padding-left: 16px;
  margin-left: 46px;
  background: rgba(239,231,213,0.6);
  border-radius: 0 0 8px 8px;
  margin-bottom: 8px;
  padding-bottom: 20px;
}

/* ── UI SHOWCASE SYSTEM ──────────────────────────────────────── */
.ui-showcase {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 540px;
  opacity: 0;
  transform: translateY(32px) scale(0.97);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1),
              transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.ui-showcase.ui-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.glass-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: rgba(245,239,227,0.06);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 32px;
  padding: 24px;
}

.glow-layer {
  position: absolute;
  inset: -30px;
  z-index: 0;
  pointer-events: none;
  border-radius: 40px;
  filter: blur(40px);
  opacity: 0.45;
}

.ui-showcase[style*="--glow-1:#CEF17B"] .glow-layer {
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, #CEF17B40 0%, transparent 70%),
    radial-gradient(ellipse 40% 35% at 72% 28%, #AADD6630 0%, transparent 65%);
}
.ui-showcase[style*="--glow-1:#084734"] .glow-layer {
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, #08473440 0%, transparent 70%),
    radial-gradient(ellipse 40% 35% at 30% 70%, #CEF17B25 0%, transparent 65%);
}
.ui-showcase[style*="--glow-1:#AADD66"] .glow-layer {
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, #AADD6640 0%, transparent 70%),
    radial-gradient(ellipse 40% 35% at 70% 30%, #CEF17B30 0%, transparent 65%);
}

.ui-img-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.ui-img-wrapper::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(255,255,255,0.10) 0%, transparent 100%);
  border-radius: 24px 24px 0 0;
  pointer-events: none;
  z-index: 2;
}

.ui-img {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  box-shadow:
    0 2px 0 rgba(255,255,255,0.8) inset,
    0 -1px 0 rgba(0,0,0,0.05) inset,
    0 24px 64px rgba(8,71,52,0.18),
    0 8px 24px rgba(8,71,52,0.12),
    0 2px 8px rgba(8,71,52,0.06);
  transition:
    transform 0.4s cubic-bezier(0.22,1,0.36,1),
    box-shadow 0.4s cubic-bezier(0.22,1,0.36,1);
  animation: ui-float 5s ease-in-out infinite;
  will-change: transform;
}
.ui-showcase:hover .ui-img { animation-play-state: paused; }
.block-ui { border-radius: 20px; }

.ui-img.phone-ui {
  width: 260px;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  object-position: top center;
  clip-path: none;
  display: block;
  border-radius: 24px;
  flex-shrink: 0;
  -webkit-mask-image: linear-gradient(to bottom, black 65%, transparent 90%);
  mask-image: linear-gradient(to bottom, black 65%, transparent 90%);
}

.ui-img.block-ui {
  width: 100%;
  max-width: 420px;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  object-position: center;
  border-radius: 16px;
  display: block;
}

@keyframes ui-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

/* ── WAITLIST ────────────────────────────────────────────────── */
#waitlist {
  background: #CEF17B;
  padding: clamp(40px,8vw,120px) 24px;
  position: relative; overflow: hidden;
}
.waitlist-food-motif {
  position: absolute; font-size: 36px; z-index: 0;
  user-select: none; pointer-events: none; opacity: 0.35;
}
.motif-float-1 { animation: motif-float 5s ease-in-out infinite; }
.motif-float-2 { animation: motif-float 6.5s ease-in-out infinite 0.8s; }
.motif-float-3 { animation: motif-float 4.8s ease-in-out infinite 1.5s; }
.motif-float-4 { animation: motif-float 7s ease-in-out infinite 0.3s; }
.motif-float-5 { animation: motif-float 5.5s ease-in-out infinite 2s; }
@keyframes motif-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
.waitlist-card {
  position: relative; z-index: 1;
  background: rgba(245,239,227,0.92);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(8,71,52,0.15);
  border-radius: 28px; padding: 64px;
  max-width: 520px; margin: 0 auto;
  box-shadow: 0 24px 80px rgba(8,71,52,0.12);
  text-align: center;
}
.waitlist-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: #084734;
  background: rgba(170,221,102,0.25);
  border: 1.5px solid #AADD66;
  border-radius: 999px; padding: 7px 18px;
  display: inline-block; margin-bottom: 20px;
}
.waitlist-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3.5vw, 40px); font-weight: 600;
  color: #084734; line-height: 1.15; margin-bottom: 14px;
}
.waitlist-body { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 32px; }
.waitlist-form { display: flex; flex-direction: column; gap: 12px; }
.form-input {
  width: 100%; padding: 16px 20px;
  border: 1.5px solid rgba(8,71,52,0.2); border-radius: 12px;
  font-family: 'Manrope', sans-serif; font-size: 15px; color: #084734;
  background: rgba(245,239,227,0.8); outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-input:focus { border-color: #084734; box-shadow: 0 0 0 3px rgba(8,71,52,0.1); }
.form-input::placeholder { color: var(--muted); }
.btn-waitlist-submit {
  padding: 18px; border-radius: 12px;
  font-family: 'Manrope', sans-serif; font-size: 15px; font-weight: 700;
  color: #CEF17B;
  background: linear-gradient(135deg, #084734 0%, #052d22 100%);
  border: none; cursor: pointer; position: relative; overflow: hidden;
  transition: var(--trans); margin-top: 4px;
}
.btn-waitlist-submit::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(206,241,123,0.1), transparent);
  transform: translateX(-100%); transition: transform 0.7s var(--ease-out);
}
.btn-waitlist-submit:hover::after { transform: translateX(100%); }
.btn-waitlist-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(8,71,52,0.35); }
.hype-line { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 13px; color: var(--muted); margin-top: 20px; }
.hype-dot { width: 8px; height: 8px; border-radius: 50%; background: #AADD66; animation: pulse-anim 2s ease-in-out infinite; }
.form-disclaimer { font-size: 12px; color: var(--muted); opacity: 0.7; margin-top: 10px; }
.form-success { display: none; text-align: center; padding: 20px 0; }
.form-success-icon { font-size: 56px; margin-bottom: 16px; }
.form-success h3 { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 600; color: #084734; margin-bottom: 10px; }
.form-success p { font-size: 15px; color: var(--muted); line-height: 1.6; }

/* ── CONFETTI TOAST ──────────────────────────────────────────── */
.confetti-toast {
  position: fixed; bottom: 32px; right: 32px;
  width: 320px; z-index: 10000;
  background: #F5EFE3; border: 2px solid #084734;
  border-radius: 20px; padding: 24px 28px;
  box-shadow: 0 16px 48px rgba(8,71,52,0.15);
  opacity: 0; transform: translateY(20px);
  animation: toast-in 0.4s cubic-bezier(0.22,1,0.36,1) forwards;
}
@keyframes toast-in { to { opacity: 1; transform: translateY(0); } }
.toast-emoji { font-size: 32px; margin-bottom: 8px; }
.toast-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600; color: #084734;
  margin-bottom: 6px;
}
.toast-sub { font-size: 13px; color: var(--muted); line-height: 1.55; }
.toast-close {
  position: absolute; top: 14px; right: 14px;
  font-size: 18px; color: var(--muted); cursor: pointer;
  background: none; border: none; padding: 4px;
  line-height: 1; transition: color 0.2s;
}
.toast-close:hover { color: #084734; }

/* ── FOOTER ──────────────────────────────────────────────────── */
footer { background: #084734; padding: 80px 80px 40px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 64px;
  border-bottom: 1px solid rgba(206,241,123,0.1);
}
.footer-brand-name { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 700; color: var(--lime); margin-bottom: 8px; }
.footer-brand-tagline { font-size: 14px; color: rgba(206,241,123,0.5); margin-bottom: 8px; }
.footer-email { font-size: 12px; }
.footer-email a { color: rgba(206,241,123,0.45); transition: color 0.3s; }
.footer-email a:hover { color: var(--lime); }
.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(206,241,123,0.3); margin-bottom: 20px; }
.footer-col-links { display: flex; flex-direction: column; gap: 12px; }
.footer-col-links a { font-size: 14px; color: rgba(206,241,123,0.6); transition: color 0.3s; }
.footer-col-links a:hover { color: var(--lime); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 32px; }
.footer-copy { font-size: 13px; color: rgba(206,241,123,0.3); }
.footer-social { display: flex; gap: 16px; }
.footer-social a { color: rgba(206,241,123,0.4); transition: color 0.3s; }
.footer-social a:hover { color: var(--lime); }
.footer-social svg { width: 20px; height: 20px; }

/* ── REDUCED MOTION ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .slogan-word { color: #084734 !important; }
  .gsap-fade-up, .gsap-slide-left, .gsap-slide-right { opacity: 1 !important; transform: none !important; }
  .tagline-line { opacity: 1 !important; transform: none !important; }
  .fq-line { opacity: 1 !important; transform: none !important; }
  .step-card { opacity: 1 !important; transform: none !important; }
  .stat-card { opacity: 1 !important; transform: none !important; }
  .feature-panel { opacity: 1 !important; transform: none !important; }
  .feature-panel-left, .feature-panel-right { opacity: 1 !important; transform: none !important; }
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */

/* ── LAPTOP: 769px–1024px ────────────────────────────────────── */
@media (max-width: 1024px) {
  #hero { padding: 120px 40px 160px; }
  footer { padding: 60px 40px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .feature-panel { gap: 48px; }
  #brand-tagline { padding: 80px 40px; }
  .fix-quietly-pin { padding: 60px 40px; }
}

/* ── TABLET: 481px–768px ─────────────────────────────────────── */
@media (max-width: 768px) {
  /* Nav */
  #nav { min-width: calc(100vw - 32px); max-width: calc(100vw - 32px); padding: 10px 16px; }
  .nav-links { display: none; }
  .btn-nav-cta { display: inline-flex; font-size: 12px; padding: 7px 14px; }
  .nav-hamburger { display: flex; }

  /* Hero */
  #hero { padding: 100px 24px 160px; min-height: 100vh; }
  .hero-left { max-width: 100%; }
  .peeping-humans { display: none; }
  /* hide far food items on small screens */
  .fi-6, .fi-7, .fi-8, .fi-9, .fi-14, .fi-15 { display: none; }

  /* Sections padding */
  .section-header { margin-bottom: 40px; }

  /* Steps */
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { grid-template-columns: 1fr; min-height: auto; opacity: 1 !important; transform: none !important; }
  .step-card .img-placeholder { order: -1; height: 220px; max-width: 100%; }

  /* Phone placeholders */
  .phone-placeholder { display: none; }

  /* Benefits */
  .benefits-feature, .benefits-feature.reversed {
    grid-template-columns: 1fr; direction: ltr; gap: 32px;
  }

  /* Problem */
  #problem { min-height: auto; }
  .problem-pin { height: auto; min-height: 80vh; padding: 80px 24px; }
  .problem-cards-stage { position: static; height: auto; display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
  .stat-card {
    position: static;
    transform: none !important;
    opacity: 1 !important;
    width: 100%; max-width: 420px;
    margin: 0 auto;
  }

  /* Fix/Quietly */
  #fix-quietly { min-height: auto; }
  .fix-quietly-pin { height: auto; min-height: 60vh; padding: 80px 24px; }

  /* Features */
  .feature-panel { grid-template-columns: 1fr; gap: 32px; padding: 40px 24px; }
  .feature-panel-right { order: -1; }
  .feature-panel-left, .feature-panel-right { opacity: 1 !important; transform: none !important; }
  .img-placeholder { height: 220px; max-width: 100%; }

  /* UI showcase responsive */
  .ui-showcase { min-height: 420px; }
  .ui-img.phone-ui { width: 200px; max-height: 400px; }
  .ui-img.block-ui { max-height: 160px; }

  /* Brand tagline */
  #brand-tagline { padding: 80px 24px; min-height: 60vh; }

  /* Footer */
  footer { padding: 48px 24px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  /* Waitlist */
  .waitlist-card { padding: 36px 24px; }
  .waitlist-food-motif { display: none; }

  /* Testimonials */
  .testi-card { width: 280px; height: 280px; }
  .testi-stage { height: 480px; }

  /* Toast */
  .confetti-toast { right: 16px; bottom: 16px; width: calc(100vw - 32px); }

  /* UI Showcase */
  .glass-card { padding: 16px; }
  .ui-img { max-width: 240px !important; }
  .glow-layer { filter: blur(32px); opacity: 0.35; }
}

/* ── MOBILE: max-width 480px ─────────────────────────────────── */
@media (max-width: 480px) {
  #hero { padding: 90px 20px 140px; }

  .hero-tag { font-size: 10px; padding: 6px 14px; }

  #hero-subline { padding: 14px 18px; border-radius: 14px; }

  .btn-waitlist { width: 100%; justify-content: center; }

  .hero-social-proof { width: 100%; justify-content: center; }

  /* Hide most food items on mobile */
  .food-item { display: none; }
  .fi-1, .fi-2, .fi-3, .fi-20 { display: inline-block; }

  .footer-grid { grid-template-columns: 1fr; }

  .problem-cards-stage { gap: 16px; }
  .stat-card { max-width: 100%; }

  .testi-nav-btn { width: 44px; height: 44px; font-size: 16px; }
  .testi-card { width: 260px; height: 260px; }
  .testi-stage { height: 420px; }

  .feature-panel { padding: 32px 8px; gap: 24px; }
  .img-placeholder { height: 180px; }

  .benefit-eyebrow { font-size: 9px; }

  footer { padding: 40px 20px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  .waitlist-card { padding: 28px 20px; border-radius: 20px; }

  #brand-tagline { padding: 60px 20px; }
}
