/* ============================================================================
   Mercatus landing — faithful port of the exported "Crush" DesignCode page.
   Self-contained, class-based. Loaded ONLY by app/page.tsx (root landing),
   so the shared /assets/style.css (static SEO cluster) is untouched.
   Fonts (Archivo display + Inter body) loaded via <link> in app/page.tsx.
   ========================================================================== */

:root {
  --ink-900:#1c1c1c; --ink-800:#343434; --ink-700:#4a4a4a; --ink-600:#5f5f66;
  --gray-500:#6f6f78; --gray-400:#9a9aa2; --gray-300:#c4c4ca; --gray-200:#ececee;
  --gray-150:#f2f2f3; --gray-100:#f5f5f5; --white:#ffffff;
  --purple-700:#7e22ce; --purple-600:#9333ea; --purple-500:#a855f7;
  --purple-300:#ddbcfc; --purple-200:#e9d5ff; --purple-100:#ede4f5; --purple-50:#faf5ff;
  --lime-500:#a3c644; --lime-400:#b4d67e; --lime-300:#d6e493; --lime-200:#e9f1b5; --lime-100:#eef2cb; --lime-50:#f1f3c8;
  --blue-600:#2f6ee0; --blue-500:#4a80ee; --blue-100:#dfebf3; --blue-50:#eff6ff;
  --green-500:#22c55e; --green-100:#d1fae5; --green-50:#ecfdf5;
  --red-300:#ff6d6d; --pink-400:#fc628a; --mint-100:#e7ebc7;

  /* --text-subtle used to be --gray-400 (#9a9aa2), only 2.8:1 on white — it failed
     WCAG AA on every 11–13px label (stat labels, footer heads, price notes). */
  --text-heading:var(--ink-800); --text-body:var(--gray-500); --text-subtle:#74747d;
  --surface-page:var(--gray-100); --surface-card:var(--white); --surface-raised:#f9fafb;
  --border-hairline:var(--gray-200); --border-card:rgba(0,0,0,.04); --border-accent:var(--purple-300);
  --border-positive:var(--lime-400);
  --action-primary-bg:var(--ink-800); --action-primary-bg-hover:var(--ink-900); --action-primary-fg:var(--white);
  --action-secondary-bg:var(--white); --action-secondary-fg:var(--ink-800);
  --accent:var(--purple-500);
  --sticker-lime-bg:var(--lime-200); --sticker-lime-border:var(--lime-400);

  --font-display:"Archivo","Helvetica Neue",Helvetica,Arial,sans-serif;
  --font-body:"Inter","Helvetica Neue",Helvetica,Arial,sans-serif;
  --weight-regular:400; --weight-medium:500; --weight-semibold:600; --weight-bold:700; --weight-extrabold:800;
  --track-display:-0.02em; --track-tight:-0.01em; --track-caps:0.06em;

  --text-lead:19px; --text-body-size:15px; --text-sm:14px; --text-xs:13px; --text-micro:11px;
  --container:1180px; --container-narrow:760px;

  --radius-xs:6px; --radius-sm:8px; --radius-md:12px; --radius-lg:16px; --radius-xl:20px;
  --radius-2xl:28px; --radius-pill:999px; --radius-card:14px; --radius-nav:999px; --radius-sticker:4px;

  --shadow-hairline:0 1px 2px rgba(16,16,20,.04);
  --shadow-card:0 2px 10px rgba(16,16,20,.05),0 1px 2px rgba(16,16,20,.03);
  --shadow-raised:0 8px 24px rgba(16,16,20,.07);
  --shadow-nav:0 6px 24px rgba(16,16,20,.08);
  --shadow-float:0 18px 50px rgba(16,16,20,.12);
  --shadow-sticker:0 2px 6px rgba(16,16,20,.10);

  --ease-out:cubic-bezier(.22,.61,.36,1); --ease-in-out:cubic-bezier(.4,0,.2,1);
  --dur-fast:120ms; --dur-base:200ms; --dur-slow:400ms; --dur-reveal:700ms;
  --hover-lift:translateY(-2px);
}

/* ---- root wrapper (scopes the aurora field to the landing only) ---- */
.lp {
  position: relative; isolation: isolate; min-height: 100vh; overflow-x: clip; /* clip (not hidden) so the sticky nav keeps sticking to the viewport */
  background: var(--surface-page);
  font-family: var(--font-body); color: var(--text-body); font-size: var(--text-body-size);
  line-height: 1.6; -webkit-font-smoothing: antialiased;
}
/* Scrolling aurora field: soft blobs spread down the whole page (varies as you
   scroll), sitting behind all content. lime / lilac / soft pink alternate. */
.lp-aurora { position: absolute; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.lp-aurora i { position: absolute; display: block; width: 62vw; height: 80vh; }
.lp-aurora .b1  { top: -6%; right: -12%; background: radial-gradient(rgba(226,215,243,.62) 0%, transparent 70%); }
.lp-aurora .b2  { top:  2%; left:  -14%; background: radial-gradient(rgba(233,240,150,.55) 0%, transparent 70%); }
.lp-aurora .b3  { top: 10%; right: -14%; background: radial-gradient(rgba(255,214,227,.55) 0%, transparent 70%); }
.lp-aurora .b4  { top: 18%; left:  -12%; background: radial-gradient(rgba(226,215,243,.55) 0%, transparent 70%); }
.lp-aurora .b5  { top: 26%; right: -12%; background: radial-gradient(rgba(233,240,150,.50) 0%, transparent 70%); }
.lp-aurora .b6  { top: 34%; left:  -14%; background: radial-gradient(rgba(255,214,227,.58) 0%, transparent 70%); }
.lp-aurora .b7  { top: 42%; right: -12%; background: radial-gradient(rgba(226,215,243,.55) 0%, transparent 70%); }
.lp-aurora .b8  { top: 50%; left:  -12%; background: radial-gradient(rgba(233,240,150,.50) 0%, transparent 70%); }
.lp-aurora .b9  { top: 58%; right: -14%; background: radial-gradient(rgba(255,214,227,.56) 0%, transparent 70%); }
.lp-aurora .b10 { top: 66%; left:  -12%; background: radial-gradient(rgba(226,215,243,.55) 0%, transparent 70%); }
.lp-aurora .b11 { top: 74%; right: -12%; background: radial-gradient(rgba(233,240,150,.50) 0%, transparent 70%); }
.lp-aurora .b12 { top: 82%; left:  -14%; background: radial-gradient(rgba(255,214,227,.56) 0%, transparent 70%); }
.lp-aurora .b13 { top: 90%; right: -12%; background: radial-gradient(rgba(226,215,243,.55) 0%, transparent 70%); }
.lp *, .lp *::before, .lp *::after { box-sizing: border-box; }
.lp h1, .lp h2, .lp h3, .lp h4 { margin: 0; }
.lp p { margin: 0; }
.lp a { color: var(--ink-800); text-decoration: none; }
.lp img { display: block; max-width: 100%; }
.lp :focus-visible { outline: 2px solid var(--purple-500); outline-offset: 3px; border-radius: 4px; }
html { scroll-behavior: smooth; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(72px, 9vw, 120px) 0; }
/* Sticky nav is ~64px tall — keep in-page anchors from landing under it. */
.lp [id] { scroll-margin-top: 88px; }

/* section heads */
.sec-head { text-align: center; display: flex; flex-direction: column; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 7px; align-self: flex-start;
  border: 1px solid var(--gray-300); border-radius: var(--radius-pill); padding: 6px 14px;
  font-size: var(--text-xs); font-weight: var(--weight-medium); color: var(--gray-500);
}
.sec-head .eyebrow { align-self: center; }
.sec-head h2 { margin-top: 18px; font-family: var(--font-display); font-weight: 800; font-size: clamp(28px, 3.6vw, 44px); line-height: 1.08; letter-spacing: -0.025em; color: var(--ink-900); }
.sec-head p { margin-top: 16px; max-width: 48ch; font-size: var(--text-lead); line-height: 1.55; color: var(--text-body); }
.sec-head--how h2 { font-size: clamp(30px, 4vw, 52px); line-height: 1.06; letter-spacing: -0.03em; }
.sec-head--price h2 { max-width: 24ch; font-size: clamp(28px, 3.8vw, 48px); line-height: 1.06; letter-spacing: -0.03em; }
.sec-head--tight h2 { font-size: clamp(26px, 3.2vw, 40px); line-height: 1.1; }

/* ============================== BUTTONS ============================== */
.btn { display: inline-flex; align-items: center; gap: 8px; border-radius: var(--radius-pill); font-family: var(--font-body); font-weight: var(--weight-semibold); letter-spacing: var(--track-tight); cursor: pointer; border: 1px solid transparent; white-space: nowrap; text-decoration: none; transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), transform var(--dur-base) var(--ease-out), opacity var(--dur-fast) var(--ease-out); }
.btn-ink { background: var(--action-primary-bg); color: var(--action-primary-fg); box-shadow: var(--shadow-card); padding: 11px 22px; font-size: var(--text-sm); }
.btn-ink:hover { background: var(--action-primary-bg-hover); transform: var(--hover-lift); }
.btn-ghost { background: var(--action-secondary-bg); color: var(--action-secondary-fg); border-color: var(--border-hairline); box-shadow: var(--shadow-hairline); padding: 11px 22px; font-size: var(--text-sm); }
.btn-ghost:hover { background: var(--ink-900); color: var(--white); }
.btn-lg { padding: 16px 32px; font-size: 17px; box-shadow: var(--shadow-raised); }
.btn-ink.btn-lg:hover { transform: translateY(-3px); }
.btn-ghost.btn-lg { padding: 15px 30px; font-size: 16px; box-shadow: var(--shadow-hairline); }
/* Buttons set their own text color — beat the generic `.lp a` color (which is
   more specific than a bare `.btn-*` class and would otherwise win). */
.lp .btn-ink { color: var(--action-primary-fg); }
.lp .btn-ghost { color: var(--action-secondary-fg); }
.lp .btn-ghost:hover { color: var(--white); }

/* ============================== NAV ============================== */
.nav { position: sticky; top: 16px; z-index: 40; display: flex; justify-content: center; pointer-events: none; padding: 0 16px; }
.nav-pill {
  pointer-events: auto; display: flex; align-items: center; gap: clamp(16px, 3vw, 34px);
  background: rgba(255,255,255,.82); backdrop-filter: blur(18px) saturate(1.4); -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(255,255,255,.6); border-radius: var(--radius-nav); box-shadow: var(--shadow-nav);
  padding: 10px 12px 10px 22px; max-width: 100%;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 24px; width: auto; }
.nav-links { display: none; align-items: center; gap: 22px; }
.nav-link { font-size: var(--text-sm); font-weight: var(--weight-medium); color: var(--ink-800); opacity: .82; white-space: nowrap; transition: opacity var(--dur-fast) var(--ease-out); }
.nav-link:hover { opacity: 1; }
/* Below 900px the whole link row collapses — keep Log in reachable there, or
   returning customers have no way into their account from the landing page. */
.nav-login { margin-left: auto; font-size: var(--text-sm); font-weight: var(--weight-medium); color: var(--ink-800); opacity: .82; white-space: nowrap; }
@media (min-width: 900px) { .nav-links { display: flex; } .nav-login { display: none; } }

/* ============================== HERO ============================== */
.hero { position: relative; overflow: hidden; padding: clamp(56px, 7vw, 96px) 24px clamp(56px, 7vw, 88px); }
.hero-aurora { position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: min(920px, 115vw); height: 540px; pointer-events: none; filter: blur(80px); opacity: .5; animation: mkt-drift 18s var(--ease-in-out) infinite; }
.hero-aurora i { position: absolute; border-radius: 50%; display: block; }
.hero-aurora .a1 { left: 6%; top: 22%; width: 46%; height: 56%; background: rgba(233,240,150,.9); }
.hero-aurora .a2 { right: 4%; top: 8%; width: 48%; height: 60%; background: rgba(226,215,243,.95); }
.hero-aurora .a3 { left: 32%; bottom: -6%; width: 40%; height: 44%; background: rgba(255,222,232,.8); }
.hero-inner { position: relative; max-width: var(--container); margin: 0 auto; display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero h1 { max-width: 19ch; font-family: var(--font-display); font-weight: 900; font-size: clamp(38px, 5.8vw, 68px); line-height: 1.04; letter-spacing: -0.03em; color: var(--ink-900); text-wrap: balance; }
.hero h1 .grad { background: linear-gradient(100deg, var(--gray-500) 0%, var(--ink-700) 55%, var(--gray-500) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: var(--gray-500); }
.hero-sub { margin-top: 24px; max-width: 64ch; font-size: clamp(16px, 1.35vw, 19px); line-height: 1.6; color: var(--text-body); }
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; align-items: center; }
.hero-chips { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.hero-social { margin-top: 34px; }

/* ---- sticker / chip / social pill / badge ---- */
.sticker { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: var(--radius-sticker); box-shadow: var(--shadow-sticker); font-family: var(--font-display); font-weight: var(--weight-bold); font-size: 16px; letter-spacing: var(--track-tight); color: var(--ink-800); line-height: 1.15; transform: rotate(-5deg); }
.sticker-lime { background: var(--sticker-lime-bg); border: 1.5px solid var(--sticker-lime-border); }
.sticker-purple { background: var(--sticker-purple-bg); border: 1.5px solid var(--sticker-purple-border); }
.chip { display: inline-flex; align-items: center; gap: 7px; border-radius: var(--radius-pill); padding: 7px 14px; font-size: var(--text-xs); font-weight: var(--weight-medium); color: var(--ink-700); }
.chip .emoji { font-size: 14px; line-height: 1; }
.chip-mint { background: var(--mint-100); }
.chip-lilac { background: var(--purple-100); }
.chip-blue { background: var(--blue-100); }
.chip-neutral { background: var(--gray-150); }
.social-pill { display: inline-flex; align-items: center; gap: 12px; background: var(--surface-card); border-radius: var(--radius-pill); box-shadow: var(--shadow-nav); padding: 7px 16px 7px 10px; }
.social-pill .avs { display: flex; }
.social-pill .avs img { width: 24px; height: 24px; border-radius: 50%; object-fit: cover; border: 2px solid var(--surface-card); margin-left: -8px; background: var(--gray-200); }
.social-pill .avs img:first-child { margin-left: 0; }
.social-pill .txt { font-size: var(--text-sm); font-weight: var(--weight-semibold); color: var(--text-heading); display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.social-pill .stars { color: #F5B544; letter-spacing: 1px; }
.badge { display: inline-flex; align-items: center; justify-content: center; padding: 3px 8px; border-radius: var(--radius-xs); font-size: 10px; font-weight: var(--weight-bold); letter-spacing: var(--track-caps); text-transform: uppercase; background: var(--purple-100); color: var(--purple-700); }

/* ---- checklist ---- */
.checklist { list-style: none; margin: 0; padding: 0; }
.check-item { display: flex; gap: 12px; align-items: flex-start; padding: 9px 0; }
.check-item::before {
  content: ""; flex-shrink: 0; width: 20px; height: 20px; border-radius: var(--radius-xs); margin-top: 1px;
  background: var(--ink-900) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/12px no-repeat;
}
.check-item span { font-size: var(--text-body-size); line-height: 22px; color: var(--text-body); }

/* ======================= TEMPLATE GALLERY ======================= */
.gal-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 20px; }
.gal-head h2 { margin-top: 18px; font-family: var(--font-display); font-weight: var(--weight-extrabold); font-size: clamp(28px, 3.6vw, 44px); line-height: 1.08; letter-spacing: -0.025em; color: var(--ink-900); max-width: 22ch; }
.gal-head p { max-width: 34ch; font-size: var(--text-body-size); line-height: 1.6; color: var(--text-body); }
.gal-mask { margin-top: 44px; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent); mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent); }
.gal-track { display: flex; width: max-content; gap: 20px; animation: mkt-marquee 46s linear infinite; }
.gal-fig { margin: 0; position: relative; width: clamp(210px, 22vw, 286px); border-radius: var(--radius-card); overflow: hidden; background: var(--surface-card); box-shadow: var(--shadow-card); transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out); }
.gal-fig:hover { transform: translateY(-6px) scale(1.02); box-shadow: var(--shadow-float); }
.gal-fig .ph { width: 100%; aspect-ratio: 4/5; object-fit: cover; background: var(--gray-200); }
.gal-cap { position: absolute; left: 12px; bottom: 12px; display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.9); backdrop-filter: blur(8px); border-radius: var(--radius-pill); padding: 6px 13px; font-size: var(--text-xs); font-weight: var(--weight-semibold); color: var(--ink-800); }

/* ============================== STATS ============================== */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 36px 24px; }
.stat { text-align: center; }
.stat-num { font-family: var(--font-display); font-weight: var(--weight-extrabold); font-size: clamp(34px, 4vw, 46px); line-height: 1; letter-spacing: -0.03em; color: var(--ink-900); }
.stat-label { margin-top: 10px; font-size: var(--text-sm); color: var(--text-subtle); }

/* ========================== BEFORE / AFTER ========================== */
.ba-split { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(32px, 5vw, 64px); align-items: center; }
.ba-copy h2 { margin-top: 18px; font-family: var(--font-display); font-weight: var(--weight-extrabold); font-size: clamp(28px, 3.6vw, 44px); line-height: 1.08; letter-spacing: -0.025em; color: var(--ink-900); }
.ba-copy p { margin-top: 18px; max-width: 46ch; font-size: var(--text-lead); line-height: 1.55; color: var(--text-body); }
.ba-copy .checklist { margin-top: 26px; }
.ba { position: relative; border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-float); background: var(--gray-200); touch-action: none; cursor: ew-resize; user-select: none; }
/* The range input is visually hidden (opacity ~0), so its own focus ring is
   invisible — surface keyboard focus on the frame instead. */
.ba:focus-within { outline: 2px solid var(--purple-500); outline-offset: 3px; }
.ba > img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.ba-clip { position: absolute; inset: 0; clip-path: inset(0 0 0 50%); }
.ba-clip img { width: 100%; height: 100%; object-fit: cover; }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: rgba(255,255,255,.95); box-shadow: 0 0 0 1px rgba(16,16,20,.12); }
.ba-handle span { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 44px; height: 44px; border-radius: 50%; background: var(--white); box-shadow: var(--shadow-nav); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: var(--weight-bold); color: var(--ink-800); }
.ba-tag { position: absolute; top: 14px; border-radius: var(--radius-pill); padding: 6px 13px; font-size: var(--text-xs); font-weight: var(--weight-semibold); }
.ba-tag-before { left: 14px; background: rgba(28,28,28,.72); color: var(--white); }
.ba-tag-after { right: 14px; background: rgba(255,255,255,.92); color: var(--ink-800); }
.ba-range { position: absolute; left: 12px; right: 12px; bottom: 12px; width: calc(100% - 24px); accent-color: var(--purple-500); opacity: .001; height: 32px; }

/* ============================ HOW IT WORKS ============================ */
.steps-grid { margin-top: clamp(40px, 5vw, 64px); display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.step { display: flex; flex-direction: column; gap: 20px; background: var(--surface-card); border: 1px solid var(--border-card); border-radius: var(--radius-card); box-shadow: var(--shadow-card); padding: 26px; }
.step-top { display: flex; align-items: baseline; gap: 14px; }
.step-n { font-family: var(--font-display); font-weight: var(--weight-extrabold); font-size: 38px; line-height: 1; letter-spacing: -0.03em; color: var(--purple-300); }
.step-top h3 { font-family: var(--font-display); font-weight: var(--weight-bold); font-size: 20px; letter-spacing: var(--track-tight); color: var(--text-heading); }
/* Square, because the thumbs are the real 1:1 output — a 16/10 crop cut the
   badge off the template and the stat row off the finished ad. */
.step-thumb { width: 100%; aspect-ratio: 1/1; border-radius: var(--radius-sm); object-fit: cover; background: var(--gray-200); }
.step p { font-size: var(--text-body-size); line-height: 1.6; color: var(--text-body); }

/* ============================== NICHE BAR ============================== */
.niche-bar { margin-top: 36px; background: var(--surface-card); border: 1px solid var(--border-card); border-radius: var(--radius-card); box-shadow: var(--shadow-card); padding: 24px; display: flex; flex-wrap: wrap; align-items: center; gap: 14px; justify-content: center; }
.niche-bar > .lbl { font-size: var(--text-sm); font-weight: var(--weight-semibold); color: var(--text-heading); }

/* ============================== REVIEWS ============================== */
/* The collapsed list is faded out with a MASK, not a solid gradient overlay:
   the page background is now a coloured aurora field, so an opaque #f5f5f5
   scrim painted a visible grey slab across it. */
.rev-wrap { position: relative; margin-top: clamp(36px, 4vw, 52px); overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, #000 58%, transparent 99%);
  mask-image: linear-gradient(to bottom, #000 58%, transparent 99%); }
.rev-wrap.open { -webkit-mask-image: none; mask-image: none; }
.rev-cols { columns: 3 320px; column-gap: 24px; }
.rev-card { break-inside: avoid; margin-bottom: 24px; background: var(--surface-card); border: 1px solid var(--border-card); border-radius: var(--radius-card); box-shadow: var(--shadow-card); padding: 22px; }
.rev-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.rev-stars { color: #F5B544; font-size: 14px; letter-spacing: 2px; }
.rev-date { font-size: var(--text-xs); color: var(--text-subtle); }
.rev-quote { margin-top: 14px; font-size: var(--text-body-size); line-height: 1.65; color: var(--ink-700); }
.rev-photo { margin-top: 16px; width: 100%; aspect-ratio: 4/3; border-radius: var(--radius-sm); object-fit: cover; background: var(--gray-200); }
.rev-author { margin-top: 18px; display: flex; align-items: center; gap: 10px; }
.rev-avatar { width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0; object-fit: cover; background: var(--gray-200); }
.rev-name { font-size: var(--text-sm); font-weight: var(--weight-bold); color: var(--text-heading); }
.rev-role { font-size: var(--text-xs); color: var(--text-subtle); }
.rev-toggle-wrap { margin-top: 28px; display: flex; justify-content: center; }

/* ============================ COMPARISON ============================ */
.cmp2 { margin-top: 40px; max-width: 940px; margin-left: auto; margin-right: auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; align-items: stretch; text-align: left; }
.cmp2-card { position: relative; background: var(--surface-card); border: 1px solid var(--border-card); border-radius: var(--radius-card); box-shadow: var(--shadow-card); padding: 26px 24px; }
.cmp2-card.best { border: 1.5px solid var(--lime-400); background: var(--lime-50); box-shadow: var(--shadow-raised); }
.cmp2-badge { position: absolute; top: -11px; left: 24px; background: var(--ink-900); color: var(--white); font-size: 10px; font-weight: var(--weight-bold); letter-spacing: var(--track-caps); text-transform: uppercase; padding: 4px 11px; border-radius: var(--radius-pill); }
.cmp2-name { font-family: var(--font-display); font-weight: var(--weight-bold); font-size: 19px; letter-spacing: var(--track-tight); color: var(--ink-900); }
.cmp2-list { list-style: none; margin: 14px 0 0; padding: 0; }
.cmp2-list li { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; padding: 11px 0; border-top: 1px solid var(--border-hairline); }
.cmp2-k { font-size: var(--text-xs); color: var(--text-subtle); }
.cmp2-v { font-size: var(--text-sm); font-weight: var(--weight-semibold); color: var(--gray-500); text-align: right; }
.cmp2-card.best .cmp2-list li { border-top-color: rgba(0,0,0,.06); }
.cmp2-card.best .cmp2-k { color: var(--ink-700); }
.cmp2-card.best .cmp2-v { color: var(--ink-900); font-weight: var(--weight-bold); }

/* ============================== PRICING ============================== */
.price-grid { margin-top: clamp(40px, 5vw, 60px); display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; max-width: 900px; margin-left: auto; margin-right: auto; align-items: stretch; text-align: left; }
.price-card { position: relative; background: var(--surface-card); border: 1px solid var(--border-hairline); border-radius: var(--radius-card); box-shadow: var(--shadow-card); padding: 30px; display: flex; flex-direction: column; gap: 20px; }
.price-card.featured { border: 1px solid var(--border-accent); box-shadow: var(--shadow-float); }
.price-badge { position: absolute; top: -13px; left: 30px; }
.price-card h3 { font-family: var(--font-display); font-weight: var(--weight-bold); font-size: 20px; letter-spacing: var(--track-tight); color: var(--text-heading); }
.price-amt { margin-top: 16px; display: flex; align-items: flex-end; gap: 10px; }
.price-amt b { font-family: var(--font-display); font-weight: var(--weight-extrabold); font-size: 44px; line-height: 1; letter-spacing: -0.03em; color: var(--ink-900); }
.price-amt span { font-size: var(--text-sm); color: var(--text-subtle); padding-bottom: 4px; }
.price-per { margin-top: 10px; font-size: var(--text-sm); color: var(--text-body); }
.price-per strong { color: var(--ink-800); }
.price-list { margin: 0; padding: 0; border-top: 1px solid var(--border-hairline); padding-top: 8px; }
.price-note { font-size: var(--text-xs); color: var(--text-subtle); text-align: center; }
/* PricingButton renders <button class="pricing-btn"> */
.pricing-btn { margin-top: auto; display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; border-radius: var(--radius-pill); font-family: var(--font-body); font-weight: var(--weight-semibold); font-size: 15px; cursor: pointer; border: 1px solid transparent; transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), transform var(--dur-base) var(--ease-out); }
.price-card:not(.featured) .pricing-btn { background: var(--action-secondary-bg); color: var(--action-secondary-fg); border-color: var(--ink-900); padding: 15px 24px; }
.price-card:not(.featured) .pricing-btn:hover { background: var(--ink-900); color: var(--white); }
.price-card.featured .pricing-btn { background: var(--action-primary-bg); color: var(--action-primary-fg); box-shadow: var(--shadow-card); padding: 16px 24px; }
.price-card.featured .pricing-btn:hover { background: var(--action-primary-bg-hover); transform: var(--hover-lift); }
.guarantee { margin: 36px auto 0; max-width: 640px; display: flex; gap: 16px; align-items: flex-start; background: var(--surface-raised); border: 1px solid var(--border-positive); border-radius: var(--radius-card); padding: 20px 22px; }
.guarantee .emoji { font-size: 20px; line-height: 1.2; }
.guarantee p { font-size: var(--text-sm); line-height: 1.6; color: var(--text-body); }
.guarantee strong { color: var(--text-heading); }

/* ============================ FINAL CTA ============================ */
/* Frosted, not solid: the aurora blobs behind the card show through and get
   blurred by it. Alpha stays high enough that the copy still reads if a
   browser drops backdrop-filter. */
.cta-card { max-width: var(--container-narrow); margin: 0 auto; position: relative; background: rgba(255,255,255,.5); -webkit-backdrop-filter: blur(22px) saturate(1.5); backdrop-filter: blur(22px) saturate(1.5); border: 1px solid rgba(255,255,255,.6); border-radius: var(--radius-2xl); box-shadow: var(--shadow-float); padding: clamp(36px, 5vw, 64px); text-align: center; overflow: hidden; }
.cta-card .glow { position: absolute; left: -10%; bottom: -40%; width: 60%; height: 90%; border-radius: 50%; background: rgba(233,240,150,.55); filter: blur(60px); }
.cta-card .inner { position: relative; display: flex; flex-direction: column; align-items: center; }
.cta-card h2 { max-width: 26ch; font-family: var(--font-display); font-weight: var(--weight-extrabold); font-size: clamp(28px, 3.8vw, 46px); line-height: 1.08; letter-spacing: -0.03em; color: var(--ink-900); text-wrap: balance; }
.cta-card p { margin-top: 20px; max-width: 52ch; font-size: var(--text-lead); line-height: 1.55; color: var(--text-body); }
.cta-card .note { margin-top: 18px; font-size: var(--text-xs); color: var(--text-subtle); }

/* ============================== FAQ ============================== */
.faq-list { margin-top: 40px; border-top: 1px solid var(--border-hairline); }
.faq-item { border-bottom: 1px solid var(--border-hairline); }
.faq-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; background: transparent; border: 0; padding: 22px 4px; text-align: left; font-family: var(--font-display); font-weight: var(--weight-bold); font-size: clamp(16px, 1.4vw, 19px); letter-spacing: var(--track-tight); color: var(--text-heading); transition: opacity var(--dur-fast) var(--ease-out); }
.faq-btn:hover { opacity: .7; }
.faq-sign { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--surface-raised); border: 1px solid var(--border-hairline); display: flex; align-items: center; justify-content: center; font-family: var(--font-body); font-size: 16px; color: var(--ink-700); }
.faq-ans { padding: 0 44px 24px 4px; font-size: var(--text-body-size); line-height: 1.65; color: var(--text-body); }

/* ============================== FOOTER ============================== */
.foot { border-top: 1px solid var(--border-hairline); padding: clamp(56px, 6vw, 80px) 0 40px; }
.foot-grid { max-width: var(--container); margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 40px 24px; }
.foot-brand { display: flex; flex-direction: column; gap: 16px; max-width: 30ch; }
.foot-logo-img { height: 26px; width: auto; align-self: flex-start; }
.foot-brand p { font-size: var(--text-sm); line-height: 1.6; color: var(--text-body); }
.foot-brand .loc { font-size: var(--text-xs); color: var(--text-subtle); }
.foot-col { display: flex; flex-direction: column; gap: 12px; }
.foot-col .h { font-size: var(--text-micro); font-weight: var(--weight-bold); letter-spacing: var(--track-caps); text-transform: uppercase; color: var(--text-subtle); }
.foot-col a { font-size: var(--text-sm); color: var(--ink-700); transition: opacity var(--dur-fast) var(--ease-out); }
.foot-col a:hover { opacity: .62; }
.foot-bottom { max-width: var(--container); margin: 40px auto 0; padding: 22px 24px 0; border-top: 1px solid var(--border-hairline); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: var(--text-xs); color: var(--text-subtle); }

/* ============================ STICKY MINI CTA ============================ */
/* `visibility` (not just the off-screen transform) so the hidden bar can't be
   reached with Tab — it carries aria-hidden while it is out of view. */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; display: flex; justify-content: center; padding: 14px 16px calc(14px + env(safe-area-inset-bottom)); pointer-events: none; transform: translateY(140%); visibility: hidden; transition: transform var(--dur-slow) var(--ease-out), visibility 0s linear var(--dur-slow); }
.sticky-cta.show { transform: translateY(0); visibility: visible; transition: transform var(--dur-slow) var(--ease-out), visibility 0s; }
.sticky-cta .bar { pointer-events: auto; display: flex; align-items: center; gap: 16px; background: rgba(255,255,255,.9); backdrop-filter: blur(18px) saturate(1.4); -webkit-backdrop-filter: blur(18px) saturate(1.4); border: 1px solid rgba(255,255,255,.6); border-radius: var(--radius-pill); box-shadow: var(--shadow-float); padding: 10px 12px 10px 22px; max-width: 100%; }
.sticky-cta .bar > span { font-size: var(--text-sm); font-weight: var(--weight-semibold); color: var(--text-heading); white-space: nowrap; }
/* The chat widget sits bottom-right (fixed, z-50) — on phones the full-width
   bar landed underneath it, so shrink to a pill and keep left of the bubble. */
@media (max-width: 720px) {
  .sticky-cta { justify-content: flex-start; padding-right: 78px; }
  .sticky-cta .bar { padding: 10px 12px 10px 20px; }
  .sticky-cta .bar > span { display: none; }
}

/* ============================ KEYFRAMES / MOTION ============================ */
@keyframes mkt-marquee { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }
@keyframes mkt-drift { 0% { transform: translateX(-50%) translateY(0) scale(1); } 50% { transform: translateX(-50%) translateY(-18px) scale(1.04); } 100% { transform: translateX(-50%) translateY(0) scale(1); } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .lp *, .lp *::before, .lp *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

/* ============================ RESPONSIVE ============================ */
@media (max-width: 900px) { .nav-pill { padding: 10px 10px 10px 18px; } }
