/* ─────────────────────────────────────────────────────────────
   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: #F5F9F6;
  --canvas-warm: #FBF6E8;
  --cream: #F4F0DF;
  --espresso: #2A1F12;
  --line: #E4ECE7;

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

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background:
    radial-gradient(1100px 600px at 100% -10%, rgba(33, 141, 104, 0.10), transparent 60%),
    radial-gradient(800px 500px at -10% 30%, rgba(37, 183, 119, 0.06), transparent 60%),
    var(--canvas);
  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(245, 249, 246, 0.86);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--ink);
  font-size: 16px;
  text-decoration: none;
}
.brand-mark img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(33, 141, 104, 0.18);
}
.topbar-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 4px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 0.18s, color 0.18s;
}
.nav-link:hover { color: var(--brand-dark); background: var(--brand-soft); }
.nav-link.is-active {
  color: var(--brand-dark);
  background: var(--brand-soft);
}
.topbar-cta {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.1px;
  color: #FFFFFF;
  background: var(--ink);
  padding: 9px 16px;
  border-radius: 999px;
  transition: transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 6px 14px rgba(15, 28, 23, 0.16);
}
.topbar-cta:hover {
  transform: translateY(-1px);
  color: #FFFFFF;
  box-shadow: 0 10px 22px rgba(15, 28, 23, 0.22);
}


/* ─── 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) ───────────────────────────────────────── */
.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 28px 48px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.hero-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.8rem, 6.4vw, 4.8rem);
  font-weight: 900;
  letter-spacing: -2.2px;
  line-height: 1.02;
  margin: 4px 0 4px;
  color: var(--ink);
}
.hero-title em {
  font-family: 'Fraunces', 'Inter', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--brand-dark);
  letter-spacing: -2.4px;
}
.hero-title-pop {
  display: inline-block;
  position: relative;
  background: linear-gradient(180deg, var(--brand-bright) 0%, var(--brand) 60%, var(--brand-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: var(--ink-2);
  max-width: 540px;
  margin: 4px 0 8px;
  line-height: 1.55;
}
.hero-stores {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}
.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin: 6px 0 0;
}
.trust-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-bright);
  box-shadow: 0 0 0 4px rgba(37, 183, 119, 0.16);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.16); opacity: 0.78; }
}


/* ─── Store badges ──────────────────────────────────────── */
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  border-radius: 14px;
  background: var(--ink);
  color: #FFFFFF;
  font-family: inherit;
  text-decoration: none;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  box-shadow:
    0 14px 32px rgba(15, 28, 23, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  min-width: 188px;
}
.store-badge:hover {
  transform: translateY(-2px);
  color: #FFFFFF;
  box-shadow:
    0 20px 40px rgba(15, 28, 23, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.store-badge-disabled {
  cursor: default;
  background: var(--ink-2);
  opacity: 0.72;
  box-shadow: none;
}
.store-badge-disabled:hover {
  transform: none;
  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;
}
.phone-shell {
  width: 300px;
  height: 600px;
  border-radius: 44px;
  background: linear-gradient(145deg, #1a2a23 0%, #0e1a14 100%);
  padding: 14px;
  box-shadow:
    0 38px 80px rgba(15, 28, 23, 0.30),
    0 8px 22px rgba(15, 28, 23, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 2;
  transform: rotate(-2.5deg);
  transition: transform 0.5s ease;
}
.phone-shell:hover { transform: rotate(0deg); }
.phone-notch {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 22px;
  border-radius: 14px;
  background: #0e1a14;
  z-index: 3;
}
.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  background: var(--canvas);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 56px 20px 24px;
}
.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 22px;
}
.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; }
.phone-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: var(--brand-dark);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.phone-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand);
}
.phone-title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: var(--ink);
  margin-bottom: 14px;
}
.phone-cards {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}
.phone-card {
  flex: 0 0 110px;
  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-card-peek {
  flex: 0 0 80px;
  margin-right: -24px;
  opacity: 0.85;
}
.phone-card-img {
  height: 78px;
  background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 100%);
}
.phone-card-img-1 { background: linear-gradient(135deg, #FFE0AE 0%, #F4A261 100%); }
.phone-card-img-2 { background: linear-gradient(135deg, #C8E6C8 0%, #6FAF7E 100%); }
.phone-card-img-3 { background: linear-gradient(135deg, #F8D7C2 0%, #E07856 100%); }
.phone-card-body {
  padding: 9px 10px 11px;
}
.phone-card-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.1px;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.phone-card-meta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 9.5px;
  font-weight: 600;
  color: var(--brand-dark);
}
.phone-card-meta-muted {
  color: var(--muted);
  font-weight: 500;
}
.phone-card-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brand);
}
.phone-empty-cta {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: var(--brand-soft);
  border: 1px solid var(--brand-border);
  border-radius: 12px;
}
.phone-empty-icon { font-size: 15px; }
.phone-empty-text {
  font-size: 11px;
  font-weight: 600;
  color: var(--brand-dark);
  letter-spacing: -0.1px;
}
.phone-shadow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 30px;
  background: radial-gradient(ellipse, rgba(15, 28, 23, 0.18), transparent 70%);
  filter: blur(10px);
  z-index: 1;
}


/* ─── Spine cards (Save · Plan · Cook) ──────────────────── */
.spine {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 28px 64px;
}
.spine-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.spine-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px 26px 28px;
  box-shadow: 0 12px 28px rgba(10, 30, 22, 0.05);
  transition: transform 0.22s, box-shadow 0.22s;
}
.spine-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(10, 30, 22, 0.08);
}
.spine-num {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  color: var(--brand-soft);
  letter-spacing: -0.4px;
}
.spine-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--brand-soft);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.spine-card h3 {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.4px;
  margin: 0 0 8px;
  color: var(--ink);
}
.spine-card p {
  font-size: 14.5px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.55;
}
.spine-card-save .spine-icon { background: rgba(255, 184, 76, 0.14); color: #B36F00; }
.spine-card-plan .spine-icon { background: rgba(91, 141, 239, 0.12); color: #2752C9; }
.spine-card-cook .spine-icon { background: var(--brand-soft); color: var(--brand-dark); }


/* ─── Magazine moment (dark editorial card) ─────────────── */
.magazine {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 28px 64px;
}
.magazine-inner {
  background:
    radial-gradient(800px 400px at 80% 0%, rgba(37, 183, 119, 0.18), transparent 60%),
    linear-gradient(135deg, var(--espresso) 0%, #1a1208 100%);
  color: #FFFFFF;
  border-radius: 28px;
  padding: 52px 48px 48px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(15, 28, 23, 0.22);
}
.magazine-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.6px;
  line-height: 1.32;
  color: rgba(255, 255, 255, 0.96);
  margin: 18px auto 24px;
  max-width: 760px;
}
.magazine-quote em {
  font-style: italic;
  color: var(--brand-bright);
  font-weight: 500;
}
.magazine-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.1px;
  color: var(--brand-bright);
  padding: 4px 0;
  border-bottom: 1px solid rgba(37, 183, 119, 0.4);
  transition: color 0.18s, border-color 0.18s;
}
.magazine-cta:hover {
  color: #FFFFFF;
  border-color: #FFFFFF;
}


/* ─── 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 ────────────────────────────────────────── */
.bottom-cta {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 28px 96px;
}
.bottom-cta-inner {
  background:
    radial-gradient(900px 500px at 100% 0%, rgba(37, 183, 119, 0.10), transparent 60%),
    var(--canvas-warm);
  border-radius: 28px;
  padding: 60px 48px;
  text-align: center;
  border: 1px solid rgba(198, 138, 29, 0.10);
}
.bottom-cta-inner h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -1.2px;
  color: var(--ink);
  margin: 0 0 10px;
}
.bottom-cta-inner p {
  color: var(--ink-2);
  font-size: 15px;
  margin: 0 0 24px;
}
.bottom-cta-inner .hero-stores {
  justify-content: center;
}


/* ─── 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 {
    grid-template-columns: 1fr;
    padding: 52px 22px 32px;
    gap: 40px;
    text-align: center;
  }
  .hero-text { align-items: center; }
  .hero-stores { justify-content: center; }
  .phone-shell { transform: rotate(0deg); width: 270px; height: 540px; }

  .spine-inner,
  .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.6rem; letter-spacing: -1.2px; }
  .hero-stores { flex-direction: column; }
  .store-badge { min-width: 220px; justify-content: center; }

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

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