*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  background: #0e0a08;
  color: #f7efe8;
  font-family: 'Plus Jakarta Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

a {
  color: #ff8fc4;
  text-decoration: none;
}

a:hover {
  color: #ffb0d2;
}

::selection {
  background: rgba(255, 95, 162, 0.32);
  color: #fff;
}

.bric {
  font-family: 'Bricolage Grotesque', sans-serif;
}

.gtxt {
  background: linear-gradient(100deg, #ff8a5e, #ff5fa2 60%, #c99bff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ff8fc4;
}

.rule {
  width: 88px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #ff7a45, #9b45ff);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page {
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  max-width: 100%;
  background: radial-gradient(125% 78% at 50% -10%, #2a1330 0%, #1d1018 38%, #140c0b 66%, #0e0a08 100%);
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
  width: 100%;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  background: rgba(14, 10, 8, calc(0.55 + (var(--nav-solid, 0) * 0.35)));
  border-bottom: 1px solid rgba(255, 255, 255, calc(0.04 + (var(--nav-solid, 0) * 0.08)));
  padding-top: env(safe-area-inset-top, 0);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #f7efe8;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: linear-gradient(135deg, #ff7a45, #ff2d74);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px -6px rgba(255, 61, 116, 0.55);
  flex-shrink: 0;
}

.brand-name {
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  font-size: 14.5px;
  font-weight: 600;
  color: #a99b8e;
}

.nav-links a:hover {
  color: #f7efe8;
}

.nav-cta {
  font-weight: 800 !important;
  font-size: 14px !important;
  color: #fff !important;
  background: linear-gradient(135deg, #ff7a45, #ff2d74);
  padding: 11px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 26px -10px rgba(255, 61, 116, 0.55);
}

.nav-cta:hover {
  color: #fff !important;
  filter: brightness(1.05);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #f7efe8;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

/* Hero */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding-top: 82px;
  padding-bottom: 30px;
  overflow: hidden;
}

.hero-copy {
  flex: 1;
  min-width: min(100%, 392px);
}

.hero-copy .eyebrow {
  margin-bottom: 26px;
}

.hero h1 {
  font-weight: 800;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.9;
  letter-spacing: -0.035em;
  color: #f7efe8;
}

.hero .rule {
  margin: 32px 0;
}

.hero-sub {
  font-size: 19px;
  line-height: 1.6;
  color: #c7b9ad;
  max-width: 494px;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 38px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #f7efe8;
  color: #15100d;
  padding: 16px 26px;
  border-radius: 15px;
  box-shadow: 0 18px 42px -16px rgba(247, 239, 232, 0.4);
}

.store-badge:hover {
  color: #15100d;
  filter: brightness(0.97);
}

.store-badge .label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #5a4a3e;
}

.store-badge .store {
  display: block;
  font-weight: 800;
  font-size: 20px;
  line-height: 1.05;
}

.hero-rating {
  font-size: 14px;
  font-weight: 600;
  color: #a99b8e;
  line-height: 1.45;
}

.hero-rating .stars {
  color: #ffc050;
  letter-spacing: 0.06em;
}

/* Hero phone */
.hero-phone-wrap {
  flex: none;
  position: relative;
  width: min(100%, 440px);
  height: 848px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
}

.hero-glow {
  position: absolute;
  left: 50%;
  top: 47%;
  transform: translate(-50%, -50%);
  width: 580px;
  height: 580px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 95, 162, 0.34), rgba(155, 69, 255, 0.15) 50%, transparent 72%);
  pointer-events: none;
}

.hero-shadow {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: 300px;
  height: 50px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.55), transparent 70%);
  filter: blur(12px);
  pointer-events: none;
}

.phone-shell {
  position: relative;
  width: 381px;
  height: 826px;
  border-radius: 52px;
  padding: 9px;
  background: linear-gradient(155deg, #3a3530, #171310 62%);
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.55),
    0 44px 100px -34px rgba(0, 0, 0, 0.92);
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 44px;
  overflow: hidden;
  background: #15100d;
  display: flex;
  flex-direction: column;
}

.phone-status {
  flex: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 28px 4px;
  color: #f7efe8;
}

.phone-status .time {
  font-weight: 800;
  font-size: 15px;
}

.phone-status .icons {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  letter-spacing: 1px;
}

.batt {
  width: 24px;
  height: 12px;
  border: 1.5px solid #f7efe8;
  border-radius: 3px;
  position: relative;
}

.batt::after {
  content: '';
  position: absolute;
  inset: 1.5px;
  right: 7px;
  background: #f7efe8;
  border-radius: 1px;
}

.phone-topbar {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 18px 13px;
}

.phone-logo {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, #ff7a45, #ff2d74);
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-title {
  font-weight: 800;
  font-size: 20px;
  color: #f7efe8;
  letter-spacing: -0.01em;
}

.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 8px 13px;
  color: #e7dad0;
  font-size: 12.5px;
  font-weight: 700;
}

.phone-filters {
  flex: none;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 18px 13px;
  overflow: hidden;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #241c18;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 12.5px;
  font-weight: 700;
  color: #a99b8e;
  white-space: nowrap;
}

.chip.active {
  color: #f7efe8;
}

.chip .caret {
  color: #ff8a5e;
  font-size: 8px;
}

.chip-sep {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

.meal-card {
  flex: 1;
  min-height: 0;
  position: relative;
  margin: 0 16px 14px;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(19, 12, 10, 0.5) 0%, transparent 24%, transparent 50%, rgba(13, 9, 7, 0.72) 78%, rgba(13, 9, 7, 0.97) 100%),
    url('uploads/caprese-stuffed-chicken.jpg') center / cover no-repeat;
}

.meal-tags {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.meal-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(13, 9, 7, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 11.5px;
  font-weight: 700;
  color: #fff;
}

.meal-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 18px 18px;
}

.meal-cuisine {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffd9c2;
  margin-bottom: 7px;
}

.meal-name {
  font-weight: 700;
  font-size: 29px;
  line-height: 1.02;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.meal-stats {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  color: #ece2d9;
  font-size: 13px;
  font-weight: 600;
  flex-wrap: wrap;
}

.meal-stats span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.meal-cart-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  color: #f7efe8;
  font-size: 13px;
  font-weight: 600;
}

.meal-blurb {
  font-size: 13px;
  line-height: 1.45;
  color: #c7b9ad;
  margin-top: 9px;
}

.phone-actions {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 2px 0 12px;
}

.action-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(36, 28, 24, 0.8);
  border: 1.5px solid rgba(154, 167, 181, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9aa7b5;
}

.action-btn.info {
  width: 48px;
  height: 48px;
  border-color: rgba(255, 255, 255, 0.16);
  color: #e7dad0;
}

.action-btn.like {
  background: linear-gradient(135deg, #3ddc84, #1fb95e);
  border: none;
  box-shadow: 0 12px 26px -8px rgba(61, 220, 132, 0.6);
  color: #06210f;
}

.phone-tabbar {
  flex: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 9px 8px 15px;
}

.tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #6f635a;
  font-size: 9.5px;
  font-weight: 700;
}

.tab.active {
  color: #ff8a5e;
  font-weight: 800;
}

.tab-swipe {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  margin-top: -22px;
  background: linear-gradient(135deg, #ff7a45, #ff2d74);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px -6px rgba(255, 61, 116, 0.7);
  margin-bottom: 2px;
}

/* Trust */
.trust {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 40px 80px;
  text-align: center;
}

.trust-label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8c7d72;
  margin-bottom: 22px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.store-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #211913;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 13px 22px;
}

.store-chip .name {
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.01em;
}

.store-chip.kroger .icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #0c5fc7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.store-chip.kroger .name {
  color: #4e92e6;
}

.store-chip.walmart .name {
  color: #6ba8e8;
}

.trust-soon {
  font-size: 13px;
  color: #6f635a;
  font-weight: 600;
  margin-left: 4px;
}

/* Fight */
.fight {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(165deg, #25132b, #170d0c 60%);
  position: relative;
  overflow: hidden;
}

.fight-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 50% at 15% 10%, rgba(255, 95, 162, 0.16), transparent 60%);
  pointer-events: none;
}

.fight-inner {
  position: relative;
  padding-top: 92px;
  padding-bottom: 92px;
}

.fight h2 {
  font-weight: 800;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: #fff;
  max-width: 900px;
  margin-top: 22px;
}

.fight h2 em {
  font-style: italic;
  color: #ff8fc4;
}

.fight-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 56px;
  margin-top: 52px;
}

.bubbles {
  flex: 1;
  min-width: min(100%, 320px);
  display: flex;
  flex-direction: column;
  gap: 13px;
  max-width: 460px;
}

.bubble {
  max-width: 340px;
  font-size: 16px;
  padding: 14px 19px;
}

.bubble.them {
  align-self: flex-start;
  background: #241c18;
  color: #e7dad0;
  border-radius: 22px 22px 22px 7px;
}

.bubble.me {
  align-self: flex-end;
  background: linear-gradient(120deg, #ff5fa2, #9b45ff);
  color: #fff;
  border-radius: 22px 22px 7px 22px;
  font-weight: 600;
}

.fight-copy {
  flex: 1;
  min-width: min(100%, 320px);
  max-width: 520px;
}

.fight-copy .lead {
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.25;
  color: #f7efe8;
  font-weight: 700;
}

.fight-copy p {
  font-size: 17px;
  line-height: 1.6;
  color: #a99b8e;
  margin-top: 20px;
  font-weight: 500;
}

/* How it works — no overflow-x here: it breaks position:sticky on iOS Safari */
.how {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(20, 13, 10, 0.5);
}

.how-inner {
  padding-top: 90px;
  padding-bottom: 90px;
}

.section-head {
  text-align: center;
  margin-bottom: 60px;
}

.section-head .eyebrow {
  margin-bottom: 16px;
}

.section-head h2 {
  font-weight: 800;
  font-size: clamp(34px, 4.5vw, 52px);
  letter-spacing: -0.03em;
  color: #f7efe8;
  line-height: 1;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.how-story {
  display: none;
}

.step {
  flex: 1;
  min-width: 280px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.phone-frame {
  position: relative;
  width: 252px;
  height: 547px;
  border-radius: 35px;
  overflow: hidden;
  box-shadow: 0 40px 80px -34px rgba(0, 0, 0, 0.9);
  background: #15100d;
}

.phone-frame iframe {
  border: 0;
  display: block;
  width: 393px;
  height: 852px;
  transform: scale(0.641);
  transform-origin: top left;
}

.step-caption {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 26px;
}

.step-num {
  font-size: 14px;
  font-weight: 800;
}

.step-num.n1 {
  color: #ff8fc4;
}
.step-num.n2 {
  color: #5be584;
}
.step-num.n3 {
  color: #c99bff;
}

.step-title {
  font-size: 21px;
  font-weight: 800;
  color: #f7efe8;
  letter-spacing: -0.01em;
}

.step p {
  font-size: 14.5px;
  line-height: 1.55;
  color: #a99b8e;
  margin-top: 9px;
  max-width: 290px;
}

/* Features */
.features {
  padding-top: 90px;
  padding-bottom: 90px;
}

.features .section-head {
  margin-bottom: 54px;
}

.feat-top {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.feat-hero {
  flex: 2;
  min-width: min(100%, 360px);
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 356px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(58% 48% at 80% 20%, rgba(255, 95, 162, 0.28), transparent 62%),
    linear-gradient(180deg, rgba(14, 10, 8, 0.1), rgba(14, 10, 8, 0.5) 46%, rgba(14, 10, 8, 0.97)),
    url('uploads/chicken-enchiladas.jpg') center / cover no-repeat;
}

.feat-hero-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 36px;
}

.ai-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(13, 9, 7, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 143, 196, 0.35);
  border-radius: 999px;
  padding: 6px 13px;
  margin-bottom: 16px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #ffc5de;
}

.feat-hero h3 {
  font-weight: 800;
  font-size: 29px;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 11px;
}

.feat-hero p {
  font-size: 15.5px;
  line-height: 1.6;
  color: #e7dad0;
  max-width: 540px;
}

.feat-side {
  flex: 1;
  min-width: min(100%, 280px);
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.feat-card {
  flex: 1;
  border-radius: 24px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feat-card.green {
  background: linear-gradient(165deg, #20211a, #191310);
  border: 1px solid rgba(91, 229, 132, 0.14);
}

.feat-card.amber {
  background: linear-gradient(165deg, #241d15, #191310);
  border: 1px solid rgba(255, 192, 80, 0.14);
}

.feat-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 17px;
}

.feat-card.green .feat-icon {
  background: rgba(91, 229, 132, 0.14);
  border: 1px solid rgba(91, 229, 132, 0.3);
  color: #5be584;
}

.feat-card.amber .feat-icon {
  background: rgba(255, 192, 80, 0.14);
  border: 1px solid rgba(255, 192, 80, 0.3);
  color: #ffc050;
}

.feat-card h3 {
  font-weight: 800;
  font-size: 20px;
  color: #f7efe8;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.feat-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: #a99b8e;
}

.feat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 22px;
}

.feat-mini {
  flex: 1;
  min-width: 240px;
  border-radius: 20px;
  padding: 28px;
}

.feat-mini.blue {
  background: linear-gradient(165deg, #1e1a22, #191310);
  border: 1px solid rgba(120, 150, 255, 0.14);
}

.feat-mini.orange {
  background: linear-gradient(165deg, #251a22, #191310);
  border: 1px solid rgba(255, 138, 94, 0.14);
}

.feat-mini.purple {
  background: linear-gradient(165deg, #24172a, #191310);
  border: 1px solid rgba(155, 69, 255, 0.16);
}

.feat-mini .mini-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feat-mini.blue .mini-icon {
  background: rgba(120, 150, 255, 0.14);
  border: 1px solid rgba(120, 150, 255, 0.3);
  color: #8fa8ff;
}

.feat-mini.orange .mini-icon {
  background: rgba(255, 138, 94, 0.14);
  border: 1px solid rgba(255, 138, 94, 0.3);
  color: #ff8a5e;
}

.feat-mini.purple .mini-icon {
  background: rgba(155, 69, 255, 0.16);
  border: 1px solid rgba(155, 69, 255, 0.32);
  color: #c99bff;
}

.feat-mini h3 {
  font-weight: 800;
  font-size: 18.5px;
  color: #f7efe8;
  margin-bottom: 7px;
  letter-spacing: -0.01em;
}

.feat-mini p {
  font-size: 14px;
  line-height: 1.55;
  color: #a99b8e;
}

.diet-chips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  margin-top: 13px;
}

.diet-chips span {
  text-align: center;
  font-size: 11.5px;
  font-weight: 700;
  color: #d7c4ec;
  background: rgba(155, 69, 255, 0.14);
  border: 1px solid rgba(155, 69, 255, 0.28);
  border-radius: 999px;
  padding: 5px 10px;
}

/* CTA */
.cta {
  padding-top: 16px;
  padding-bottom: 96px;
}

.cta-band {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(135deg, #ff7a45, #ff2d74);
  padding: 74px 48px;
  text-align: center;
  box-shadow: 0 44px 96px -38px rgba(255, 61, 116, 0.5);
}

.cta-deco {
  position: absolute;
  top: -48px;
  right: -14px;
  opacity: 0.12;
  transform: rotate(-12deg);
  pointer-events: none;
}

.cta-band h2 {
  font-weight: 800;
  font-size: clamp(32px, 4vw, 50px);
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
}

.cta-band p {
  font-size: 17.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  margin-top: 16px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band .store-badge {
  background: #15100d;
  color: #f7efe8;
  box-shadow: none;
  margin-top: 30px;
}

.cta-band .store-badge:hover {
  color: #f7efe8;
}

.cta-band .store-badge .label {
  color: #a99b8e;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 38px;
  padding-bottom: 38px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-brand .mark {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: linear-gradient(135deg, #ff7a45, #ff2d74);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-brand .name {
  font-weight: 800;
  font-size: 18px;
  color: #f7efe8;
}

.footer-brand .copy {
  font-size: 13px;
  color: #6f635a;
  margin-left: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.footer-links a {
  font-size: 13.5px;
  color: #8c7d72;
  font-weight: 600;
}

.footer-links a:hover {
  color: #ffb0d2;
}

/* Legal stubs */
.legal {
  padding: 64px 0 96px;
  max-width: 720px;
}

.legal h1 {
  font-weight: 800;
  font-size: clamp(32px, 4vw, 44px);
  letter-spacing: -0.03em;
  margin: 18px 0 24px;
}

.legal p {
  font-size: 16px;
  line-height: 1.65;
  color: #a99b8e;
  margin-bottom: 16px;
}

.legal a.back {
  font-size: 14px;
  font-weight: 700;
  color: #ff8fc4;
}

/* Responsive — keep desktop composition; stack + tighten on small screens */
@media (max-width: 900px) {
  .wrap,
  .trust {
    padding-left: max(20px, env(safe-area-inset-left, 0px));
    padding-right: max(20px, env(safe-area-inset-right, 0px));
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(14, 10, 8, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 12px 20px 20px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-cta {
    text-align: center;
    margin-top: 8px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-inner {
    position: relative;
  }

  .hero {
    padding-top: 40px;
    padding-bottom: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
  }

  .hero-copy {
    min-width: 0;
    width: 100%;
  }

  .hero-copy .eyebrow {
    margin-bottom: 18px;
  }

  .hero h1 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .hero .rule {
    margin: 22px 0;
  }

  .hero-sub {
    font-size: 17px;
    max-width: none;
  }

  .hero-actions {
    margin-top: 28px;
    gap: 16px;
  }

  .hero-rating {
    width: 100%;
    font-size: 13px;
  }

  /* Scale full phone mockup into the column without breaking inner layout */
  .hero-phone-wrap {
    --phone-scale: 0.72;
    width: calc(381px * var(--phone-scale));
    height: calc(826px * var(--phone-scale) + 20px);
    overflow: hidden;
    margin-inline: auto;
  }

  .hero-glow {
    width: 140%;
    max-width: 360px;
    height: auto;
    aspect-ratio: 1;
  }

  .hero-shadow {
    width: 70%;
    bottom: 8px;
  }

  .phone-shell {
    position: absolute;
    top: 0;
    left: 50%;
    width: 381px;
    height: 826px;
    margin-left: -190.5px;
    transform: scale(var(--phone-scale));
    transform-origin: top center;
    -webkit-transform: scale(var(--phone-scale));
    -webkit-transform-origin: top center;
  }

  .phone-pill {
    display: none;
  }

  .phone-filters .chip:not(.active),
  .chip-sep {
    display: none;
  }

  .fight-inner,
  .how-inner,
  .features {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .fight h2 {
    font-size: clamp(28px, 8vw, 40px);
  }

  .fight-grid {
    gap: 32px;
    margin-top: 36px;
  }

  .bubbles,
  .fight-copy {
    min-width: 0;
    max-width: none;
    width: 100%;
  }

  .section-head {
    margin-bottom: 40px;
  }

  .section-head h2 {
    font-size: clamp(30px, 8vw, 42px);
  }

  .steps {
    flex-direction: column;
    align-items: center;
    gap: 44px;
  }

  .step {
    flex: none;
    min-width: 0;
    width: 100%;
    max-width: 280px;
  }

  .phone-frame {
    width: 240px;
    height: 520px;
    border-radius: 28px;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    isolation: isolate;
  }

  .phone-frame iframe {
    width: 393px;
    height: 852px;
    max-width: none;
    transform: scale(0.611);
    -webkit-transform: scale(0.611);
    transform-origin: top left;
    -webkit-transform-origin: top left;
    pointer-events: none;
  }

  .step-caption {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
  }

  .step-title {
    white-space: normal;
    font-size: 18px;
    text-align: center;
  }

  .feat-top,
  .feat-row,
  .feat-side {
    flex-direction: column;
  }

  .feat-hero,
  .feat-side,
  .feat-mini,
  .feat-card {
    min-width: 0;
    width: 100%;
    flex: none;
  }

  .feat-hero {
    min-height: 300px;
  }

  .feat-hero-body {
    padding: 24px;
  }

  .feat-hero h3 {
    font-size: 24px;
  }

  .cta {
    padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px));
  }

  .cta-band {
    padding: 44px 22px;
    border-radius: 24px;
  }

  .cta-band h2 {
    font-size: clamp(28px, 8vw, 40px);
  }

  .cta-band p {
    font-size: 16px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: calc(28px + env(safe-area-inset-bottom, 0px));
  }

  .footer-links {
    gap: 16px 20px;
  }

  .trust {
    padding-bottom: 48px;
  }

  .trust-row {
    gap: 10px;
  }

  .store-chip .name {
    font-size: 18px;
  }

  .trust-soon {
    width: 100%;
    margin-left: 0;
    margin-top: 4px;
  }

  /* Sticky how-it-works story (mobile) */
  .steps-desktop {
    display: none;
  }

  .how-story {
    display: block;
  }

  .how-sticky {
    position: sticky;
    top: calc(env(safe-area-inset-top, 0px) + 64px);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 8px 0 18px;
    background: linear-gradient(
      180deg,
      rgba(20, 13, 10, 0.92) 0%,
      rgba(20, 13, 10, 0.78) 70%,
      rgba(20, 13, 10, 0) 100%
    );
  }

  .how-phone {
    position: relative;
    width: 220px;
    height: 477px;
    border-radius: 30px;
    overflow: hidden;
    background:
      radial-gradient(70% 55% at 50% 20%, rgba(255, 95, 162, 0.22), transparent 70%),
      #15100d;
    box-shadow: 0 40px 80px -34px rgba(0, 0, 0, 0.9);
    transition: transform 0.55s var(--ease-out-expo);
  }

  .how-phone.is-pop {
    transform: scale(1.03);
  }

  .how-phone iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 393px;
    height: 852px;
    border: 0;
    display: block;
    max-width: none;
    transform: scale(0.56);
    -webkit-transform: scale(0.56);
    transform-origin: top left;
    -webkit-transform-origin: top left;
    pointer-events: none;
    opacity: 0;
    transition:
      opacity 0.35s var(--ease-out-expo),
      transform 0.45s var(--ease-out-expo);
  }

  .how-phone iframe.is-active {
    opacity: 1;
    z-index: 2;
    transform: scale(0.56);
    -webkit-transform: scale(0.56);
  }

  .how-phone iframe.is-entering {
    transform: scale(0.58);
    -webkit-transform: scale(0.58);
  }

  .how-dots {
    display: flex;
    gap: 8px;
    align-items: center;
  }

  .how-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    transition:
      width 0.45s var(--ease-out-expo),
      background 0.35s ease;
  }

  .how-dot.is-active {
    width: 22px;
    background: linear-gradient(90deg, #ff7a45, #ff2d74);
  }

  .how-chapters {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 8px;
  }

  .how-chapter {
    min-height: 52vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    padding: 36px 8px 88px;
    opacity: 0.35;
    transform: translateY(18px) scale(0.98);
    transition:
      opacity 0.5s var(--ease-out-expo),
      transform 0.55s var(--ease-out-expo);
  }

  .how-chapter.is-active {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .how-chapter .step-caption {
    justify-content: center;
  }

  .how-chapter p {
    font-size: 15.5px;
    line-height: 1.55;
    color: #a99b8e;
    margin-top: 12px;
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .hero-phone-wrap {
    --phone-scale: 0.64;
  }

  .store-badge {
    width: 100%;
    justify-content: center;
  }

  .cta-band .store-badge {
    width: auto;
  }

  .phone-frame {
    width: 210px;
    height: 455px;
  }

  .phone-frame iframe {
    transform: scale(0.534);
    -webkit-transform: scale(0.534);
  }

  .how-phone {
    width: 200px;
    height: 434px;
  }

  .how-phone iframe,
  .how-phone iframe.is-active {
    transform: scale(0.509);
    -webkit-transform: scale(0.509);
  }

  .how-phone iframe.is-entering {
    transform: scale(0.53);
    -webkit-transform: scale(0.53);
  }

  .diet-chips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bubble {
    max-width: 100%;
    font-size: 15px;
  }
}

@media (max-width: 900px) and (max-height: 740px) {
  .how-phone {
    width: 180px;
    height: 390px;
  }

  .how-phone iframe,
  .how-phone iframe.is-active {
    transform: scale(0.458);
    -webkit-transform: scale(0.458);
  }

  .how-phone iframe.is-entering {
    transform: scale(0.48);
    -webkit-transform: scale(0.48);
  }

  .how-chapter {
    min-height: 48vh;
    padding: 28px 8px 72px;
  }
}

/* ——— Motion system ——— */
:root {
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-solid: 0;
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.85;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.06);
  }
}

@keyframes mealNudge {
  0% {
    transform: translateX(0) rotate(0deg);
  }
  35% {
    transform: translateX(14px) rotate(3deg);
  }
  55% {
    transform: translateX(14px) rotate(3deg);
  }
  100% {
    transform: translateX(0) rotate(0deg);
  }
}

@keyframes ctaBreathe {
  0%,
  100% {
    box-shadow: 0 44px 96px -38px rgba(255, 61, 116, 0.45);
  }
  50% {
    box-shadow: 0 48px 110px -34px rgba(255, 61, 116, 0.7);
  }
}

html.js .hero-stage {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s var(--ease-out-expo),
    transform 0.75s var(--ease-out-expo);
  transition-delay: calc(var(--stage, 0) * 70ms);
}

html.js .hero-stage[data-stage='0'] {
  --stage: 0;
}
html.js .hero-stage[data-stage='1'] {
  --stage: 1;
}
html.js .hero-stage[data-stage='2'] {
  --stage: 2;
}
html.js .hero-stage[data-stage='3'] {
  --stage: 3;
}
html.js .hero-stage[data-stage='4'] {
  --stage: 4;
}
html.js .hero-stage[data-stage='5'] {
  --stage: 5;
}

html.js .hero.is-ready .hero-stage {
  opacity: 1;
  transform: translateY(0);
}

html.js .hero.is-ready .hero-phone-wrap.hero-stage {
  animation: floatY 4.2s ease-in-out 0.9s infinite;
}

html.js .hero.is-ready .hero-glow {
  animation: glowPulse 4.2s ease-in-out 0.9s infinite;
}

html.js .hero.is-ready .meal-card.is-nudge {
  animation: mealNudge 0.85s var(--ease-spring) 1.1s both;
}

html.js .hero-phone-wrap.is-paused,
html.js .hero-phone-wrap.is-paused .hero-glow {
  animation-play-state: paused;
}

html.js [data-reveal],
html.js [data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease-out-expo),
    transform 0.75s var(--ease-spring);
  will-change: opacity, transform;
}

html.js [data-reveal].is-in,
html.js [data-reveal-stagger].is-in > * {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

html.js [data-reveal-stagger].is-in > *:nth-child(1) {
  transition-delay: 0ms;
}
html.js [data-reveal-stagger].is-in > *:nth-child(2) {
  transition-delay: 70ms;
}
html.js [data-reveal-stagger].is-in > *:nth-child(3) {
  transition-delay: 140ms;
}
html.js [data-reveal-stagger].is-in > *:nth-child(4) {
  transition-delay: 210ms;
}
html.js [data-reveal-stagger].is-in > *:nth-child(5) {
  transition-delay: 280ms;
}
html.js [data-reveal-stagger].is-in > *:nth-child(6) {
  transition-delay: 350ms;
}

html.js .bubbles[data-reveal-stagger] > .bubble.them {
  transform: translateX(-22px) translateY(12px);
}
html.js .bubbles[data-reveal-stagger] > .bubble.me {
  transform: translateX(22px) translateY(12px);
}
html.js .bubbles[data-reveal-stagger].is-in > .bubble {
  transform: translateX(0) translateY(0);
}

html.js [data-reveal-cta] {
  transform: translateY(28px) scale(0.96);
  opacity: 0;
  transition:
    opacity 0.7s var(--ease-out-expo),
    transform 0.75s var(--ease-spring);
}

html.js [data-reveal-cta].is-in {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: ctaBreathe 3.2s ease-in-out 0.4s 2;
}

html.js .diet-chips span {
  opacity: 0;
  transform: scale(0.92);
  transition:
    opacity 0.4s var(--ease-out-expo),
    transform 0.45s var(--ease-spring);
}

html.js [data-reveal-stagger].is-in .diet-chips span {
  opacity: 1;
  transform: scale(1);
}

html.js [data-reveal-stagger].is-in .diet-chips span:nth-child(1) {
  transition-delay: 180ms;
}
html.js [data-reveal-stagger].is-in .diet-chips span:nth-child(2) {
  transition-delay: 230ms;
}
html.js [data-reveal-stagger].is-in .diet-chips span:nth-child(3) {
  transition-delay: 280ms;
}
html.js [data-reveal-stagger].is-in .diet-chips span:nth-child(4) {
  transition-delay: 330ms;
}
html.js [data-reveal-stagger].is-in .diet-chips span:nth-child(5) {
  transition-delay: 380ms;
}
html.js [data-reveal-stagger].is-in .diet-chips span:nth-child(6) {
  transition-delay: 430ms;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  html.js .hero-stage,
  html.js [data-reveal],
  html.js [data-reveal-stagger] > *,
  html.js [data-reveal-cta],
  html.js .how-chapter,
  html.js .how-phone,
  html.js .how-dot,
  html.js .diet-chips span,
  html.js .bubbles[data-reveal-stagger] > .bubble.them,
  html.js .bubbles[data-reveal-stagger] > .bubble.me {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }

  html.js .hero.is-ready .hero-phone-wrap.hero-stage,
  html.js .hero.is-ready .hero-glow,
  html.js .hero.is-ready .meal-card.is-nudge,
  html.js [data-reveal-cta].is-in {
    animation: none !important;
  }

  html.js .how-phone iframe {
    opacity: 0 !important;
    transition: none !important;
    animation: none !important;
  }

  html.js .how-phone iframe.is-active {
    opacity: 1 !important;
  }
}
