/* =========================================================
   FOODIST — Landing page
   ========================================================= */

:root {
  --red: #ed3254;
  --red-deep: #c91d3d;
  --ink: #2b2b2b;
  --ink-soft: #4a4a4a;
  --teal: #21b7aa;
  --mustard: #ffc857;
  --cream: #fdf6ee;
  --cream-2: #f6ecdd;
  --paper: #ffffff;
  --line: #e8dfd1;
  --muted: #8a7f70;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
}
/* Prevent horizontal overflow / scroll in all browsers.
   html: hidden clips the viewport reliably (incl. older iOS Safari).
   body: clip avoids creating a scroll container so position:sticky still works. */
html { overflow-x: hidden; }
body { overflow-x: clip; min-width: 320px; }
.display { font-family: "Instrument Serif", Georgia, serif; font-weight: 400; letter-spacing: -0.01em; }
.mono { font-family: "JetBrains Mono", ui-monospace, monospace; }

a { color: inherit; }

/* =========== NAV =========== */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 44px;
  background: rgba(253, 246, 238, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 223, 209, 0.6);
}
.nav__brand { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 18px; letter-spacing: -0.02em; }
.nav__brand svg { width: 32px; height: 32px; }
.nav__links { display: flex; gap: 32px; font-size: 14px; color: var(--ink-soft); }
.nav__links a { text-decoration: none; opacity: .85; transition: opacity .2s; }
.nav__links a:hover { opacity: 1; }
.nav__cta {
  background: var(--ink); color: #fff; border: none;
  padding: 10px 18px; border-radius: 100px; font-size: 14px; font-weight: 500; cursor: pointer;
  font-family: inherit;
}
.nav__cta:hover { background: var(--red); }
.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__signin {
  background: transparent; color: var(--ink); border: none;
  padding: 10px 14px; border-radius: 100px; font-size: 14px; font-weight: 500; cursor: pointer;
  font-family: inherit; opacity: .85; transition: opacity .2s, color .2s;
}
.nav__signin:hover { opacity: 1; color: var(--red); }
@media (max-width: 420px) { .nav__signin { display: none; } }
@media (max-width: 540px) { .nav__cta { display: none; } }

/* =========== HERO =========== */
.hero {
  position: relative;
  padding: 60px 44px 100px;
  overflow: hidden;
}
.hero__grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 100px;
  background: #fff; border: 1px solid var(--line);
  font-size: 13px; color: var(--ink-soft);
  margin-bottom: 28px;
}
.hero__eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 3px #21b7aa22; }
.hero__title {
  font-size: clamp(44px, 6.2vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
}
.hero__title em { font-style: italic; color: var(--red); position: relative; }
.hero__title em::after {
  content: ""; position: absolute; left: -4%; right: -4%; bottom: 6%;
  height: 10px; background: #ffc85755; z-index: -1; border-radius: 4px;
  transform: rotate(-0.5deg);
}

/* Rotator — cross-fading word cycler in the hero headline */
.rotator {
  display: inline-grid;
  grid-template-columns: 1fr;
  vertical-align: baseline;
}
.rotator__word {
  grid-column: 1; grid-row: 1;
  opacity: 0; transform: translateY(18px); filter: blur(4px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.2,.9,.3,1), filter .6s ease;
  pointer-events: none;
  white-space: nowrap;
}
.rotator__word[data-active] {
  opacity: 1; transform: translateY(0); filter: blur(0);
  pointer-events: auto;
}
.hero__sub {
  font-size: 19px; line-height: 1.55; color: var(--ink-soft);
  max-width: 520px; margin-bottom: 36px;
}
.hero__ctas { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero__cta-note {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--muted);
  font-family: "Geist", sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--red); color: #fff; border: none;
  padding: 16px 28px; border-radius: 100px; font-size: 15px; font-weight: 500; cursor: pointer;
  font-family: inherit; display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 6px 22px -6px rgba(237,50,84,0.5);
  transition: transform .2s, box-shadow .2s;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 30px -6px rgba(237,50,84,0.6); }
.btn-ghost {
  background: transparent; color: var(--ink); border: none;
  padding: 16px 8px; font-size: 15px; font-weight: 500; cursor: pointer;
  font-family: inherit; display: inline-flex; align-items: center; gap: 8px;
}
.hero__proof {
  display: flex; gap: 24px; margin-top: 48px;
  padding-top: 28px; border-top: 1px dashed var(--line);
  font-size: 13px; color: var(--muted);
}
.hero__proof b { display: block; font-size: 26px; color: var(--ink); font-weight: 500; font-family: "Instrument Serif", serif; }

/* floating decorations */
.float-deco { position: absolute; pointer-events: none; opacity: .9; z-index: 2; }
.float-deco--1 { top: 40px; right: -50px; width: 180px; animation: bob 8s ease-in-out infinite; }
.float-deco--2 { bottom: 40px; left: 44%; width: 90px; animation: bob 6s ease-in-out infinite reverse; }

@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(3deg); }
}

/* =========== PHONE (shared) =========== */
.phone-wrap {
  display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative;
}
.phone {
  width: 340px; aspect-ratio: 9 / 19;
  background: #1a1f2e;
  border-radius: 44px; padding: 10px;
  box-shadow: 0 40px 80px -20px rgba(40, 28, 20, 0.3), 0 0 0 2px #0f1420, inset 0 0 0 2px #2a3042;
  position: relative;
  flex-shrink: 0;
}
.phone--sm { width: 300px; }
.phone__notch {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 24px; background: #0f1420; border-radius: 14px; z-index: 3;
}
.phone__screen {
  width: 100%; height: 100%;
  background: #eceef2;
  border-radius: 34px; overflow: hidden;
  position: relative; display: flex; flex-direction: column;
}
.phone__status {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 28px 4px; font-size: 13px; font-weight: 600;
  flex-shrink: 0;
}
.phone__status-right { display: flex; gap: 6px; align-items: center; }
.phone__signal { width: 16px; height: 10px; background: #2b2b2b; clip-path: polygon(0 80%, 25% 80%, 25% 60%, 50% 60%, 50% 30%, 75% 30%, 75% 0, 100% 0, 100% 100%, 0 100%); }
.phone__battery { width: 22px; height: 10px; border: 1.5px solid #2b2b2b; border-radius: 3px; position: relative; }
.phone__battery::before { content: ""; position: absolute; inset: 1px; background: #2b2b2b; border-radius: 1px; width: 70%; }
.phone__battery::after { content: ""; position: absolute; right: -3px; top: 3px; width: 2px; height: 4px; background: #2b2b2b; border-radius: 0 1px 1px 0; }
.phone__signal--dark { background: #fff; }
.phone__battery--dark { border-color: #fff; }
.phone__battery--dark::before { background: #fff; }
.phone__battery--dark::after { background: #fff; }
.phone__status--dark { color: #fff; }
.phone__home {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  width: 120px; height: 4px; background: #0f1420; border-radius: 2px; z-index: 3;
}

/* =========== Public menu (PhonePreview) =========== */
.pm-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px 8px; flex-shrink: 0;
}
.pm-logo {
  width: 28px; height: 28px; border: 1px solid var(--line); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; background: #fff;
}
.pm-title { font-size: 15px; font-weight: 600; color: #2b2b2b; }
.pm-tabs { display: flex; gap: 8px; padding: 6px 16px 10px; flex-shrink: 0; }
.pm-tab {
  padding: 6px 14px; border-radius: 100px; border: none;
  background: transparent; font-size: 12px; font-weight: 500; cursor: pointer;
  color: #4a4a4a; font-family: inherit; transition: all .18s;
  border: 1px solid transparent;
}
.pm-tab:hover { background: #dfe2e8; }
.pm-tab--active { background: #2b2b2b; color: #fff; }
.pm-body {
  flex: 1; overflow-y: auto; overflow-x: hidden;
  background: #eceef2;
  scrollbar-width: thin;
}
.pm-body::-webkit-scrollbar { width: 4px; }
.pm-body::-webkit-scrollbar-thumb { background: #c5c9d3; border-radius: 2px; }
.pm-hero {
  position: relative; margin: 0; height: 130px; overflow: hidden;
}
.pm-hero img { width: 100%; height: 100%; object-fit: cover; }
.pm-hero__overlay {
  position: absolute; inset: 0; padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,.65), transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end; color: #fff;
}
.pm-hero__name { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; line-height: 1; }
.pm-hero__tag { font-size: 11px; opacity: .9; margin-top: 4px; }

/* Social links row below hero */
.pm-socials {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px;
  background: #eceef2;
  border-bottom: 1px solid #e0e2e6;
}
.pm-socials__label {
  font-size: 12px; font-weight: 500; color: #6b7280;
  white-space: nowrap;
}
.pm-socials__icons {
  display: flex; align-items: center; gap: 14px;
}
.pm-social {
  display: flex; align-items: center; justify-content: center;
  color: #6b7280; text-decoration: none;
  transition: color .15s;
}
.pm-social:hover { color: #2b2b2b; }

.pm-section { padding: 14px 12px 4px; }
.pm-section__title { font-size: 13px; color: #4a4a4a; padding: 4px 4px 8px; font-weight: 500; }
.pm-item {
  background: #fff; border-radius: 14px; padding: 10px;
  display: grid; grid-template-columns: 54px 1fr; gap: 10px;
  margin-bottom: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.03);
}
.pm-item__img { width: 54px; height: 54px; border-radius: 10px; object-fit: cover; }
.pm-item__body { min-width: 0; }
.pm-item__row { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.pm-item__name { font-size: 13px; font-weight: 700; color: #2b2b2b; line-height: 1.2; }
.pm-item__price { font-size: 13px; font-weight: 700; color: #2b2b2b; white-space: nowrap; }
.pm-item__desc { font-size: 11px; color: #7a7a7a; line-height: 1.4; margin-top: 2px; }
.pm-item__heart { display: flex; align-items: center; gap: 4px; margin-top: 6px; font-size: 10px; color: #999; }
.pm-item__allergens { display: flex; gap: 4px; align-items: center; margin-top: 8px; padding-top: 8px; border-top: 1px solid #f0f0f0; flex-wrap: wrap; }
.pm-item__allergens-label { font-size: 9px; color: #999; }
.pm-item__opts { margin-top: 6px; display: flex; gap: 4px; align-items: center; flex-wrap: wrap; }
.pm-item__opts-label { font-size: 9px; color: #999; letter-spacing: 0.05em; }
.pm-chip {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: 9px; padding: 2px 7px; border-radius: 100px;
  background: #fff; border: 1px solid #e8e8e8; color: #4a4a4a;
}
.pm-item__tags { display: flex; gap: 5px; align-items: center; flex-wrap: wrap; margin-top: 8px; }
.pm-tag {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 9.5px; font-weight: 600; line-height: 1;
  padding: 3px 8px 3px 6px; border-radius: 100px;
}
.pm-tag svg { flex-shrink: 0; }
.pm-chip--opt { background: #f2faf3; border-color: #d5ecd7; color: #2d7a3e; }
.pm-chip__dot { width: 5px; height: 5px; border-radius: 50%; background: #ccc; }
.pm-item--sold { opacity: 0.55; filter: grayscale(0.7); position: relative; }
.pm-item--sold .pm-item__img { filter: grayscale(1); }
.pm-item--highlight {
  opacity: 1; filter: none;
  box-shadow: 0 0 0 2px #ed3254, 0 6px 18px -4px rgba(237,50,84,0.4);
  animation: pmHighlight 1s ease-out;
}
.pm-item--highlight .pm-item__img { filter: grayscale(1) brightness(0.95); }
@keyframes pmHighlight {
  0% { transform: scale(0.96); box-shadow: 0 0 0 6px rgba(237,50,84,0.4); }
  100% { transform: scale(1); box-shadow: 0 0 0 2px #ed3254, 0 6px 18px -4px rgba(237,50,84,0.4); }
}
.pm-sold-label {
  display: inline-block; margin-top: 6px;
  background: #2b2b2b; color: #fff; font-size: 9px; font-weight: 700;
  padding: 2px 7px; border-radius: 100px; letter-spacing: 0.05em; text-transform: uppercase;
}

/* bottom nav inside phone */
.phone-nav {
  display: flex; justify-content: space-around; padding: 8px 0 16px;
  background: #fff; border-top: 1px solid #e8e8e8; flex-shrink: 0;
}
.phone-nav__item { display: flex; flex-direction: column; align-items: center; gap: 2px; font-size: 9px; color: #8a8a8a; }
.phone-nav__icon { font-size: 14px; }
.phone-nav__item--active { color: var(--red); }

/* =========== Editor phone =========== */
.ed-header { display: flex; justify-content: space-between; padding: 10px 16px 8px; font-size: 13px; flex-shrink: 0; }
.ed-back { color: #2b2b2b; }
.ed-title { font-weight: 600; font-size: 14px; }
.ed-body { flex: 1; padding: 8px 14px; overflow-y: auto; background: #eceef2; }
.ed-card { background: #fff; border-radius: 14px; padding: 14px; margin-bottom: 14px; }
.ed-card-row { display: flex; justify-content: space-between; align-items: center; }
.ed-label { font-weight: 600; font-size: 13px; }
.ed-sub { font-size: 10px; color: #888; margin-top: 2px; }
.ed-toggle { width: 34px; height: 20px; background: #ddd; border-radius: 100px; position: relative; transition: .2s; }
.ed-toggle__knob { position: absolute; top: 2px; left: 2px; width: 16px; height: 16px; background: #fff; border-radius: 50%; transition: .2s; box-shadow: 0 1px 3px rgba(0,0,0,.2); }
.ed-toggle--on { background: var(--red); }
.ed-toggle--on .ed-toggle__knob { left: 16px; }
.ed-section-title { display: flex; justify-content: space-between; padding: 4px 4px 10px; font-weight: 700; font-size: 13px; }
.ed-reorder { font-size: 10px; color: #4a4a4a; font-weight: 500; }
.ed-menu-row {
  background: #fff; border-radius: 12px; padding: 10px 12px;
  display: flex; align-items: center; gap: 10px; margin-bottom: 6px;
  border: 2px solid transparent;
  transition: border-color .3s, transform .3s;
  position: relative;
}
.ed-menu-row--active { border-color: var(--red); }
.ed-menu-row--pulse { animation: edPulse .8s ease-out; }
@keyframes edPulse {
  0% { box-shadow: 0 0 0 0 rgba(237,50,84,0.4); }
  100% { box-shadow: 0 0 0 12px rgba(237,50,84,0); }
}
.ed-menu-icon { width: 28px; height: 28px; border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.ed-menu-name { font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 6px; }
.ed-menu-sub { font-size: 10px; color: #888; margin-top: 2px; }
.ed-menu-items { font-size: 10px; color: #666; }
.ed-badge {
  background: #21b7aa; color: #fff; font-size: 8px; font-weight: 600;
  padding: 2px 6px; border-radius: 100px; letter-spacing: 0.04em; text-transform: uppercase;
}
.ed-add { margin-top: 10px; width: 100%; background: #2b2b2b; color: #fff; border: none; padding: 10px; border-radius: 100px; font-size: 12px; font-weight: 500; font-family: inherit; cursor: pointer; }
.ed-ai { margin-top: 6px; width: 100%; background: #fff; color: #2b2b2b; border: 1px solid #ddd; padding: 10px; border-radius: 100px; font-size: 12px; font-weight: 500; font-family: inherit; cursor: pointer; }

/* Currency selector */
.currency-wrap {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-bottom: 18px;
}
.currency-label {
  font-size: 13px; font-weight: 500; color: var(--muted); letter-spacing: 0.01em;
}
.currency-select-shell {
  position: relative; display: inline-flex; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: 100px;
  padding: 6px 12px 6px 10px; gap: 6px;
  box-shadow: 0 1px 4px rgba(40,28,20,0.06);
  transition: border-color .2s, box-shadow .2s;
}
.currency-select-shell:focus-within {
  border-color: var(--red); box-shadow: 0 0 0 3px rgba(205,90,67,0.12);
}
.currency-select-symbol {
  font-size: 13px; font-weight: 700; color: var(--ink); min-width: 14px; text-align: center;
  pointer-events: none;
}
.currency-select {
  appearance: none; border: none; background: transparent;
  font-family: inherit; font-size: 13px; font-weight: 500; color: var(--ink);
  padding-right: 14px; cursor: pointer; outline: none;
}
.currency-caret {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  color: var(--muted); pointer-events: none;
}

/* Mobile hamburger & drawer */
.nav__burger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 38px; height: 38px; padding: 0; background: none; border: none; cursor: pointer;
  border-radius: 8px; transition: background .2s;
}
.nav__burger:hover { background: rgba(40,28,20,0.06); }
.nav__burger span {
  display: block; width: 20px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .25s, opacity .2s;
}

.nav-drawer {
  position: fixed; inset: 0; z-index: 200;
  pointer-events: none; visibility: hidden;
}
.nav-drawer.is-open {
  pointer-events: auto; visibility: visible;
}
.nav-drawer__overlay {
  position: absolute; inset: 0;
  background: rgba(20,14,8,0); backdrop-filter: blur(0px);
  transition: background .3s, backdrop-filter .3s;
}
.nav-drawer.is-open .nav-drawer__overlay {
  background: rgba(20,14,8,0.38); backdrop-filter: blur(4px);
}
.nav-drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(300px, 82vw);
  background: var(--cream); border-left: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 0;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.3,.9,.3,1);
  box-shadow: -4px 0 32px -8px rgba(20,14,8,0.18);
}
.nav-drawer.is-open .nav-drawer__panel {
  transform: translateX(0);
}
.nav-drawer__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px 16px;
  border-bottom: 1px solid var(--line);
}
.nav-drawer__close {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; padding: 0;
  background: none; border: none; cursor: pointer;
  border-radius: 8px; color: var(--ink-soft);
  transition: background .2s, color .2s;
}
.nav-drawer__close:hover { background: rgba(40,28,20,0.06); color: var(--ink); }
.nav-drawer__links {
  display: flex; flex-direction: column;
  padding: 12px 12px;
  flex: 1;
}
.nav-drawer__links a {
  display: block; text-decoration: none;
  padding: 13px 12px; border-radius: 10px;
  font-size: 16px; font-weight: 500; color: var(--ink);
  transition: background .18s, color .18s;
}
.nav-drawer__links a:hover { background: rgba(40,28,20,0.06); color: var(--red); }
.nav-drawer__footer {
  display: flex; flex-direction: column; gap: 8px;
  padding: 16px 20px 32px;
  border-top: 1px solid var(--line);
}

@media (max-width: 960px) {
  .nav__burger { display: flex; }
}

/* Billing switch */
.billing-switch {
  display: inline-flex; position: relative; align-items: center; gap: 4px;
  background: #fff; border: 1px solid var(--line); border-radius: 100px;
  padding: 4px; margin: 28px auto 0;
}
.billing-opt {
  position: relative; z-index: 2;
  border: none; background: transparent; cursor: pointer;
  padding: 10px 22px; border-radius: 100px;
  font-family: inherit; font-size: 13px; font-weight: 500; color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: 6px;
  transition: color .2s;
}
.billing-opt--active { color: #fff; }
.billing-save {
  font-size: 10px; background: var(--teal); color: #fff;
  padding: 2px 6px; border-radius: 100px; font-weight: 600; letter-spacing: 0.03em;
  white-space: nowrap;
}
.billing-opt--active .billing-save { background: var(--mustard); color: var(--ink); }
.billing-pill {
  position: absolute; top: 4px; left: 4px; height: calc(100% - 8px);
  background: var(--ink); border-radius: 100px; z-index: 1;
  transition: transform .35s cubic-bezier(.4,1.2,.4,1), width .35s cubic-bezier(.4,1.2,.4,1);
}
.price-card__price, .price-card__per { transition: opacity .2s; }
.price-card__price--flip { animation: priceFlip .35s ease; }
@keyframes priceFlip {
  0% { transform: translateY(0); opacity: 1; }
  40% { transform: translateY(-6px); opacity: 0; }
  41% { transform: translateY(6px); }
  100% { transform: translateY(0); opacity: 1; }
}
.ep-phone .phone__screen { background: #eceef2; }
.ep-stage { flex: 1; overflow: hidden; position: relative; display: flex; flex-direction: column; }
.ep-screen { flex: 1; display: flex; flex-direction: column; animation: epFade .35s ease; }
.ep-screen .ep-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 16px 8px; font-size: 13px; flex-shrink: 0;
}
.ep-screen .ep-header b { font-weight: 600; font-size: 13px; }
@keyframes epFade {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}
.ep-body { flex: 1; padding: 8px 14px; overflow: hidden; }
.ep-body--editor { overflow: auto; position: relative; }
.ep-item-row { background: #fff; border-radius: 12px; padding: 8px 10px; display: flex; gap: 10px; align-items: center; margin-bottom: 6px; border: 2px solid transparent; transition: border-color .2s; }
.ep-item-row--active { border-color: var(--red); }
.ep-item-thumb { width: 36px; height: 36px; border-radius: 8px; object-fit: cover; }
.ep-item-price { font-size: 11px; color: #2b2b2b; font-weight: 600; }
.ep-save {
  width: calc(100% - 28px); margin: 10px 14px; padding: 12px; border: none;
  background: var(--red); color: #fff; border-radius: 100px; font-family: inherit;
  font-weight: 600; font-size: 13px; display: flex; align-items: center; justify-content: center; gap: 6px;
  cursor: pointer; transition: transform .1s;
  position: absolute; bottom: 4px; left: 0;
}
.ep-save--press { transform: scale(0.96); }
.ep-toast {
  position: absolute; bottom: 68px; left: 50%; transform: translateX(-50%);
  background: #21b7aa; color: #fff; padding: 6px 14px; border-radius: 100px;
  font-size: 11px; font-weight: 600;
  animation: epToast .4s ease;
}
@keyframes epToast {
  from { opacity: 0; transform: translate(-50%, 6px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}
.ep-cursor {
  position: absolute; pointer-events: none; z-index: 10;
  transition: left .6s cubic-bezier(.3,.7,.3,1), top .6s cubic-bezier(.3,.7,.3,1), transform .15s;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}
.ep-cursor--press { transform: scale(0.8); }
.ep-ripple {
  position: absolute; top: -4px; left: -4px; pointer-events: none;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(237,50,84,0.28);
  animation: epTap .45s ease-out forwards;
}
@keyframes epTap {
  from { transform: scale(0.3); opacity: 1; }
  to { transform: scale(1.8); opacity: 0; }
}

/* =========== Instagram phone =========== */
.ig-phone .phone__screen { background: #eceef2; }
.ig-wrap {
  flex: 1; background: #fff; overflow: hidden; position: relative;
  transition: transform .4s ease;
}
.ig-wrap--out { transform: translateX(-20%); opacity: .4; }
.ig-top { display: flex; justify-content: space-between; align-items: center; padding: 10px 14px; }
.ig-back { font-size: 20px; }
.ig-handle { font-weight: 600; font-size: 14px; }
.ig-more { font-size: 16px; letter-spacing: 2px; }
.ig-profile { display: flex; align-items: center; gap: 16px; padding: 4px 14px 8px; }
.ig-avatar {
  width: 68px; height: 68px; border-radius: 50%;
  background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
  padding: 3px; flex-shrink: 0;
}
.ig-avatar__inner {
  width: 100%; height: 100%; border-radius: 50%; background: #ed3254; color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 20px;
  border: 2px solid #fff;
}
.ig-stats { display: flex; gap: 14px; flex: 1; }
.ig-stat { display: flex; flex-direction: column; align-items: center; font-size: 10px; color: #555; }
.ig-stat b { font-size: 14px; color: #000; }
.ig-bio { padding: 0 14px 8px; font-size: 11px; line-height: 1.4; }
.ig-name { font-weight: 600; font-size: 12px; }
.ig-cat { color: #888; font-size: 10px; margin-bottom: 4px; }
.ig-desc { color: #333; }
.ig-link {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 6px; color: #0095f6; font-weight: 600; font-size: 11px;
  cursor: pointer; position: relative; padding: 4px 8px; margin-left: -8px;
  border-radius: 6px; transition: background .2s;
}
.ig-link:hover { background: #e7f5fe; }
.ig-link--tapped { background: #d0ecfd; }
.ig-tap-ring {
  position: absolute; top: 50%; left: 16px; transform: translate(-50%, -50%);
  width: 10px; height: 10px; border: 2px solid #0095f6; border-radius: 50%;
  animation: tapRing 1s ease-out;
}
@keyframes tapRing {
  0% { width: 10px; height: 10px; opacity: 1; }
  100% { width: 60px; height: 60px; opacity: 0; }
}
.ig-actions { display: flex; gap: 6px; padding: 0 14px 10px; }
.ig-actions button { flex: 1; padding: 6px; border-radius: 8px; border: 1px solid #ddd; background: #fff; font-size: 11px; font-weight: 600; cursor: pointer; font-family: inherit; }
.ig-actions button:first-child { background: #0095f6; color: #fff; border-color: #0095f6; }
.ig-highlights { display: flex; gap: 14px; padding: 0 14px 10px; }
.ig-hl { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 9px; }
.ig-hl__circle { width: 48px; height: 48px; border-radius: 50%; background: #f0f0f0; border: 1.5px solid #ddd; display: flex; align-items: center; justify-content: center; }
.ig-hl__circle--menu { background: #fff; border-color: #ed3254; padding: 2px; }
.ig-hl__inner { width: 100%; height: 100%; border-radius: 50%; background: #fff1f3; display: flex; align-items: center; justify-content: center; }
.ig-tabs { display: flex; border-top: 1px solid #eee; }
.ig-tab { flex: 1; text-align: center; padding: 8px; font-size: 14px; color: #999; }
.ig-tab--active { color: #000; border-top: 2px solid #000; margin-top: -1px; }
.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.ig-thumb { aspect-ratio: 1; }

.ig-menu-overlay {
  position: absolute; inset: 32px 0 0 0;
  background: #eceef2; transform: translateX(100%);
  transition: transform .5s cubic-bezier(.3,.8,.3,1);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.ig-menu-overlay--in { transform: translateX(0); }
.ig-menu-overlay__urlbar {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 12px; margin: 8px 12px 4px;
  background: #fff; border-radius: 100px;
  font-size: 10px; color: #666; font-family: "JetBrains Mono", monospace;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  flex-shrink: 0;
}
.ig-menu-overlay--pm .pm-header { padding: 6px 14px 4px; }
.ig-menu-overlay--pm .pm-tabs { padding: 4px 14px 6px; }
.ig-menu-overlay--pm .pm-hero { height: 80px; }
.ig-menu-overlay--pm .pm-hero__name { font-size: 16px; }
.ig-menu-overlay--pm .pm-hero__tag { font-size: 9px; }
.ig-menu-overlay--pm .pm-body { flex: 1; overflow: hidden; }

/* =========== Section shells =========== */
.section { padding: 100px 44px; position: relative; }
.section__inner { max-width: 1280px; margin: 0 auto; }
.section__eyebrow {
  display: inline-block; font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--red); font-weight: 600; margin-bottom: 16px;
}
.section__title {
  font-size: clamp(36px, 4.5vw, 60px); line-height: 1.05;
  letter-spacing: -0.02em; margin: 0 0 24px; max-width: 18ch;
}
.section__sub { font-size: 18px; line-height: 1.55; color: var(--ink-soft); max-width: 52ch; }

.section--cream-2 { background: var(--cream-2); }
.section--dark {
  background: #2b2b2b;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section--dark::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("/landing/assets/kitchen.png");
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.section--dark::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,15,15,0.48) 0%, rgba(15,15,15,0.4) 50%, rgba(15,15,15,0.55) 100%);
  z-index: 1;
}
.section--dark > * { position: relative; z-index: 2; }
.section--dark .section__sub { color: #ccc; }
.section--dark .section__eyebrow { color: var(--mustard); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.two-col--narrow { gap: 60px; }
.two-col--5545 { grid-template-columns: 1fr 1.15fr; }
.two-col--5545-rev { grid-template-columns: 1.1fr 1fr; }

/* =========== Benefits grid =========== */
.benefits {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 60px;
}
.benefit {
  background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 28px;
  transition: transform .25s, border-color .25s;
}
.benefit:hover { transform: translateY(-4px); border-color: var(--red); }
.benefit__icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.benefit__num { font-family: "Instrument Serif", serif; font-size: 42px; color: var(--red); line-height: 1; }
.benefit__label { font-size: 12px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 6px; }
.benefit__title { font-weight: 600; font-size: 17px; margin: 18px 0 8px; }
.benefit__desc { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }

/* =========== Google Maps section =========== */
.maps-wrap {
  position: relative; aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #fdf6ee, #f0e4cf);
  border-radius: 24px;
  border: 2px solid #2b2b2b;
  overflow: hidden;
  box-shadow: 6px 8px 0 #2b2b2b;
}
.maps-bg { position: absolute; inset: 0; width: 100%; height: 100%; }
.maps-pin {
  position: absolute; top: 32%; left: 32%;
  animation: pinDrop 1.2s cubic-bezier(.3,1.4,.5,1) 0.3s backwards;
}
@keyframes pinDrop {
  0% { transform: translateY(-120px) scale(.6); opacity: 0; }
  60% { transform: translateY(8px) scale(1.05); }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.maps-pin__pulse {
  position: absolute; bottom: -4px; left: 50%; transform: translateX(-50%);
  width: 18px; height: 6px; background: rgba(0,0,0,0.2); border-radius: 50%;
  animation: mapsPulse 2s ease-out infinite;
}
@keyframes mapsPulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: .4; }
  50% { transform: translateX(-50%) scale(1.4); opacity: .8; }
}
.maps-card {
  position: absolute; bottom: 22px; left: 22px; right: 22px;
  background: #fff; border-radius: 16px; border: 2px solid #2b2b2b;
  box-shadow: 4px 4px 0 #2b2b2b;
  padding: 10px; display: flex; gap: 12px; align-items: flex-start;
}
.maps-card__photo {
  width: 100px; height: 100px; border-radius: 10px; overflow: hidden;
  border: 2px solid #2b2b2b; position: relative; flex-shrink: 0;
}
.maps-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.maps-card__badge {
  position: absolute; top: 6px; left: 6px;
  background: #ed3254; color: #fff; font-size: 9px; font-weight: 700;
  padding: 2px 6px; border-radius: 100px; letter-spacing: 0.05em; text-transform: uppercase;
  animation: badgeBounce 2.6s ease-in-out infinite;
}
@keyframes badgeBounce {
  0%, 90%, 100% { transform: translateY(0); }
  45% { transform: translateY(-3px); }
  50% { transform: translateY(0); }
}
.maps-card__body { flex: 1; padding: 4px 4px 4px 0; min-width: 0; }
.maps-card__name { font-family: "Instrument Serif", serif; font-size: 22px; line-height: 1; margin-bottom: 4px; }
.maps-card__rating { display: flex; align-items: center; gap: 6px; font-size: 12px; }
.maps-card__rating b { color: #2b2b2b; }
.maps-stars { display: flex; gap: 1px; }
.maps-card__reviews { color: #888; font-size: 11px; }
.maps-card__meta { font-size: 11px; color: #666; margin-top: 4px; margin-bottom: 10px; }
.maps-card__actions { display: flex; gap: 6px; flex-wrap: wrap; }
.maps-btn {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 6px 10px; border-radius: 100px; font-size: 11px; font-weight: 600; cursor: pointer;
  background: #fff; border: 1.5px solid #2b2b2b; color: #2b2b2b; font-family: inherit;
}
.maps-btn--primary { background: #2b2b2b; color: #fff; }
.maps-btn--menu {
  background: #ed3254; color: #fff; border-color: #2b2b2b;
  position: relative;
  animation: menuBtnGlow 2.6s ease-in-out infinite;
}
@keyframes menuBtnGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(237,50,84,0.5); }
  50% { box-shadow: 0 0 0 10px rgba(237,50,84,0); }
}
.maps-btn__spark {
  position: absolute; top: -6px; right: -6px;
  width: 10px; height: 10px; background: #ffc857; border-radius: 50%;
  border: 1.5px solid #2b2b2b;
}
.maps-arrow {
  position: absolute; top: -120px; right: -40px;
  width: 200px; height: 120px;
  display: none;
}
.maps-callout {
  position: absolute; top: 28px; right: 28px;
  background: #ffc857; border: 2px solid #2b2b2b;
  padding: 8px 14px; border-radius: 100px;
  transform: rotate(4deg);
  box-shadow: 3px 3px 0 #2b2b2b;
  font-family: "Instrument Serif", serif; font-style: italic; font-size: 16px;
}

/* =========== URL callout =========== */
.url-card {
  background: #fff; border: 2px solid var(--ink); border-radius: 16px;
  padding: 20px; display: flex; align-items: center; gap: 14px;
  box-shadow: 4px 4px 0 var(--ink);
  margin-top: 36px; max-width: 480px;
}
.url-card__icon { width: 44px; height: 44px; background: var(--red); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
.url-card__label { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.url-card__url { font-family: "JetBrains Mono", monospace; font-size: 15px; color: var(--ink); font-weight: 500; }
.url-card__url .red { color: var(--red); }

/* =========== Social / Instagram section =========== */
.social-stack {
  display: flex; flex-direction: column; gap: 12px; margin-top: 32px;
}
.social-link {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px; background: #fff; border: 1px solid var(--line); border-radius: 14px;
  transition: transform .2s, border-color .2s;
}
.social-link:hover { border-color: var(--ink); transform: translateX(4px); }
.social-link__icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #fff; font-weight: 700; }
.social-link__body { flex: 1; }
.social-link__name { font-weight: 600; font-size: 15px; }
.social-link__url { font-family: "JetBrains Mono", monospace; font-size: 12px; color: var(--muted); }
.social-link__arrow { color: var(--muted); }

/* =========== Stats section =========== */
.stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px;
  max-width: 960px; margin: 0 auto;
}
.stat { text-align: center; }
.stat__num { font-family: "Instrument Serif", serif; font-size: clamp(56px, 7vw, 96px); line-height: 1; color: var(--red); }
.stat__label { font-size: 16px; color: var(--ink-soft); margin-top: 14px; font-weight: 500; }
.section--dark .stat__label {
  color: #fff;
  font-weight: 600;
  font-size: 17px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.55);
  max-width: 22ch; margin-left: auto; margin-right: auto;
}
.section--dark .stat__num {
  color: var(--mustard);
  text-shadow: 0 2px 20px rgba(0,0,0,0.45);
}

/* =========== Testimonial =========== */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.testimonial {
  background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 28px;
  display: flex; flex-direction: column;
}
.testimonial__stars { display: flex; gap: 2px; margin-bottom: 16px; color: var(--mustard); }
.testimonial__quote { font-family: "Instrument Serif", serif; font-size: 22px; line-height: 1.3; letter-spacing: -0.01em; color: var(--ink); margin: 0 0 24px; flex: 1; }
.testimonial__author { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; background: #ddd; flex-shrink: 0; font-weight: 600; color: #fff; display: flex; align-items: center; justify-content: center; }
.testimonial__name { font-weight: 600; font-size: 14px; }
.testimonial__role { font-size: 12px; color: var(--muted); }

/* =========== Pricing =========== */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 60px; }
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 32px;
  position: relative; display: flex; flex-direction: column;
}
.price-card--featured { background: var(--ink); color: #fff; border-color: var(--ink); transform: translateY(-12px); padding-top: 48px; }
.price-card--featured .price-card__feat { color: #bbb; }
.price-card__tag {
  position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: #fff; padding: 4px 14px; border-radius: 100px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  white-space: nowrap;
}
.price-card__name { font-weight: 600; font-size: 18px; }
.price-card__price { font-family: "Instrument Serif", serif; font-size: 56px; line-height: 1; margin: 20px 0 4px; }
.price-card__per { font-size: 13px; color: var(--muted); }
.price-card--featured .price-card__per { color: #aaa; }
.price-card__list { list-style: none; padding: 0; margin: 24px 0 28px; display: flex; flex-direction: column; gap: 10px; }
.section--cream-2.follow-section { background: var(--cream-2); }

.price-card__feat { font-size: 14px; color: var(--ink-soft); display: flex; align-items: flex-start; gap: 8px; line-height: 1.45; }
.price-card__feat::before { content: "\2713"; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.price-card--featured .price-card__feat::before { color: #4ecdc4; }
.price-card__cta {
  border: none; padding: 14px; border-radius: 100px; font-weight: 500; font-size: 14px;
  font-family: inherit; cursor: pointer;
  background: var(--ink); color: #fff;
}
.price-card--featured .price-card__cta { background: var(--red); }

/* Coming-soon card */
.price-card--soon {
  opacity: 0.72;
  filter: grayscale(0.25);
  pointer-events: none;
  position: relative;
}
.price-card--soon::after {
  content: '';
  position: absolute; inset: 0; border-radius: inherit;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 6px,
    rgba(255,255,255,0.18) 6px,
    rgba(255,255,255,0.18) 7px
  );
  border-radius: 16px;
  pointer-events: none;
}
.price-card__tag--soon {
  background: var(--muted);
}
.price-card__feat--highlight {
  color: var(--ink);
  font-weight: 600;
}
/* Keep highlight items legible on the dark featured card */
.price-card--featured .price-card__feat--highlight {
  color: #fff;
}
.price-card__feat--highlight::before {
  content: "\2726";
  color: var(--mustard);
}

/* Inline keyword highlight within a feature row */
.feat-kw {
  font-weight: 600;
  color: #996600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  text-decoration-color: rgba(153, 102, 0, 0.45);
}
.price-card--featured .feat-kw {
  color: var(--mustard);
  text-decoration-color: rgba(255, 200, 87, 0.5);
}
.price-card__cta:disabled {
  background: #ccc; color: #888; cursor: not-allowed;
}
.price-card__soon-note {
  font-size: 12px; color: var(--muted); text-align: center;
  margin-top: 10px; line-height: 1.5;
  font-style: italic;
}

/* =========== FAQ =========== */
.faq { max-width: 780px; margin: 48px auto 0; }
.faq__item { border-bottom: 1px solid var(--line); padding: 24px 0; cursor: pointer; }
.faq__q { display: flex; justify-content: space-between; align-items: center; font-weight: 500; font-size: 18px; }
.faq__a { font-size: 15px; color: var(--ink-soft); margin-top: 12px; line-height: 1.55; display: none; }
.faq__item--open .faq__a { display: block; }
.faq__item--open .faq__toggle { transform: rotate(45deg); }
.faq__toggle { font-size: 22px; font-weight: 300; transition: transform .2s; color: var(--red); }

/* =========== Final CTA =========== */
.final-cta {
  text-align: center; padding: 120px 44px; background: var(--ink); color: #fff;
  position: relative; overflow: hidden;
}
.final-cta__title { font-size: clamp(48px, 7vw, 100px); line-height: 1; margin: 0 0 24px; letter-spacing: -0.02em; }
.final-cta__title em { color: var(--mustard); font-style: italic; }
.final-cta__sub { font-size: 18px; color: #ccc; max-width: 520px; margin: 0 auto 36px; }

/* =========== Footer =========== */
.footer { padding: 48px 44px 32px; background: var(--ink); color: #aaa; font-size: 13px; border-top: 1px solid #3a3a3a; }
.footer__inner { max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.footer__links { display: flex; gap: 24px; }

/* =========== Lottie-like floating animations =========== */
.spark {
  position: absolute;
  pointer-events: none;
}
@keyframes spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }
@keyframes twinkle {
  0%, 100% { opacity: .4; transform: scale(.8); }
  50% { opacity: 1; transform: scale(1.2); }
}
.twinkle { animation: twinkle 3s ease-in-out infinite; }
.spin-slow { animation: spin 40s linear infinite; }

/* Scene — stacked phones */
.scene-phones {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  min-height: 560px;
}
.scene-phones .phone--back {
  position: absolute; transform: rotate(-6deg) translateX(-70%) scale(0.85);
  filter: blur(1px); opacity: .7;
}
.scene-phones .phone--front { position: relative; z-index: 2; }

/* =========== AI Scan scene =========== */
.scan-scene {
  position: relative;
  width: 100%;
  min-height: 560px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.scan-stage {
  position: relative;
  width: 440px; height: 540px;
  display: flex; align-items: center; justify-content: center;
}
/* floating tags */
.scan-tag {
  position: absolute; z-index: 6;
  padding: 8px 16px; border-radius: 100px;
  background: #fff; border: 2px solid #2b2b2b;
  box-shadow: 3px 3px 0 #2b2b2b;
  font-size: 13px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "Geist", sans-serif;
}
.scan-tag--ai { top: 16px; left: 10px; background: #ffc857; transform: rotate(-3deg); }
.scan-tag--ai .scan-tag__dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--red);
  box-shadow: 0 0 0 3px rgba(237,50,84,0.25);
  animation: scanDot 1.4s ease-in-out infinite;
}
@keyframes scanDot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(237,50,84,0.25); }
  50% { box-shadow: 0 0 0 7px rgba(237,50,84,0); }
}
.scan-tag--status {
  top: 20px; right: clamp(6px, 4%, 10px); background: #fff;
  transform: rotate(2deg);
  white-space: nowrap;
  max-width: calc(100% - 120px);
  opacity: 0; transition: opacity .3s;
}
.scan-tag--status.is-active { opacity: 1; }

@media (max-width: 600px) {
  .scan-tag--status {
    right: auto;
    left: 50%;
    transform: translateX(-50%) rotate(2deg);
  }
  /* Keep overflow:hidden so the stage (440px wide) cannot expand the page width.
     Use flex centering instead of left:50% — flex doesn't shift the DOM layout box. */
  .scan-scene { overflow: hidden; min-height: auto; display: flex; justify-content: center; }
  #scanScene { width: 100%; }
  .scan-stage {
    flex-shrink: 0; /* don't squish — scale handles sizing */
    transform: scale(0.82);
    transform-origin: center center;
    margin-top: -49px;
    margin-bottom: -49px;
  }
}

/* Paper menu */
.scan-paper {
  position: absolute;
  width: 230px; height: 320px;
  background: #fdfaf2;
  border: 1.5px solid #d9cdb3;
  border-radius: 4px;
  box-shadow:
    0 14px 30px -12px rgba(0,0,0,0.35),
    4px 4px 0 rgba(0,0,0,0.04);
  padding: 18px 16px;
  font-family: "Instrument Serif", serif;
  color: #3a2f22;
  overflow: hidden;
  transform-origin: center;
  top: 50%; left: 22%;
  transform: translate(-50%, -50%) rotate(-5deg);
  transition: transform .9s cubic-bezier(.4,.9,.3,1), opacity .8s ease, filter .8s ease;
  z-index: 2;
}
.scan-paper.stage-3 {
  transform: translate(-50%, -50%) rotate(-5deg) translateY(40px) scale(0.86);
  opacity: 0;
  filter: blur(2px);
}
@media (max-width: 600px) {
  .scan-paper { left: 30%; }
}
.scan-paper__header { text-align: center; margin-bottom: 10px; }
.scan-paper__logo { font-size: 20px; letter-spacing: 0.02em; }
.scan-paper__sub { font-size: 11px; color: #8a7a5c; font-style: italic; margin-top: 2px; }
.scan-paper__section { margin-top: 10px; }
.scan-paper__cat {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em;
  color: #b8672b; border-bottom: 1px dotted #b8672b; padding-bottom: 3px; margin-bottom: 6px;
  font-family: "Geist", sans-serif; font-weight: 600;
}
.scan-paper__row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 12px; line-height: 1.5;
  gap: 8px;
}
.scan-paper__row span:first-child {
  flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* viewfinder corners — appear in stage 1+ */
.scan-frame {
  position: absolute; inset: 8px; pointer-events: none;
  opacity: 0; transition: opacity .4s;
}
.scan-paper.stage-1 .scan-frame,
.scan-paper.stage-2 .scan-frame { opacity: 1; }
.scan-frame__c {
  position: absolute; width: 20px; height: 20px;
  border: 2.5px solid var(--red);
}
.scan-frame__c--tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.scan-frame__c--tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.scan-frame__c--bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.scan-frame__c--br { bottom: 0; right: 0; border-left: none; border-top: none; }

/* Scanning beam */
.scan-beam {
  position: absolute; left: 0; right: 0; top: 0; height: 40px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(237, 50, 84, 0.12) 30%,
    rgba(237, 50, 84, 0.9) 50%,
    rgba(237, 50, 84, 0.12) 70%,
    transparent 100%);
  box-shadow: 0 0 20px rgba(237,50,84,0.6);
  opacity: 0; pointer-events: none;
  z-index: 3;
}
.scan-paper.stage-1 .scan-beam {
  opacity: 1;
  animation: scanBeam 1.8s ease-in-out;
}
@keyframes scanBeam {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(calc(320px - 40px)); }
  100% { transform: translateY(0); }
}

/* AI sparkles */
.scan-sparkles { position: absolute; inset: 0; pointer-events: none; z-index: 4; }
.scan-sparkle {
  position: absolute; width: 8px; height: 8px;
  background:
    radial-gradient(circle, #ffc857 0%, #ffc857 30%, transparent 60%);
  border-radius: 50%;
  animation: scanSparkle 1.3s ease-out forwards;
  opacity: 0;
}
@keyframes scanSparkle {
  0% { transform: scale(0) rotate(0deg); opacity: 0; }
  30% { opacity: 1; transform: scale(1.4) rotate(90deg); }
  100% { transform: scale(0) rotate(180deg); opacity: 0; }
}

/* Flying text lines from paper to phone */
.scan-fly { position: absolute; inset: 0; pointer-events: none; z-index: 5; }
.scan-fly__line {
  position: absolute;
  left: 20%; top: 30%;
  background: #fff; border: 1.5px solid var(--red);
  padding: 4px 10px; border-radius: 100px;
  font-size: 11px; font-weight: 600; color: var(--red);
  font-family: "Geist", sans-serif;
  white-space: nowrap;
  opacity: 0;
  animation: scanFly 1.4s cubic-bezier(.4,.1,.3,1) forwards;
  box-shadow: 0 4px 12px rgba(237,50,84,0.25);
}
@keyframes scanFly {
  0%   { transform: translate(0, 0) scale(0.6); opacity: 0; }
  15%  { opacity: 1; transform: translate(0, 0) scale(1); }
  100% { transform: translate(180px, 40px) scale(0.3); opacity: 0; }
}

/* Phone */
/* scan-phone: positioning only — visual shell comes from .phone.phone--sm */
.scan-phone {
  position: absolute;
  width: 220px;
  top: 50%; right: 10%;
  transform: translateY(-50%) rotate(4deg);
  transition: transform .8s cubic-bezier(.3,1.4,.4,1), box-shadow .8s;
  z-index: 3;
}
.scan-phone.stage-3 {
  transform: translateY(-50%) rotate(2deg) translateX(-14%) scale(1.05);
  box-shadow:
    0 40px 80px -20px rgba(40,28,20,0.3),
    0 0 0 2px #0f1420,
    inset 0 0 0 2px #2a3042,
    0 0 0 6px rgba(255, 200, 87, 0.5);
}
.scan-phone__notch {
  position: absolute; top: 4px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 16px; background: #000; border-radius: 0 0 10px 10px;
  z-index: 10;
}
.scan-phone__screen {
  width: 100%; height: 100%;
  background: #fdf6ee; border-radius: 26px;
  overflow: hidden; position: relative;
  display: flex; flex-direction: column;
}

/* Camera view (before digital menu) */
.scan-phone__camera {
  position: absolute; inset: 0;
  background: #1a1a1a;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #fff;
  overflow: hidden;
}
.scan-phone__camera::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(255,200,87,0.08), rgba(237,50,84,0.1)),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.02) 0 2px, transparent 2px 4px);
}
.scan-phone__cam-hud {
  position: absolute; top: 36px; left: 50%; transform: translateX(-50%); z-index: 3;
}
.scan-phone__cam-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 11px; border-radius: 100px;
  background: rgba(255,200,87,0.95); color: #2b2b2b;
  font-size: 10px; font-weight: 700; font-family: "Geist", sans-serif;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.scan-phone__cam-reticle {
  position: relative;
  width: 150px; height: 200px;
  z-index: 2;
}
.scan-phone__cam-reticle span {
  position: absolute; width: 22px; height: 22px; border: 2.5px solid #ffc857;
}
.scan-phone__cam-reticle span:nth-child(1) { top: 0; left: 0; border-right: none; border-bottom: none; }
.scan-phone__cam-reticle span:nth-child(2) { top: 0; right: 0; border-left: none; border-bottom: none; }
.scan-phone__cam-reticle span:nth-child(3) { bottom: 0; left: 0; border-right: none; border-top: none; }
.scan-phone__cam-reticle span:nth-child(4) { bottom: 0; right: 0; border-left: none; border-top: none; }
.scan-phone__camera::after {
  content: "";
  position: absolute; left: 35px; right: 35px;
  height: 2.5px; background: #ffc857;
  box-shadow: 0 0 10px #ffc857;
  top: 34%;
  animation: scanPhoneBeam 1.8s ease-in-out infinite;
}
@keyframes scanPhoneBeam {
  0%, 100% { top: 34%; opacity: 0.2; }
  50% { top: 70%; opacity: 1; }
}
.scan-phone__cam-label {
  margin-top: 24px; font-size: 11px; color: #ffc857;
  font-family: "Geist", sans-serif; font-weight: 500; letter-spacing: 0.04em;
  z-index: 3;
}

/* Final digital menu — mirrors PhonePreview styling at a smaller scale */
.scan-phone__menu {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  animation: menuFadeIn .5s ease;
  background: #fdf6ee;
}
@keyframes menuFadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}
.pm-mini__header {
  padding: 22px 12px 8px;
  display: flex; justify-content: space-between; align-items: center;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.pm-mini__logo {
  width: 22px; height: 22px; border-radius: 50%; background: #fdf6ee;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
}
.pm-mini__logo svg { width: 14px; height: 14px; }
.pm-mini__title { font-family: "Instrument Serif", serif; font-size: 14px; color: #2b2b2b; }
.pm-mini__tabs {
  display: flex; gap: 14px; padding: 8px 12px 10px;
  background: #fff; border-bottom: 1px solid var(--line);
  font-size: 10px; font-weight: 500; color: #8a7f70;
  font-family: "Geist", sans-serif;
}
.pm-mini__tabs .is-active {
  color: var(--red);
  border-bottom: 2px solid var(--red); padding-bottom: 4px; margin-bottom: -11px;
}
.pm-mini__hero {
  position: relative; height: 60px; overflow: hidden;
  margin: 8px 10px 0; border-radius: 8px;
  background: #333;
}
.pm-mini__hero img { width: 100%; height: 100%; object-fit: cover; }
.pm-mini__hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.6));
  color: #fff; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 6px 8px;
}
.pm-mini__hero-name { font-family: "Instrument Serif", serif; font-size: 13px; line-height: 1; }
.pm-mini__hero-tag { font-size: 8px; opacity: 0.8; font-family: "Geist", sans-serif; letter-spacing: 0.04em; }
.pm-mini__section-title {
  padding: 10px 12px 4px;
  font-family: "Instrument Serif", serif; font-size: 14px; color: #2b2b2b;
}
.pm-mini__item {
  display: flex; gap: 8px; padding: 6px 10px; align-items: flex-start;
  opacity: 0; transform: translateY(8px);
  animation: itemIn .4s cubic-bezier(.3,.9,.3,1) forwards;
}
@keyframes itemIn {
  to { opacity: 1; transform: translateY(0); }
}
.pm-mini__item-img {
  width: 42px; height: 42px; border-radius: 8px; object-fit: cover; flex-shrink: 0;
  border: 1px solid var(--line);
}
.pm-mini__item-body { flex: 1; min-width: 0; }
.pm-mini__item-row { display: flex; justify-content: space-between; align-items: baseline; gap: 6px; }
.pm-mini__item-name { font-size: 11px; font-weight: 600; color: #2b2b2b; font-family: "Geist", sans-serif; }
.pm-mini__item-price {
  font-family: "Instrument Serif", serif; font-size: 13px; color: var(--red); font-weight: 400;
  white-space: nowrap;
}
.pm-mini__item-desc {
  font-size: 9px; color: #8a7f70; margin-top: 2px; font-family: "Geist", sans-serif;
  overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}

/* AI badge */
.scan-ai-badge {
  position: absolute; bottom: 20px; left: 32px; z-index: 7;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 100px;
  background: #2b2b2b; color: #fff;
  font-size: 12px; font-weight: 700;
  font-family: "Geist", sans-serif; letter-spacing: 0.06em;
  border: 2px solid #2b2b2b;
  box-shadow: 3px 3px 0 #ffc857;
  transform: rotate(-4deg);
}
.scan-ai-badge svg {
  animation: scanSpin 4s linear infinite;
  transform-origin: center;
}
@keyframes scanSpin {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}

/* =========== Pricing carousel dots — hidden by default, shown on mobile =========== */
.pricing-dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}
.pricing-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line);
  border: 1.5px solid var(--muted);
  padding: 0;
  cursor: pointer;
  transition: all .28s cubic-bezier(.4,1.2,.4,1);
}
.pricing-dot--active {
  background: var(--ink);
  border-color: var(--ink);
  width: 24px;
  border-radius: 4px;
}

/* =========== Responsive =========== */
@media (max-width: 960px) {
  .nav { padding: 14px 20px; }
  .nav__links { display: none; }
  .hero { padding: 40px 20px 60px; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .float-deco--1 { top: -40px; right: -20px; width: 120px; }
  .section { padding: 70px 20px; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col > * { min-width: 0; overflow-wrap: break-word; }
  /* ── Mobile text overflow protection ──────────────────────────────────
     Translated strings can be significantly longer than English.
     Ensure headings and paragraphs wrap instead of overflowing the viewport. */
  .section__title,
  .section__sub,
  .hero__title,
  .hero__sub,
  .final-cta__title,
  .final-cta__sub,
  .testimonial__quote,
  .feat-card__title,
  .feat-card__desc {
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
  }
  /* Buttons must stay within their flex/grid container */
  .btn-primary,
  .btn-ghost,
  .btn-outline {
    max-width: 100%;
  }
  .two-col--5545,
  .two-col--5545-rev { grid-template-columns: 1fr; }
  /* Put the copy above the phone on menu editor */
  #menu .two-col > .scene-phones { order: 2; }
  #menu .two-col > :not(.scene-phones) { order: 1; }
  /* And on social, text first, phone below */
  #social .two-col > .phone-wrap { order: 2; }
  .benefits { grid-template-columns: 1fr 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .price-card--featured { transform: none; }
  .stats { grid-template-columns: 1fr; gap: 32px; }
  .final-cta { padding: 80px 20px; }
  .scene-phones { min-height: 540px; }
  .scene-phones .phone--back { display: none; }
}

/* =================================================================
   HOVER FX — each group toggleable via [data-fx-*] on <html>
   ================================================================= */

/* 1) Magnetic CTA buttons — subtle scale + lean toward cursor
   The --mx/--my CSS vars are set by JS on pointermove */
html[data-fx-magnetic="on"] .btn-primary,
html[data-fx-magnetic="on"] .nav__cta,
html[data-fx-magnetic="on"] .final-cta .btn-primary {
  transition: transform .25s cubic-bezier(.3,.8,.3,1), box-shadow .25s;
  will-change: transform;
}
html[data-fx-magnetic="on"] .btn-primary.is-fx,
html[data-fx-magnetic="on"] .nav__cta.is-fx,
html[data-fx-magnetic="on"] .final-cta .btn-primary.is-fx {
  transform: translate(var(--mx, 0), var(--my, 0)) scale(1.04);
  box-shadow: 0 14px 36px -8px rgba(237,50,84,0.55);
}

/* 2) 3D tilt on benefit cards */
html[data-fx-tilt="on"] .benefit {
  transition: transform .18s ease-out, border-color .25s, box-shadow .25s;
  transform-style: preserve-3d;
  will-change: transform;
}
html[data-fx-tilt="on"] .benefit.is-fx {
  transform: perspective(900px) rotateX(var(--ry, 0deg)) rotateY(var(--rx, 0deg)) translateZ(0);
  box-shadow: 0 24px 40px -18px rgba(43,43,43,0.25);
  border-color: var(--red);
}
html[data-fx-tilt="on"] .benefit__icon,
html[data-fx-tilt="on"] .benefit__title,
html[data-fx-tilt="on"] .benefit__num,
html[data-fx-tilt="on"] .benefit__label {
  transition: transform .25s ease-out;
}
html[data-fx-tilt="on"] .benefit.is-fx .benefit__icon { transform: translateZ(30px); }
html[data-fx-tilt="on"] .benefit.is-fx .benefit__num  { transform: translateZ(22px); }
html[data-fx-tilt="on"] .benefit.is-fx .benefit__title { transform: translateZ(14px); }

/* 3) Shimmer sweep on testimonial cards */
html[data-fx-shimmer="on"] .testimonial {
  position: relative; overflow: hidden;
  transition: transform .35s cubic-bezier(.3,.9,.3,1), box-shadow .35s, border-color .35s;
}
html[data-fx-shimmer="on"] .testimonial::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg,
    transparent 40%,
    rgba(255,200,87,0.35) 50%,
    transparent 60%);
  transform: translateX(-120%);
  transition: transform .9s cubic-bezier(.3,.9,.3,1);
  pointer-events: none;
}
html[data-fx-shimmer="on"] .testimonial:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px -20px rgba(43,43,43,0.25);
  border-color: var(--ink);
}
html[data-fx-shimmer="on"] .testimonial:hover::before { transform: translateX(120%); }

/* 4) Spotlight glow on pricing cards — follows cursor via --sx/--sy */
html[data-fx-spotlight="on"] .price-card {
  position: relative; overflow: hidden;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
html[data-fx-spotlight="on"] .price-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(
    240px circle at var(--sx, 50%) var(--sy, 50%),
    rgba(237,50,84,0.18) 0%,
    transparent 60%);
  opacity: 0; transition: opacity .3s;
  pointer-events: none;
  border-radius: inherit;
}
html[data-fx-spotlight="on"] .price-card--featured::before {
  background: radial-gradient(
    240px circle at var(--sx, 50%) var(--sy, 50%),
    rgba(255,200,87,0.22) 0%,
    transparent 60%);
}
html[data-fx-spotlight="on"] .price-card.is-fx { transform: translateY(-6px); border-color: var(--red); }
html[data-fx-spotlight="on"] .price-card--featured.is-fx { transform: translateY(-18px); }
html[data-fx-spotlight="on"] .price-card.is-fx::before { opacity: 1; }

/* 5) Wipe underline on nav links */
html[data-fx-underline="on"] .nav__links a {
  position: relative;
}
html[data-fx-underline="on"] .nav__links a::after {
  content: ""; position: absolute;
  left: 0; right: 100%; bottom: -6px; height: 2px;
  background: var(--red);
  transition: right .3s cubic-bezier(.3,.9,.3,1);
}
html[data-fx-underline="on"] .nav__links a:hover::after { right: 0; }
html[data-fx-underline="on"] .nav__links a:hover { opacity: 1; }

/* =================================================================
   Tweaks panel
   ================================================================= */
.tweaks-panel {
  position: fixed; bottom: 20px; right: 20px; z-index: 1000;
  background: #fff; border: 2px solid #2b2b2b; border-radius: 16px;
  box-shadow: 6px 6px 0 #2b2b2b;
  padding: 16px 18px;
  width: 280px;
  font-family: "Geist", -apple-system, sans-serif;
  display: none;
}
.tweaks-panel.is-open { display: block; animation: tweaksIn .25s cubic-bezier(.3,1.4,.4,1); }
@keyframes tweaksIn {
  from { opacity: 0; transform: translateY(12px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.tweaks-panel__title {
  font-family: "Instrument Serif", serif; font-size: 22px; line-height: 1;
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 4px;
}
.tweaks-panel__sub {
  font-size: 12px; color: #8a7f70; margin-bottom: 14px;
}
.tweaks-panel__row {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0; border-bottom: 1px solid #f0e8d8;
}
.tweaks-panel__row:last-child { border-bottom: none; padding-bottom: 0; }
.tweaks-panel__row label { flex: 1; cursor: pointer; }
.tweaks-panel__row-title { font-size: 13px; font-weight: 600; color: #2b2b2b; }
.tweaks-panel__row-desc { font-size: 11px; color: #8a7f70; margin-top: 2px; line-height: 1.4; }
.tweaks-switch {
  --w: 34px; --h: 20px;
  appearance: none;
  width: var(--w); height: var(--h); border-radius: 100px;
  background: #e8dfd1; position: relative; cursor: pointer;
  transition: background .2s; flex-shrink: 0; margin-top: 2px;
  border: none;
}
.tweaks-switch::after {
  content: ""; position: absolute;
  top: 2px; left: 2px;
  width: calc(var(--h) - 4px); height: calc(var(--h) - 4px);
  border-radius: 50%; background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  transition: transform .2s;
}
.tweaks-switch:checked { background: var(--red); }
.tweaks-switch:checked::after { transform: translateX(calc(var(--w) - var(--h))); }
.tweaks-panel__close {
  border: none; background: transparent; font-size: 18px; cursor: pointer;
  color: #8a7f70; padding: 0; line-height: 1;
}
.tweaks-panel__close:hover { color: #2b2b2b; }

/* =========== Follow-us bar (inside the phone) =========== */
.phone--static { position: relative; }
.pm-body--static { overflow: hidden !important; }

.pm-follow {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px;
  margin: 10px 10px 6px;
  background: linear-gradient(135deg, #fff 0%, #fff5e6 100%);
  border: 1.5px solid #2b2b2b;
  border-radius: 14px;
  box-shadow: 3px 3px 0 #2b2b2b;
  overflow: hidden;
  animation: followPulse 2.8s ease-in-out infinite;
}
@keyframes followPulse {
  0%, 100% { box-shadow: 3px 3px 0 #2b2b2b, 0 0 0 0 rgba(237,50,84,0); }
  50%      { box-shadow: 3px 3px 0 #2b2b2b, 0 0 0 6px rgba(237,50,84,0.18); }
}
.pm-follow__label {
  font-family: "Instrument Serif", serif; font-size: 16px; color: #2b2b2b;
  font-style: italic;
}
.pm-follow__icons { display: flex; gap: 6px; position: relative; z-index: 2; }
.pm-follow__icon {
  width: 28px; height: 28px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform .2s;
  color: #fff;
}
.pm-follow__icon:hover { transform: translateY(-2px) scale(1.08); }
.pm-follow__icon--ig {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
  animation: iconPop 3s ease-in-out infinite;
}
.pm-follow__icon--fb { background: #1877f2; animation: iconPop 3s ease-in-out infinite 0.3s; }
.pm-follow__icon--tt { background: #000;    animation: iconPop 3s ease-in-out infinite 0.6s; }
.pm-follow__icon--x  { background: #000;    animation: iconPop 3s ease-in-out infinite 0.9s; }
@keyframes iconPop {
  0%, 85%, 100% { transform: translateY(0) scale(1); }
  90%           { transform: translateY(-3px) scale(1.12); }
}
.pm-follow__sheen {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, transparent 35%, rgba(255,255,255,0.65) 48%, transparent 62%);
  animation: followSheen 3.2s linear infinite;
  pointer-events: none;
}
@keyframes followSheen {
  from { transform: translateX(-100%); }
  to   { transform: translateX(100%); }
}

/* Floating badges outside the phone */
.follow-badge {
  position: absolute;
  display: flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 100px;
  background: #fff; color: #2b2b2b;
  border: 2px solid #2b2b2b;
  box-shadow: 3px 3px 0 #2b2b2b;
  font-size: 12px; font-weight: 600;
  font-family: "Geist", sans-serif;
  white-space: nowrap;
  z-index: 10; pointer-events: none;
  opacity: 0;
  animation: badgeFloat 4.8s ease-in-out infinite;
}
.follow-badge__icon {
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0;
}
.follow-badge--instagram .follow-badge__icon { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); }
.follow-badge--tiktok    .follow-badge__icon { background: #000; }
.follow-badge--facebook  .follow-badge__icon { background: #1877f2; }
.follow-badge--x         .follow-badge__icon { background: #000; }
@keyframes badgeFloat {
  0%   { transform: translateY(10px) scale(0.6); opacity: 0; }
  10%  { transform: translateY(0) scale(1); opacity: 1; }
  70%  { transform: translateY(-8px) scale(1); opacity: 1; }
  90%  { transform: translateY(-40px) scale(0.9); opacity: 0; }
  100% { transform: translateY(-40px); opacity: 0; }
}

/* =========== Follow / social-gain section =========== */
.follow-section {
  position: relative;
  background: linear-gradient(180deg, #fdf7ec 0%, #fff 100%);
  overflow: hidden;
}
.follow-section__metrics {
  display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap;
}
.follow-metric {
  background: #fff; border: 1.5px solid #2b2b2b; border-radius: 14px;
  padding: 14px 18px; display: flex; align-items: center; gap: 12px;
  box-shadow: 3px 3px 0 #2b2b2b;
  transition: transform .25s;
}
.follow-metric:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 #2b2b2b; }
.follow-metric__num {
  font-family: "Instrument Serif", serif;
  font-size: 36px; line-height: 1; color: var(--red);
}
.follow-metric__body { display: flex; flex-direction: column; }
.follow-metric__label { font-size: 13px; font-weight: 600; color: #2b2b2b; }
.follow-metric__sub { font-size: 11px; color: #8a7f70; }

.follow-channels {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
  margin-top: 32px; max-width: 480px;
}
.follow-channel {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background: #fff; border: 1.5px solid var(--line); border-radius: 12px;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.follow-channel:hover {
  transform: translateY(-2px);
  border-color: #2b2b2b;
  box-shadow: 3px 3px 0 #2b2b2b;
}
.follow-channel__icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0;
}
.follow-channel__icon--ig { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); }
.follow-channel__icon--tt { background: #000; }
.follow-channel__icon--fb { background: #1877f2; }
.follow-channel__icon--x  { background: #000; }
.follow-channel__body { flex: 1; min-width: 0; }
.follow-channel__name { font-weight: 600; font-size: 14px; color: #2b2b2b; }
.follow-channel__handle { font-size: 12px; color: #8a7f70; font-family: "JetBrains Mono", monospace; }
.follow-channel__arrow { color: #8a7f70; flex-shrink: 0; }

@media (max-width: 960px) {
  .follow-channels { grid-template-columns: 1fr; }
  #follow .two-col > .phone-wrap { order: 2; }
}


/* =========================================================
   FEATURES — "also included" grid
   ========================================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  margin-top: 60px;
}
.feat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px 26px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: transform .3s cubic-bezier(.3,1.2,.4,1), box-shadow .3s, border-color .3s;
}
.feat-card:hover {
  transform: translateY(-4px);
  border-color: #d5c9b3;
  box-shadow: 0 18px 40px -22px rgba(40,28,20,0.25);
}
/* row 1: 3 cards × 2 cols */
.feat-card--translation,
.feat-card--qr,
.feat-card--allergens { grid-column: span 2; }
/* row 2: 3 cards × 2 cols */
.feat-card--ai { grid-column: span 2; }
.feat-card--domain { grid-column: span 2; }
.feat-card--tags { grid-column: span 2; }

.feat-card__art {
  height: 140px;
  margin: -4px -10px 18px;
  border-radius: 16px;
  background: var(--cream);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.feat-card__title {
  font-family: "Instrument Serif", serif;
  font-size: 24px; line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.feat-card__desc {
  font-size: 14px; line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

/* ── Translation: floating language chips ── */
.feat-card--translation .feat-card__art {
  background: linear-gradient(135deg, #fdf6ee 0%, #f6ecdd 100%);
}
.lang-chip {
  position: absolute;
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--line);
  box-shadow: 0 6px 14px -6px rgba(40,28,20,0.18);
  font-family: "Geist", sans-serif;
  font-weight: 700; font-size: 12px;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.lang-chip--en { top: 16px; left: 22px; transform: rotate(-8deg); }
.lang-chip--it { top: 8px; left: 50%; transform: translateX(-50%) rotate(3deg); background: var(--red); color: #fff; border-color: var(--red); z-index: 2; }
.lang-chip--fr { top: 18px; right: 22px; transform: rotate(7deg); }
.lang-chip--es { bottom: 18px; left: 38px; transform: rotate(6deg); }
.lang-chip--de { bottom: 14px; left: 50%; transform: translateX(-50%) rotate(-4deg); }
.lang-chip--jp { bottom: 20px; right: 36px; transform: rotate(-9deg); font-family: serif; font-size: 16px; }
.feat-card__arc {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0; opacity: .45;
}

/* ── QR codes ── */
.feat-card--qr .feat-card__art {
  background: linear-gradient(135deg, #fdf6ee 0%, #f6ecdd 100%);
  flex-direction: column; gap: 10px;
}
.qr-mock {
  width: 96px; height: 96px;
  background: #fff;
  border-radius: 14px;
  padding: 8px;
  position: relative;
  box-shadow: 0 10px 24px -10px rgba(40,28,20,0.3);
  border: 1px solid var(--line);
}
.qr-mock__grid {
  width: 100%; height: 100%;
  display: grid; grid-template-columns: repeat(10, 1fr); gap: 1.5px;
}
.qr-mock__grid span {
  background: #1a1a1a;
  border-radius: 50%;
}
/* Random-ish pattern: hide ~50% of cells for a believable QR look */
.qr-mock__grid span:nth-child(3n),
.qr-mock__grid span:nth-child(5n+1),
.qr-mock__grid span:nth-child(7n+2),
.qr-mock__grid span:nth-child(11n+4),
.qr-mock__grid span:nth-child(13n+6) { background: transparent; }

/* Concentric finder patterns (rounded squares within rounded squares) */
.qr-mock__finder {
  position: absolute;
  width: 22px; height: 22px;
  background: #1a1a1a;
  border-radius: 6px;
}
.qr-mock__finder::before {
  content: "";
  position: absolute; inset: 3px;
  background: #fff;
  border-radius: 4px;
}
.qr-mock__finder::after {
  content: "";
  position: absolute; inset: 6px;
  background: #1a1a1a;
  border-radius: 2px;
}
.qr-mock__finder--tl { top: 8px; left: 8px; }
.qr-mock__finder--tr { top: 8px; right: 8px; }
.qr-mock__finder--bl { bottom: 8px; left: 8px; }

/* Center logo well */
.qr-mock__logo {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 36px; height: 36px;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 3px #fff;
}
.qr-mock__logo--theplate svg { display: block; }

.qr-mock__caption {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: 13px;
  color: #1a1a1a;
  letter-spacing: 0.06em;
}

/* ── Allergens ── */
.feat-card--allergens .feat-card__art {
  background: linear-gradient(135deg, #fef9f1 0%, #ffe7e0 100%);
}
.allergen-stack {
  display: flex; flex-wrap: wrap; gap: 6px;
  padding: 14px;
  max-width: 220px;
  justify-content: center;
}
.allergen-pill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 11px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 11px; font-weight: 500;
  color: var(--ink);
  box-shadow: 0 2px 6px -2px rgba(40,28,20,0.1);
}
.allergen-pill__dot {
  width: 6px; height: 6px; border-radius: 50%;
}
.allergen-pill__dot--g { background: #e0a838; }
.allergen-pill__dot--d { background: #f0d27a; }
.allergen-pill__dot--n { background: #8b5a2b; }
.allergen-pill__dot--e { background: #ffc857; }
.allergen-pill__dot--s { background: #21b7aa; }
.allergen-pill:nth-child(1) { transform: rotate(-3deg); }
.allergen-pill:nth-child(2) { transform: rotate(2deg); }
.allergen-pill:nth-child(3) { transform: rotate(-1deg); }
.allergen-pill:nth-child(4) { transform: rotate(4deg); }
.allergen-pill:nth-child(5) { transform: rotate(-2deg); }

/* ── AI descriptions ── */
.feat-card--ai .feat-card__art {
  background: linear-gradient(135deg, #fff8e0 0%, #fdf6ee 100%);
  padding: 16px 22px;
}
.ai-desc-mock {
  display: flex; flex-direction: column; gap: 6px;
  width: 100%; max-width: 360px;
  font-size: 13px;
  align-items: center;
}
.ai-desc-mock__before {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--muted);
  padding: 6px 12px;
  background: #fff;
  border: 1px dashed var(--line);
  border-radius: 8px;
  text-decoration: line-through;
  text-decoration-color: rgba(237,50,84,0.4);
}
.ai-desc-mock__arrow {
  opacity: 0.7;
}
.ai-desc-mock__after {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: 14px;
  line-height: 1.4;
  color: var(--ink);
  text-align: center;
  padding: 8px 14px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px -4px rgba(40,28,20,0.15);
  border: 1px solid var(--line);
  position: relative;
}
.ai-spark {
  color: var(--mustard);
  font-style: normal;
  font-size: 12px;
  margin-right: 4px;
}
.ai-spark--end { margin-right: 0; margin-left: 4px; }

/* ── Custom domain ── */
.feat-card--domain .feat-card__art {
  background: linear-gradient(135deg, #e6f8f6 0%, #fdf6ee 100%);
  flex-direction: column; gap: 10px;
  padding: 18px 24px;
}
.domain-bar {
  width: 100%; max-width: 320px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 22px -8px rgba(40,28,20,0.2);
  border: 1px solid var(--line);
}
.domain-bar__chrome {
  display: flex; gap: 5px;
  padding: 8px 12px;
  background: #f6ecdd;
  border-bottom: 1px solid var(--line);
}
.domain-bar__chrome span {
  width: 8px; height: 8px; border-radius: 50%;
  background: #d8c8ad;
}
.domain-bar__chrome span:nth-child(1) { background: #ed3254; }
.domain-bar__chrome span:nth-child(2) { background: #ffc857; }
.domain-bar__chrome span:nth-child(3) { background: #21b7aa; }
.domain-bar__url {
  display: flex; align-items: center; gap: 7px;
  padding: 10px 14px;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  color: var(--muted);
}
.domain-bar__host b {
  color: var(--ink);
  font-weight: 700;
}
.domain-bar__caption {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.03em;
}

/* ── Dish tags ── */
.feat-card--tags .feat-card__art {
  background: linear-gradient(135deg, #eef7ec 0%, #fdf6ee 100%);
  padding: 18px 22px;
}
.tag-dish {
  width: 100%; max-width: 260px;
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 8px 22px -8px rgba(40,28,20,0.18);
  border: 1px solid var(--line);
}
.tag-dish__row {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.tag-dish__name {
  font-weight: 600; font-size: 14px; color: var(--ink);
}
.tag-dish__price {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px; color: var(--muted);
}
.tag-dish__tags {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.dish-tag {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px; font-weight: 600;
  border: 1px solid transparent;
}
.dish-tag--veg  { background: #e6f3e2; color: #3f7a35; }
.dish-tag--new  { background: #e2f4f2; color: #1a8a80; }
.dish-tag--chef { background: var(--ink); color: #fff; }
.dish-tag--spicy{ background: #fde3e2; color: #c8323f; }
.dish-tag--pop  { background: #fdf0d2; color: #a9791b; }

/* Responsive */
@media (max-width: 960px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-card--translation,
  .feat-card--qr,
  .feat-card--allergens,
  .feat-card--ai,
  .feat-card--domain,
  .feat-card--tags { grid-column: span 1; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; gap: 16px; }
  .feat-card { padding: 22px 20px; }
}

/* =========== COOKIE BANNER =========== */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(660px, calc(100vw - 32px));
  z-index: 9000;
  transition: opacity .3s, transform .3s;
}
.cookie-banner.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(12px);
}

.cookie-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(43,43,43,0.11);
}

/* Compact bar */
.cookie-banner__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px 14px 18px;
}
.cookie-banner__bar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.cookie-banner__icon {
  flex-shrink: 0;
  color: var(--muted);
  display: flex;
  align-items: center;
}
.cookie-banner__text {
  margin: 0;
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.45;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cookie-banner__text-link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: 13.5px;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}
.cookie-banner__text-link:hover { color: var(--red); }

.cookie-banner__bar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-banner__btn {
  border: none;
  border-radius: 100px;
  font-family: "Geist", sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 16px;
  transition: background .15s, color .15s, opacity .15s;
  white-space: nowrap;
}
.cookie-banner__btn--ghost {
  background: transparent;
  color: var(--ink-soft);
  border: 1px solid var(--line);
}
.cookie-banner__btn--ghost:hover {
  background: var(--cream);
  color: var(--ink);
}
.cookie-banner__btn--accept {
  background: var(--ink);
  color: #fff;
}
.cookie-banner__btn--accept:hover {
  background: var(--red);
}

/* Detail panel */
.cookie-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.4,0,.2,1);
  border-radius: 0 0 16px 16px;
}
.cookie-panel.is-open {
  max-height: 600px;
}

.cookie-panel__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px 14px;
  border-top: 1px solid var(--line);
}
.cookie-panel__title {
  font-family: "Instrument Serif", serif;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 3px;
}
.cookie-panel__subtitle {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
  max-width: 460px;
}
.cookie-panel__close {
  flex-shrink: 0;
  background: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--muted);
  transition: color .15s, border-color .15s;
}
.cookie-panel__close:hover { color: var(--ink); border-color: var(--ink); }

.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 20px;
}
.cookie-cat {
  padding: 13px 0;
  border-top: 1px solid var(--line);
}
.cookie-cat:first-child { border-top: none; }
.cookie-cat__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cookie-cat__info { min-width: 0; }
.cookie-cat__name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.cookie-cat__desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}
.cookie-cat__required {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--teal);
  background: rgba(33,183,170,.08);
  padding: 3px 9px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}
.cookie-cat__toggle-wrap { flex-shrink: 0; }

/* Toggle switch */
.cookie-toggle {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.cookie-toggle__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle__track {
  display: block;
  width: 36px;
  height: 20px;
  background: var(--line);
  border-radius: 100px;
  position: relative;
  transition: background .2s;
  flex-shrink: 0;
}
.cookie-toggle__track::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.18);
  transition: transform .2s cubic-bezier(.4,0,.2,1);
}
.cookie-toggle__input:checked + .cookie-toggle__track {
  background: var(--ink);
}
.cookie-toggle__input:checked + .cookie-toggle__track::after {
  transform: translateX(16px);
}

.cookie-panel__footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  padding: 14px 20px 16px;
  border-top: 1px solid var(--line);
  margin-top: 4px;
}

@media (max-width: 520px) {
  .cookie-banner__text { white-space: normal; }
  .cookie-banner__bar { flex-direction: column; align-items: flex-start; gap: 12px; }
  .cookie-banner__bar-actions { width: 100%; justify-content: flex-end; }
}

/* =========== Pricing — subgrid row alignment (desktop ≥ 681px) =========== */
/* Each card spans 6 shared row tracks so name / price / per / list / cta / note
   all line up horizontally across the three columns.                          */
@media (min-width: 681px) {
  .pricing {
    align-items: start;
    grid-template-rows: repeat(6, auto);
    row-gap: 0; /* spacing comes from element margins, not track gaps */
  }
  .price-card {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 6;
    align-content: start;
    padding-top: 48px; /* normalise — same badge-area space on every card */
  }
}

/* Allow tooltip badges to be interactive even on the coming-soon card */
.price-card--soon .feat-info { pointer-events: all; }

/* =========== Section CTAs =========== */
.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 52px;
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
  padding: 13px 26px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: border-color .2s, color .2s;
}
.btn-outline:hover { border-color: var(--ink); color: var(--red); }

/* =========== Pricing carousel arrows — hidden by default =========== */
.pricing-track-wrap {
  position: relative;
}
.pricing-arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--line);
  box-shadow: 0 4px 16px rgba(43,43,43,0.13);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--ink);
  transition: opacity .22s ease, transform .22s cubic-bezier(.4,1.2,.4,1), box-shadow .22s;
}
.pricing-arrow--prev { left:  8px; }
.pricing-arrow--next { right: 8px; }
.pricing-arrow:hover {
  box-shadow: 0 6px 22px rgba(43,43,43,0.2);
  transform: translateY(-50%) scale(1.1);
}
.pricing-arrow.is-hidden {
  opacity: 0;
  pointer-events: none;
}

/* =========== Pricing carousel (phones ≤ 680px) =========== */
@media (max-width: 680px) {
  /* Turn the grid into a horizontal scroll-snap track */
  .pricing {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 14px;
    /* bleed to viewport edges, reclaim section side-padding */
    margin-left: -20px;
    margin-right: -20px;
    /* side padding creates the peek on first/last card */
    padding: 20px 9% 28px;
    /* reset any grid column overrides */
    grid-template-columns: unset;
    margin-top: 40px;
  }
  .pricing::-webkit-scrollbar { display: none; }

  .price-card {
    /* each card = ~86% viewport so only a small sliver of adjacent cards peek */
    flex: 0 0 86%;
    scroll-snap-align: center;
    min-width: 0;
  }

  /* kill the desktop lift on the featured card */
  .price-card--featured { transform: none; padding-top: 48px; }

  /* show pagination dots + arrows */
  .pricing-dots { display: flex; }
  .pricing-arrow { display: flex; }
}
