/* ─────────────────────────────────────────────────────────────
   TastePapa marketing site — shared styles for / and /features.

   Editorial cookbook landing page. The in-app brand is rebuilt
   here faithfully: General Sans for interface/body, Fraunces for
   display headlines, sage-green #218D68 affordances, and CSS phone
   mockups that mirror the real app screens (Home cookbooks, Import,
   Meal Plan, Cook With What You Have).
   ───────────────────────────────────────────────────────────── */

:root {
  /* Brand (matches src/theme/premium.ts) */
  --brand: #218D68;
  --brand-bright: #25B777;
  --brand-hi: #2ECC85;
  --brand-dark: #176B4F;
  --brand-soft: #E6F1E5;
  --brand-soft-2: #F1F8F3;
  --brand-border: #CFE4D2;

  /* Ink — deep cookbook green-black + cool slates for body */
  --ink: #14201A;
  --ink-2: #3C4A44;
  --ink-3: #586660;
  --muted: #828D88;

  /* Surfaces */
  --surface: #FFFFFF;
  --canvas: #FCFBF7;
  --cream: #FBF6EC;
  --cream-2: #F4ECDA;
  --cream-line: #ECE1CB;
  --line: #E7ECE8;

  /* In-app screen palette (used inside the phone mockups) */
  --app-ink: #1E2A33;
  --app-ink-2: #5A6670;
  --app-muted: #9AA4AC;
  --app-line: #EEF1F2;
  --app-bg: #FFFFFF;
  --app-soft: #FAFAFA;
  --app-cream: #F4F6F1;
  --app-cream-line: rgba(31, 42, 38, 0.18);
  --app-cta: #14201A;

  /* Warm accent + Pro champagne */
  --amber: #E89B3C;
  --amber-deep: #C68A1D;
  --amber-soft: #FBF2DC;
  --gold: #C68A1D;
  --navy: #2C3E5F;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family: 'General Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
}

a { color: var(--brand-dark); text-decoration: none; }
a:hover { color: var(--brand); }

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

/* Editorial accent — replaces the old Caveat script with a
   refined Fraunces italic in brand green. Used in headlines. */
.script {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: var(--brand);
  letter-spacing: -0.5px;
}


/* ─── Topbar ────────────────────────────────────────────── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(252, 251, 247, 0.78);
  backdrop-filter: saturate(150%) blur(18px);
  -webkit-backdrop-filter: saturate(150%) blur(18px);
  border-bottom: 1px solid rgba(20, 32, 26, 0.06);
}
.topbar-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--ink);
  font-size: 16.5px;
  text-decoration: none;
}
.brand-mark img { width: 27px; height: 27px; border-radius: 50%; }
.topbar-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  margin-right: 26px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-3);
  padding: 4px 0;
  transition: color 0.18s;
}
.nav-link:hover { color: var(--ink); }
.nav-link.is-active { color: var(--ink); font-weight: 600; }
.topbar-cta {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.1px;
  color: var(--brand-dark);
  background: #FFFFFF;
  padding: 9px 17px;
  border-radius: 999px;
  box-shadow: 0 8px 18px -8px rgba(15, 28, 23, 0.35);
  transition: transform 0.18s, box-shadow 0.18s;
  white-space: nowrap;
}
.topbar-cta:hover {
  color: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -10px rgba(15, 28, 23, 0.4);
}

/* Homepage header sits transparently over the hero gradient (no white
   bar) so the logo + nav read as part of the green backdrop. */
.topbar--over {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
/* Small tagline pill to the right of the logo. */
.brand-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1px;
  color: var(--brand-dark);
  background: rgba(33, 141, 104, 0.10);
  border: 1px solid rgba(33, 141, 104, 0.18);
  padding: 5px 11px 5px 9px;
  border-radius: 999px;
  white-space: nowrap;
}
.brand-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }


/* ─── Eyebrow pill (matches in-app eyebrow pattern) ─────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--brand-dark);
  background: var(--brand-soft);
  border: 1px solid var(--brand-border);
  padding: 6px 12px;
  border-radius: 999px;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}
.eyebrow.eyebrow-dark {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}
.eyebrow-dot-cream { background: var(--amber); }


/* ─── Hero (home) — light editorial ─────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(820px 520px at 84% -8%, rgba(46, 204, 133, 0.16), transparent 62%),
    radial-gradient(680px 480px at 6% 8%, rgba(251, 242, 220, 0.9), transparent 60%);
}
.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1140px;
  margin: 0 auto;
  padding: 84px 32px 96px;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 48px;
  align-items: center;
}
.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
.hero-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.1rem, 4.8vw, 3.9rem);
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 1.04;
  margin: 0;
  color: var(--ink);
  overflow-wrap: break-word;
  max-width: 100%;
}
.hero-title .script { font-size: 1.04em; }
.hero-sub {
  font-size: clamp(1.04rem, 1.3vw, 1.18rem);
  color: var(--ink-3);
  width: 100%;
  max-width: 452px;
  margin: 0;
  line-height: 1.6;
}
.hero-stores {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 2px;
}
.hero-stars {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
}
.hero-stars svg { width: 15px; height: 15px; color: var(--amber-deep); }
.hero-trust {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.hero-dot-sep { color: var(--brand-border); }

/* ambient soft shapes behind the device */
.hero-glow {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.hero-glow-1 {
  top: -120px; right: -80px;
  width: 460px; height: 460px;
  background: radial-gradient(circle at 50% 50%, rgba(46, 204, 133, 0.22), transparent 66%);
  border-radius: 50%;
}
.hero-glow-2 {
  bottom: -160px; left: 38%;
  width: 380px; height: 380px;
  background: radial-gradient(circle at 50% 50%, rgba(230, 155, 60, 0.14), transparent 66%);
  border-radius: 50%;
}


/* ─── Store badges (shared with features.html) ──────────── */
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-radius: 14px;
  background: var(--ink);
  color: #FFFFFF;
  font-family: inherit;
  text-decoration: none;
  transition: transform 0.18s, box-shadow 0.18s;
  min-width: 178px;
  box-shadow: 0 10px 26px -12px rgba(20, 32, 26, 0.7);
}
.store-badge:hover {
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -14px rgba(20, 32, 26, 0.7);
}
.store-badge-disabled {
  cursor: default;
  background: transparent;
  color: var(--ink-2);
  border: 1px solid var(--line);
  box-shadow: none;
}
.store-badge-disabled .store-text-top,
.store-badge-disabled .store-text-bot { color: var(--ink-2); }
.store-badge-disabled svg.store-icon path { fill: var(--ink-3) !important; }
.store-badge-disabled:hover { transform: none; color: var(--ink-2); box-shadow: none; }
.store-badge svg.store-icon { flex-shrink: 0; }
.store-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.05;
  gap: 2px;
}
.store-text-top {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  opacity: 0.78;
}
.store-text-bot { font-size: 18px; font-weight: 700; letter-spacing: -0.2px; }


/* ─── "Works with" strip ────────────────────────────────── */
.logos {
  border-top: 1px solid rgba(20, 32, 26, 0.06);
  border-bottom: 1px solid rgba(20, 32, 26, 0.06);
  background: rgba(255, 255, 255, 0.5);
}
.logos-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px 30px;
  flex-wrap: wrap;
}
.logos-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
}
.logos-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-3);
}
.logos-item svg { width: 17px; height: 17px; }


/* ════════════════════════════════════════════════════════
   App device mockups (faithful to the real screens)
   ════════════════════════════════════════════════════════ */
.hero-phone {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.device {
  position: relative;
  width: clamp(272px, 28vw, 300px);
  aspect-ratio: 300 / 648;
  border-radius: 46px;
  padding: 10px;
  background: linear-gradient(150deg, #1c2622, #0d1411);
  box-shadow:
    0 50px 90px -30px rgba(15, 28, 23, 0.5),
    0 18px 40px -18px rgba(15, 28, 23, 0.28),
    inset 0 0 0 1.5px rgba(255, 255, 255, 0.06);
}
.device--tilt { transform: rotate(1.5deg); }
.device-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 37px;
  background: var(--app-bg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.device-island {
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 86px;
  height: 25px;
  border-radius: 999px;
  background: #0d1411;
  z-index: 9;
  pointer-events: none;
}

/* status bar — time/icons sit on the same row as the island, with
   comfortable top breathing room so it reads like a real device. */
.dv-status {
  display: grid;
  grid-template-columns: minmax(42px, 1fr) 90px minmax(58px, 1fr);
  align-items: center;
  padding: 16px 20px 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--app-ink);
  flex-shrink: 0;
  position: relative;
  z-index: 4;
}
.dv-status > span:first-child {
  grid-column: 1;
  justify-self: start;
}
.dv-status-r {
  grid-column: 3;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
}
.dv-sos { display: none; }
.dv-status-r svg { width: 14px; height: 11px; color: var(--app-ink); }
.dv-bat { width: 19px; height: 10px; border: 1.3px solid var(--app-ink); border-radius: 3px; position: relative; }
.dv-bat::before { content: ''; position: absolute; inset: 1.3px; background: var(--app-ink); border-radius: 1px; }
.dv-bat::after { content: ''; position: absolute; right: -2.5px; top: 2.6px; width: 1.8px; height: 4px; background: var(--app-ink); border-radius: 0 1px 1px 0; }

.dv-body {
  flex: 1;
  min-height: 0;
  padding: 4px 14px 0;
  overflow: hidden;
  position: relative;
}

/* floating tab bar + FAB (shared across screens) */
.dv-tabbar {
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 11px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 7;
}
.dv-tabs {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 46px;
  background: #FFFFFF;
  border-radius: 23px;
  box-shadow: 0 10px 24px -12px rgba(15, 28, 23, 0.22), 0 0 0 1px rgba(20, 32, 26, 0.04);
}
.dv-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 7.5px;
  font-weight: 600;
  color: var(--app-muted);
}
.dv-tab svg { width: 16px; height: 16px; }
.dv-tab.is-active { color: var(--app-ink); }
.dv-fab {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--app-cta);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 20px -8px rgba(20, 32, 26, 0.58);
}
.dv-fab svg { width: 21px; height: 21px; }

/* fade so content tucks behind the tab bar */
.dv-fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 66px;
  background: linear-gradient(to top, #fff 34%, rgba(255, 255, 255, 0));
  z-index: 6;
  pointer-events: none;
}

/* small floating proof chips beside the hero device */
.proof-chip {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #FFFFFF;
  border-radius: 13px;
  padding: 8px 12px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 0 18px 38px -16px rgba(15, 28, 23, 0.4), 0 0 0 1px rgba(20, 32, 26, 0.04);
}
.proof-chip-ic {
  width: 22px; height: 22px; border-radius: 7px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--brand-soft); color: var(--brand);
}
.proof-chip-ic svg { width: 13px; height: 13px; }
.proof-1 { top: 15%; left: -24px; }
.proof-2 { bottom: 16%; right: -20px; }

/* ── Home screen content ───────────────────────────────── */
.dh-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 3px 2px 11px;
}
.dh-avatar {
  width: 24px; height: 24px; border-radius: 50%;
  background: linear-gradient(135deg, #F2C994, #E89B3C);
}
.dh-profile {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid rgba(20, 32, 26, 0.10);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px -14px rgba(20, 32, 26, 0.38);
  overflow: hidden;
}
.dh-profile img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
}
.dh-pro-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  height: 16px;
  padding: 0 6px 0 4px;
  margin-left: -4px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid rgba(20, 32, 26, 0.10);
  color: var(--gold);
  font-size: 8.5px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 8px 18px -14px rgba(20, 32, 26, 0.32);
}
.dh-pro-badge svg { width: 10px; height: 10px; flex-shrink: 0; }
.dh-logo { font-weight: 700; font-size: 13px; color: var(--app-ink); letter-spacing: -0.3px; flex: 1; }
.dh-logo-img { height: 15px; width: auto; margin-right: auto; display: block; object-fit: contain; }
.dh-bell { display: none; }
.dh-sec { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.dh-h {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 16.5px;
  letter-spacing: -0.4px;
  color: var(--app-ink);
  flex: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.dh-h i {
  font-style: normal;
  font-family: 'General Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--app-ink-2);
  background: var(--app-line);
  border-radius: 999px;
  padding: 1px 7px;
}
.dh-see {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--app-ink-2);
  background: var(--app-soft);
  border: 1px solid rgba(20, 32, 26, 0.05);
  border-radius: 999px;
  padding: 4px 10px;
}
.dh-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}
.dh-book { display: flex; flex-direction: column; }
.dh-cover {
  width: 100%;
  aspect-ratio: 1 / 0.9;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 7px 16px -10px rgba(15, 28, 23, 0.4);
}
/* reuse a photo but mirror + reframe so the repeat reads as a different shot */
.dh-cover-alt { transform: scaleX(-1); background-position: 70% 35%; background-size: 150%; }
.dh-cover-herbs { background: linear-gradient(150deg, #DCEFE0, #B7DCC3); position: relative; }
.dh-cover-herbs::after {
  content: '🌿'; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; font-size: 26px;
}
.dh-bt { font-size: 12px; font-weight: 700; color: var(--app-ink); margin: 7px 0 1px; letter-spacing: -0.2px; }
.dh-bm { font-size: 10px; font-weight: 500; color: var(--app-muted); }
.dh-sec2 { margin-top: 14px; align-items: center; }
.dh-h2col { flex: 1; display: flex; flex-direction: column; }
.dh-h2 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 16px; letter-spacing: -0.4px; color: var(--app-ink); }
.dh-h2sub { font-size: 10px; font-weight: 500; color: var(--app-muted); margin-top: 1px; }
.dh-pill {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10.5px; font-weight: 700; color: #8A6B2E;
  background: linear-gradient(135deg, #FBF3DE, #EFDDB0);
  border: 1px solid rgba(198, 138, 29, 0.28);
  border-radius: 999px; padding: 6px 11px;
}
.dh-pill svg { width: 12px; height: 12px; color: #C68A1D; }

/* ── generic screen header (Import / Cook) ─────────────── */
.dv-back {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(43, 45, 66, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(43, 45, 66, 0.04);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(43, 45, 66, 0.72);
  margin: 2px 0 4px;
  flex-shrink: 0;
}
.dv-back svg { width: 15px; height: 15px; }
.dv-screen-title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: var(--app-ink);
  margin: 4px 0 2px;
}
.dv-screen-sub { font-size: 11px; font-weight: 500; color: var(--app-muted); }

/* ── Import screen ─────────────────────────────────────── */
.di .dv-screen-title { font-size: 23px; }
.di-input {
  display: flex; align-items: center; gap: 8px;
  border: 1px solid var(--app-line);
  border-radius: 999px;
  padding: 6px 6px 6px 13px;
  background: #fff;
  box-shadow: 0 6px 16px -10px rgba(20, 32, 26, 0.22);
  margin: 18px 0 0;
}
.di-input .ig-glyph { width: 16px; height: 16px; flex-shrink: 0; }
.di-url { flex: 1; font-size: 11.5px; font-weight: 500; color: var(--app-ink); white-space: nowrap; overflow: hidden; }
.di-x { width: 18px; height: 18px; border-radius: 50%; background: var(--app-line); color: var(--app-muted); display: inline-flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; }
.di-go {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: var(--app-cta);
  color: #fff; display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 7px 14px -6px rgba(20, 32, 26, 0.58);
}
.di-go svg { width: 16px; height: 16px; }
.di-label { font-size: 9px; font-weight: 700; letter-spacing: 1.3px; text-transform: uppercase; color: var(--app-muted); margin: 18px 0 10px; }
.di-ways { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.di-way {
  display: flex; align-items: center; gap: 7px;
  border: 1px solid var(--app-line); border-radius: 13px;
  padding: 11px; font-size: 11.5px; font-weight: 700; color: var(--app-ink);
}
.di-way svg { width: 15px; height: 15px; color: var(--app-ink-2); }
.di-way .chev { margin-left: auto; color: var(--app-muted); }
.di-socials { display: flex; gap: 12px; justify-content: center; margin-top: 13px; }
.di-social { width: 38px; height: 38px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; }
.di-social.ig { background: linear-gradient(135deg, #FEDA75, #FA7E1E 35%, #D62976 60%, #962FBF 80%, #4F5BD5); }
.di-social.tt { background: #0d0d0d; }
.di-social svg { width: 21px; height: 21px; color: #fff; }

/* ── Meal Plan screen ──────────────────────────────────── */
.dm-top { display: flex; align-items: center; gap: 8px; padding: 3px 0 2px; }
.dm-title { font-family: 'Fraunces', serif; font-weight: 600; font-size: 18px; letter-spacing: -0.4px; color: var(--app-ink); flex: 1; white-space: nowrap; }
.dm-auto {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 700; color: var(--app-ink);
  background: #fff; border: 1px solid var(--app-line); border-radius: 999px;
  padding: 6px 11px; box-shadow: 0 4px 12px -8px rgba(15,28,23,0.3);
}
.dm-auto svg { width: 12px; height: 12px; color: var(--gold); }
.dm-trash { width: 30px; height: 30px; border-radius: 50%; background: var(--app-line); color: var(--app-ink-2); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dm-trash svg { width: 14px; height: 14px; }
.dm-meta { display: flex; align-items: center; gap: 8px; font-size: 10.5px; font-weight: 600; color: var(--app-ink-2); margin: 11px 0 13px; }
.dm-meta b { color: var(--app-ink); }
.dm-meta-sep { color: var(--app-line); }
.dm-days { display: flex; gap: 8px; overflow: hidden; margin-bottom: 13px; }
.dm-day {
  flex: 0 0 auto; width: 49px; text-align: center;
  border: 1px solid var(--app-line); border-radius: 14px; padding: 8px 0 7px; background: #fff;
}
.dm-day.is-sel { background: var(--app-cream); border-color: var(--app-cream-line); }
.dm-day-w { font-size: 8.5px; font-weight: 700; letter-spacing: 0.5px; color: var(--app-muted); }
.dm-day-n { font-family: 'Fraunces', serif; font-weight: 700; font-size: 17px; color: var(--app-ink); line-height: 1.1; }
.dm-day-m { font-size: 8.5px; font-weight: 600; color: var(--app-muted); margin-top: 2px; }
.dm-day.is-sel .dm-day-m { color: var(--app-ink); }
.dm-alert {
  display: flex; align-items: center; gap: 8px;
  background: #FBECEC; border-radius: 13px; padding: 10px 12px;
  font-size: 11px; font-weight: 600; color: #B23B3B; margin-bottom: 15px;
}
.dm-alert .chev { margin-left: auto; color: #C97A7A; }
.dm-alert svg { width: 14px; height: 14px; flex-shrink: 0; }
.dm-dayhead { display: flex; align-items: center; gap: 7px; margin-bottom: 10px; }
.dm-dayhead b { font-family: 'Fraunces', serif; font-weight: 600; font-size: 15px; color: var(--app-ink); }
.dm-dayhead span { font-size: 10px; font-weight: 500; color: var(--app-muted); flex: 1; }
.dm-add { font-size: 11px; font-weight: 700; color: var(--app-ink); }
.dm-meal {
  display: flex; align-items: center; gap: 11px;
  background: #fff; border-radius: 14px; padding: 8px;
  margin-bottom: 10px; box-shadow: 0 8px 20px -14px rgba(15,28,23,0.35), 0 0 0 1px rgba(20,32,26,0.03);
}
.dm-meal-img { width: 40px; height: 40px; border-radius: 11px; background-size: cover; background-position: center; flex-shrink: 0; }
.dm-meal-t { flex: 1; font-size: 13px; font-weight: 700; color: var(--app-ink); letter-spacing: -0.2px; }
.dm-meal-act { width: 28px; height: 28px; border-radius: 9px; background: var(--app-soft); color: var(--app-muted); display: inline-flex; align-items: center; justify-content: center; font-weight: 800; letter-spacing: 1px; font-size: 12px; }
.dm-prep {
  position: absolute; left: 14px; right: 14px; bottom: 70px;
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  background: var(--app-cta);
  color: #fff; font-size: 13px; font-weight: 700;
  height: 42px; border-radius: 999px;
  box-shadow: 0 12px 24px -10px rgba(20, 32, 26, 0.58);
  z-index: 6;
}
.dm-prep svg { width: 14px; height: 14px; }

/* ── Cook With What You Have screen ────────────────────── */
.dk-head { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 13px; min-width: 0; }
.dk-head .dv-back { margin: 0; }
.dk-title {
  flex: 1;
  min-width: 0;
  max-width: 168px;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 15.8px;
  line-height: 1.12;
  letter-spacing: -0.25px;
  color: var(--app-ink);
  overflow-wrap: normal;
}
.dk-tabs { display: flex; gap: 14px; margin-bottom: 13px; min-width: 0; }
.dk-tab { font-size: 12px; font-weight: 600; color: var(--app-muted); display: inline-flex; align-items: center; gap: 5px; }
.dk-tab i { font-style: normal; font-size: 10px; }
.dk-tab.is-active { color: var(--app-ink); font-weight: 700; background: var(--app-soft); padding: 4px 11px; border-radius: 999px; border: 1px solid rgba(20, 32, 26, 0.05); }
.dk-clear { text-align: right; font-size: 11px; font-weight: 700; color: var(--app-ink); margin-bottom: 9px; }
.dk-pref {
  display: flex; align-items: center; gap: 9px;
  background: rgba(31, 42, 38, 0.045); border: 1px solid rgba(31, 42, 38, 0.18); border-radius: 14px; padding: 11px 10px; margin-bottom: 14px;
  min-width: 0;
}
.dk-pref-ic { width: 30px; height: 30px; border-radius: 999px; background: rgba(31, 42, 38, 0.08); color: var(--app-ink); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dk-pref-ic svg { width: 15px; height: 15px; }
.dk-pref-col { flex: 1; min-width: 0; }
.dk-pref-t {
  display: block;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.58px;
  text-transform: uppercase;
  color: var(--app-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dk-pref-s {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--app-ink);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dk-pref-n { width: 22px; height: 22px; border-radius: 50%; background: var(--app-cta); color: #fff; font-size: 11px; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dk-pref--plain .dk-pref-col {
  min-width: 0;
}
.dk-grouplabel { font-size: 9px; font-weight: 700; letter-spacing: 1.3px; text-transform: uppercase; color: var(--app-muted); margin: 0 0 9px; }
.dk-item {
  display: flex; align-items: center; gap: 11px;
  background: #fff; border: 1px solid var(--app-line); border-radius: 14px;
  padding: 9px 12px; margin-bottom: 9px;
  min-width: 0;
}
.dk-item.is-sel { background: #FFFFFF; border-color: rgba(33, 141, 104, 0.40); }
.dk-item-emoji { font-size: 18px; flex-shrink: 0; }
.dk-item-name {
  flex: 1;
  min-width: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--app-ink);
  letter-spacing: -0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dk-check { width: 22px; height: 22px; border-radius: 7px; border: 2px solid var(--app-line); flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; }
.dk-check.on { background: var(--app-cta); border-color: var(--app-cta); color: #fff; }
.dk-check svg { width: 12px; height: 12px; }
.dk-cta {
  position: absolute; left: 14px; right: 14px; bottom: 70px;
  height: 44px; border-radius: 999px;
  background: var(--app-cta); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13.5px; font-weight: 700; letter-spacing: -0.2px;
  box-shadow: 0 12px 24px -10px rgba(20, 32, 26, 0.58);
  z-index: 6;
}


/* ════════════════════════════════════════════════════════
   Showcase feature sections (copy + app device, alternating)
   ════════════════════════════════════════════════════════ */
.showcase { background: var(--surface); }
.showcase-alt { background: var(--cream); }
.showcase-row {
  max-width: 1080px;
  margin: 0 auto;
  padding: 88px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.showcase-row--flip .showcase-copy { order: 2; }
.showcase-row--flip .showcase-visual { order: 1; }
.showcase-copy { max-width: 440px; }
.showcase-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin-bottom: 16px;
}
.showcase-kicker::before {
  content: '';
  width: 18px; height: 2px; border-radius: 2px;
  background: var(--brand);
}
.showcase-copy h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.8rem, 3.1vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.7px;
  line-height: 1.1;
  margin: 0 0 14px;
  color: var(--ink);
}
.showcase-copy > p {
  font-size: 16px;
  color: var(--ink-3);
  line-height: 1.65;
  margin: 0 0 22px;
}
.showcase-points { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.showcase-points li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
  line-height: 1.45;
}
.showcase-points li svg { width: 13px; height: 13px; color: #fff; }
.showcase-tick {
  flex-shrink: 0;
  margin-top: 1px;
  width: 21px; height: 21px; border-radius: 7px;
  background: var(--brand);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 5px 12px -6px rgba(33, 141, 104, 0.8);
}
.showcase-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.showcase-visual .device { width: clamp(260px, 27vw, 296px); }
.showcase-halo {
  position: absolute;
  width: 78%;
  height: 78%;
  border-radius: 50%;
  z-index: 0;
  filter: blur(8px);
}
.showcase-halo--green { background: radial-gradient(circle, rgba(46, 204, 133, 0.2), transparent 68%); }
.showcase-halo--amber { background: radial-gradient(circle, rgba(230, 155, 60, 0.16), transparent 68%); }


/* ─── Section heading (shared) ──────────────────────────── */
.section-kicker {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--brand);
  text-align: center;
  margin: 0 0 12px;
}
.section-heading {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.7px;
  line-height: 1.1;
  margin: 0 0 10px;
  color: var(--ink);
  text-align: center;
}
.section-sub {
  font-size: 15.5px;
  color: var(--ink-3);
  text-align: center;
  margin: 0 auto 44px;
  max-width: 560px;
}


/* ─── Feature grid (2x3) ────────────────────────────────── */
.grid-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 88px 32px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.grid-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px 24px 24px;
  box-shadow: 0 10px 26px -16px rgba(10, 30, 22, 0.18);
  transition: transform 0.22s, box-shadow 0.22s;
}
.grid-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 36px -18px rgba(10, 30, 22, 0.28);
}
.grid-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: var(--brand-soft);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.grid-card h3 {
  font-size: 16.5px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin: 0 0 6px;
  color: var(--ink);
}
.grid-card p {
  font-size: 14px;
  color: var(--ink-3);
  margin: 0;
  line-height: 1.55;
}


/* ─── Page hero (features) ──────────────────────────────── */
.page-hero {
  max-width: 880px;
  margin: 0 auto;
  padding: 84px 28px 40px;
  text-align: center;
}
.page-hero-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.4rem, 5.2vw, 3.7rem);
  font-weight: 600;
  letter-spacing: -1.2px;
  line-height: 1.06;
  margin: 16px 0 14px;
  color: var(--ink);
}
.page-hero-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--brand);
}
.page-hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  color: var(--ink-3);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.6;
}


/* ─── Flow (3-step, features) ───────────────────────────── */
.flow {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 28px 56px;
}
.flow-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.flow-step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px 26px 26px;
  position: relative;
  box-shadow: 0 10px 26px -16px rgba(10, 30, 22, 0.16);
}
.flow-step-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 26px;
  color: var(--brand);
  letter-spacing: -0.4px;
  margin-bottom: 4px;
}
.flow-step h3 {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.4px;
  margin: 0 0 10px;
  color: var(--ink);
}
.flow-step p {
  font-size: 14.5px;
  color: var(--ink-3);
  line-height: 1.6;
  margin: 0 0 18px;
}
.flow-step-illo {
  margin-top: 18px;
  padding: 16px;
  background: var(--canvas);
  border: 1px dashed var(--line);
  border-radius: 16px;
  min-height: 96px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.chip {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
  letter-spacing: -0.05px;
}
.chip-tiktok { background: #000; color: #fff; }
.chip-ig { background: linear-gradient(135deg, #FCAF45, #E1306C, #5851DB); color: #fff; }
.chip-link { background: var(--brand-soft); color: var(--brand-dark); border: 1px solid var(--brand-border); }
.chip-photo { background: rgba(91, 141, 239, 0.12); color: #2752C9; }
.flow-step-illo-plan { flex-direction: column; align-items: stretch; gap: 6px; }
.plan-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  background: var(--surface);
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 12px;
}
.plan-day {
  font-weight: 700;
  color: var(--brand-dark);
  font-size: 10px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  min-width: 30px;
}
.plan-meal { color: var(--ink-2); font-weight: 500; }
.flow-step-illo-cook { flex-direction: column; align-items: stretch; gap: 6px; }
.cook-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  border-radius: 10px;
  font-size: 12px;
  color: var(--ink-2);
  background: var(--surface);
  border: 1px solid var(--line);
}
.cook-step.is-done { text-decoration: line-through; opacity: 0.5; }
.cook-step.is-active {
  background: var(--brand-soft);
  border-color: var(--brand-border);
  color: var(--brand-dark);
  font-weight: 600;
}
.cook-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}
.is-done .cook-num { background: var(--muted); }


/* ─── Pricing ───────────────────────────────────────────── */
.pricing {
  max-width: 1000px;
  margin: 0 auto;
  padding: 24px 32px 80px;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.price-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px 28px 28px;
  box-shadow: 0 14px 30px -20px rgba(10, 30, 22, 0.2);
}
.price-card-pro {
  background: linear-gradient(155deg, #FBF3DE 0%, #F5E8C5 60%, #EFDDB0 100%);
  border-color: rgba(198, 138, 29, 0.22);
}
.price-crown { position: absolute; top: 22px; right: 24px; color: #B8860B; display: inline-flex; }
.price-tier {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--brand-dark);
  background: var(--brand-soft);
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.price-tier-pro { color: #5A4115; background: rgba(198, 138, 29, 0.18); }
.price-amount {
  font-family: 'Fraunces', serif;
  font-size: 46px;
  font-weight: 600;
  letter-spacing: -1.5px;
  color: var(--ink);
  margin: 0 0 4px;
}
.price-amount span {
  font-style: italic;
  font-size: 30px;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: -0.6px;
}
.price-sub { font-size: 14px; color: var(--ink-2); margin: 0 0 18px; line-height: 1.5; }
.price-list { list-style: none; padding: 0; margin: 0; }
.price-list li { position: relative; font-size: 14px; color: var(--ink-2); padding: 7px 0 7px 24px; }
.price-list li::before {
  content: '';
  position: absolute;
  top: 11px;
  left: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-image: linear-gradient(135deg, var(--brand-bright), var(--brand-dark));
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5);
}
.price-card-pro .price-list li::before { background-image: linear-gradient(135deg, #D4AF37, #8A6B2E); }
.pricing-fine { text-align: center; font-size: 12.5px; color: var(--muted); margin-top: 24px; }


/* ─── Use-case quote (features) ─────────────────────────── */
.usecase { max-width: 1180px; margin: 0 auto; padding: 24px 28px 64px; }
.usecase-inner {
  background:
    radial-gradient(700px 360px at 0% 0%, rgba(37, 183, 119, 0.16), transparent 60%),
    linear-gradient(135deg, #1f2c25 0%, #14201a 100%);
  color: #FFFFFF;
  border-radius: 28px;
  padding: 56px 48px;
  text-align: center;
  box-shadow: 0 34px 70px -30px rgba(15, 28, 23, 0.6);
}
.usecase-quote {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: -0.4px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.96);
  margin: 18px auto 0;
  max-width: 760px;
}
.usecase-quote em { font-style: italic; color: var(--brand-bright); }
.usecase-quote strong { font-weight: 700; color: #FFFFFF; }


/* ─── Bottom CTA (green signature card) ─────────────────── */
.bottom-cta {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 32px 96px;
}
.bottom-cta-inner {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: 76px 40px;
  text-align: center;
  background:
    radial-gradient(700px 420px at 84% -20%, rgba(255, 210, 122, 0.2), transparent 60%),
    linear-gradient(160deg, #2ECC85 0%, #218D68 48%, #176B4F 100%);
  box-shadow: 0 38px 80px -34px rgba(15, 28, 23, 0.55);
}
.bottom-cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 38%);
  pointer-events: none;
}
/* decorative floating blobs */
.cta-blob {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  pointer-events: none;
}
.cta-blob-1 { width: 220px; height: 220px; top: -90px; left: -60px; }
.cta-blob-2 { width: 160px; height: 160px; bottom: -70px; right: -30px; background: rgba(255, 230, 176, 0.16); }
.cta-logo {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  margin: 0 auto 18px;
  display: block;
  box-shadow: 0 12px 28px -10px rgba(6, 56, 31, 0.5);
}
.bottom-cta-inner h2 {
  position: relative;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.6px;
  line-height: 1.1;
  color: #FFFFFF;
  margin: 0 0 12px;
}
.bottom-cta-inner h2 .script { color: #FFE6B0; }
.bottom-cta-inner p {
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15.5px;
  margin: 0 auto 28px;
  max-width: 440px;
}
.bottom-cta-inner .hero-stores { position: relative; justify-content: center; }
.bottom-cta-inner .store-badge { background: #FFFFFF; color: var(--ink); }
.bottom-cta-inner .store-badge:hover { color: var(--ink); }
.bottom-cta-inner .store-badge svg.store-icon path { fill: var(--ink) !important; }
.bottom-cta-inner .store-badge--play svg.store-icon path:nth-child(1) { fill: #34A853 !important; }
.bottom-cta-inner .store-badge--play svg.store-icon path:nth-child(2) { fill: #FBBC04 !important; }
.bottom-cta-inner .store-badge--play svg.store-icon path:nth-child(3) { fill: #4285F4 !important; }
.bottom-cta-inner .store-badge--play svg.store-icon path:nth-child(4) { fill: #EA4335 !important; }
.bottom-cta-inner .store-badge--play svg.store-icon path:nth-child(5) { fill: #34A853 !important; }

/* Scan-to-download QR — desktop affordance below the store badges.
   Hidden on phones (scanning the device you're holding is pointless). */
.cta-qr {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}
.cta-qr-card {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 18px 40px -22px rgba(8, 30, 20, 0.55);
}
.cta-qr-img {
  display: block;
  width: 116px;
  height: 116px;
  /* Crisp module edges when an SVG QR is scaled. */
  image-rendering: pixelated;
}
.cta-qr-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}
@media (max-width: 700px) {
  .cta-qr { margin-top: 24px; }
  .cta-qr-card { padding: 12px; }
  .cta-qr-img { width: 104px; height: 104px; }
}


/* ─── Footer ────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 28px 36px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--ink);
  font-size: 14.5px;
}
.footer-brand img { width: 22px; height: 22px; border-radius: 50%; }
.footer-spacer { flex: 1; }
.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13.5px;
}
.footer-links a { color: var(--ink-2); font-weight: 500; }
.footer-links a:hover { color: var(--brand-dark); }
.footer-copy {
  width: 100%;
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 12px;
  text-align: center;
}


/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 940px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 60px 24px 64px;
    gap: 48px;
    text-align: center;
  }
  .hero-text { align-items: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-stores, .hero-meta { justify-content: center; }
  .device--tilt { transform: rotate(0deg); }
  .proof-1 { left: -8px; }
  .proof-2 { right: -8px; }

  .showcase-row {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 64px 24px;
    text-align: center;
  }
  .showcase-copy { max-width: 540px; margin: 0 auto; }
  .showcase-kicker { justify-content: center; }
  .showcase-points { display: inline-flex; text-align: left; }
  .showcase-row--flip .showcase-copy { order: 1; }
  .showcase-row--flip .showcase-visual { order: 2; }

  .flow-track,
  .feature-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  /* Topbar collapses to just the logo + wordmark on phones — the nav
     links are dropped, and there's no separate CTA (the store badges
     in the hero handle that). */
  .topbar-inner { padding: 11px 18px; gap: 10px; }
  .topbar-nav { display: none; }
  .brand-mark { gap: 8px; font-size: 16px; margin-right: auto; }
  .topbar-cta { padding: 8px 14px; font-size: 12.5px; }
  .brand-mark img { width: 30px; height: 30px; }

  .hero-inner { padding: 40px 22px 52px; gap: 40px; }
  .hero-text { min-width: 0; width: 100%; }
  .hero-text > * { min-width: 0; max-width: 100%; }
  .hero-meta { flex-wrap: wrap; }
  .hero-title { font-size: clamp(1.5rem, 6.6vw, 1.95rem); letter-spacing: -0.4px; line-height: 1.1; }
  .hero-title .script { font-size: 1em; }
  .hero-br { display: none; }
  .hero-sub { font-size: 0.98rem; line-height: 1.5; max-width: 340px; }
  /* Two compact official badges in a centered row reads more
     professional than full-width stacked pills, and frees vertical
     space so the phone appears sooner above the fold. */
  .hero-stores { flex-direction: row; flex-wrap: wrap; justify-content: center; width: 100%; gap: 10px; }
  .store-badge { min-width: 0; justify-content: center; padding: 9px 14px; gap: 9px; }
  .store-text-top { font-size: 8px; }
  .store-text-bot { font-size: 14.5px; }
  .store-badge svg.store-icon { width: 18px; height: 21px; }

  .logos-inner { gap: 12px 20px; }

  .usecase-inner,
  .bottom-cta-inner { padding: 48px 24px; border-radius: 26px; }

  .footer-inner { padding: 24px 18px 28px; flex-direction: column; align-items: flex-start; }
  .footer-spacer { display: none; }
}

@media (max-width: 420px) {
  .hero-inner { padding: 32px 20px 44px; }
  .hero-title { font-size: clamp(1.45rem, 8vw, 1.8rem); }
  .hero-sub { font-size: 0.94rem; }
  .device { width: min(76vw, 270px); }
}

/* ════════════════════════════════════════════════════════
   NEW LAYOUT — centered hero + phone fan + bento
   (appended last so it wins the cascade over earlier rules)
   ════════════════════════════════════════════════════════ */
.hero { overflow: hidden; }
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  grid-template-columns: none;
  max-width: 1080px;
  gap: 22px;
  padding: 108px 24px 8px;
}
.hero-text { align-items: center; max-width: 720px; gap: 18px; }
.hero-title {
  text-align: center;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  letter-spacing: -0.8px;
  line-height: 1.08;
  max-width: 18ch;
}
.hero-sub { text-align: center; margin-inline: auto; max-width: 500px; }
.hero-stores { justify-content: center; }
.hero-meta { justify-content: center; }

/* three-phone fan — center upright, two behind it angled outward */
.phone-fan {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 26px;
  padding-bottom: 8px;
}
.phone-fan .device { box-shadow: 0 50px 90px -34px rgba(15,28,23,0.5), 0 18px 40px -20px rgba(15,28,23,0.26); }
.fan-center { position: relative; z-index: 3; }
.fan-side {
  position: absolute;
  bottom: -6px;
  z-index: 1;
  width: clamp(278px, 28vw, 300px);
}
.fan-side::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 46px;
  background: linear-gradient(180deg, rgba(247,250,248,0) 40%, rgba(247,250,248,0.32));
  pointer-events: none;
}
.fan-left  { right: 50%; margin-right: 82px; transform: rotate(-9deg) scale(0.86); transform-origin: bottom right; }
.fan-right { left: 50%;  margin-left: 82px;  transform: rotate(9deg) scale(0.86);  transform-origin: bottom left; }

/* ── Bento feature grid — premium illustrated product cards. ── */
.bento-section {
  width: 100%;
  margin: 0;
  padding: 92px 24px 108px;
  background:
    radial-gradient(80% 62% at 50% -4%, rgba(46, 204, 133, 0.16), transparent 60%),
    linear-gradient(180deg, #F0F8F3 0%, #DCEFE5 100%);
}
.bento-section .section-heading,
.bento-section .section-sub,
.bento { max-width: 1040px; margin-left: auto; margin-right: auto; }
.bento-section .section-heading {
  font-size: clamp(2.1rem, 4vw, 3rem);
  letter-spacing: -1px;
}
.bento-section .section-heading em { font-style: italic; font-weight: 500; color: var(--brand-dark); }
.bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  max-width: 1060px;
  margin-top: 44px;
}
.bento-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(96% 72% at 88% 0%, rgba(46, 204, 133, 0.12), transparent 58%),
    rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(23, 107, 79, 0.12);
  border-radius: 26px;
  box-shadow: 0 22px 42px -32px rgba(15, 28, 23, 0.42);
  display: grid;
  grid-template-rows: 176px auto auto;
  gap: 0;
  padding: 0;
  min-height: 344px;
}
.bento-card:nth-child(even) {
  background:
    radial-gradient(96% 72% at 88% 0%, rgba(230, 155, 60, 0.10), transparent 58%),
    rgba(251, 246, 236, 0.82);
  border-color: rgba(198, 138, 29, 0.14);
}
.bento-head {
  grid-row: 2;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 24px 0;
  min-width: 0;
}
.bento-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.36rem, 2.2vw, 1.72rem);
  letter-spacing: -0.55px;
  line-height: 1.05;
  color: var(--ink);
  margin: 0;
}
.bento-card p {
  grid-row: 3;
  color: var(--ink-3);
  font-size: 0.94rem;
  line-height: 1.55;
  margin: 0;
  padding: 10px 24px 24px;
  max-width: 44ch;
}

.bento-visual {
  grid-row: 1;
  justify-self: stretch;
  align-self: stretch;
  width: 100%;
  height: 176px;
  border-radius: 0;
  color: var(--brand-dark);
  background:
    radial-gradient(130px 88px at 72% 22%, rgba(46, 204, 133, 0.24), transparent 68%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.66), rgba(230, 241, 229, 0.64));
  border: none;
  border-bottom: 1px solid rgba(23, 107, 79, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}
.bento-visual svg {
  width: 164px;
  height: 164px;
  display: block;
  filter: drop-shadow(0 18px 18px rgba(15, 28, 23, 0.10));
}
.bv-surface {
  fill: rgba(255, 255, 255, 0.86);
  stroke: rgba(23, 107, 79, 0.22);
  stroke-width: 2;
}
.bv-line,
.bv-shadow {
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.bv-line { opacity: 0.72; }
.bv-line-soft { opacity: 0.36; }
.bv-shadow { opacity: 0.10; }
.bv-fill { fill: var(--brand); }
.bv-soft-fill { fill: var(--brand-soft); stroke: rgba(23, 107, 79, 0.14); stroke-width: 2; }
.bv-warm-fill { fill: var(--amber); }
.bv-light-fill { fill: var(--surface); }
.bv-dark-fill { fill: var(--ink); }
.bv-check {
  stroke: var(--brand);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.bv-light-line {
  stroke: var(--surface);
  stroke-width: 3;
  stroke-linecap: round;
}

.bento-feature {
  grid-column: span 7;
  grid-template-columns: minmax(0, 0.95fr) minmax(240px, 0.8fr);
  grid-template-rows: auto auto auto;
  min-height: 440px;
  background:
    radial-gradient(260px 220px at 92% 12%, rgba(46, 204, 133, 0.18), transparent 62%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.90), rgba(241, 248, 243, 0.82));
}
.bento-feature .bento-head {
  grid-column: 1;
  grid-row: 1;
  padding-top: 40px;
}
.bento-feature p {
  grid-column: 1;
  grid-row: 2;
  font-size: 1rem;
  padding-top: 14px;
  padding-bottom: 12px;
}
.bento-feature .bento-visual {
  grid-column: 2;
  grid-row: 1 / span 3;
  height: 100%;
  border-left: 1px solid rgba(23, 107, 79, 0.08);
  border-bottom: none;
}
.bento-feature .bento-visual svg {
  width: min(260px, 88%);
  height: min(260px, 88%);
}
.bento-card:not(.bento-feature):not(.bento-ask) { grid-column: span 5; }
.bento-card:nth-child(3),
.bento-card:nth-child(4),
.bento-card:nth-child(5),
.bento-card:nth-child(6) { grid-column: span 3; min-height: 320px; }
.bento-sources {
  grid-column: 1;
  grid-row: 3;
  display: flex;
  gap: 11px;
  margin: 0;
  padding: 18px 24px 36px;
  flex-wrap: wrap;
}
.src {
  width: 44px; height: 44px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 20px -12px rgba(15, 28, 23, 0.4);
}
.src svg { width: 22px; height: 22px; }
.src-ig { background: linear-gradient(135deg, #FEDA75, #FA7E1E 35%, #D62976 60%, #962FBF 80%, #4F5BD5); }
.src-tt { background: #0d0d0d; }
.src-yt { background: #EA4335; }
.src-link { background: linear-gradient(135deg, var(--brand-hi), var(--brand-dark)); }

/* Ask Papa — darker illustrated callout. */
.ask-avatar {
  width: 44px; height: 44px;
  border-radius: 13px;
  background: linear-gradient(150deg, var(--brand-hi), var(--brand) 60%, var(--brand-dark));
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 6px;
  overflow: hidden;
  box-shadow: 0 12px 24px -14px rgba(33, 141, 104, 0.6);
}
.ask-avatar img { width: 35px; height: 35px; border-radius: 10px; display: block; }
.bento-ask {
  grid-column: span 6;
  background:
    radial-gradient(240px 180px at 86% 0%, rgba(251, 242, 220, 0.16), transparent 62%),
    linear-gradient(150deg, var(--brand-dark), var(--ink));
  border-color: rgba(255, 255, 255, 0.12);
}
.bento-ask h3,
.bento-ask p,
.bento-ask .ask-example { color: var(--surface) !important; }
.bento-ask p { opacity: 0.82; }
.bento-ask h3 { font-size: 1.62rem; letter-spacing: -0.7px; }
.bento-ask .bento-visual {
  background:
    radial-gradient(92% 88% at 72% 18%, rgba(251, 242, 220, 0.28), transparent 58%),
    rgba(255, 255, 255, 0.08);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  color: var(--surface);
}
.bento-ask .bv-surface {
  fill: rgba(255, 255, 255, 0.14);
  stroke: rgba(255, 255, 255, 0.22);
}
.bento-ask .bv-line {
  stroke: var(--surface);
  opacity: 0.78;
}
.bento-ask .bv-fill {
  fill: rgba(255, 255, 255, 0.18);
  stroke: rgba(255, 255, 255, 0.16);
  stroke-width: 2;
}
.ask-example {
  grid-row: 4;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 1.04rem;
  line-height: 1.4;
  color: var(--surface) !important;
  margin: 6px 0 0 !important;
  padding: 0 24px 26px;
  max-width: 30ch;
}

@media (max-width: 940px) {
  .hero-inner { display: flex; flex-direction: column; padding: 88px 22px 8px; gap: 20px; }
  .fan-side { display: none; }
  .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bento-card,
  .bento-card:not(.bento-feature):not(.bento-ask),
  .bento-card:nth-child(3),
  .bento-card:nth-child(4),
  .bento-card:nth-child(5),
  .bento-card:nth-child(6),
  .bento-ask { grid-column: span 1; }
  .bento-feature {
    grid-column: 1 / -1;
    min-height: 360px;
  }
}

@media (max-width: 600px) {
  .hero-title { font-size: clamp(1.55rem, 6.4vw, 2.05rem); letter-spacing: -0.4px; max-width: 20ch; }
  .phone-fan { margin-top: 14px; }
  .bento-section {
    padding: 64px 0 76px;
    background:
      radial-gradient(92% 48% at 50% -5%, rgba(46, 204, 133, 0.20), transparent 62%),
      linear-gradient(180deg, var(--brand-soft-2) 0%, var(--brand-soft) 58%, var(--brand-border) 100%);
  }
  .bento-section .section-heading {
    font-size: clamp(1.85rem, 8vw, 2.3rem);
    padding: 0 18px;
  }
  .bento-section .section-sub { margin-bottom: 0; }
  .bento {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 18px;
    -webkit-overflow-scrolling: touch;
    margin-top: 34px;
    gap: 14px;
    padding: 0 18px 12px;
    max-width: none;
  }
  .bento::-webkit-scrollbar { display: none; }
  .bento {
    scrollbar-width: none;
  }
  .bento-card,
  .bento-card:not(.bento-feature):not(.bento-ask),
  .bento-card:nth-child(3),
  .bento-card:nth-child(4),
  .bento-card:nth-child(5),
  .bento-card:nth-child(6),
  .bento-feature,
  .bento-ask {
    flex: 0 0 min(82vw, 330px);
    grid-column: auto;
    scroll-snap-align: start;
    min-height: 390px;
    grid-template-columns: 1fr;
    grid-template-rows: 178px auto auto auto;
    border-radius: 24px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
  .bento-feature {
    min-height: 430px;
    background:
      radial-gradient(150px 120px at 88% 10%, rgba(46, 204, 133, 0.18), transparent 64%),
      var(--surface);
  }
  .bento-card::before { display: none; }
  .bento-visual,
  .bento-feature .bento-visual {
    grid-column: 1;
    grid-row: 1;
    height: 178px;
    border-left: none;
    border-bottom: 1px solid rgba(23, 107, 79, 0.08);
  }
  .bento-visual svg,
  .bento-feature .bento-visual svg {
    width: 172px;
    height: 172px;
  }
  .bento-head {
    grid-column: 1;
    grid-row: 2;
    min-height: auto;
    padding: 22px 22px 0;
  }
  .bento-feature .bento-head {
    grid-column: 1;
    grid-row: 2;
    padding-top: 24px;
  }
  .bento-card h3 {
    font-size: 1.42rem;
    letter-spacing: -0.45px;
    line-height: 1.05;
  }
  .bento-card p,
  .bento-feature p {
    grid-column: 1;
    grid-row: 3;
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 100%;
    padding: 10px 22px 0;
  }
  .bento-sources {
    grid-column: 1;
    grid-row: 4;
    padding: 18px 22px 24px;
  }
  .ask-avatar {
    background: rgba(255, 255, 255, 0.14);
    box-shadow: none;
  }
  .ask-example {
    grid-column: 1;
    grid-row: 4;
    font-size: 1rem;
    opacity: 1;
    padding: 2px 22px 24px;
  }
  .bento-sources { gap: 9px; }
  .src { width: 44px; height: 44px; border-radius: 13px; }
  .src svg { width: 22px; height: 22px; }
}

/* ════════════════════════════════════════════════════════
   Product showcase — app-first feature storytelling
   ════════════════════════════════════════════════════════ */
.product-showcase {
  position: relative;
  overflow: hidden;
  padding: 96px 24px 112px;
  background:
    radial-gradient(720px 460px at 8% 8%, rgba(251, 242, 220, 0.70), transparent 64%),
    radial-gradient(820px 520px at 92% 16%, rgba(46, 204, 133, 0.14), transparent 62%),
    linear-gradient(180deg, var(--surface) 0%, var(--brand-soft-2) 48%, var(--canvas) 100%);
}
.product-intro {
  max-width: 700px;
  margin: 0 auto 42px;
}
.product-showcase .section-heading {
  font-size: clamp(2rem, 4vw, 3.1rem);
  letter-spacing: -1px;
}
.product-showcase .section-sub {
  margin-bottom: 0;
}
.product-panel {
  position: relative;
  max-width: 1120px;
  margin: 0 auto 24px;
  border: 1px solid rgba(23, 107, 79, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 34px 70px -54px rgba(15, 28, 23, 0.55);
  overflow: hidden;
}
.product-panel--hero {
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(430px, 1.14fr);
  align-items: center;
  gap: 20px;
  padding: 58px 56px;
  background:
    radial-gradient(520px 380px at 88% 20%, rgba(46, 204, 133, 0.16), transparent 64%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(241, 248, 243, 0.84));
}
.product-panel--split {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1fr);
  align-items: center;
  gap: 42px;
  padding: 48px 56px;
}
.product-panel--flip {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  background:
    radial-gradient(460px 320px at 88% 18%, rgba(230, 155, 60, 0.12), transparent 62%),
    rgba(251, 246, 236, 0.72);
  border-color: rgba(198, 138, 29, 0.16);
}
.product-copy {
  max-width: 460px;
  position: relative;
  z-index: 2;
}
.product-copy h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.03;
  letter-spacing: -1.1px;
  color: var(--ink);
  margin: 0 0 18px;
}
.product-copy p {
  color: var(--ink-3);
  font-size: 1.02rem;
  line-height: 1.7;
  margin: 0 0 24px;
}
.product-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-visual::before {
  content: '';
  position: absolute;
  inset: 10% 8%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(46, 204, 133, 0.18), transparent 68%);
  filter: blur(8px);
}
.product-visual--fan {
  min-height: 560px;
}
.localized-phone {
  position: relative;
  z-index: 2;
}
.localized-phone--front {
  transform: rotate(2deg);
}
.localized-phone--back {
  position: absolute;
  left: 14px;
  bottom: 44px;
  z-index: 1;
  transform: rotate(-9deg) scale(0.86);
  opacity: 0.96;
}
.localized-phone--back .device {
  box-shadow: 0 36px 70px -44px rgba(15, 28, 23, 0.52);
}
.mini-device {
  width: 292px;
}
.feature-device {
  width: 294px;
}
.feature-device--cook-copy {
  width: 312px;
  transform: rotate(-2deg);
}
.localized-screen {
  background:
    radial-gradient(220px 170px at 92% 10%, rgba(251, 242, 220, 0.26), transparent 64%),
    var(--app-bg);
}
.locale-tag {
  position: absolute;
  top: -12px;
  right: -8px;
  z-index: 9;
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--surface);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2px;
  box-shadow: 0 12px 22px -14px rgba(15, 28, 23, 0.55);
}
.locale-tag--floating {
  top: 18px;
  right: 24%;
}
.import-flow-card,
.import-review-card {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--app-line);
}
.import-flow-card {
  background: var(--app-cream);
  border-color: var(--app-cream-line);
}
.import-flow-card.is-complete {
  border-color: var(--app-cream-line);
}
.import-flow-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 32, 26, 0.06);
  color: var(--app-ink);
  flex-shrink: 0;
}
.import-flow-icon svg {
  width: 18px;
  height: 18px;
}
.preview-img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.import-flow-card b,
.import-flow-card small,
.import-review-card b,
.import-review-card small {
  display: block;
}
.import-flow-card b,
.import-review-card b {
  color: var(--app-ink);
  font-size: 12px;
  letter-spacing: -0.2px;
}
.import-flow-card small,
.import-review-card small {
  color: var(--app-muted);
  font-size: 9.5px;
  font-weight: 600;
  margin-top: 1px;
}
.grocery-app {
  padding-bottom: 120px;
  overflow: hidden;
}
.grocery-app-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 4px 0 12px;
}
.grocery-app-head h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  color: var(--app-ink);
  letter-spacing: -0.7px;
  margin: 0;
}
.grocery-shop-pill {
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--surface);
  color: var(--app-ink);
  border: 1px solid rgba(20, 32, 26, 0.10);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 11px;
  box-shadow: 0 13px 22px -16px rgba(20, 32, 26, 0.28);
}
.grocery-addbar {
  min-height: 40px;
  padding: 5px 5px 5px 13px;
  border-radius: 999px;
  border: 1px solid var(--app-line);
  background: var(--surface);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 22px -18px rgba(15, 28, 23, 0.26);
}
.grocery-addbar span {
  flex: 1;
  color: var(--app-muted);
  font-size: 10.8px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.grocery-addbar b {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--app-cta);
  color: var(--surface);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.grocery-pill-row {
  display: flex;
  gap: 8px;
  margin: 12px 0 10px;
}
.grocery-pill-row span {
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--app-line);
  color: var(--app-muted);
  display: inline-flex;
  align-items: center;
  font-size: 10.4px;
  font-weight: 800;
  background: var(--surface);
}
.grocery-pill-row .is-active {
  background: var(--app-cream);
  border-color: var(--app-cream-line);
  color: var(--app-ink);
}
.grocery-app-section {
  margin: 12px 0 7px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--app-muted);
}
.grocery-inventory-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 8px 10px;
  border-radius: 17px;
  background: var(--surface);
  border: 1px solid var(--app-line);
  margin-bottom: 8px;
}
.grocery-box {
  width: 19px;
  height: 19px;
  border-radius: 8px;
  border: 2px solid var(--app-line);
  flex-shrink: 0;
}
.grocery-inventory-row.is-checked .grocery-box {
  background: var(--app-cta);
  border-color: var(--app-cta);
}
.grocery-inventory-row.is-checked .grocery-box::after {
  content: '';
  display: block;
  width: 8px;
  height: 4px;
  margin: 4px 0 0 4px;
  border-left: 2px solid var(--surface);
  border-bottom: 2px solid var(--surface);
  transform: rotate(-45deg);
}
.grocery-item-emoji {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  line-height: 1;
}
.grocery-inventory-row > span:nth-of-type(3) {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.grocery-inventory-row b {
  color: var(--app-ink);
  font-size: 12.5px;
  letter-spacing: -0.15px;
}
.grocery-inventory-row small {
  color: var(--app-muted);
  font-size: 9.2px;
  font-weight: 600;
}
.grocery-inventory-row em {
  color: var(--app-muted);
  font-size: 10px;
  font-weight: 700;
  font-style: normal;
  white-space: nowrap;
}
.grocery-inventory-row i {
  color: var(--app-muted);
  font-style: normal;
  font-size: 14px;
  opacity: 0.72;
}
.save-kitchen-sheet {
  position: absolute;
  left: 17px;
  right: 17px;
  bottom: 22px;
  padding: 13px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--app-line);
  box-shadow: 0 24px 48px -34px rgba(15, 28, 23, 0.54);
}
.save-kitchen-sheet b,
.save-kitchen-sheet small {
  display: block;
}
.save-kitchen-sheet b {
  color: var(--app-ink);
  font-size: 13px;
  letter-spacing: -0.15px;
}
.save-kitchen-sheet small {
  color: var(--app-muted);
  font-size: 9.5px;
  font-weight: 650;
  margin-top: 2px;
}
.save-kitchen-sheet span {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 34px;
  border-radius: 999px;
  margin-top: 10px;
  background: var(--app-cta);
  color: var(--surface);
  font-size: 11px;
  font-weight: 850;
}
.shopping-mode-peek {
  position: absolute;
  right: 12px;
  top: 132px;
  width: 128px;
  padding: 12px;
  border-radius: 20px;
  background: var(--ink);
  color: var(--surface);
  box-shadow: 0 24px 50px -30px rgba(15, 28, 23, 0.62);
  transform: rotate(4deg);
}
.shopping-mode-peek strong,
.shopping-mode-peek small {
  display: block;
}
.shopping-mode-peek strong {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  white-space: nowrap;
}
.shopping-mode-peek small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  font-weight: 700;
  margin: 2px 0 7px;
}
.shopping-mode-peek p {
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 800;
}
.shopping-mode-peek p:last-child {
  margin-bottom: 0;
}
.shopping-mode-peek p i {
  margin-left: auto;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: var(--surface);
  font-style: normal;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
}
.product-panel--library {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(0, 1fr);
  align-items: center;
  gap: 34px;
  padding: 44px;
  background:
    radial-gradient(420px 260px at 88% 20%, rgba(46, 204, 133, 0.13), transparent 62%),
    linear-gradient(135deg, var(--ink), var(--brand-dark));
}
.product-panel--library .product-copy h3,
.product-panel--library .product-copy p,
.product-panel--library .showcase-kicker {
  color: var(--surface);
}
.product-panel--library .product-copy p {
  opacity: 0.78;
}
.library-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.library-card {
  min-height: 244px;
  padding: 12px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--surface);
}
.library-card span {
  display: block;
  aspect-ratio: 1 / 0.82;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  margin-bottom: 14px;
}
.library-card b,
.library-card small {
  display: block;
}
.library-card b {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 19px;
  line-height: 1.08;
  letter-spacing: -0.35px;
}
.library-card small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 700;
}
.showcase-tick::after {
  content: '';
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--surface);
  border-bottom: 2px solid var(--surface);
  transform: rotate(-45deg) translateY(-1px);
}

@media (max-width: 940px) {
  .product-showcase {
    padding: 72px 18px 88px;
  }
  .product-panel,
  .product-panel--hero,
  .product-panel--split,
  .product-panel--flip,
  .product-panel--library {
    grid-template-columns: 1fr;
    padding: 34px 24px;
    gap: 24px;
  }
  .product-panel--flip .product-copy {
    order: 1;
  }
  .product-panel--flip .product-visual {
    order: 2;
  }
  .product-copy,
  .product-panel--library .product-copy {
    max-width: 620px;
  }
  .product-copy h3 {
    font-size: clamp(1.8rem, 6vw, 2.45rem);
  }
  .product-visual,
  .product-visual--fan {
    min-height: 520px;
  }
  .library-grid {
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    overflow-x: auto;
    padding-bottom: 4px;
  }
}

@media (max-width: 620px) {
  .product-showcase {
    padding: 60px 14px 72px;
  }
  .product-intro {
    margin-bottom: 28px;
  }
  .product-panel,
  .product-panel--hero,
  .product-panel--split,
  .product-panel--flip,
  .product-panel--library {
    border-radius: 26px;
    padding: 24px 18px 28px;
    margin-bottom: 16px;
  }
  .product-panel--hero .product-visual {
    order: 1;
  }
  .product-panel--hero .product-copy {
    order: 2;
  }
  .product-copy h3 {
    font-size: clamp(1.58rem, 7.6vw, 2rem);
    letter-spacing: -0.65px;
  }
  .product-copy p {
    font-size: 0.96rem;
  }
  .product-visual,
  .product-visual--fan {
    min-height: 390px;
  }
  .mini-device,
  .feature-device,
  .feature-device--cook-copy {
    width: min(66vw, 252px);
  }
  .localized-phone--back {
    left: -2px;
    bottom: 42px;
    transform: rotate(-10deg) scale(0.74);
  }
  .localized-phone--front {
    transform: rotate(2deg) translateX(10px);
  }
  .locale-tag--floating {
    right: 18px;
  }
  .library-grid {
    grid-template-columns: 1fr;
  }
  .library-card {
    min-height: 0;
  }
}
