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

   Editorial cookbook vibe over a generic SaaS layout. Sage +
   warm cream palette mirroring the in-app brand. Inter for body
   + Fraunces (serif) for accents — gives the headlines a quiet
   magazine feel without going full retro.

   ───────────────────────────────────────────────────────────── */

:root {
  /* Brand */
  --brand: #218D68;
  --brand-bright: #25B777;
  --brand-dark: #176B4F;
  --brand-soft: #E8F4EE;
  --brand-soft-2: #F0F8F4;
  --brand-border: #CFE4D9;

  /* Ink */
  --ink: #0F1C17;
  --ink-2: #324743;
  --ink-3: #50625C;
  --muted: #7A8783;

  /* Surfaces */
  --surface: #FFFFFF;
  --canvas: #FAFBFA;
  --canvas-warm: #FBF6E8;
  --cream: #FBF4E6;
  --cream-2: #F6ECD6;
  --cream-line: #EADFC4;
  --espresso: #2A1F12;
  --line: #E4ECE7;

  /* Warm accent (one accent — amber / terracotta) */
  --amber: #E89B3C;
  --amber-deep: #CF7A22;
  --amber-soft: #FBE7C4;
  --terracotta: #D86C3E;
  --script-on-green: #FFD27A;
  --script-on-cream: #CF7A22;

  /* Pro palette (champagne) */
  --gold: #C68A1D;
  --gold-soft: #F5E8C5;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

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


/* ─── Topbar ────────────────────────────────────────────── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(251, 244, 230, 0.82);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-bottom: 1px solid var(--cream-line);
}
.topbar-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 18px 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: 16px;
  text-decoration: none;
}
.brand-mark img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
}
.topbar-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  margin-right: 28px;
}
.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: 600;
  letter-spacing: -0.1px;
  color: #FFFFFF;
  background: var(--ink);
  padding: 9px 18px;
  border-radius: 10px;
  transition: opacity 0.18s;
}
.topbar-cta:hover {
  opacity: 0.86;
  color: #FFFFFF;
}


/* ─── Eyebrow chip ──────────────────────────────────────── */
.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);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--brand-border);
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 3px rgba(33, 141, 104, 0.18);
}
.eyebrow-dark {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.18);
}
.eyebrow-dot-cream {
  background: var(--cream);
  box-shadow: 0 0 0 3px rgba(244, 240, 223, 0.22);
}


/* ─── Hero (home) — full-bleed green ────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 520px at 88% -10%, rgba(255, 255, 255, 0.16), transparent 60%),
    linear-gradient(168deg, #25B777 0%, #218D68 46%, #176B4F 100%);
}
.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1140px;
  margin: 0 auto;
  padding: 92px 32px 104px;
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 56px;
  align-items: center;
}
.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.hero-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.4rem, 4.6vw, 3.7rem);
  font-weight: 600;
  letter-spacing: -0.8px;
  line-height: 1.08;
  margin: 0;
  color: #FFFFFF;
}
/* casual script accent — one phrase per headline */
.hero-title .script {
  font-family: 'Caveat', 'Fraunces', cursive;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0;
  color: var(--script-on-green);
  font-size: 1.18em;
  line-height: 0.9;
  display: inline-block;
  transform: rotate(-2deg);
}
.hero-sub {
  font-size: clamp(1.02rem, 1.3vw, 1.16rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 440px;
  margin: 0;
  line-height: 1.6;
}
.hero-stores {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}
.hero-trust {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  margin: 4px 0 0;
}
/* Soft organic food doodles bleeding into the hero */
.hero-doodle {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  border-radius: 46% 54% 60% 40% / 52% 44% 56% 48%;
  filter: blur(0.2px);
  opacity: 0.9;
}
.hero-doodle-1 {
  top: -70px;
  left: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at 38% 34%, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0) 70%);
}
.hero-doodle-2 {
  bottom: -90px;
  left: 30%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle at 50% 50%, rgba(255, 210, 122, 0.16), rgba(255, 210, 122, 0) 70%);
  border-radius: 60% 40% 43% 57% / 45% 56% 44% 55%;
}
/* hand-drawn sparkle / seed scatter marks */
.hero-mark {
  position: absolute;
  z-index: 2;
  color: var(--script-on-green);
  opacity: 0.85;
  pointer-events: none;
}
.hero-mark-1 { top: 96px; right: 46%; width: 26px; height: 26px; }
.hero-mark-2 { bottom: 120px; left: 8%; width: 18px; height: 18px; opacity: 0.7; }


/* ─── Store badges ──────────────────────────────────────── */
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px;
  border-radius: 12px;
  background: var(--ink);
  color: #FFFFFF;
  font-family: inherit;
  text-decoration: none;
  transition: opacity 0.18s;
  min-width: 178px;
}
.store-badge:hover {
  opacity: 0.86;
  color: #FFFFFF;
}
.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;
}


/* ─── Phone mockup (CSS) ────────────────────────────────── */
.hero-phone {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Warm organic blob behind the device */
.phone-glow {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 58% 42% 47% 53% / 52% 47% 53% 48%;
  background:
    radial-gradient(circle at 36% 32%, rgba(255, 210, 122, 0.34), transparent 66%),
    radial-gradient(circle at 70% 78%, rgba(255, 255, 255, 0.16), transparent 64%);
  z-index: 0;
  pointer-events: none;
  transform: rotate(-8deg);
}
.phone-shell {
  width: 304px;
  height: 612px;
  border-radius: 48px;
  background:
    linear-gradient(150deg, #2b3b33 0%, #16241d 48%, #0c1610 100%);
  padding: 12px;
  box-shadow:
    0 50px 90px rgba(12, 24, 18, 0.34),
    0 12px 30px rgba(12, 24, 18, 0.20),
    inset 0 0 0 1.5px rgba(255, 255, 255, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  position: relative;
  z-index: 2;
  transform: rotate(-2.6deg);
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.phone-shell:hover { transform: rotate(0deg) translateY(-4px); }
/* Dynamic-island pill */
.phone-island {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 24px;
  border-radius: 14px;
  background: #07100b;
  z-index: 4;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 38px;
  background:
    radial-gradient(420px 220px at 110% -8%, rgba(37, 183, 119, 0.10), transparent 60%),
    var(--canvas);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 54px 16px 0;
  position: relative;
}
.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  padding: 0 6px;
  margin-bottom: 16px;
}
.phone-status-icons {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 11px;
}
.phone-bar {
  display: inline-block;
  width: 3px;
  background: var(--ink);
  border-radius: 1px;
}
.phone-bar:nth-child(1) { height: 4px; }
.phone-bar:nth-child(2) { height: 7px; }
.phone-bar:nth-child(3) { height: 11px; }

/* In-app top bar: title + search pill */
.phone-appbar { padding: 0 4px; margin-bottom: 14px; }
.phone-appbar-title {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin-bottom: 10px;
}
.phone-search {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 14px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--muted);
  box-shadow: 0 2px 8px rgba(15, 28, 23, 0.04);
}
.phone-search-ic {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1.6px solid var(--brand);
  position: relative;
  flex-shrink: 0;
}
.phone-search-ic::after {
  content: '';
  position: absolute;
  right: -3px;
  bottom: -2px;
  width: 5px;
  height: 1.6px;
  background: var(--brand);
  border-radius: 1px;
  transform: rotate(45deg);
}

/* Featured recipe card */
.phone-hero-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(15, 28, 23, 0.08);
  margin: 0 2px 12px;
}
.phone-hero-photo {
  position: relative;
  height: 124px;
}
.phone-hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 20, 14, 0.18) 100%);
}
.phone-chip {
  position: absolute;
  top: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: -0.1px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 8px rgba(15, 28, 23, 0.12);
}
.phone-chip-time { left: 10px; }
.phone-chip-rate { right: 10px; color: var(--brand-dark); }
.phone-hero-body { padding: 12px 14px 14px; }
.phone-match {
  margin-top: 9px;
}
.phone-match-bar {
  height: 6px;
  border-radius: 999px;
  background: var(--brand-soft);
  overflow: hidden;
  margin-bottom: 6px;
}
.phone-match-bar span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-bright), var(--brand));
}
.phone-match-label {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--brand-dark);
}

/* Mini card row */
.phone-row {
  display: flex;
  gap: 10px;
  padding: 0 2px;
}
.phone-mini {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(15, 28, 23, 0.04);
}
.phone-mini-photo { height: 64px; }
.phone-mini-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.1px;
  padding: 8px 10px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.phone-mini-meta {
  font-size: 9.5px;
  font-weight: 500;
  color: var(--muted);
  padding: 3px 10px 10px;
}
.phone-mini-meta-go {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--brand-dark);
  font-weight: 600;
}
.phone-card-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.phone-card-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brand);
}

/* Cohesive, muted food-tone "photos" — one warm family, low saturation */
.phone-photo-1 { background: linear-gradient(140deg, #EBE2D2 0%, #D8C7AC 55%, #C2AC86 100%); }
.phone-photo-2 { background: linear-gradient(140deg, #DDE5D6 0%, #BFCDB4 55%, #9DB28C 100%); }
.phone-photo-3 { background: linear-gradient(140deg, #ECE3D6 0%, #D5C3AB 55%, #BBA582 100%); }
.phone-photo-1, .phone-photo-2, .phone-photo-3 { position: relative; }
.phone-mini-photo::before,
.phone-hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60px 40px at 78% 20%, rgba(255, 255, 255, 0.40), transparent 70%),
    radial-gradient(80px 60px at 20% 95%, rgba(10, 20, 14, 0.10), transparent 70%);
}

/* Bottom tab bar */
.phone-tabbar {
  margin-top: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 13px 8px calc(13px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
}
.phone-tab {
  width: 22px;
  height: 22px;
  color: var(--muted);
}
.phone-tab svg { display: block; width: 100%; height: 100%; }
.phone-tab.is-active { color: var(--brand); }
.phone-shadow {
  position: absolute;
  bottom: -38px;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  height: 32px;
  background: radial-gradient(ellipse, rgba(15, 28, 23, 0.20), transparent 70%);
  filter: blur(12px);
  z-index: 1;
}


/* ─── Alternating feature sections (cream) ──────────────── */
.features-home {
  background: var(--cream);
  padding: 16px 0 8px;
}
.feature-row {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feature-row--flip .feature-copy { order: 2; }
.feature-row--flip .feature-visual { order: 1; }
.feature-copy { max-width: 440px; }
.feature-kicker {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 26px;
  line-height: 1;
  color: var(--script-on-cream);
  transform: rotate(-2deg);
  display: inline-block;
  margin-bottom: 10px;
}
.feature-copy h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 600;
  letter-spacing: -0.6px;
  line-height: 1.12;
  margin: 0 0 14px;
  color: var(--ink);
}
.feature-copy p {
  font-size: 15.5px;
  color: var(--ink-3);
  line-height: 1.65;
  margin: 0;
}

/* Visual sits on a colorful organic blob */
.feature-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.feature-blob {
  position: absolute;
  width: 380px;
  height: 360px;
  z-index: 0;
  border-radius: 58% 42% 49% 51% / 54% 46% 54% 46%;
}
.feature-blob--green {
  background: radial-gradient(circle at 38% 34%, #2FBF82, #1C7B5A 92%);
}
.feature-blob--amber {
  background: radial-gradient(circle at 38% 34%, #F0B158, #D8862A 92%);
  border-radius: 46% 54% 60% 40% / 49% 44% 56% 51%;
}
/* hand-drawn line texture overlay on the blob */
.feature-blob::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    repeating-linear-gradient(46deg, rgba(255, 255, 255, 0.10) 0 1.5px, transparent 1.5px 13px);
  opacity: 0.6;
}

/* A small CSS card illustration floating on the blob */
.feature-card {
  position: relative;
  z-index: 2;
  width: 268px;
  background: var(--surface);
  border-radius: 20px;
  padding: 18px 18px 16px;
  box-shadow: 0 26px 50px rgba(15, 28, 23, 0.20), 0 6px 16px rgba(15, 28, 23, 0.10);
  transform: rotate(-2deg);
}
.feature-row--flip .feature-card { transform: rotate(2deg); }
.feature-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.feature-card-ic {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--brand-soft);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-card-ic svg { width: 19px; height: 19px; }
.feature-card-ic--amber { background: var(--amber-soft); color: var(--amber-deep); }
.feature-card-title {
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: -0.2px;
  color: var(--ink);
}
.feature-card-sub {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  margin-top: 1px;
}
.fc-line {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--ink-2);
  font-weight: 500;
}
.fc-line:first-of-type { border-top: 0; }
.fc-check {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: var(--brand);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fc-check svg { width: 11px; height: 11px; }
.fc-check--idle { background: transparent; border: 1.6px solid var(--line); }
.fc-day {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--brand-dark);
  min-width: 30px;
}
.fc-bar {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: var(--brand-soft);
  overflow: hidden;
}
.fc-bar span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-bright), var(--brand));
}
.fc-pct {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--brand-dark);
}


/* ─── Page hero (features) ──────────────────────────────── */
.page-hero {
  max-width: 880px;
  margin: 0 auto;
  padding: 84px 28px 48px;
  text-align: center;
}
.page-hero-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.4rem, 5.2vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -1.8px;
  line-height: 1.06;
  margin: 16px 0 12px;
  color: var(--ink);
}
.page-hero-title em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--brand-dark);
}
.page-hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  color: var(--ink-2);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.55;
}


/* ─── Flow (3-step) ─────────────────────────────────────── */
.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 8px 22px rgba(10, 30, 22, 0.04);
}
.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: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0 0 10px;
  color: var(--ink);
}
.flow-step p {
  font-size: 14.5px;
  color: var(--ink-2);
  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); }


/* ─── Section heading (shared) ──────────────────────────── */
.section-heading {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -1.2px;
  margin: 0 0 8px;
  color: var(--ink);
  text-align: center;
}
.section-sub {
  font-size: 15px;
  color: var(--ink-2);
  text-align: center;
  margin: 0 0 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}


/* ─── Feature grid (2x3) ────────────────────────────────── */
.grid-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 28px 64px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.grid-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 22px 22px;
  box-shadow: 0 8px 22px rgba(10, 30, 22, 0.04);
  transition: transform 0.22s, box-shadow 0.22s;
}
.grid-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(10, 30, 22, 0.07);
}
.grid-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--brand-soft);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.grid-card h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.2px;
  margin: 0 0 6px;
  color: var(--ink);
}
.grid-card p {
  font-size: 14px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.55;
}


/* ─── 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 30px 60px rgba(15, 28, 23, 0.22);
}
.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;
}


/* ─── Pricing ───────────────────────────────────────────── */
.pricing {
  max-width: 1080px;
  margin: 0 auto;
  padding: 24px 28px 64px;
}
.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: 22px;
  padding: 32px 28px 28px;
  box-shadow: 0 10px 24px rgba(10, 30, 22, 0.05);
}
.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: 26px;
  font-size: 22px;
}
.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: 4px 10px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.price-tier-pro {
  color: #5A4115;
  background: rgba(198, 138, 29, 0.18);
}
.price-amount {
  font-family: 'Inter', sans-serif;
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -1.5px;
  color: var(--ink);
  margin: 0 0 4px;
}
.price-amount span {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 32px;
  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 22px;
}
.price-list li::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brand);
  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;
}


/* ─── Bottom CTA (green signature card) ─────────────────── */
.bottom-cta {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 32px 96px;
}
.bottom-cta-inner {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 72px 40px;
  text-align: center;
  background:
    radial-gradient(700px 420px at 84% -20%, rgba(255, 210, 122, 0.22), transparent 60%),
    linear-gradient(160deg, #25B777 0%, #218D68 48%, #176B4F 100%);
  box-shadow: 0 34px 70px rgba(15, 28, 23, 0.22);
}
.bottom-cta-inner h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.6px;
  color: #FFFFFF;
  margin: 0 0 12px;
}
.bottom-cta-inner h2 .script {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  color: var(--script-on-green);
  font-size: 1.16em;
  display: inline-block;
  transform: rotate(-2deg);
}
.bottom-cta-inner p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 15.5px;
  margin: 0 auto 28px;
  max-width: 440px;
}
.bottom-cta-inner .hero-stores {
  justify-content: center;
}
.bottom-cta-inner .store-badge {
  background: #FFFFFF;
  color: var(--ink);
}
.bottom-cta-inner .store-badge:hover { opacity: 0.92; 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; }


/* ─── 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: 920px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 60px 22px 72px;
    gap: 44px;
    text-align: center;
  }
  .hero-text { align-items: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-stores { justify-content: center; }
  .phone-shell { transform: rotate(0deg); width: 270px; height: 540px; }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 44px 24px;
    text-align: center;
  }
  .feature-copy { max-width: 520px; margin: 0 auto; }
  .feature-row--flip .feature-copy { order: 1; }
  .feature-row--flip .feature-visual { order: 2; }
  .feature-visual { min-height: 300px; }

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

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

@media (max-width: 720px) {
  .topbar-inner { padding: 12px 18px; gap: 8px; }
  .topbar-nav { gap: 0; }
  .nav-link { padding: 6px 10px; font-size: 13px; }
  .topbar-cta { padding: 7px 12px; font-size: 12.5px; }

  .hero-title { font-size: 2.4rem; letter-spacing: -0.6px; }
  .hero-stores { flex-direction: column; }
  .store-badge { min-width: 220px; justify-content: center; }

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

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