/* =========================================
   CULTURD — Bold Redesign
   D2C food brand · Vibrant · Character-first
   Inspired by: Ellenos energy, Indian boldness
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Inter:wght@400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ---- RESET ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
a { text-decoration: none; color: inherit; }

/* =========================================
   DESIGN TOKENS
   ========================================= */
:root {
  /* Base */
  --white:      #FFFFFF;
  --off-white:  #F8F6F2;
  --ink:        #111111;
  --ink-60:     rgba(17,17,17,0.6);
  --ink-30:     rgba(17,17,17,0.3);
  --ink-10:     rgba(17,17,17,0.08);

  /* NEW primary — Cobalt Blue (replaces rusty orange) */
  --blue:       #1B4FD8;
  --blue-light: #EEF2FD;
  --blue-deep:  #0F35A0;
  --blue-vivid: #2563EB;

  /* Category accent colors — Ellenos-inspired: muted, soft, never neon */
  /* Fruit on Bottom — dusty terracotta */
  --fruit-color:  #B85C38;
  --fruit-bg:     #FDF3EE;
  --fruit-mid:    rgba(184,92,56,0.1);

  /* Indulgent — muted mauve/plum */
  --choc-color:   #7B4BB5;
  --choc-bg:      #F5F0FB;
  --choc-mid:     rgba(123,75,181,0.1);

  /* Savoury — muted sage */
  --herb-color:   #3C7A52;
  --herb-bg:      #EDF6F1;
  --herb-mid:     rgba(60,122,82,0.1);

  /* Format — cobalt (kept, it's the brand primary) */
  --fmt-color:    #1B4FD8;
  --fmt-bg:       #EEF2FD;
  --fmt-mid:      rgba(27,79,216,0.1);

  /* Typography */
  --ff-serif: 'Playfair Display', Georgia, serif;
  --ff-sans:  'Inter', system-ui, sans-serif;

  /* Motion */
  --ease:  cubic-bezier(0.22, 1, 0.36, 1);
  --ease2: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --dur:   0.3s;

  /* Radii */
  --r-xs:   6px;
  --r-sm:   12px;
  --r-md:   20px;
  --r-lg:   28px;
  --r-xl:   40px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.08), 0 12px 40px rgba(0,0,0,0.06);
  --shadow-lg: 0 16px 64px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-blue: 0 8px 32px rgba(27,79,216,0.3);
}

/* ---- BASE ---- */
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--ff-sans);
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ---- CONTAINERS ---- */
.container        { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 740px;  margin: 0 auto; padding: 0 24px; }

/* ---- SELECTION ---- */
::selection { background: var(--blue); color: #fff; }

/* ---- FOCUS ---- */
a:focus-visible, button:focus-visible {
  outline: 2.5px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =========================================
   SHARED TYPOGRAPHY
   ========================================= */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}
.section-eyebrow::before {
  content: '';
  width: 24px; height: 3px;
  background: var(--blue);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-headline {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.section-headline em {
  font-style: italic;
  color: var(--blue);
}

.section-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-60);
  margin-top: 16px;
}

/* =========================================
   REVEAL ANIMATIONS
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* =========================================
   BUTTONS
   ========================================= */
.btn--primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: #fff;
  font-family: var(--ff-sans);
  font-size: 1rem;
  font-weight: 800;
  padding: 17px 34px;
  border-radius: var(--r-pill);
  transition: background 0.2s var(--ease2), transform 0.18s var(--ease), box-shadow 0.2s var(--ease2);
  letter-spacing: 0.02em;
  border: 2px solid var(--blue);
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(27,79,216,0.3);
}
.btn--primary:hover {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(27,79,216,0.4);
}

.btn--ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 16px 28px;
  border-radius: var(--r-pill);
  border: 2px solid var(--ink-10);
  transition: all 0.2s var(--ease2);
}
.btn--ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

/* =========================================
   NAV  — Ellenos-style: left | CENTER LOGO | right
   ========================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 32px;
  transition: background 0.35s var(--ease2), padding 0.35s var(--ease2), box-shadow 0.35s var(--ease2);
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 13px 32px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.07), 0 4px 24px rgba(0,0,0,0.05);
}

/* Centering trick: relative container, logo absolutely centered */
.nav__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

/* Left slot */
.nav__left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
}

/* Hamburger (visible on mobile only) */
.nav__menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav__menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: background 0.2s;
}

/* Center: wordmark — absolutely centered regardless of side content */
.nav__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  line-height: 1;
  pointer-events: auto;
  z-index: 1;
}
.nav__logo:hover { opacity: 0.68; }

.nav__wordmark {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.9rem;
  letter-spacing: -0.01em;
  color: #111;
  display: inline-block;
  line-height: 1;
  white-space: nowrap;
}

.nav__wordmark-dot {
  color: #1B4FD8;
  font-style: normal;
}

/* Right slot */
.nav__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--ink);
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: var(--r-pill);
  border: 1.5px solid rgba(0,0,0,0.18);
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}
.nav__cta:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: translateY(-1px);
}

/* =========================================
   HERO
   ========================================= */
.hero {
  min-height: 100svh;
  padding-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--white);
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 48px 60px 24px;
  max-width: 600px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 22px;
}
.hero__eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.45; transform: scale(0.65); }
}

.hero__headline {
  font-family: var(--ff-serif);
  font-size: clamp(3.2rem, 6vw, 5.4rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 22px;
}
.hero__headline em {
  font-style: italic;
  color: var(--blue);
  position: relative;
}

.hero__sub {
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--ink-60);
  margin-bottom: 36px;
  max-width: 420px;
  font-weight: 500;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero__social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__avatars { display: flex; }
.hero__avatars span {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2.5px solid #fff;
  margin-left: -8px;
  box-shadow: 0 2px 6px rgba(27,79,216,0.3);
}
.hero__avatars span:first-child { margin-left: 0; }
.hero__social-proof p { font-size: 0.85rem; color: var(--ink-60); font-weight: 500; }
.hero__social-proof strong { color: var(--ink); font-weight: 800; }

/* Hero slideshow */
.hero__slideshow {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  background: var(--off-white);
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.9s var(--ease);
}
.hero__slide.active { opacity: 1; }
.hero__slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.68) 0%, rgba(0,0,0,0.05) 55%, transparent 100%);
}
.hero__slide-label {
  position: absolute;
  bottom: 72px;
  left: 0; right: 0;
  padding: 0 28px;
  z-index: 2;
}
.slide-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: var(--r-pill);
  margin-bottom: 12px;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.18);
}
/* Per-slide slide tag — all white/translucent, consistent */
.hero__slide:nth-child(1) .slide-tag { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.45); }
.hero__slide:nth-child(2) .slide-tag { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.45); }
.hero__slide:nth-child(3) .slide-tag { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.45); }
.hero__slide:nth-child(4) .slide-tag { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.45); }
.slide-flavour {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.88);
  font-weight: 600;
  line-height: 1.55;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.hero__slide-dots {
  position: absolute;
  bottom: 28px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 3;
}
.hero__slide-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  padding: 0;
}
.hero__slide-dot.active {
  background: #fff;
  width: 24px;
  border-radius: var(--r-pill);
}

/* =========================================
   TICKER
   ========================================= */
.ticker {
  background: linear-gradient(90deg, #0F35A0 0%, #1B4FD8 40%, #2563EB 100%);
  overflow: hidden;
  padding: 16px 0;
  position: relative;
  box-shadow: 0 4px 24px rgba(27,79,216,0.25);
}
.ticker::before, .ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
}
.ticker::before { left: 0;  background: linear-gradient(to right, var(--blue), transparent); }
.ticker::after  { right: 0; background: linear-gradient(to left,  var(--blue), transparent); }

.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 28s linear infinite;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker__item {
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  padding: 0 20px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.ticker__item .sep { color: rgba(255,255,255,0.45); margin-left: 20px; }
.ticker { padding: 16px 0; }

/* =========================================
   PRODUCT SHOWCASE
   ========================================= */
.products {
  padding: 100px 0 80px;
  background: var(--off-white);
}
.products__header {
  text-align: center;
  margin-bottom: 60px;
}
.products__header .section-eyebrow { justify-content: center; }
.products__header .section-sub { margin: 16px auto 0; text-align: center; max-width: 520px; }

.product-show { position: relative; }
.product-show__track { position: relative; min-height: 480px; }

.product-show__slide {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  animation: slideIn 0.45s var(--ease) both;
}
.product-show__slide.active { display: grid; }

@keyframes slideIn {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}

.product-show__image {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #fff;
  box-shadow: var(--shadow-md);
  position: relative;
}
.product-show__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.product-show__slide.active .product-show__image img { transform: scale(1.03); }

/* Per-slide accent colors */
.product-show__slide[data-index="0"] .product-show__image { box-shadow: 0 16px 64px rgba(232,48,42,0.2); }
.product-show__slide[data-index="1"] .product-show__image { box-shadow: 0 16px 64px rgba(107,63,160,0.2); }
.product-show__slide[data-index="2"] .product-show__image { box-shadow: 0 16px 64px rgba(22,128,60,0.18); }
.product-show__slide[data-index="3"] .product-show__image { box-shadow: 0 16px 64px rgba(27,79,216,0.2); }
.product-show__slide[data-index="4"] .product-show__image { box-shadow: 0 16px 64px rgba(27,79,216,0.18); }
.product-show__slide[data-index="5"] .product-show__image { box-shadow: 0 16px 64px rgba(0,0,0,0.1); }

.product-show__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: var(--r-pill);
  margin-bottom: 20px;
  background: var(--blue-light);
  color: var(--blue);
  border: 2px solid rgba(27,79,216,0.25);
}
.product-show__slide[data-index="0"] .product-show__tag { background: #FDF3EE; color: #B85C38; border-color: rgba(184,92,56,0.25); }
.product-show__slide[data-index="1"] .product-show__tag { background: #F5F0FB; color: #7B4BB5; border-color: rgba(123,75,181,0.25); }
.product-show__slide[data-index="2"] .product-show__tag { background: #EDF6F1; color: #3C7A52; border-color: rgba(60,122,82,0.25); }
.product-show__slide[data-index="3"] .product-show__tag { background: var(--blue-light); color: var(--blue); border-color: rgba(27,79,216,0.3); }
.product-show__slide[data-index="4"] .product-show__tag { background: var(--blue-light); color: var(--blue); border-color: rgba(27,79,216,0.3); }

.product-show__name {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 16px;
}
.product-show__desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-60);
  margin-bottom: 28px;
  max-width: 420px;
  font-weight: 500;
}
.product-show__flavours {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.product-show__flavours span {
  background: #fff;
  border: 1.5px solid rgba(0,0,0,0.08);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--r-pill);
}

.product-show__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.product-show__arrow {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.1);
  background: #fff;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s var(--ease2);
  box-shadow: var(--shadow-sm);
}
.product-show__arrow:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: scale(1.08);
  box-shadow: var(--shadow-blue);
}
.product-show__dots {
  display: flex;
  gap: 7px;
  align-items: center;
}
.product-show__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.12);
  transition: all 0.3s var(--ease);
  padding: 0;
}
.product-show__dot.active {
  background: var(--blue);
  width: 28px;
  border-radius: var(--r-pill);
}
.product-show__progress {
  height: 2px;
  background: rgba(0,0,0,0.06);
  border-radius: 2px;
  margin-top: 18px;
  overflow: hidden;
}
.product-show__progress-fill {
  height: 100%;
  background: var(--blue);
  border-radius: 2px;
  width: 0%;
  transition: width linear;
}

/* =========================================
   PROOF BAND
   ========================================= */
.proof {
  padding: 72px 0;
  background: linear-gradient(135deg, #0A0A0A 0%, #111827 50%, #0F35A0 100%);
}
.proof__grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.proof__item {
  flex: 1;
  text-align: center;
  padding: 28px 32px;
}
.proof__value {
  font-family: var(--ff-serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.proof__label {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #60A5FA;
  margin-bottom: 7px;
}
.proof__sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.5;
  font-weight: 500;
}
.proof__divider {
  width: 1px;
  background: rgba(255,255,255,0.08);
  margin: 20px 0;
  flex-shrink: 0;
}

/* =========================================
   DIFFERENCE SECTION
   ========================================= */
.difference {
  padding: 100px 0;
  background: var(--white);
}
.difference__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.difference__image {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.difference__image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.difference__image-badge {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-radius: var(--r-lg);
  padding: 18px 22px;
}
.difference__image-badge span {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  font-weight: 600;
  font-style: italic;
  color: var(--ink);
  display: block;
  line-height: 1.35;
}

.difference__points {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 36px;
}
.difference__point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--r-md);
  background: var(--off-white);
  border: 1.5px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.difference__point:hover {
  border-color: var(--blue);
  background: var(--blue-light);
}
.diff-icon { font-size: 1.5rem; flex-shrink: 0; }
.difference__point strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 5px;
}
.difference__point p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--ink-60);
  font-weight: 500;
}

/* =========================================
   PROBLEM (condensed)
   ========================================= */
.problem {
  padding: 80px 0;
  background: var(--off-white);
}
.problem__inner { text-align: center; }
.problem__headline {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 48px;
}
.problem__headline em { font-style: italic; color: var(--blue); }

.problem__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
  text-align: left;
}
.problem__card {
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,0.06);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: transform 0.2s var(--ease2), box-shadow 0.2s var(--ease2);
}
.problem__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.problem__card span { font-size: 1.9rem; display: block; margin-bottom: 14px; }
.problem__card strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.problem__card p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--ink-60);
  font-weight: 500;
}
.problem__cta-nudge {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ink-60);
}

/* =========================================
   WAITLIST — the MAIN CHARACTER section
   ========================================= */
.waitlist {
  padding: 100px 0 120px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
/* Bold accent stripe at top of waitlist */
.waitlist::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, #E8302A 0%, #6B3FA0 33%, #107834 66%, #1B4FD8 100%);
}

.waitlist__inner { position: relative; }

.waitlist__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-light);
  border: 1.5px solid rgba(27,79,216,0.18);
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--r-pill);
  margin-bottom: 28px;
}
.waitlist__tag::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.waitlist__headline {
  font-family: var(--ff-serif);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 16px;
}
.waitlist__headline em { font-style: italic; color: var(--blue); }

.waitlist__sub {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-60);
  margin-bottom: 40px;
  max-width: 520px;
  font-weight: 500;
}

/* =========================================
   SURVEY INVITE — UNMISSABLE HERO BLOCK
   ========================================= */
.survey-invite {
  display: block;
  text-decoration: none;
  margin-bottom: 48px;
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  position: relative;
  /* Bold gradient background — commands attention */
  background: linear-gradient(135deg, #0F2A80 0%, #1B4FD8 60%, #2D6FEF 100%);
  box-shadow: 0 8px 40px rgba(27,79,216,0.35);
}
.survey-invite:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(27,79,216,0.45);
}
/* Animated shimmer overlay */
.survey-invite::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.07) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
/* Pulsing live dot */
.survey-invite__pulse {
  width: 10px;
  height: 10px;
  background: #4ADE80;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  margin-right: 4px;
}
.survey-invite__pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(74,222,128,0.35);
  animation: pulse-ring 1.8s ease-out infinite;
}
@keyframes pulse-ring {
  0%   { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}
.survey-invite__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 36px 40px;
  position: relative;
  z-index: 1;
}
.survey-invite__left { flex: 1; }
.survey-invite__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
}
.survey-invite__title {
  font-family: var(--ff-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.survey-invite__sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  font-weight: 500;
  max-width: 380px;
}
.survey-invite__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.survey-invite__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #1B4FD8;
  font-size: 0.95rem;
  font-weight: 800;
  padding: 16px 32px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.survey-invite:hover .survey-invite__btn {
  transform: scale(1.04);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.survey-invite__social {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}
/* Mobile stacked layout */
@media (max-width: 600px) {
  .survey-invite__inner { flex-direction: column; align-items: flex-start; padding: 28px 24px; gap: 24px; }
  .survey-invite__right { width: 100%; }
  .survey-invite__btn { width: 100%; justify-content: center; }
}

/* =========================================
   FLAVOUR VOTE — BIG ENERGY REDESIGN
   ========================================= */
/* ---- STEP LABELS & DIVIDER ---- */
.waitlist__step-block {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 40px 0 28px;
  width: 100%;
}
.waitlist__step-block:first-of-type {
  margin-top: 0;
}
.waitlist__step-line {
  flex: 1;
  height: 2px;
  background: var(--blue);
  opacity: 0.15;
  border-radius: 2px;
}
.waitlist__step-label,
.waitlist__step-label-2 {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}
.waitlist__step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.waitlist__step-text {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-transform: none;
}
/* Legacy — keep for compat */
.waitlist__step-divider { display: none; }
.flavor-required {
  font-size: 0.7rem;
  font-weight: 500;
  color: #E53E3E;
  letter-spacing: 0.04em;
  margin-left: 8px;
  font-family: var(--ff-sans);
  text-transform: uppercase;
  vertical-align: middle;
}

.waitlist__flavor-section { margin-bottom: 40px; }

.waitlist__flavor-label {
  font-family: var(--ff-serif);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.waitlist__flavor-sub {
  display: block;
  font-size: 0.95rem;
  color: var(--ink-60);
  margin-bottom: 32px;
  font-weight: 500;
  line-height: 1.6;
}

/* ---- FLAVOR GROUPS GRID ---- */
.flavor-groups {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ---- BASE GROUP CARD ---- */
.flavor-group {
  border-radius: 18px;
  overflow: hidden;
  border: 1.5px solid transparent;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s var(--ease);
  box-shadow: 0 1px 6px rgba(0,0,0,0.05), 0 4px 16px rgba(0,0,0,0.04);
}
.flavor-group:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.09);
}
.flavor-group.has-selection {
  /* individual group overrides the shadow */
}

/* ==============================
   FRUIT ON BOTTOM — soft peach / warm apricot
   ============================== */
.flavor-group--fruit {
  background: #FEF7F3;
  border-color: rgba(196,110,60,0.18);
}
.flavor-group--fruit.has-selection { border-color: rgba(196,110,60,0.55); box-shadow: 0 6px 28px rgba(196,110,60,0.12); }
.flavor-group--fruit .flavor-group__header {
  background: #F7E8DA;
}
.flavor-group--fruit .flavor-group__name { color: #7A3A18; }
.flavor-group--fruit .flavor-group__tagline { color: rgba(122,58,24,0.6); }
.flavor-group--fruit .flavor-group__hint { background: rgba(122,58,24,0.1); border-color: rgba(122,58,24,0.18); color: #7A3A18; }
.flavor-group--fruit .flavor-chip {
  background: #fff;
  color: #7A3A18;
  border: 1.5px solid rgba(196,110,60,0.25);
}
.flavor-group--fruit .flavor-chip:hover {
  background: #FEF0E6;
  border-color: rgba(196,110,60,0.55);
  color: #5C2B0E;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(196,110,60,0.15);
}
.flavor-group--fruit .flavor-chip.selected {
  background: #C46E3C;
  color: #fff;
  border-color: #C46E3C;
  box-shadow: 0 4px 20px rgba(196,110,60,0.35);
  transform: translateY(-1px);
}

/* ==============================
   INDULGENT — pale lavender / dusty plum
   ============================== */
.flavor-group--indulgent {
  background: #F8F5FC;
  border-color: rgba(130,90,180,0.16);
}
.flavor-group--indulgent.has-selection { border-color: rgba(130,90,180,0.5); box-shadow: 0 6px 28px rgba(130,90,180,0.1); }
.flavor-group--indulgent .flavor-group__header {
  background: #EDE5F7;
}
.flavor-group--indulgent .flavor-group__name { color: #4A2875; }
.flavor-group--indulgent .flavor-group__tagline { color: rgba(74,40,117,0.55); }
.flavor-group--indulgent .flavor-group__hint { background: rgba(74,40,117,0.08); border-color: rgba(74,40,117,0.15); color: #4A2875; }
.flavor-group--indulgent .flavor-chip {
  background: #fff;
  color: #4A2875;
  border: 1.5px solid rgba(130,90,180,0.22);
}
.flavor-group--indulgent .flavor-chip:hover {
  background: #F3EDFB;
  border-color: rgba(130,90,180,0.5);
  color: #361A5C;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(130,90,180,0.14);
}
.flavor-group--indulgent .flavor-chip.selected {
  background: #7B4BB5;
  color: #fff;
  border-color: #7B4BB5;
  box-shadow: 0 4px 20px rgba(123,75,181,0.32);
  transform: translateY(-1px);
}

/* ==============================
   SAVOURY — pale sage / muted herb green
   ============================== */
.flavor-group--savoury {
  background: #F4FAF5;
  border-color: rgba(60,130,80,0.16);
}
.flavor-group--savoury.has-selection { border-color: rgba(60,130,80,0.5); box-shadow: 0 6px 28px rgba(60,130,80,0.1); }
.flavor-group--savoury .flavor-group__header {
  background: #DFF0E4;
}
.flavor-group--savoury .flavor-group__name { color: #1C5C33; }
.flavor-group--savoury .flavor-group__tagline { color: rgba(28,92,51,0.55); }
.flavor-group--savoury .flavor-group__hint { background: rgba(28,92,51,0.08); border-color: rgba(28,92,51,0.15); color: #1C5C33; }
.flavor-group--savoury .flavor-chip {
  background: #fff;
  color: #1C5C33;
  border: 1.5px solid rgba(60,130,80,0.22);
}
.flavor-group--savoury .flavor-chip:hover {
  background: #EAF5ED;
  border-color: rgba(60,130,80,0.5);
  color: #0F3D22;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(60,130,80,0.14);
}
.flavor-group--savoury .flavor-chip.selected {
  background: #3C8250;
  color: #fff;
  border-color: #3C8250;
  box-shadow: 0 4px 20px rgba(60,130,80,0.3);
  transform: translateY(-1px);
}

/* ==============================
   FORMAT — pale cornflower blue
   ============================== */
.flavor-group--format {
  background: #F3F6FE;
  border-color: rgba(60,100,210,0.16);
}
.flavor-group--format.has-selection { border-color: rgba(60,100,210,0.5); box-shadow: 0 6px 28px rgba(60,100,210,0.1); }
.flavor-group--format .flavor-group__header {
  background: #DDE6FB;
}
.flavor-group--format .flavor-group__name { color: #1A3A8F; }
.flavor-group--format .flavor-group__tagline { color: rgba(26,58,143,0.55); }
.flavor-group--format .flavor-group__hint { background: rgba(26,58,143,0.08); border-color: rgba(26,58,143,0.15); color: #1A3A8F; }
.flavor-group--format .flavor-chip {
  background: #fff;
  color: #1A3A8F;
  border: 1.5px solid rgba(60,100,210,0.22);
}
.flavor-group--format .flavor-chip:hover {
  background: #EAF0FD;
  border-color: rgba(60,100,210,0.5);
  color: #0F2568;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(60,100,210,0.14);
}
.flavor-group--format .flavor-chip.selected {
  background: #2D5CC8;
  color: #fff;
  border-color: #2D5CC8;
  box-shadow: 0 4px 20px rgba(45,92,200,0.3);
  transform: translateY(-1px);
}

/* ---- GROUP HEADER ---- */
.flavor-group__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.flavor-group__emoji {
  font-size: 1.7rem;
  line-height: 1;
  flex-shrink: 0;
  filter: none;
}
.flavor-group__label {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.flavor-group__name {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  /* color set per-group */
  line-height: 1;
}
.flavor-group__tagline {
  font-size: 0.7rem;
  /* color set per-group */
  font-weight: 500;
  line-height: 1.35;
}
/* ONE pick per group hint */
.flavor-group__hint {
  flex-shrink: 0;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  /* color & bg set per-group */
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid;
  white-space: nowrap;
}
.flavor-group.has-selection .flavor-group__hint {
  opacity: 0.6;
}

/* ---- CHIPS CONTAINER ---- */
.flavor-group__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 22px 20px;
  background: inherit;
}

/* ---- INDIVIDUAL CHIP ---- */
.flavor-chip {
  padding: 9px 17px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.16s var(--ease);
  font-family: var(--ff-sans);
  letter-spacing: 0.01em;
  line-height: 1;
  position: relative;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

/* Selection summary */
.flavor-summary {
  display: none;
  margin-top: 20px;
  padding: 16px 20px;
  background: var(--blue-light);
  border: 1.5px solid rgba(27,79,216,0.2);
  border-radius: var(--r-md);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  line-height: 1.6;
}
.flavor-summary.visible { display: block; }
.flavor-summary strong { color: var(--ink); }

/* ---- INPUTS ---- */
.waitlist__inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0 12px;
}
.waitlist__input {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: var(--r-pill);
  background: var(--off-white);
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.waitlist__input::placeholder { color: var(--ink-30); }
.waitlist__input:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(27,79,216,0.1);
}

.waitlist__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--ink);
  color: #fff;
  font-family: var(--ff-sans);
  font-size: 1.1rem;
  font-weight: 800;
  padding: 20px 36px;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.18s var(--ease), box-shadow 0.2s;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.waitlist__submit:hover {
  background: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(27,79,216,0.35);
}
.waitlist__submit:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }

.waitlist__counter {
  text-align: center;
  font-size: 0.82rem;
  color: var(--ink-60);
  margin-bottom: 20px;
  font-weight: 600;
}
.waitlist__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.waitlist__trust-item {
  font-size: 0.78rem;
  color: var(--ink-30);
  font-weight: 600;
}

.waitlist__success { display: none; text-align: center; padding: 48px 0; }
.waitlist__success.visible { display: block; }
.waitlist__success-emoji { font-size: 3.5rem; margin-bottom: 20px; }
.waitlist__success-title {
  font-family: var(--ff-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.waitlist__success-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-60);
  font-weight: 500;
}

.form-error {
  color: #B85C38;
  font-size: 0.85rem;
  text-align: center;
  margin-top: 8px;
  min-height: 20px;
  font-weight: 600;
}

/* =========================================
   FOUNDER
   ========================================= */
.founder {
  padding: 80px 0;
  background: var(--ink);
}
.founder__inner { text-align: center; }
.founder__quote-mark {
  font-family: var(--ff-serif);
  font-size: 7rem;
  line-height: 0.5;
  color: var(--blue);
  opacity: 0.3;
  margin-bottom: -12px;
  display: block;
}
.founder__text {
  font-family: var(--ff-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  max-width: 640px;
  margin: 0 auto 32px;
}
.founder__text strong { font-style: normal; font-weight: 700; color: #fff; }
.founder__byline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.founder__byline-line { width: 32px; height: 2px; background: var(--blue); }
.founder__byline-name { font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.38); letter-spacing: 0.04em; }

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0 32px;
}
.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer__logo {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: -0.01em;
  color: #fff;
  display: inline-block;
  line-height: 1;
  margin-bottom: 4px;
}
.footer__logo span {
  color: var(--blue);
  font-style: normal;
}
.footer__tagline { font-size: 0.82rem; color: rgba(255,255,255,0.3); margin-top: 8px; font-weight: 500; }
.footer__links-col { display: flex; flex-wrap: wrap; gap: 8px 28px; }
.footer__links-col a { font-size: 0.82rem; color: rgba(255,255,255,0.4); transition: color 0.2s; font-weight: 500; }
.footer__links-col a:hover { color: #fff; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.footer__bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.2); font-weight: 500; }
.footer__pillars { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.2); }

/* =========================================
   MOBILE STICKY CTA
   ========================================= */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  padding: 12px 16px 20px;
  background: linear-gradient(to top, rgba(255,255,255,0.98) 60%, transparent);
  z-index: 99;
}
.mobile-cta__btn {
  display: block;
  width: 100%;
  background: var(--blue);
  color: #fff;
  font-family: var(--ff-sans);
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
  padding: 17px 24px;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-blue);
  transition: background 0.2s;
  letter-spacing: 0.01em;
}
.mobile-cta__btn:hover { background: var(--blue-deep); }

/* =========================================
   RESPONSIVE — MOBILE FIRST
   ========================================= */
@media (max-width: 960px) {
  .nav { padding: 15px 24px; }
  .nav__wordmark { font-size: 1.55rem; }

  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 72px; }
  .hero__content { padding: 48px 24px 32px; max-width: 100%; order: 1; }
  .hero__slideshow { order: 2; min-height: 340px; }
  .hero__headline { font-size: clamp(2.4rem, 7vw, 3.2rem); }

  .product-show__slide { grid-template-columns: 1fr; gap: 28px; }
  .product-show__image { aspect-ratio: 16/9; }
  .product-show__track { min-height: auto; }

  .proof__grid { flex-wrap: wrap; }
  .proof__item { flex: 0 0 50%; }
  .proof__divider { display: none; }

  .difference__grid { grid-template-columns: 1fr; gap: 44px; }
  .difference__image { aspect-ratio: 16/9; }

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

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

  .footer__top { flex-direction: column; gap: 24px; }
  .footer__bottom { flex-direction: column; text-align: center; gap: 8px; }

  .mobile-cta { display: block; }
  body { padding-bottom: 80px; }
}

@media (max-width: 600px) {
  .nav { padding: 13px 16px; }
  .nav__cta { display: none; }
  .nav__menu-btn { display: flex; }
  .nav__wordmark { font-size: 1.35rem; }

  .hero__content { padding: 36px 16px 24px; }
  .hero__headline { font-size: 2.2rem; }
  .hero__sub { font-size: 0.95rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn--primary,
  .hero__actions .btn--ghost { justify-content: center; }
  .hero__slideshow { min-height: 280px; }

  .products { padding: 64px 0 48px; }
  .product-show__name { font-size: 1.85rem; }

  .proof { padding: 48px 0; }
  .proof__item { flex: 0 0 100%; padding: 16px 20px; }

  .difference { padding: 64px 0; }

  .problem { padding: 60px 0; }
  .problem__cards { gap: 12px; }

  .waitlist { padding: 64px 0; }
  .waitlist__headline { font-size: 2.2rem; }
  .waitlist__flavor-label { font-size: 1.3rem; }

  .survey-invite__inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .survey-invite__btn { align-self: stretch; text-align: center; justify-content: center; }

  .founder { padding: 60px 0; }
  .founder__text { font-size: 1.1rem; }

  .section-headline { font-size: 2rem; }

  .flavor-group__header { padding: 14px 16px; gap: 10px; }
  .flavor-group__emoji { font-size: 1.6rem; }
  .flavor-group__name { font-size: 0.78rem; }
  .flavor-group__tagline { display: none; }
  .flavor-group__hint { font-size: 0.55rem; padding: 3px 8px; }
  .flavor-group__chips { gap: 8px; padding: 14px 14px 16px; }
  .flavor-chip { font-size: 0.78rem; padding: 9px 14px; }
}
