/* ============================================================
   Falvey Law Firm × Bosseo — Proposal
   Style: newsfeed.legal — white, bold, gradient accents, pills,
   rounded cards, pastel corner glows, interactive components.
   ============================================================ */

:root {
  --ink: #0b0b12;
  --ink-2: #1b1b25;
  --muted: #6a6a78;
  --muted-2: #9a9aa8;
  --white: #ffffff;
  --paper: #ffffff;
  --tint: #f6f6f9;
  --card: #ffffff;
  --line: #e9e9f0;
  --line-2: #ededf3;

  --g1: #2563eb; /* blue */
  --g2: #7c3aed; /* violet */
  --g3: #db2777; /* pink */
  --grad: linear-gradient(100deg, var(--g1), var(--g2) 55%, var(--g3));

  --dark: #0c0c14;
  --dark-2: #14141f;

  --r-sm: 12px;
  --r: 18px;
  --r-lg: 26px;
  --maxw: 1140px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --disp: "Sora", "Inter", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--sans); color: var(--ink); background: var(--white);
  line-height: 1.6; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.grad {
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.grad-bg { background: var(--grad); color: #fff; }

/* ---------- Scroll progress ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0%; background: var(--grad); z-index: 200; transition: width 0.1s linear; }

/* ---------- Buttons ---------- */
.arr { display: inline-block; transition: transform 0.25s var(--ease); }
.btn-grad, .btn-outline, .btn-dark { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; border-radius: 999px; padding: 13px 24px; transition: transform 0.2s var(--ease), box-shadow 0.25s, background 0.25s, color 0.25s; cursor: pointer; border: none; }
.btn-grad { background: var(--grad); color: #fff; box-shadow: 0 10px 26px -10px rgba(124,58,237,0.6); }
.btn-grad:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -10px rgba(124,58,237,0.7); }
.btn-grad:hover .arr { transform: translateX(4px); }
.btn-grad.full { width: 100%; justify-content: center; padding: 16px; font-size: 16px; }
.btn-outline { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.btn-outline:hover { border-color: var(--g2); color: var(--g2); }
.btn-dark { background: var(--ink); color: #fff; font-size: 14px; padding: 11px 20px; }
.btn-dark:hover { transform: translateY(-2px); }
.btn-dark:hover .arr { transform: translateX(4px); }

/* ---------- Pills / chips ---------- */
.pill-badge {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600;
  color: var(--ink-2); background: #fff; border: 1px solid var(--line);
  padding: 8px 16px; border-radius: 999px; box-shadow: 0 6px 18px -12px rgba(0,0,0,0.3);
}
.dotb { width: 8px; height: 8px; border-radius: 50%; background: var(--grad); display: inline-block; }
.chip {
  display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500;
  color: var(--ink-2); background: #fff; border: 1px solid var(--line);
  padding: 8px 15px; border-radius: 999px;
}
.chip.sm { font-size: 13px; padding: 6px 12px; }
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot-blue { background: var(--g1); }
.dot-violet { background: var(--g2); }
.dot-pink { background: var(--g3); }

/* ---------- Nav ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s; border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(255,255,255,0.8); backdrop-filter: saturate(180%) blur(18px); -webkit-backdrop-filter: saturate(180%) blur(18px); border-bottom: 1px solid var(--line); }
.nav-inner { max-width: var(--maxw); margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { width: 30px; height: 30px; border-radius: 9px; background: var(--grad); color: #fff; font-family: var(--disp); font-weight: 800; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.brand-name { font-family: var(--disp); font-weight: 700; font-size: 16px; }
.brand-x { color: var(--muted-2); font-weight: 400; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 17px; color: var(--muted); font-weight: 600; transition: color 0.2s; }
.nav-links a:hover { color: var(--ink); }
@media (max-width: 900px) { .nav-links { display: none; } }

/* ---------- Layout ---------- */
.section { padding: clamp(70px, 10vw, 130px) 24px; position: relative; }
.container { max-width: var(--maxw); margin: 0 auto; position: relative; z-index: 1; }
.tint { background: var(--tint); }
.dark { background: var(--dark); color: #fff; }
.center { text-align: center; }
.section-head { max-width: 760px; margin: 0 auto 54px; }
.section-head.center { text-align: center; }
.eyebrow { display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--g2); margin-bottom: 16px; }
.eyebrow.light { color: #b79bf5; }
.h2 { font-family: var(--disp); font-weight: 800; font-size: clamp(30px, 5vw, 52px); line-height: 1.05; letter-spacing: -0.02em; }
.h2.white { color: #fff; }
.h3 { font-family: var(--disp); font-weight: 700; font-size: clamp(24px, 3.4vw, 34px); line-height: 1.1; letter-spacing: -0.01em; }
.sub { font-size: clamp(16px, 1.8vw, 19px); color: var(--muted); font-weight: 400; margin-top: 18px; }
.sub.center { margin-left: auto; margin-right: auto; max-width: 65ch; }
.dark .sub { color: #ffffff; }

/* ---------- Glows ---------- */
.glow { position: absolute; border-radius: 50%; filter: blur(70px); z-index: 0; pointer-events: none; }
.glow-left { top: -120px; left: -120px; width: 520px; height: 520px; background: radial-gradient(circle, rgba(124,58,237,0.20), transparent 65%); }
.glow-right { top: -80px; right: -140px; width: 480px; height: 480px; background: radial-gradient(circle, rgba(219,39,119,0.16), transparent 65%); }
.glow.dim { opacity: 0.5; }
.dark .glow-left { background: radial-gradient(circle, rgba(124,58,237,0.35), transparent 65%); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 160px 24px 90px; overflow: hidden; }
.hero-inner { max-width: 940px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.hero-title { font-family: var(--disp); font-weight: 800; font-size: clamp(40px, 7vw, 82px); line-height: 1.02; letter-spacing: -0.03em; margin: 24px 0; }
.hero-sub { font-size: clamp(17px, 2vw, 21px); color: var(--muted); max-width: 680px; margin: 0 auto 32px; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.chip-row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; max-width: 780px; margin: 0 auto; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } html { scroll-behavior: auto; } }

/* ---------- Arizona reach (interactive) ---------- */
.reach-panel { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 0; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: #fff; box-shadow: 0 40px 80px -50px rgba(20,20,50,0.35); }
.reach-left { padding: 38px; border-right: 1px solid var(--line); }
.reach-label { display: flex; justify-content: space-between; align-items: center; font-size: 14px; font-weight: 600; color: var(--ink-2); margin-bottom: 16px; }
.reach-popval { font-family: var(--disp); font-weight: 700; font-size: 18px; }
input[type=range] { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 999px; background: #ececf3; outline: none; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 2px solid var(--g2); cursor: pointer; box-shadow: 0 4px 12px rgba(124,58,237,0.35); transition: transform 0.15s; }
input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.12); }
input[type=range]::-moz-range-thumb { width: 22px; height: 22px; border: 2px solid var(--g2); border-radius: 50%; background: #fff; cursor: pointer; }
.reach-ticks { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted-2); margin-top: 10px; }
.reach-stats { display: flex; align-items: center; gap: 14px; margin: 34px 0 20px; flex-wrap: wrap; }
.reach-stat { display: flex; flex-direction: column; }
.reach-num { font-family: var(--disp); font-weight: 800; font-size: clamp(30px, 4vw, 44px); line-height: 1; letter-spacing: -0.02em; }
.reach-lbl { font-size: 12px; color: var(--muted); margin-top: 6px; }
.reach-op { font-family: var(--disp); font-weight: 700; font-size: 24px; color: var(--muted-2); }
.reach-stat-total .reach-num { font-size: clamp(34px, 4.6vw, 50px); }
.reach-note { font-size: 14px; color: var(--muted); margin-top: 8px; }
.reach-right { padding: 28px; background: var(--tint); }
.reach-map-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.reach-map-title { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; }
.reach-map-count { font-size: 13px; font-weight: 600; color: var(--g2); }
.city-grid { display: flex; flex-wrap: wrap; gap: 8px; max-height: 340px; overflow: hidden; align-content: flex-start; }
.city-chip { font-size: 12.5px; font-weight: 500; color: var(--ink-2); background: #fff; border: 1px solid var(--line); padding: 6px 12px; border-radius: 999px; animation: chipIn 0.4s var(--ease) both; }
.city-chip.home { background: var(--grad); color: #fff; border-color: transparent; font-weight: 600; }
.city-chip.more { background: transparent; border-style: dashed; color: var(--muted); }
@keyframes chipIn { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); } }
.reach-caption { margin: 40px auto 16px; font-size: 14px; color: var(--muted); }
@media (max-width: 860px) { .reach-panel { grid-template-columns: 1fr; } .reach-left { border-right: none; border-bottom: 1px solid var(--line); } }

/* ---------- Phase strip (sequencing) ---------- */
.phase-strip { margin-top: 34px; padding: 26px; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--tint); }
.phase-strip-head { display: block; font-family: var(--disp); font-weight: 700; font-size: 15px; color: var(--ink); margin-bottom: 18px; }
.phases { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: stretch; gap: 14px; }
.phase { display: flex; gap: 14px; padding: 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); }
.phase-num { flex: none; width: 30px; height: 30px; border-radius: 999px; background: var(--grad); color: #fff; font-family: var(--disp); font-weight: 700; font-size: 15px; display: grid; place-items: center; }
.phase strong { display: block; font-size: 14.5px; color: var(--ink); margin-bottom: 4px; }
.phase > div span { font-size: 13px; color: var(--muted); line-height: 1.5; }
.phase .phase-num { color: #fff; }
.phase-arrow { align-self: center; font-family: var(--disp); font-weight: 700; font-size: 22px; color: var(--muted-2); }
@media (max-width: 860px) { .phases { grid-template-columns: 1fr; } .phase-arrow { transform: rotate(90deg); justify-self: center; } }

.figure { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: 0 30px 60px -40px rgba(20,20,50,0.3); }

/* ---------- Titled figures (numbers show the story) ---------- */
.fig-titled { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 30px 60px -40px rgba(20,20,50,0.3); }
.fig-head { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding: 22px 28px; border-bottom: 1px solid var(--line); background: linear-gradient(180deg, var(--tint), #fff); }
.fig-eyebrow { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted-2); }
.fig-headline { display: block; font-family: var(--disp); font-weight: 700; font-size: clamp(19px, 2.4vw, 25px); color: var(--ink); margin-top: 5px; }
.fig-metrics { display: flex; gap: 30px; }
.fig-metric { text-align: center; }
.fig-metric b { display: block; font-family: var(--disp); font-weight: 800; font-size: clamp(26px, 3.6vw, 38px); line-height: 1; color: var(--ink); }
.fig-metric b i { font-style: normal; font-size: 0.5em; color: var(--muted-2); font-weight: 700; }
.fig-metric span { display: block; margin-top: 6px; font-size: 12px; color: var(--muted); }
.fig-titled .figure { border: none; border-radius: 0; box-shadow: none; }
@media (max-width: 640px) { .fig-head { padding: 18px; gap: 16px; } .fig-metrics { gap: 20px; width: 100%; } }

/* ---------- Starting point / foundation-first ---------- */
@property --rp-angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
@keyframes rp-rotate { to { --rp-angle: 360deg; } }
.reality-point { position: relative; max-width: 720px; margin: 48px auto 0; padding: 30px 34px 32px; border-radius: 22px; background: linear-gradient(160deg, #ffffff 0%, #f6f3fe 100%); color: #23232b; text-align: center; border: 1px solid rgba(124,58,237,0.14); box-shadow: 0 30px 70px -48px rgba(20,20,50,0.4); overflow: hidden; transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s ease; }
.reality-point:hover { transform: translateY(-4px); box-shadow: 0 42px 92px -46px rgba(124,58,237,0.42); }
.reality-point > * { position: relative; z-index: 2; }
.reality-point::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px; background: conic-gradient(from var(--rp-angle,0deg), rgba(124,58,237,0) 0deg, #7c3aed 90deg, #ec4899 180deg, #3b82f6 270deg, rgba(124,58,237,0) 360deg); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; animation: rp-rotate 6s linear infinite; z-index: 1; pointer-events: none; }
.reality-point::after { content: ""; position: absolute; inset: 0; border-radius: inherit; background: radial-gradient(360px circle at var(--mx,50%) var(--my,0%), rgba(124,58,237,0.12), transparent 62%); opacity: 0; transition: opacity .3s ease; z-index: 1; pointer-events: none; }
.reality-point:hover::after { opacity: 1; }
.reality-kicker { display: inline-flex; align-items: center; font-family: var(--disp); font-weight: 700; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: #fff; background: var(--grad); padding: 6px 15px 6px 7px; border-radius: 999px; margin-bottom: 18px; box-shadow: 0 10px 24px -12px rgba(124,58,237,0.7); }
.reality-kicker::before { content: "TL;DR"; margin-right: 9px; padding: 3px 8px; border-radius: 999px; background: rgba(0,0,0,0.28); font-size: 10.5px; letter-spacing: 0.10em; }
.reality-points { list-style: none; margin: 4px auto 0; padding: 0; display: inline-grid; gap: 13px; text-align: left; max-width: 560px; }
.reality-points li { position: relative; padding-left: 36px; font-size: clamp(15px, 1.9vw, 17px); line-height: 1.55; color: #35353f; font-weight: 500; text-align: left; }
.reality-points li::before { content: "\2713"; position: absolute; left: 0; top: 1px; display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--grad); color: #fff; font-size: 13px; font-weight: 800; box-shadow: 0 8px 18px -9px rgba(124,58,237,0.7); }
.reality-points strong { font-weight: 800; color: #6d28d9; padding: 0 1px; }

/* Hosting interactive visual: speed test + live protection */
.host-viz { display: grid; grid-template-columns: 1.05fr 1fr; gap: 20px; max-width: 900px; margin: 0 auto 40px; }
.hv-panel { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px 22px 24px; box-shadow: 0 30px 60px -45px rgba(20,20,50,0.35); overflow: hidden; }
.hv-head { display: flex; align-items: center; gap: 8px; font-family: var(--disp); font-weight: 700; font-size: 12.5px; letter-spacing: .04em; text-transform: uppercase; color: #6b6b78; margin-bottom: 16px; }
.hv-dot { width: 9px; height: 9px; border-radius: 50%; background: #3b82f6; box-shadow: 0 0 0 4px rgba(59,130,246,.16); animation: hv-pulse 1.6s ease-in-out infinite; }
.hv-dot-g { background: #10b981; box-shadow: 0 0 0 4px rgba(16,185,129,.16); }
@keyframes hv-pulse { 50% { box-shadow: 0 0 0 9px rgba(59,130,246,0); } }
.hv-gauge { text-align: center; margin-bottom: 18px; }
.hv-gauge-num { font-family: var(--disp); font-weight: 800; font-size: 54px; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hv-gauge-num .hv-unit { font-size: 26px; margin-left: 2px; }
.hv-gauge-label { font-size: 13px; color: #6b6b78; margin-top: 5px; }
.hv-bars { display: grid; gap: 13px; margin-bottom: 18px; }
.hv-bar-row { display: grid; grid-template-columns: 1fr auto; grid-template-areas: "lbl t" "track track"; gap: 5px 8px; align-items: center; }
.hv-bar-lbl { grid-area: lbl; font-size: 12.5px; color: #4a4a55; font-weight: 600; }
.hv-bar-t { grid-area: t; font-size: 12px; color: #6b6b78; font-variant-numeric: tabular-nums; }
.hv-track { grid-area: track; position: relative; height: 12px; border-radius: 999px; background: #eceaf3; overflow: hidden; }
.hv-fill { position: absolute; left: 0; top: 0; height: 100%; width: 0; border-radius: 999px; transition: width 1.1s cubic-bezier(.2,.7,.3,1); }
.hv-fast { background: linear-gradient(90deg, #10b981, #34d399); }
.hv-slow { background: linear-gradient(90deg, #f59e0b, #ef4444); }
.hv-btn { width: 100%; border: none; cursor: pointer; border-radius: 12px; padding: 11px; font-family: var(--disp); font-weight: 700; font-size: 14px; color: #fff; background: var(--grad); box-shadow: 0 14px 30px -14px rgba(124,58,237,.7); transition: transform .2s ease, box-shadow .2s ease; }
.hv-btn:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -14px rgba(124,58,237,.85); }
.hv-btn:active { transform: translateY(0); }
.hv-shield { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-bottom: 18px; }
.hv-shield svg { width: 78px; height: 78px; }
#hvCheck { transition: stroke-dashoffset 1s ease .3s; }
.hv-uptime { font-size: 13px; color: #4a4a55; }
.hv-uptime b { font-family: var(--disp); font-size: 20px; font-variant-numeric: tabular-nums; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hv-checks { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.hv-checks li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #23232b; font-weight: 600; opacity: .35; transform: translateX(-4px); transition: opacity .4s ease, transform .4s ease; }
.hv-checks li.on { opacity: 1; transform: none; }
.hv-ck { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 50%; background: #eceaf3; color: #b9b9c5; font-size: 12px; font-weight: 800; transition: background .4s ease, color .4s ease, transform .4s ease; }
.hv-checks li.on .hv-ck { background: linear-gradient(135deg, #10b981, #34d399); color: #fff; transform: scale(1.08); }
@media (max-width: 720px) { .host-viz { grid-template-columns: 1fr; } }

/* Case management integration logo strip */
.cm-strip { max-width: 900px; margin: 30px auto 0; text-align: center; }
.cm-strip-label { display: block; font-family: var(--disp); font-weight: 700; font-size: 12px; letter-spacing: .05em; text-transform: uppercase; color: #8a8a98; margin-bottom: 16px; }
.cm-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.cm-logo { display: inline-flex; align-items: center; gap: 9px; padding: 10px 16px 10px 12px; background: #fff; border: 1px solid var(--line); border-radius: 999px; font-family: var(--disp); font-weight: 700; font-size: 14.5px; color: #23232b; box-shadow: 0 12px 26px -20px rgba(20,20,50,0.5); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.cm-logo:hover { transform: translateY(-3px); box-shadow: 0 18px 34px -18px rgba(124,58,237,0.5); border-color: rgba(124,58,237,0.35); }
.cm-logo img { width: 24px; height: 24px; border-radius: 6px; object-fit: contain; }
.cm-logo.cm-more { color: #7c3aed; background: rgba(124,58,237,0.07); border-color: rgba(124,58,237,0.25); padding: 10px 18px; }
@media (max-width: 560px) { .cm-logo { font-size: 13px; padding: 9px 13px 9px 10px; } .cm-logo img { width: 21px; height: 21px; } }

/* ---------- CLIONT live widget ---------- */
.widget-fig { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; min-height: 240px; background: linear-gradient(180deg, var(--tint), #fff); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 44px 32px; text-align: center; box-shadow: 0 30px 60px -45px rgba(20,20,50,0.3); }
.widget-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--muted); }
.widget-fig #cliont-survey { width: 100%; display: flex; justify-content: center; }
/* Pull the CLIONT sticky-footer widget out of the fixed corner and into this box */
.widget-fig .law-survey-trigger-container,
.widget-fig .law-survey-fixed-trigger,
.widget-fig .cliont-embed.ls-sticky-footer-mode .law-survey-trigger-container {
  position: relative !important;
  inset: auto !important;
  top: auto !important; right: auto !important; bottom: auto !important; left: auto !important;
  /* CLIONT centers the fixed footer with translateX(-50%); inside the box that shoves
     the video off the left edge. Neutralize the horizontal shift and keep it in flow. */
  transform: none !important;
  z-index: 1 !important;
  max-width: 100% !important;
  margin: 0 auto !important;
}
.widget-fig #cliont-survey { align-items: center; }
/* Inline CTA to open the CLIONT survey (replaces the removed sticky footer) */
.cliont-cta { display: inline-flex; align-items: center; justify-content: center; gap: 8px; margin: 16px auto 2px; padding: 15px 28px; border: none; border-radius: 999px; cursor: pointer; font-family: var(--disp); font-weight: 800; font-size: 16px; letter-spacing: .02em; color: #fff; background: var(--grad); box-shadow: 0 16px 34px -12px rgba(124,58,237,.75); transition: transform .22s cubic-bezier(.22,1,.36,1), box-shadow .22s; }
.cliont-cta .arr { transition: transform .22s ease; }
.cliont-cta:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 24px 48px -12px rgba(124,58,237,.9); }
.cliont-cta:hover .arr { transform: translateX(3px); }
.cliont-cta:active { transform: translateY(0) scale(.99); }
/* Remove CLIONT sticky footer bars — keep only the inline video widget in the box.
   High specificity so it beats CLIONT's own ls-sticky-footer.css (loaded after this file). */
html body .ls-sticky-mobile-footer,
html body .ls-sticky-footer,
html body .law-survey-sticky-footer,
html body .ls-sticky-footer-top,
html body > .law-survey-opener-button { display: none !important; }

/* ---------- How it works tabs ---------- */
.tabs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 34px; }
.tab { display: inline-flex; align-items: center; gap: 8px; font-family: var(--sans); font-size: 14px; font-weight: 600; color: var(--muted); background: #fff; border: 1px solid var(--line); padding: 10px 16px; border-radius: 999px; cursor: pointer; transition: all 0.2s var(--ease); }
.tab .tab-num { font-family: var(--disp); font-weight: 700; color: var(--muted-2); font-size: 12px; }
.tab:hover { border-color: var(--g2); color: var(--ink); }
.tab.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.tab.active .tab-num { color: #b79bf5; }
.tab-panels { position: relative; }
.tab-panel { display: none; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 44px; box-shadow: 0 30px 70px -50px rgba(20,20,50,0.3); animation: fadeUp 0.5s var(--ease); }
.tab-panel.active { display: grid; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.step-badge { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--g2); background: rgba(124,58,237,0.08); padding: 5px 12px; border-radius: 999px; margin-bottom: 16px; }
.tp-text h3 { font-family: var(--disp); font-weight: 700; font-size: clamp(22px, 2.8vw, 30px); line-height: 1.12; margin-bottom: 14px; letter-spacing: -0.01em; }
.tp-text > p { color: var(--muted); font-size: 16px; margin-bottom: 18px; }
.ticks { list-style: none; }
.ticks li { position: relative; padding-left: 28px; margin-bottom: 10px; font-size: 15px; color: var(--ink-2); }
.ticks li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 18px; height: 18px; font-size: 11px; color: #fff; background: var(--grad); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
@media (max-width: 820px) { .tab-panel { grid-template-columns: 1fr; gap: 28px; padding: 28px; } }

/* ---------- Mock visuals ---------- */
.tp-visual { display: flex; justify-content: center; }
.mock { width: 100%; max-width: 420px; background: var(--tint); border: 1px solid var(--line); border-radius: var(--r); padding: 20px; }
.mock-bar { display: flex; gap: 6px; margin-bottom: 16px; }
.mock-bar span { width: 10px; height: 10px; border-radius: 50%; background: #d7d7e2; }
.mock-hero { background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm); padding: 20px; margin-bottom: 12px; }
.mock-h1 { height: 16px; width: 70%; border-radius: 6px; background: #e3e3ee; margin-bottom: 10px; }
.mock-p { height: 9px; width: 90%; border-radius: 6px; background: #ededf5; margin-bottom: 16px; }
.mock-btn { height: 30px; width: 130px; border-radius: 999px; }
.mock-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.mock-cards div { height: 54px; border-radius: 10px; background: #fff; border: 1px solid var(--line); }
.mock-list { display: flex; flex-direction: column; gap: 10px; }
.mock-row { display: flex; align-items: center; justify-content: space-between; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 8px 12px; }
.tag { font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 999px; }
.tag.ok { color: #0a7c4a; background: rgba(16,185,129,0.12); }
.tag.build { color: var(--g2); background: rgba(124,58,237,0.1); }
.mock-review { text-align: center; }
.mock-doc { background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm); padding: 20px; margin-bottom: 14px; }
.mock-line { height: 10px; border-radius: 6px; background: #e8e8f1; margin-bottom: 10px; }
.mock-line.short { width: 60%; }
.mock-approve { padding: 12px; border-radius: 999px; font-size: 14px; font-weight: 600; }
.mock-lead { }
.lead-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; font-weight: 600; font-size: 14px; }
.lead-scores { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.lead-scores div { background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm); padding: 14px 8px; text-align: center; }
.lead-scores b { font-family: var(--disp); font-size: 22px; display: block; }
.lead-scores span { font-size: 11px; color: var(--muted); }
.mock-ai { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; align-content: center; min-height: 120px; }
.mock-call { display: flex; align-items: center; gap: 16px; }
.call-ring { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.call-txt b { display: block; font-size: 15px; }
.call-txt span { font-size: 13px; color: var(--muted); }

/* ---------- Cards ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.cards-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s; }
.card:hover { transform: translateY(-5px); box-shadow: 0 26px 50px -30px rgba(20,20,50,0.28); border-color: var(--line-2); }
.card-ic { width: 46px; height: 46px; border-radius: 13px; display: flex; align-items: center; justify-content: center; font-family: var(--disp); font-weight: 800; font-size: 16px; margin-bottom: 18px; }
.card h3 { font-family: var(--disp); font-weight: 700; font-size: 20px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15px; }
.dark-card { background: var(--dark-2); border-color: #26263a; }
.dark-card p { color: #ffffff; }
.mini-fig { margin-top: 18px; border-radius: var(--r-sm); overflow: hidden; border: 1px solid #26263a; max-width: 300px; }
@media (max-width: 860px) { .cards-3, .cards-2 { grid-template-columns: 1fr; } }

/* ---------- Proof ---------- */
.proof-head { max-width: 720px; margin: 70px auto 34px; }
.proof-card { padding: 24px; }
.proof-firm h4 { font-family: var(--disp); font-weight: 700; font-size: 19px; }
.proof-firm span { font-size: 13px; color: var(--g2); font-weight: 600; }
.proof-fig { margin: 16px 0; border-radius: var(--r-sm); overflow: hidden; border: 1px solid var(--line); }
.proof-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 12px; }
.proof-metrics div { text-align: center; background: var(--tint); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 12px 6px; }
.proof-metrics b { font-family: var(--disp); font-size: 22px; display: block; }
.proof-metrics span { font-size: 11px; color: var(--muted); }
.proof-sm { font-size: 13px; color: var(--muted); }

/* ---------- Split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; margin-bottom: 40px; }
.split:last-child { margin-bottom: 0; }
.split-rev .split-text { order: 2; }
.split-text h3 { font-family: var(--disp); font-weight: 700; font-size: clamp(22px, 2.8vw, 30px); margin-bottom: 14px; letter-spacing: -0.01em; }
.split-text > p { color: var(--muted); font-size: 16px; margin-bottom: 18px; }
.split-fig { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); background: #fff; box-shadow: 0 30px 60px -40px rgba(20,20,50,0.3); }
.link-arrow { display: inline-block; margin-top: 16px; font-weight: 600; font-size: 15px; color: var(--g2); }
.link-arrow:hover { color: var(--g3); }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; gap: 24px; } .split-rev .split-text { order: 0; } }

/* ---------- Flow ---------- */
.flow { display: flex; align-items: stretch; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; }
.flow-step { flex: 1; min-width: 170px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 24px 20px; text-align: center; }
.flow-ic { width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-family: var(--disp); font-weight: 800; margin: 0 auto 14px; }
.flow-step h4 { font-family: var(--disp); font-weight: 700; font-size: 16px; margin-bottom: 6px; }
.flow-step p { font-size: 13px; color: var(--muted); }
.flow-arr { display: flex; align-items: center; color: var(--g2); font-size: 22px; }
@media (max-width: 820px) { .flow { flex-direction: column; } .flow-arr { justify-content: center; transform: rotate(90deg); } }

/* ---------- Pricing + ROI ---------- */
.price-wrap { display: flex; justify-content: center; }
.price-card { max-width: 560px; width: 100%; }
.price-card, .roi-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 36px; }
.price-card { border: 2px solid transparent; background:
  linear-gradient(#fff, #fff) padding-box,
  var(--grad) border-box; box-shadow: 0 30px 70px -40px rgba(124,58,237,0.45); }
.price-top { display: flex; align-items: baseline; gap: 8px; }
.price-amt { font-family: var(--disp); font-weight: 800; font-size: clamp(46px, 7vw, 68px); line-height: 1; letter-spacing: -0.02em; }
.price-per { color: var(--muted); font-size: 18px; }
.price-terms { display: block; color: var(--g2); font-size: 13px; font-weight: 600; margin: 12px 0 22px; }
.price-ticks { margin-bottom: 24px; }
.roi-card h3 { font-family: var(--disp); font-weight: 700; font-size: 22px; margin-bottom: 6px; }
.roi-hint { color: var(--muted); font-size: 14px; margin-bottom: 24px; }
.roi-field { margin-bottom: 22px; }
.roi-field label { display: flex; justify-content: space-between; align-items: center; font-size: 14px; font-weight: 600; margin-bottom: 12px; }
.roi-val { font-family: var(--disp); font-weight: 700; font-size: 18px; }
.roi-out { border-top: 1px solid var(--line); padding-top: 20px; }
.roi-line { display: flex; justify-content: space-between; align-items: center; font-size: 15px; color: var(--muted); margin-bottom: 12px; }
.roi-line b { font-family: var(--disp); font-size: 20px; color: var(--ink); }
.roi-net { padding-top: 12px; border-top: 1px dashed var(--line); }
.roi-net b { font-size: 26px; }
.roi-multiple { text-align: center; margin-top: 16px; font-family: var(--disp); font-weight: 700; font-size: 18px; color: var(--g2); background: rgba(124,58,237,0.07); padding: 12px; border-radius: var(--r-sm); }
.roi-disc { font-size: 12px; color: var(--muted-2); margin-top: 16px; }
@media (max-width: 820px) { .price-wrap { grid-template-columns: 1fr; } }

/* ---------- CTA ---------- */
.cta-section { overflow: hidden; }
.cta-title { font-family: var(--disp); font-size: clamp(34px, 6vw, 60px); }
.center-cta { margin-top: 34px; margin-bottom: 40px; }
.contact-firm { color: var(--muted); font-size: 14px; line-height: 1.9; }
.contact-firm strong { color: var(--ink); }

/* ---------- Reputation — Google reviews boost visual ---------- */
.rep-demo { max-width: 940px; margin: 12px auto 10px; display: grid; gap: 20px; }
@media (min-width: 820px) { .rep-demo { grid-template-columns: 330px 1fr; align-items: start; } }
.rep-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 24px; box-shadow: 0 40px 80px -50px rgba(20,20,50,0.4); text-align: center; }
.rep-gh { display: flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--disp); font-weight: 700; font-size: 13.5px; color: #3a3a46; margin-bottom: 16px; }
.rep-gh img { width: 20px; height: 20px; }
.rep-num { display: block; font-family: var(--disp); font-weight: 800; font-size: 54px; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.rep-stars { display: block; color: #f5a623; font-size: 20px; letter-spacing: 3px; margin-top: 6px; }
.rep-jump { display: inline-flex; align-items: center; gap: 4px; margin-top: 12px; font-size: 12.5px; font-weight: 600; color: var(--muted); background: rgba(124,58,237,0.06); border: 1px solid rgba(124,58,237,0.16); padding: 6px 13px; border-radius: 999px; }
.rep-jump .rj-good { color: #16a34a; font-family: var(--disp); }
.rep-jump .rj-bad { color: #d4790a; font-family: var(--disp); }
.rep-count { display: block; font-size: 14px; color: var(--muted); margin-top: 10px; }
.rep-count b { color: var(--ink); font-family: var(--disp); font-size: 18px; }
.rep-delta { display: inline-flex; align-items: center; gap: 5px; margin-top: 12px; font-size: 12.5px; font-weight: 700; color: #16a34a; background: rgba(22,163,74,0.1); padding: 6px 13px; border-radius: 999px; }
.rep-bars { display: flex; align-items: flex-end; justify-content: center; gap: 9px; height: 72px; margin-top: 22px; }
.rep-bars span { width: 22px; border-radius: 6px 6px 0 0; background: var(--grad); opacity: .85; transform-origin: bottom; animation: repGrow 1.1s cubic-bezier(.22,1,.36,1) both; }
@keyframes repGrow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.rep-bars-label { font-size: 11.5px; color: var(--muted-2); margin-top: 10px; }
.rep-feed { display: flex; flex-direction: column; gap: 14px; }
.rep-toast { display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; font-size: 12.5px; font-weight: 700; color: #16a34a; background: rgba(22,163,74,0.1); border: 1px solid rgba(22,163,74,0.25); padding: 7px 13px; border-radius: 999px; }
.rep-toast .rd { width: 8px; height: 8px; border-radius: 50%; background: #16a34a; box-shadow: 0 0 0 0 rgba(22,163,74,.5); animation: ccLive 1.6s ease-out infinite; }
.rev { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 16px 18px; box-shadow: 0 30px 60px -50px rgba(20,20,50,0.4); animation: revIn .5s cubic-bezier(.22,1,.36,1) both; }
@keyframes revIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.rev-top { display: flex; align-items: center; gap: 10px; }
.rev-av { width: 38px; height: 38px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; font-family: var(--disp); font-weight: 700; font-size: 14px; flex: 0 0 auto; }
.rev-who b { display: block; font-family: var(--disp); font-size: 14px; color: var(--ink); }
.rev-who span { font-size: 11.5px; color: var(--muted); }
.rev-stars { margin-left: auto; color: #f5a623; font-size: 13px; letter-spacing: 1px; }
.rev-text { font-size: 13.5px; color: #3a3a46; line-height: 1.55; margin: 11px 0 0; }
.rev-resp { margin-top: 12px; padding: 12px 14px; background: var(--tint); border-left: 3px solid var(--g2); border-radius: 0 10px 10px 0; }
.rev-resp b { display: flex; align-items: center; font-family: var(--disp); font-size: 12px; color: var(--g2); margin-bottom: 4px; }
.rev-resp p { margin: 0; font-size: 12.5px; color: #4a4a58; line-height: 1.5; }
.rr-badge { font-size: 10.5px; font-weight: 700; color: #16a34a; margin-left: 7px; }

/* ---------- NewsFeed real product screenshots ---------- */
.nf-shots { max-width: 980px; margin: 10px auto 30px; display: grid; gap: 22px; }
@media (min-width: 840px) { .nf-shots { grid-template-columns: 1fr 1fr; align-items: start; } .nf-shots .nf-shot-cap { grid-column: 1 / -1; } }
.nf-shot { margin: 0; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: #fff; box-shadow: 0 40px 80px -50px rgba(20,20,50,0.5); }
.nf-shot-bar { display: flex; align-items: center; gap: 6px; padding: 10px 14px; font-size: 12px; color: var(--muted); border-bottom: 1px solid #f0f0f3; background: #fafafc; }
.nf-shot-bar i { width: 10px; height: 10px; border-radius: 50%; background: #e0e0e8; display: inline-block; }
.nf-shot-bar i:nth-child(1) { background: #ff5f57; }
.nf-shot-bar i:nth-child(2) { background: #febc2e; }
.nf-shot-bar i:nth-child(3) { background: #28c840; }
.nf-shot-bar b { margin-left: 6px; font-weight: 600; color: var(--muted); }
.nf-shot img { display: block; width: 100%; height: auto; }
.nf-shot-cap { text-align: center; font-size: 13.5px; color: var(--muted); margin: 2px 0 0; }
.nf-shot-cap a { color: var(--g2); font-weight: 700; }

/* ---------- Lead-to-matter animated pipeline ---------- */
.autopipe { max-width: 880px; margin: 10px auto 28px; }
.ap-rail { position: relative; height: 6px; border-radius: 999px; background: #ececf2; margin: 0 10px; }
.ap-fill { position: absolute; left: 0; top: 0; height: 100%; border-radius: 999px; background: var(--grad); width: 0; }
.ap-packet { position: absolute; top: 50%; left: 0; transform: translate(-50%, -50%); width: 36px; height: 36px; border-radius: 11px; background: #fff; border: 1px solid var(--line); box-shadow: 0 14px 28px -12px rgba(20,20,50,0.5); display: grid; place-items: center; font-size: 17px; z-index: 3; transition: left .05s linear; }
.ap-stops { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 24px; }
.ap-stop { text-align: center; padding: 16px 12px; border: 1px solid var(--line); border-radius: 16px; background: #fff; transition: all .3s cubic-bezier(.22,1,.36,1); }
.ap-stop .ap-num { display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: #eceaf6; color: var(--g2); font-family: var(--disp); font-weight: 700; margin-bottom: 8px; transition: all .3s ease; }
.ap-stop b { display: block; font-family: var(--disp); font-size: 14px; color: var(--ink); }
.ap-stop .ap-sub { display: block; font-size: 12px; color: var(--muted); margin-top: 3px; line-height: 1.4; }
.ap-stop.active { border-color: transparent; box-shadow: 0 22px 42px -22px rgba(124,58,237,0.6); transform: translateY(-3px); }
.ap-stop.active .ap-num { background: var(--grad); color: #fff; }
.ap-status { text-align: center; margin-top: 18px; font-size: 14.5px; font-weight: 600; color: var(--ink); min-height: 20px; }
@media (max-width: 640px) { .ap-stops { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Google Local Service Ads mockup ---------- */
.lsa-demo { max-width: 640px; margin: 10px auto 28px; }
.lsa-window { background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; box-shadow: 0 44px 90px -54px rgba(20,20,50,0.5); text-align: left; }
.lsa-bar { display: flex; align-items: center; gap: 10px; padding: 14px 18px; border-bottom: 1px solid #f0f0f3; }
.lsa-bar::before { content: "\1F50D"; font-size: 14px; }
.lsa-q { font-size: 14px; color: #3a3a46; }
.lsa-head { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px 6px; }
.lsa-screened { display: inline-flex; align-items: center; gap: 7px; font-family: var(--disp); font-size: 13px; font-weight: 700; color: #1a73e8; }
.lsa-screened::before { content: "\2713"; display: inline-grid; place-items: center; width: 17px; height: 17px; border-radius: 50%; background: #1a73e8; color: #fff; font-size: 10px; }
.lsa-tag { font-size: 11.5px; color: var(--muted); }
.lsa-list { padding: 6px 10px 12px; display: flex; flex-direction: column; gap: 4px; }
.lsa-ad { display: flex; align-items: center; gap: 12px; padding: 12px; border-radius: 12px; }
.lsa-ad.lsa-top { background: linear-gradient(100deg, rgba(37,99,235,0.06), rgba(124,58,237,0.06)); border: 1px solid rgba(124,58,237,0.25); }
.lsa-ad.dim { opacity: .5; }
.lsa-logo { width: 44px; height: 44px; border-radius: 11px; background: var(--grad); color: #fff; display: grid; place-items: center; font-family: var(--disp); font-weight: 700; font-size: 15px; flex: 0 0 auto; }
.lsa-ad.dim .lsa-logo { background: #d3d3dc; }
.lsa-info { flex: 1 1 auto; min-width: 0; }
.lsa-info b { display: flex; align-items: center; gap: 6px; font-family: var(--disp); font-size: 14.5px; color: var(--ink); }
.lsa-check { display: inline-grid; place-items: center; width: 16px; height: 16px; border-radius: 50%; background: #1a73e8; color: #fff; font-size: 9px; flex: 0 0 auto; }
.lsa-stars { color: #f5a623; font-size: 12.5px; letter-spacing: 1px; }
.lsa-meta { display: block; font-size: 12px; color: var(--muted); margin-top: 3px; }
.lsa-open { display: block; font-size: 11.5px; color: #16a34a; font-weight: 700; margin-top: 3px; }
.lsa-call { flex: 0 0 auto; font-family: var(--disp); font-weight: 700; font-size: 13px; color: #fff; background: var(--grad); padding: 9px 18px; border-radius: 999px; }
.lsa-ad.dim .lsa-call { background: #d3d3dc; }
.lsa-note { text-align: center; font-size: 13.5px; color: var(--muted); margin: 16px auto 0; max-width: 520px; }
.lsa-note b { color: var(--ink); }
.lsa-budget { display: flex; align-items: center; gap: 18px; max-width: 640px; margin: 22px auto 0; padding: 18px 22px; background: linear-gradient(135deg, #ffffff 0%, #f4f1fb 100%); border: 1px solid rgba(124,58,237,0.22); border-radius: var(--r-lg); box-shadow: 0 24px 50px -40px rgba(20,20,50,0.5); }
.lsa-gbadge { flex: 0 0 auto; display: inline-flex; flex-direction: column; align-items: center; gap: 5px; padding: 12px 14px; background: #fff; border: 1px solid #e3e3ee; border-radius: 14px; font-family: var(--disp); font-weight: 700; font-size: 11px; color: #1a73e8; text-align: center; box-shadow: 0 10px 22px -16px rgba(26,115,232,0.6); }
.lsa-gbadge svg { width: 30px; height: 30px; }
.lsa-budget-txt { display: grid; gap: 5px; text-align: left; }
.lsa-budget-txt b { font-family: var(--disp); font-size: clamp(16px, 2.1vw, 19px); color: var(--ink); line-height: 1.35; text-wrap: balance; }
.lsa-budget-txt span { font-size: 13.5px; color: var(--muted); line-height: 1.55; }
@media (max-width: 560px) { .lsa-budget { flex-direction: column; text-align: center; gap: 14px; } .lsa-budget-txt { text-align: center; } }

/* ---------- Footer ---------- */
.footer { padding: 40px 24px; text-align: center; border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; }


/* ============ Proposal inline components ============ */
  .reach-derive { margin: 22px 0 4px; padding: 12px 14px; border-radius: 12px; font-size: 14px; line-height: 1.5;
    background: rgba(124,58,237,.06); border: 1px solid rgba(124,58,237,.18); color: #1b1b25; }
  .reach-derive b { font-family: "Sora","Inter",sans-serif; }

  /* Footprint calculator */
  .calc-head { display: inline-block; font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #7c3aed; margin-bottom: 14px; }
  .calc { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .calc-field label { display: block; font-size: 13px; font-weight: 600; color: #5b6472; margin-bottom: 8px; }
  .calc-ctl { display: flex; align-items: stretch; border: 1px solid #e6e6ee; border-radius: 12px; overflow: hidden; background: #fff; transition: border-color .18s, box-shadow .18s; }
  .calc-ctl:focus-within { border-color: #c9b8f5; box-shadow: 0 0 0 3px rgba(124,58,237,.12); }
  .calc-btn { width: 44px; flex: 0 0 auto; border: none; background: #f5f4fb; color: #7c3aed; font-size: 20px; font-weight: 700; line-height: 1; cursor: pointer; transition: background .18s; }
  .calc-btn:hover { background: #ece9fb; }
  .calc-btn:active { background: #ddd6f7; }
  .calc-ctl input { flex: 1 1 auto; width: 100%; min-width: 0; border: none; outline: none; text-align: center; font-family: "Sora","Inter",sans-serif; font-weight: 800; font-size: 22px; color: #14141c; background: transparent; -moz-appearance: textfield; }
  .calc-ctl input::-webkit-outer-spin-button, .calc-ctl input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
  @media (max-width: 520px) { .calc { grid-template-columns: 1fr; } }

  /* Programmatic SEO — statewide coverage visual */
  .psviz { display: grid; grid-template-columns: 1.05fr .95fr; gap: 0; align-items: stretch; margin: 6px 0 30px; border: 1px solid #e6e6ee; border-radius: 22px; background: #fff; overflow: hidden; box-shadow: 0 40px 80px -50px rgba(20,20,50,.35); }
  @media (max-width: 820px) { .psviz { grid-template-columns: 1fr; } }
  .psviz-map { position: relative; min-width: 0; border-right: 1px solid #ececf3; background: radial-gradient(120% 120% at 30% 8%, #f7f5ff 0%, #eef3ff 55%, #e9f0ff 100%); padding: 14px 14px 120px; overflow: hidden; min-height: 420px; display: flex; align-items: center; justify-content: center; }
  @media (max-width: 820px) { .psviz-map { border-right: none; border-bottom: 1px solid #ececf3; } }
  .psmap-svg { width: 100%; max-width: 100%; height: 100%; max-height: 420px; display: block; }
  .psmap-land { fill: rgba(124,58,237,.07); stroke: #7c3aed; stroke-width: 1.4; stroke-opacity: .5; stroke-linejoin: round; }
  .ps-dot { fill: url(#psFill); opacity: 0; transform-box: fill-box; transform-origin: center; animation: psPop .5s ease forwards; }
  @keyframes psPop { 0% { opacity: 0; transform: scale(0); } 60% { opacity: 1; transform: scale(1.55); } 100% { opacity: .92; transform: scale(1); } }
  .ps-dot.tw { animation: psPop .5s ease forwards, psTw 3.4s ease-in-out infinite; }
  @keyframes psTw { 0%, 100% { opacity: .5; } 50% { opacity: 1; } }
  .psmap-badge { position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,.93); backdrop-filter: blur(6px); border: 1px solid #e6e6ee; border-radius: 14px; padding: 10px 14px; box-shadow: 0 14px 30px -18px rgba(20,20,50,.5); }
  .psmap-badge b { display: block; font-family: "Sora","Inter",sans-serif; font-size: 30px; font-weight: 800; line-height: 1; background: linear-gradient(90deg,#7c3aed,#2563eb); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
  .psmap-badge span { display: block; font-size: 11px; font-weight: 600; letter-spacing: .04em; color: #5b6472; margin-top: 5px; text-transform: uppercase; }
  .psmap-cap { position: absolute; bottom: 12px; left: 0; right: 0; text-align: center; font-size: 12.5px; font-weight: 600; color: #5b6472; }
  @media (max-width: 640px) {
    .psviz-map { min-height: 300px; padding: 12px; }
    .psmap-badge { top: 10px; left: 10px; padding: 6px 10px; border-radius: 11px; }
    .psmap-badge b { font-size: 20px; }
    .psmap-badge span { font-size: 8.5px; margin-top: 3px; }
    .psmap-svg { max-height: 300px; margin-top: 26px; }
    .psmap-cap { bottom: 8px; font-size: 11px; }
  }
  .psviz-side { min-width: 0; display: flex; flex-direction: column; gap: 14px; justify-content: center; padding: 26px; }
  .psone-search { position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 2; }
  .psone-line { margin: 0; font-size: 14.5px; line-height: 1.55; color: #3a4150; background: linear-gradient(90deg, #f6f3ff, #eef4ff); border: 1px solid #e4defa; border-radius: 14px; padding: 13px 16px; }
  .psone-line b { color: #14141c; }
  .psviz-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #7c3aed; }
  .psviz-h { font-family: "Sora","Inter",sans-serif; font-size: 22px; font-weight: 800; line-height: 1.25; color: #14141c; margin: 0; }
  .pssearch { border: 1px solid #e6e6ee; border-radius: 16px; background: #fff; box-shadow: 0 18px 40px -26px rgba(20,20,50,.5); overflow: hidden; }
  .pssearch.flip { animation: psFlip .45s ease; }
  @keyframes psFlip { 0% { opacity: .35; transform: translateY(6px); } 100% { opacity: 1; transform: translateY(0); } }
  .pssearch-bar { display: flex; align-items: center; gap: 9px; padding: 12px 14px; border-bottom: 1px solid #f0f0f5; font-size: 14.5px; color: #14141c; }
  .pssearch-bar svg { flex: 0 0 auto; color: #7c3aed; }
  .pssearch-bar .q-city { color: #7c3aed; font-weight: 700; }
  .pssearch-res { padding: 12px 14px; display: flex; align-items: center; gap: 12px; }
  .pssearch-rank { flex: 0 0 auto; width: 38px; height: 38px; border-radius: 10px; background: linear-gradient(135deg,#7c3aed,#2563eb); color: #fff; font-family: "Sora","Inter",sans-serif; font-weight: 800; font-size: 15px; display: flex; align-items: center; justify-content: center; }
  .pssearch-body { flex: 1 1 auto; min-width: 0; }
  .pssearch-body b { display: block; font-size: 14px; color: #14141c; }
  .pssearch-body span { display: block; font-size: 12.5px; color: #5b6472; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .pssearch-tag { flex: 0 0 auto; font-size: 11px; font-weight: 700; color: #0a7d3c; background: #e6f7ec; border: 1px solid #b7e6c7; border-radius: 999px; padding: 4px 9px; }
  @media (max-width: 640px) { .psviz-map { padding-bottom: 112px; min-height: 380px; } .psviz-side { padding: 20px 16px; } }

  /* NewsFeed — search-demand demo (news → search → your page) */
  .nfdemo { margin: 6px 0 4px; }
  .nfdemo-row { display: flex; align-items: stretch; gap: 20px; }
  @media (max-width: 860px) { .nfdemo-row { flex-direction: column; } }
  .nfd-col { flex: 1 1 0; min-width: 0; position: relative; display: flex; flex-direction: column; }
  .nfd-col:not(:last-child)::after { content: ""; position: absolute; right: -20px; width: 20px; top: 66px; height: 2px; background: linear-gradient(90deg, #e6e6ee, #d9d3f2, #e6e6ee); }
  @media (max-width: 860px) { .nfd-col:not(:last-child)::after { display: none; } }
  .nfd-card { flex: 1 1 auto; background: #fff; border: 1px solid #e9e9f1; border-radius: 16px; padding: 16px; box-shadow: 0 18px 40px -28px rgba(20,20,50,.5); transition: opacity .45s ease; }
  .nfdemo.swapping .nfd-card { opacity: .3; }
  .nfd-news { background: linear-gradient(180deg, #fff 55%, #fdf2f8 100%); }
  .nfd-breaking { display: inline-flex; align-items: center; gap: 6px; font-size: 10.5px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; color: #db2777; background: #fde7f1; border-radius: 999px; padding: 4px 10px; }
  .nfd-breaking i { width: 6px; height: 6px; border-radius: 50%; background: #db2777; animation: nfdPulse 1.4s ease-in-out infinite; }
  @keyframes nfdPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .35; transform: scale(.65); } }
  .nfd-source { display: block; margin-top: 16px; font-size: 10.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #9aa0ab; }
  .nfd-headline { margin: 8px 0 0; font-family: "Sora","Inter",sans-serif; font-size: 17px; font-weight: 800; line-height: 1.28; color: #14141c; }
  .nfd-searchbar { display: flex; align-items: center; gap: 8px; border: 1px solid #e6e6ee; border-radius: 10px; padding: 9px 11px; font-family: ui-monospace,SFMono-Regular,Menlo,Consolas,monospace; font-size: 12.5px; color: #14141c; }
  .nfd-searchbar > svg { color: #9aa0ab; flex: 0 0 auto; }
  .nfd-typed { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .nfd-caret { width: 2px; height: 15px; background: #7c3aed; margin-left: 1px; flex: 0 0 auto; animation: nfdCaret 1s step-end infinite; }
  @keyframes nfdCaret { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
  .nfd-suggest { list-style: none; margin: 10px 0 0; padding: 0; display: grid; gap: 2px; font-family: ui-monospace,SFMono-Regular,Menlo,Consolas,monospace; font-size: 11.5px; }
  .nfd-suggest li { color: #8a90a0; padding: 5px 8px; border-radius: 7px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .nfd-suggest li.on { background: #f1ecfc; color: #4a3a7a; font-weight: 600; }
  .nfd-spike { display: inline-block; margin-top: 12px; font-size: 11px; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; color: #7c3aed; background: #f1ecfc; border-radius: 999px; padding: 5px 11px; }
  .nfd-firm { padding: 0; overflow: hidden; }
  .nfd-chrome { display: flex; align-items: center; gap: 6px; padding: 9px 12px; background: #f6f6fa; border-bottom: 1px solid #ececf3; }
  .nfd-chrome i { width: 9px; height: 9px; border-radius: 50%; }
  .nfd-chrome i:nth-child(1) { background: #ff5f57; } .nfd-chrome i:nth-child(2) { background: #febc2e; } .nfd-chrome i:nth-child(3) { background: #28c840; }
  .nfd-chrome b { margin-left: 8px; font-size: 11.5px; font-weight: 600; color: #9aa0ab; }
  .nfd-firm-body { padding: 16px; }
  .nfd-firm-name { display: block; font-size: 12.5px; font-weight: 700; color: #14141c; }
  .nfd-firm-cat { display: block; margin-top: 8px; font-size: 10.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: #7c3aed; }
  .nfd-firm-title { margin: 6px 0 0; font-family: "Sora","Inter",sans-serif; font-size: 16px; font-weight: 800; line-height: 1.28; color: #14141c; }
  .nfd-firm-link { display: inline-block; margin-top: 14px; font-size: 12.5px; font-weight: 700; color: #7c3aed; }
  .nfd-col .nfd-card { flex: 1 1 auto; }
  .nfd-step { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 13px; font-weight: 600; color: #14141c; margin-top: 14px; }
  @media (max-width: 860px) { .nfd-step { margin: 10px 0 4px; } }
  .nfd-n { flex: 0 0 auto; width: 20px; height: 20px; border-radius: 50%; background: #14141c; color: #fff; font-size: 11px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
  .nfd-tag { text-align: center; margin: 26px 0 0; font-size: 15px; font-weight: 700; }
  .nfd-tag .nfd-old { color: #9aa0ab; }
  .nfd-tag .nfd-new { color: #14141c; background: linear-gradient(90deg, #efe9fd, #fde7d6); border-radius: 6px; padding: 2px 8px; }

  /* Top sell strip */
  .sell-strip { position: relative; overflow: hidden; background: linear-gradient(90deg, #2563eb, #7c3aed 34%, #db2777 68%, #2563eb); background-size: 200% 100%; animation: sell-bg 14s linear infinite; box-shadow: 0 8px 26px -10px rgba(124,58,237,.65); }
  .sell-strip::after { content: ""; position: absolute; top: 0; left: -40%; width: 30%; height: 100%; background: linear-gradient(100deg, transparent, rgba(255,255,255,.32), transparent); transform: skewX(-18deg); animation: ctaShine 3.6s ease-in-out infinite; pointer-events: none; }
  .sell-track { display: inline-flex; align-items: center; white-space: nowrap; animation: sell-scroll 60s linear infinite; will-change: transform; }
  .sell-strip:hover .sell-track { animation-play-state: paused; }
  .sell-grp { display: inline-flex; align-items: center; }
  .sell-item { display: inline-flex; align-items: center; padding: 12px 0; color: #fff; font-family: "Sora","Inter",sans-serif; font-weight: 800; font-size: 13.5px; letter-spacing: .14em; text-transform: uppercase; text-shadow: 0 1px 3px rgba(20,20,50,.4); }
  .sell-sep { display: inline-flex; padding: 0 24px; color: rgba(255,255,255,.9); font-size: 13px; text-shadow: 0 0 8px rgba(255,255,255,.8); }
  @keyframes sell-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  @keyframes sell-bg { from { background-position: 0% 0; } to { background-position: 200% 0; } }
  @media (prefers-reduced-motion: reduce) { .sell-track, .sell-strip, .sell-strip::after { animation: none; } }

  /* Breaking-news scrolling ticker */
  .news-ticker { display: flex; align-items: stretch; max-width: 900px; margin: 6px auto 32px; border-radius: 999px; overflow: hidden; border: 1px solid rgba(124,58,237,.2); background: linear-gradient(135deg,#fff,#f6f3fe); box-shadow: 0 20px 46px -36px rgba(20,20,50,.55); }
  .nt-live { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 8px; padding: 11px 18px; background: linear-gradient(135deg,#ef4444,#db2777); color: #fff; font-family: "Sora","Inter",sans-serif; font-weight: 800; font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; }
  .nt-pulse { width: 9px; height: 9px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 0 rgba(255,255,255,.7); animation: nt-blink 1.3s ease-in-out infinite; }
  @keyframes nt-blink { 0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,255,255,.6); } 50% { opacity: .35; box-shadow: 0 0 0 6px rgba(255,255,255,0); } }
  .nt-viewport { position: relative; flex: 1 1 auto; overflow: hidden; display: flex; align-items: center; }
  .nt-viewport::before, .nt-viewport::after { content: ""; position: absolute; top: 0; width: 34px; height: 100%; z-index: 2; pointer-events: none; }
  .nt-viewport::before { left: 0; background: linear-gradient(90deg, #f8f6fe, transparent); }
  .nt-viewport::after { right: 0; background: linear-gradient(270deg, #f6f3fe, transparent); }
  .nt-track { display: inline-flex; align-items: center; gap: 24px; white-space: nowrap; padding-left: 24px; animation: nt-scroll 44s linear infinite; will-change: transform; }
  .nt-item { font-family: "Sora","Inter",sans-serif; font-weight: 700; font-size: 13.5px; letter-spacing: .07em; text-transform: uppercase; color: #33333d; }
  .nt-sep { color: #7c3aed; font-size: 11px; }
  @keyframes nt-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .nt-viewport:hover .nt-track { animation-play-state: paused; }
  @media (prefers-reduced-motion: reduce) { .nt-track { animation: none; } }

  /* Platinum plan badge + inviting CTA button */
  .price-plan { display: inline-flex; align-items: center; gap: 8px; font-family: "Sora","Inter",sans-serif; font-weight: 800; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: #7c3aed; background: linear-gradient(90deg, rgba(124,58,237,.1), rgba(37,99,235,.1)); border: 1px solid rgba(124,58,237,.28); border-radius: 999px; padding: 7px 16px; margin-bottom: 18px; }
  .price-plan .gem { font-size: 12px; background: linear-gradient(135deg,#7c3aed,#2563eb); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
  .btn-cta { position: relative; overflow: hidden; color: #fff; font-family: "Sora","Inter",sans-serif; font-weight: 900; font-size: 19px; letter-spacing: .08em; text-transform: uppercase; padding-top: 20px; padding-bottom: 20px; text-shadow: 0 1px 2px rgba(2,44,30,.7); background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%); box-shadow: 0 18px 40px -10px rgba(5,150,105,.85), inset 0 1px 0 rgba(255,255,255,.35); animation: ctaPulse 2s ease-in-out infinite; }
  @keyframes ctaPulse { 0%, 100% { box-shadow: 0 18px 40px -12px rgba(5,150,105,.8), inset 0 1px 0 rgba(255,255,255,.35); } 50% { box-shadow: 0 26px 58px -8px rgba(16,185,129,1), inset 0 1px 0 rgba(255,255,255,.35); } }
  .btn-cta .arr { font-weight: 900; margin-left: 4px; }
  .btn-cta::after { content: ""; position: absolute; top: 0; left: -65%; width: 45%; height: 100%; background: linear-gradient(100deg, transparent, rgba(255,255,255,.5), transparent); transform: skewX(-18deg); animation: ctaShine 3s ease-in-out infinite; pointer-events: none; }
  @keyframes ctaShine { 0% { left: -65%; } 55%, 100% { left: 140%; } }
  .btn-cta:hover { transform: translateY(-3px) scale(1.02); background: linear-gradient(135deg, #34d399 0%, #10b981 50%, #059669 100%); box-shadow: 0 30px 62px -10px rgba(16,185,129,1), inset 0 1px 0 rgba(255,255,255,.45); }
  .btn-cta:active { transform: translateY(-1px) scale(.995); }
  .price-secure { text-align: center; margin: 14px 0 0; font-size: 12.5px; font-weight: 600; color: #8a90a0; }

  /* Slide-to-start CTA — Apple "slide to unlock" style */
  .slide-cta { position: relative; height: 68px; border-radius: 999px; background: linear-gradient(135deg, #10b981 0%, #22c55e 55%, #16a34a 100%); box-shadow: inset 0 2px 8px rgba(2,44,30,.35), inset 0 -1px 0 rgba(255,255,255,.2), 0 20px 46px -12px rgba(34,197,94,.85); overflow: hidden; user-select: none; -webkit-user-select: none; cursor: pointer; }
  .slide-cta-fill { position: absolute; left: 0; top: 0; bottom: 0; width: 68px; border-radius: 999px; background: linear-gradient(90deg, #10b981, #34d399 70%, #6ee7b7); opacity: 0; box-shadow: 0 0 30px rgba(52,211,153,.65); }
  .slide-cta-txt { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; padding-left: 34px; font-family: "Sora","Inter",sans-serif; font-weight: 800; font-size: 17px; letter-spacing: .09em; text-transform: uppercase; pointer-events: none; white-space: nowrap; color: #ffffff; text-shadow: 0 1px 3px rgba(2,60,30,.45); }
  .slide-cta::after { content: ""; position: absolute; top: 0; left: -65%; width: 45%; height: 100%; background: linear-gradient(100deg, transparent, rgba(255,255,255,.4), transparent); transform: skewX(-18deg); animation: ctaShine 3s ease-in-out infinite; pointer-events: none; }
  .slide-cta-knob { position: absolute; left: 7px; top: 7px; width: 54px; height: 54px; border-radius: 50%; background: linear-gradient(180deg, #ffffff 0%, #f0fdf6 55%, #d9f5e8 100%); display: flex; align-items: center; justify-content: center; color: #059669; font-weight: 800; font-size: 26px; box-shadow: 0 1px 0 rgba(255,255,255,.9) inset, 0 -6px 12px rgba(2,44,30,.1) inset, 0 8px 20px rgba(2,44,30,.45); cursor: grab; touch-action: none; will-change: transform; }
  .slide-cta-knob span { transform: translateX(1px); line-height: 1; font-weight: 900; -webkit-text-stroke: 1.6px currentColor; paint-order: stroke fill; }
  .slide-cta:not(.dragging):not(.done) .slide-cta-knob { animation: slideHint 3s ease-in-out infinite; }
  @keyframes slideHint { 0%, 100% { transform: translateX(0); } 10% { transform: translateX(18px); } 20% { transform: translateX(0); } 26% { transform: translateX(7px); } 32% { transform: translateX(0); } }
  .slide-cta.dragging .slide-cta-knob { cursor: grabbing; animation: none; box-shadow: 0 1px 0 rgba(255,255,255,.9) inset, 0 -6px 12px rgba(0,0,0,.08) inset, 0 10px 26px rgba(0,0,0,.6), 0 0 0 6px rgba(255,255,255,.07); }
  .slide-cta.dragging .slide-cta-txt { animation: none; }
  .slide-cta.snap .slide-cta-knob { transition: transform .48s cubic-bezier(.18,1.4,.3,1); }
  .slide-cta.snap .slide-cta-fill { transition: width .48s cubic-bezier(.18,1.4,.3,1), opacity .3s ease; }
  .slide-cta.done { background: linear-gradient(180deg, #16a34a, #22c55e); }
  .slide-cta.done .slide-cta-txt { color: #fff; background: none; -webkit-text-fill-color: #fff; animation: none; padding-left: 0; text-shadow: 0 1px 3px rgba(2,44,30,.6); }
  .slide-cta.done .slide-cta-knob { background: linear-gradient(180deg, #fff, #d1fae5); color: #059669; animation: s2uPop .45s cubic-bezier(.18,1.6,.4,1); }
  @keyframes s2uPop { 0% { scale: 1; } 45% { scale: 1.18; } 100% { scale: 1; } }
  .slide-cta.done::before { content: ""; position: absolute; inset: 0; border-radius: 999px; box-shadow: 0 0 0 0 rgba(16,185,129,.55); animation: s2uRing .9s ease-out; }
  @keyframes s2uRing { 0% { box-shadow: 0 0 0 0 rgba(16,185,129,.55); } 100% { box-shadow: 0 0 0 22px rgba(16,185,129,0); } }
  .slide-cta.done .slide-cta-knob span { transform: none; }
  @media (max-width: 640px) { .slide-cta-txt { font-size: 13px; letter-spacing: .06em; padding-left: 68px; padding-right: 14px; } }
  @media (prefers-reduced-motion: reduce) { .slide-cta-txt, .slide-cta-knob, .slide-cta.done::before { animation: none !important; } }

  /* Complete-system pricing card */
  .price-card { position: relative; overflow: hidden; padding: 0; text-align: left; animation: priceGlow 4.5s ease-in-out infinite; }
  @keyframes priceGlow { 0%, 100% { box-shadow: 0 30px 70px -42px rgba(124,58,237,.5); } 50% { box-shadow: 0 44px 96px -38px rgba(219,39,119,.55); } }
  .price-head { position: relative; padding: 26px 32px 22px; background: linear-gradient(135deg, rgba(124,58,237,.11), rgba(219,39,119,.08)); border-bottom: 1px solid rgba(124,58,237,.14); }
  .price-head .price-plan { margin-bottom: 0; }
  .price-allin { position: absolute; top: 24px; right: 26px; display: inline-flex; align-items: center; gap: 6px; font-family: "Sora","Inter",sans-serif; font-weight: 800; font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: #fff; background: linear-gradient(135deg,#10b981,#059669); padding: 6px 12px; border-radius: 999px; box-shadow: 0 10px 22px -10px rgba(16,185,129,.75); }
  .price-head-t { font-family: "Sora","Inter",sans-serif; font-weight: 800; font-size: clamp(20px, 3vw, 25px); line-height: 1.15; margin: 14px 0 6px; color: #14141c; text-wrap: balance; }
  .price-head-p { margin: 0; color: #5b6472; font-size: 14.5px; line-height: 1.5; max-width: 470px; }
  .price-body { padding: 24px 32px 32px; }
  .price-amt { display: inline-block; }
  .price-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
  .price-chip { font-size: 12.5px; font-weight: 700; color: #4a4a55; background: #f5f3fb; border: 1px solid #e7e2f4; border-radius: 999px; padding: 7px 13px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; cursor: default; }
  .price-chip:hover { transform: translateY(-2px); box-shadow: 0 12px 22px -13px rgba(124,58,237,.6); border-color: rgba(124,58,237,.4); }
  .price-value { display: flex; align-items: center; gap: 15px; padding: 15px 18px; margin-bottom: 24px; background: linear-gradient(120deg, rgba(124,58,237,.09), rgba(219,39,119,.08)); border: 1px solid rgba(124,58,237,.18); border-radius: 16px; }
  .pv-num { flex: 0 0 auto; font-family: "Sora","Inter",sans-serif; font-weight: 800; font-size: 42px; line-height: 1; background: linear-gradient(135deg,#7c3aed,#db2777); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
  .pv-txt { display: flex; flex-direction: column; gap: 2px; }
  .pv-txt b { font-family: "Sora","Inter",sans-serif; font-size: 15px; color: #14141c; }
  .pv-txt span { font-size: 13px; color: #6b6b78; line-height: 1.45; }
  .price-incl-head { font-family: "Sora","Inter",sans-serif; font-weight: 800; font-size: 15px; color: #14141c; margin: 4px 0 14px; }
  .price-incl-head span { color: #9095a3; font-weight: 600; }
  .price-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 22px; margin-bottom: 24px; }
  .price-ticks li { position: relative; padding: 8px 10px 8px 32px; margin: 0; border-radius: 10px; font-size: 14.5px; transition: background .2s ease; }
  .price-ticks li::before { top: 9px; left: 8px; }
  .price-ticks li:hover { background: rgba(124,58,237,.07); }
  @media (max-width: 640px) { .price-2col { grid-template-columns: 1fr; } .price-head-t { font-size: 21px; } .price-allin { position: static; display: inline-flex; margin-bottom: 12px; } }
  @media (prefers-reduced-motion: reduce) { .btn-cta, .btn-cta::after, .price-card { animation: none; } }

  /* Intake Coach interactive showcase */
  .ic-showcase { margin-top: 8px; }
  .ic-head-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; flex-wrap: wrap; margin-bottom: 18px; }
  .ic-head-row h3 { margin: 0 0 6px; }
  .ic-head-row p { margin: 0; max-width: 640px; color: #5b6472; line-height: 1.6; }
  .ic-auto { flex: 0 0 auto; font-size: 12.5px; font-weight: 700; color: #7c3aed; background: rgba(124,58,237,.08); border: 1px solid rgba(124,58,237,.2); border-radius: 999px; padding: 8px 14px; white-space: nowrap; }
  .ic-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
  .ic-tab { text-align: left; background: #fff; border: 1px solid #e6e6ee; border-radius: 14px; padding: 10px 16px; cursor: pointer; transition: all .2s cubic-bezier(.22,1,.36,1); display: flex; flex-direction: column; gap: 2px; }
  .ic-tab b { font-size: 14px; color: #14141c; font-family: "Sora","Inter",sans-serif; }
  .ic-tab span { font-size: 12px; color: #8a8a98; }
  .ic-tab:hover { border-color: #c9b8f5; transform: translateY(-1px); }
  .ic-tab.active { border-color: transparent; background: linear-gradient(100deg,#2563eb,#7c3aed 55%,#db2777); box-shadow: 0 12px 26px -12px rgba(124,58,237,.6); }
  .ic-tab.active b, .ic-tab.active span { color: #fff; }
  .ic-card { border: 1px solid #e6e6ee; border-radius: 22px; overflow: hidden; background: #fff; box-shadow: 0 40px 80px -55px rgba(20,20,50,.4); }
  .ic-top { background: linear-gradient(135deg,#0b1220,#141d31); color: #fff; padding: 22px 24px; }
  .ic-top-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
  .ic-name { font-family: "Sora","Inter",sans-serif; font-weight: 800; font-size: 22px; margin: 0; color: #fff; }
  .ic-badges { display: flex; gap: 8px; flex-wrap: wrap; }
  .ic-badge { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; padding: 5px 10px; border-radius: 999px; }
  .ic-badge.new { background: #16a34a; color: #fff; }
  .ic-badge.urg { background: #ea8a0b; color: #fff; }
  .ic-badge.dur { background: rgba(255,255,255,.12); color: #cfd6e6; }
  .ic-sub { display: flex; align-items: center; gap: 14px; margin-top: 12px; flex-wrap: wrap; }
  .ic-phone { color: #cfd6e6; font-size: 14px; }
  .ic-case { font-size: 12.5px; font-weight: 600; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 8px; padding: 5px 12px; color: #fff; }
  .ic-metrics { display: grid; grid-template-columns: repeat(4,1fr); border-bottom: 1px solid #eee; }
  .ic-metric { padding: 18px 16px; text-align: center; border-right: 1px solid #eee; }
  .ic-metric:last-child { border-right: none; }
  .ic-mlabel { display: block; font-size: 10.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #9a9aa8; margin-bottom: 6px; }
  .ic-mval { font-family: "Sora","Inter",sans-serif; font-weight: 800; font-size: 26px; line-height: 1; color: #14141c; }
  .ic-mval i { font-style: normal; font-size: 13px; color: #b3b3c0; font-weight: 600; }
  .ic-mval.ic-good { color: #16a34a; -webkit-text-fill-color: #16a34a; }
  .ic-stars { color: #f59e0b; font-size: 16px; letter-spacing: 2px; font-weight: 700; }
  .ic-stars small { color: #9a9aa8; font-size: 12px; margin-left: 4px; letter-spacing: 0; }
  .ic-mnote { display: block; font-size: 10px; color: #b7b7c4; margin-top: 6px; }
  .ic-summary { padding: 20px 24px; font-style: italic; color: #3a3a48; line-height: 1.6; background: #faf9ff; border-left: 3px solid #7c3aed; }
  .ic-body { padding: 22px 24px 26px; }
  .ic-sec { margin-bottom: 18px; }
  .ic-sec:last-child { margin-bottom: 0; }
  .ic-sec h4 { font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; margin: 0 0 8px; }
  .ic-sec p { margin: 0; color: #4a4a58; line-height: 1.6; }
  .ic-sugg { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
  .ic-sugg li { position: relative; padding-left: 26px; color: #4a4a58; line-height: 1.55; font-size: 14px; }
  .ic-sugg li::before { content: "✦"; position: absolute; left: 0; top: 0; color: #7c3aed; }
  .ic-facts { display: grid; gap: 8px; }
  .ic-fact { font-size: 14px; background: #f6f6fb; border-left: 3px solid #16a34a; border-radius: 8px; padding: 9px 12px; color: #4a4a58; }
  .ic-fact b { color: #14141c; }
  .ic-foot { text-align: center; color: #8a8a98; font-size: 13px; margin: 18px auto 0; max-width: 700px; }
  @media (max-width: 620px) { .ic-metrics { grid-template-columns: repeat(2,1fr); } .ic-metric:nth-child(2){ border-right: none; } .ic-metric:nth-child(1),.ic-metric:nth-child(2){ border-bottom: 1px solid #eee; } }

  /* "No cheaper way" visibility comparison */
  .compare { display: grid; gap: 12px; margin-top: 6px; }
  .compare-row { display: grid; grid-template-columns: 232px 1fr auto; gap: 20px; align-items: center; background: #fff; border: 1px solid #e6e6ee; border-radius: 16px; padding: 16px 20px; }
  .compare-row.compare-win { border-color: transparent; background: linear-gradient(100deg, rgba(37,99,235,.07), rgba(124,58,237,.07) 55%, rgba(219,39,119,.07)); box-shadow: 0 24px 50px -34px rgba(124,58,237,.6); position: relative; }
  .compare-row.compare-win::before { content: ""; position: absolute; inset: 0; border-radius: 16px; padding: 1.5px; background: linear-gradient(100deg,#2563eb,#7c3aed 55%,#db2777); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
  .compare-name b { display: block; font-family: "Sora","Inter",sans-serif; font-size: 16px; color: #14141c; }
  .compare-name span { font-size: 12.5px; color: #8a8a98; }
  .compare-desc { color: #4a4a58; font-size: 14px; line-height: 1.55; }
  .compare-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; padding: 6px 12px; border-radius: 999px; white-space: nowrap; }
  .compare-tag.ok { background: rgba(22,163,74,.12); color: #16a34a; }
  .compare-tag.warn { background: rgba(234,138,11,.14); color: #b4700a; }
  @media (max-width: 720px) { .compare-row { grid-template-columns: 1fr; gap: 8px; } .compare-tag { justify-self: start; } }

  /* Known-directory list (billion-dollar proof) */
  .dir-list { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin: 4px 0 18px; }
  .dir-chip { display: inline-flex; align-items: center; justify-content: center; gap: 9px; background: #fff; border: 1px solid #e6e6ee; border-radius: 12px; padding: 12px 18px; font-family: "Sora","Inter",sans-serif; font-weight: 700; font-size: 15px; color: #14141c; box-shadow: 0 14px 34px -26px rgba(20,20,50,.55); }
  .dir-chip::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: linear-gradient(100deg,#2563eb,#7c3aed 55%,#db2777); }
  /* Directory chips with real brand logos + balanced grid */
  .dir-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px; max-width: 780px; margin: 4px auto 18px; }
  .logo-chip { padding: 11px 16px; }
  .logo-chip::before { display: none; }
  .dir-logo { width: 22px; height: 22px; border-radius: 5px; object-fit: contain; background: #fff; flex: 0 0 auto; }
  @media (max-width: 760px) { .dir-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
  .dir-note { text-align: center; color: #5b6472; font-size: 14.5px; line-height: 1.6; max-width: 720px; margin: 0 auto; }
  .dir-note b { color: #14141c; font-family: "Sora","Inter",sans-serif; }

  /* AI Answering System */
  .cards-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
  @media (max-width: 900px) { .cards-4 { grid-template-columns: repeat(2,1fr); } }
  @media (max-width: 520px) { .cards-4 { grid-template-columns: 1fr; } }
  .phone-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 22px; }
  @media (max-width: 720px) { .phone-stats { grid-template-columns: 1fr; } }
  .phone-stat { background: #fff; border: 1px solid #e6e6ee; border-radius: 16px; padding: 18px 22px; display: flex; align-items: center; gap: 16px; box-shadow: 0 18px 40px -30px rgba(20,20,50,.5); }
  .phone-stat b { font-family: "Sora","Inter",sans-serif; font-size: 34px; line-height: 1; flex: 0 0 auto; }
  .phone-stat span { color: #4a4a58; font-size: 13.5px; line-height: 1.5; }
  .punch { text-align: center; margin-top: 24px; font-size: 16px; color: #14141c; }
  .punch strong { font-family: "Sora","Inter",sans-serif; }
  .dark .punch { color: #eef0f6; }
  .dark .punch strong { color: #fff; }

  /* AI SEO — interactive answer demo */
  .ai-demo { max-width: 620px; margin: 6px auto 0; }
  .ai-engines { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
  .ai-eng { display: inline-flex; align-items: center; gap: 8px; font-family: "Sora","Inter",sans-serif; font-weight: 700; font-size: 13px; padding: 8px 15px 8px 10px; border-radius: 999px; border: 1px solid #e6e6ee; background: #fff; color: #4a4a58; cursor: pointer; transition: all .2s cubic-bezier(.22,1,.36,1); }
  .ai-eng:hover { border-color: #c9b8f5; transform: translateY(-1px); }
  .ai-eng.active { background: linear-gradient(100deg,#2563eb,#7c3aed 55%,#db2777); border-color: transparent; color: #fff; box-shadow: 0 12px 26px -14px rgba(124,58,237,.6); }
  .ai-eng-logo { width: 24px; height: 24px; border-radius: 6px; object-fit: contain; background: #fff; padding: 3px; flex: 0 0 auto; box-shadow: 0 2px 6px -2px rgba(20,20,50,.25); }
  .ai-a-logo { width: 24px; height: 24px; border-radius: 6px; object-fit: contain; background: #fff; padding: 3px; flex: 0 0 auto; border: 1px solid #eee; }
  .ai-chat { background: #fff; border: 1px solid #e9e9f0; border-radius: 20px; padding: 22px 24px; box-shadow: 0 44px 90px -54px rgba(20,20,50,.5); text-align: left; }
  .ai-q { border-bottom: 1px solid #f0f0f3; padding-bottom: 15px; margin-bottom: 15px; }
  .ai-q-label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .06em; font-weight: 700; color: #9a9aa6; margin-bottom: 7px; }
  .ai-q p { margin: 0; font-size: 16.5px; font-weight: 600; color: #14141c; font-family: "Sora","Inter",sans-serif; line-height: 1.4; }
  .ai-a-head { display: flex; align-items: center; gap: 9px; margin-bottom: 11px; }
  .ai-a-dot { width: 10px; height: 10px; border-radius: 50%; background: linear-gradient(100deg,#2563eb,#7c3aed 55%,#db2777); box-shadow: 0 0 0 4px rgba(124,58,237,.12); animation: aiDot 1.6s ease-in-out infinite; }
  @keyframes aiDot { 0%,100%{ box-shadow: 0 0 0 3px rgba(124,58,237,.14); } 50%{ box-shadow: 0 0 0 7px rgba(124,58,237,.05); } }
  .ai-a-engine { font-family: "Sora","Inter",sans-serif; font-weight: 700; font-size: 13.5px; color: #7c3aed; }
  .ai-a-body { margin: 0; font-size: 15px; line-height: 1.62; color: #3a3a46; min-height: 72px; }
  .ai-a-body.in { animation: aiFade .5s cubic-bezier(.22,1,.36,1) both; }
  @keyframes aiFade { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: none; } }
  .ai-a-body mark { background: none; color: #6d28d9; font-weight: 700; padding: 0 1px; }
  .ai-src { display: inline-block; margin-top: 8px; font-size: 12px; color: #2563eb; font-weight: 600; }
  .ai-cursor { color: #7c3aed; font-weight: 700; animation: aiBlink 1s steps(2,end) infinite; }
  @keyframes aiBlink { 50% { opacity: 0; } }
  .ai-demo-note { text-align: center; font-size: 13.5px; color: #6b6b78; margin: 16px auto 0; max-width: 520px; }

  /* AI Answering — call coverage visual */
  .callcov { display: flex; flex-direction: column; align-items: center; margin: 6px auto 30px; }
  .callcov-stage { position: relative; width: 230px; height: 230px; display: grid; place-items: center; }
  .callcov-ring { position: absolute; width: 96px; height: 96px; border-radius: 50%; border: 2px solid rgba(124,58,237,.5); animation: ccPulse 2.6s ease-out infinite; }
  .callcov-ring.d2 { animation-delay: .85s; }
  .callcov-ring.d3 { animation-delay: 1.7s; }
  @keyframes ccPulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(2.35); opacity: 0; } }
  .callcov-core { position: relative; z-index: 2; width: 92px; height: 92px; border-radius: 50%; background: linear-gradient(120deg,#2563eb,#7c3aed 55%,#db2777); display: grid; place-items: center; font-size: 40px; box-shadow: 0 24px 54px -20px rgba(124,58,237,.75); animation: ccBob 3s ease-in-out infinite; }
  @keyframes ccBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
  .callcov-tag { position: absolute; font-family: "Sora","Inter",sans-serif; font-size: 11.5px; font-weight: 700; color: #14141c; background: #fff; border: 1px solid #e9e9f0; border-radius: 999px; padding: 5px 11px; box-shadow: 0 12px 26px -16px rgba(20,20,50,.6); animation: ccTag 4s ease-in-out infinite; }
  .callcov-tag.t1 { top: 6px; left: 8px; animation-delay: 0s; }
  .callcov-tag.t2 { top: 20px; right: 0; animation-delay: 1s; }
  .callcov-tag.t3 { bottom: 22px; left: 0; animation-delay: 2s; }
  .callcov-tag.t4 { bottom: 4px; right: 14px; animation-delay: 3s; }
  @keyframes ccTag { 0%,100% { transform: translateY(0); opacity: .78; } 50% { transform: translateY(-5px); opacity: 1; } }
  .callcov-log { display: inline-flex; align-items: center; gap: 10px; margin-top: 8px; background: #fff; border: 1px solid #e9e9f0; border-radius: 999px; padding: 9px 18px; font-size: 13.5px; font-weight: 600; color: #14141c; box-shadow: 0 16px 34px -22px rgba(20,20,50,.5); }
  .cc-dot { width: 9px; height: 9px; border-radius: 50%; background: #16a34a; box-shadow: 0 0 0 0 rgba(22,163,74,.5); animation: ccLive 1.6s ease-out infinite; }
  @keyframes ccLive { 0% { box-shadow: 0 0 0 0 rgba(22,163,74,.5); } 100% { box-shadow: 0 0 0 8px rgba(22,163,74,0); } }
  #callLogText { transition: opacity .3s ease; }

  /* Lead attribution — interactive intake submission card */
  .attr-wrap { max-width: 660px; margin: 34px auto 0; }
  .attr-head { text-align: center; margin-bottom: 18px; }
  .attr-head h3 { margin: 0 0 8px; }
  .attr-sub { color: #5b6472; font-size: 15px; line-height: 1.55; max-width: 560px; margin: 0 auto; }
  .attr-tabs { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
  .attr-tab { text-align: left; background: #fff; border: 1px solid #e6e6ee; border-radius: 12px; padding: 9px 15px; cursor: pointer; color: #14141c; transition: all .2s cubic-bezier(.22,1,.36,1); display: flex; flex-direction: column; gap: 2px; }
  .attr-tab b { font-family: "Sora","Inter",sans-serif; font-size: 13.5px; }
  .attr-tab span { font-size: 11.5px; color: #7a8290; }
  .attr-tab:hover { border-color: #c9b8f5; transform: translateY(-1px); box-shadow: 0 10px 22px -14px rgba(124,58,237,.4); }
  .attr-tab.active { background: linear-gradient(100deg,#2563eb,#7c3aed 55%,#db2777); border-color: transparent; box-shadow: 0 14px 30px -14px rgba(124,58,237,.7); }
  .attr-tab.active b, .attr-tab.active span { color: #fff; }
  .attr-card { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 40px 80px -50px rgba(20,20,50,.45); border: 1px solid #ececf3; }
  .attr-c-body { padding: 24px 26px 4px; }
  .attr-sec { padding-bottom: 16px; margin-bottom: 16px; border-bottom: 1px solid #eef0f3; }
  .attr-eyebrow { display: block; font-family: "Sora","Inter",sans-serif; font-weight: 800; font-size: 15px; letter-spacing: .04em; text-transform: uppercase; color: #14141c; margin-bottom: 14px; }
  .attr-eyebrow2 { display: block; font-family: "Sora","Inter",sans-serif; font-weight: 700; font-size: 12px; letter-spacing: .05em; text-transform: uppercase; color: #7a7a88; margin-bottom: 10px; }
  .attr-quote { background: #f6f7f9; border: 1px solid #eceef2; border-radius: 12px; padding: 13px 15px; font-size: 15px; color: #14141c; }
  .attr-qa { display: flex; flex-direction: column; }
  .attr-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; padding: 11px 0; border-bottom: 1px solid #f2f2f5; }
  .attr-row:last-child { border-bottom: none; }
  .attr-row > span { font-size: 13.5px; color: #3a3a46; line-height: 1.45; }
  .attr-row b { flex: 0 0 auto; font-family: "Sora","Inter",sans-serif; font-weight: 800; font-size: 12.5px; letter-spacing: .05em; }
  .attr-row b.yes { color: #16a34a; }
  .attr-row b.no { color: #dc2626; }
  .attr-source { position: relative; padding: 20px 26px 24px; background: linear-gradient(180deg, #f3efff, #ffffff 82%); }
  .attr-source::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(100deg,#2563eb,#7c3aed 55%,#db2777); }
  .attr-source::after { content: ""; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 0 2px rgba(124,58,237,.14); animation: attrGlow 2.6s ease-in-out infinite; }
  @keyframes attrGlow { 0%,100% { box-shadow: inset 0 0 0 2px rgba(124,58,237,.12); } 50% { box-shadow: inset 0 0 0 2px rgba(124,58,237,.42); } }
  .attr-src-label { display: inline-flex; align-items: center; gap: 8px; font-family: "Sora","Inter",sans-serif; font-weight: 800; font-size: 12px; letter-spacing: .05em; text-transform: uppercase; color: #7c3aed; margin-bottom: 16px; }
  .attr-src-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px 24px; }
  .attr-src-grid > div { display: flex; flex-direction: column; gap: 5px; }
  .attr-src-grid .attr-k { font-size: 11.5px; color: #9a9aa6; text-transform: uppercase; letter-spacing: .05em; font-weight: 700; }
  .attr-src-grid b { font-family: "Sora","Inter",sans-serif; font-size: 14px; color: #14141c; }
  .attr-src-grid a { color: #2563eb; font-size: 14px; text-decoration: none; font-weight: 600; word-break: break-word; }
  .attr-chips { display: flex; gap: 8px; flex-wrap: wrap; }
  .attr-chip { font-family: "Sora","Inter",sans-serif; font-weight: 700; font-size: 12px; padding: 5px 10px; border-radius: 8px; }
  .attr-chip.green { background: #dcfce7; color: #15803d; }
  .attr-chip.boss { background: #f97316; color: #fff; }
  .attr-chip.ai { background: #ede9fe; color: #6d28d9; }
  .attr-chip.paid { background: #fef3c7; color: #b45309; }
  .attr-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 20px; }
  .attr-stat { background: #f7f8fa; border: 1px solid #eceef2; border-radius: 12px; padding: 13px; text-align: center; }
  .attr-stat b { display: block; font-family: "Sora","Inter",sans-serif; font-weight: 800; font-size: 22px; color: #14141c; }
  .attr-stat span { font-size: 10.5px; color: #9a9aa6; text-transform: uppercase; letter-spacing: .06em; font-weight: 700; margin-top: 5px; display: block; }
  @media (max-width: 520px) { .attr-src-grid { grid-template-columns: 1fr; } .attr-stats { grid-template-columns: 1fr; } }

  /* Hero + ecosystem */
  .hero { min-height: 100vh; display: flex; align-items: center; padding: 44px 24px 18vh; }
  .hero-inner { max-width: 1400px; width: 100%; }
  .hero-title, .h2, .h3, .hero-sub, .sub { text-wrap: balance; }
  .hero-title { font-size: clamp(29px, 4.2vw, 56px); margin: 14px 0 16px; }
  .hero-top { font-size: 13.5px; font-weight: 700; letter-spacing: .02em; color: #7c3aed; }
  .hero-top strong { color: #14141c; font-family: "Sora","Inter",sans-serif; }
  .hero-sub { margin: 0 auto 24px; max-width: 700px; color: #14141c; }

  /* Hero ecosystem — orbital diagram */
  .eco { width: min(840px, 94vw); margin: 4px auto 8px; }
  .eco-ring { position: relative; width: 100%; aspect-ratio: 1 / 1; container-type: size; }
  .eco-ring::before { content: ""; position: absolute; top: 50%; left: 50%; width: 78cqmin; height: 78cqmin; transform: translate(-50%,-50%); border-radius: 50%; border: 2px dashed rgba(124,58,237,.28); animation: eco-spin 44s linear infinite; }
  .eco-ring::after { content: ""; position: absolute; top: 50%; left: 50%; width: 80cqmin; height: 80cqmin; transform: translate(-50%,-50%); border-radius: 50%; background: conic-gradient(from 0deg, rgba(37,99,235,.22), rgba(124,58,237,.22), rgba(219,39,119,.22), rgba(37,99,235,.22)); -webkit-mask: radial-gradient(circle, transparent 38cqmin, #000 39cqmin, #000 40cqmin, transparent 41cqmin); mask: radial-gradient(circle, transparent 38cqmin, #000 39cqmin, #000 40cqmin, transparent 41cqmin); animation: eco-spin 18s linear infinite; }
  @keyframes eco-spin { to { transform: translate(-50%,-50%) rotate(360deg); } }
  .eco-pulse { position: absolute; top: 50%; left: 50%; width: 37cqmin; height: 37cqmin; transform: translate(-50%,-50%); border-radius: 50%; border: 2px solid rgba(124,58,237,.4); animation: eco-pulse 3s ease-out infinite; z-index: 1; }
  @keyframes eco-pulse { 0% { opacity: .55; transform: translate(-50%,-50%) scale(1); } 100% { opacity: 0; transform: translate(-50%,-50%) scale(1.9); } }
  .eco-core { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 42cqmin; height: 42cqmin; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 4cqmin; background: radial-gradient(circle at 32% 28%, #ffffff, #f3f0ff); border: 1px solid #e6e6ee; box-shadow: 0 30px 60px -30px rgba(124,58,237,.55); z-index: 3; }
  .eco-core-t { font-family: "Sora","Inter",sans-serif; font-weight: 800; font-size: 4.6cqmin; line-height: 1.08; }
  .eco-core-s { font-size: 2cqmin; color: #14141c; margin-top: 0.9cqmin; line-height: 1.2; font-weight: 600; }
  .eco-core-s2 { display: flex; align-items: center; justify-content: center; gap: 0.7cqmin; margin-top: 2cqmin; font-family: "Sora","Inter",sans-serif; font-size: 1.5cqmin; line-height: 1.3; letter-spacing: .02em; text-transform: uppercase; font-weight: 800; white-space: nowrap; max-width: 100%; }
  .eco-core-s2 b { font-weight: 800; }
  .eco-core-s2 .f1 { color: #2563eb; }
  .eco-core-s2 .f2 { color: #7c3aed; }
  .eco-core-s2 .f3 { color: #db2777; }
  .eco-core-s2 i { font-style: normal; font-weight: 900; font-size: 1.9cqmin; line-height: 1; background: linear-gradient(100deg,#2563eb,#7c3aed 55%,#db2777); -webkit-background-clip: text; background-clip: text; color: transparent; }
  .eco-node { position: absolute; top: 50%; left: 50%; width: 21cqmin; height: 21cqmin; transform: translate(-50%,-50%) rotate(var(--a)) translate(37cqmin) rotate(calc(-1 * var(--a))); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 0.5cqmin; background: #fff; border: 1px solid #e6e6ee; box-shadow: 0 16px 34px -22px rgba(20,20,50,.5); cursor: pointer; transition: transform .28s cubic-bezier(.22,1,.36,1), box-shadow .28s, border-color .28s, background .28s; z-index: 2; padding: 1.6cqmin; }
  .eco-ic { width: 8.2cqmin; height: 8.2cqmin; border-radius: 27%; display: flex; align-items: center; justify-content: center; flex: none; background: linear-gradient(145deg, var(--ic1, #7c3aed), var(--ic2, #a855f7)); box-shadow: 0 3px 8px -2px rgba(20,20,50,.4), inset 0 1px 1.5px rgba(255,255,255,.55), inset 0 -2.5px 5px rgba(0,0,0,.18); }
  .eco-ic svg { width: 58%; height: 58%; stroke: #fff; fill: none; stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 1px 1px rgba(0,0,0,.22)); }
  .eco-lbl { font-family: "Sora","Inter",sans-serif; font-weight: 700; font-size: 2.1cqmin; line-height: 1.12; color: #14141c; }
  .eco-node:hover, .eco-node.active { border-color: transparent; box-shadow: 0 24px 46px -18px rgba(124,58,237,.6); transform: translate(-50%,-50%) rotate(var(--a)) translate(37cqmin) rotate(calc(-1 * var(--a))) scale(1.14); z-index: 4; }
  .eco-node.active { background: linear-gradient(100deg, rgba(37,99,235,.1), rgba(124,58,237,.1) 55%, rgba(219,39,119,.1)); }
  .eco-node.active::after { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px; background: linear-gradient(100deg,#2563eb,#7c3aed 55%,#db2777); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
  .eco-detail { text-align: center; max-width: 560px; margin: 4px auto 0; min-height: 0; }
  .eco-detail b { display: block; font-family: "Sora","Inter",sans-serif; font-size: 17px; color: #14141c; margin-bottom: 5px; text-wrap: balance; }
  .eco-detail span:not(.eco-hint) { color: #4a4a58; font-size: 14.5px; line-height: 1.55; text-wrap: balance; }
  /* on desktop the description lives in the hover tooltip, not at the bottom */
  .eco-detail > b, .eco-detail > span:not(.eco-hint) { display: none; }
  /* hover detail lives INSIDE the center circle so it never covers other text */
  .eco-tip { position: absolute; inset: 0; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 5.6cqmin; background: radial-gradient(circle at 32% 28%, #ffffff, #f3f0ff); z-index: 6; opacity: 0; transform: scale(.9); transition: opacity .22s ease, transform .3s cubic-bezier(.18,1.3,.35,1); pointer-events: none; }
  .eco-tip.show { opacity: 1; transform: scale(1); }
  .eco-tip::after { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 2px; background: linear-gradient(115deg, #2563eb, #7c3aed 55%, #db2777); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
  .eco-tip b { display: block; font-family: "Sora","Inter",sans-serif; font-size: 2.7cqmin; margin-bottom: 1.3cqmin; background: linear-gradient(100deg, #2563eb, #7c3aed 60%, #db2777); -webkit-background-clip: text; background-clip: text; color: transparent; text-wrap: balance; }
  .eco-tip span { color: #14141c; font-size: 1.95cqmin; line-height: 1.55; text-wrap: balance; }
  .eco-core-t, .eco-core-s, .eco-core-s2 { transition: opacity .2s ease; }
  .eco-core:has(.eco-tip.show) > .eco-core-t,
  .eco-core:has(.eco-tip.show) > .eco-core-s,
  .eco-core:has(.eco-tip.show) > .eco-core-s2 { opacity: 0; }
  .eco-hint em { font-style: normal; }
  .eco-hint .hm { display: none; }
  /* pulsing prompt — begs to be hovered */
  .eco-hint { animation: hintPulse 2.1s ease-in-out infinite; will-change: transform; }
  @keyframes hintPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(124,58,237,.38); }
    50% { transform: scale(1.06); box-shadow: 0 0 0 11px rgba(124,58,237,0); }
  }
  @media (prefers-reduced-motion: reduce) { .eco-hint { animation: none; } }
  .eco-hint { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-family: "Sora","Inter",sans-serif; font-size: 13.5px; font-weight: 700; color: #7c3aed; background: rgba(124,58,237,.1); border: 1px solid rgba(124,58,237,.32); padding: 10px 19px; border-radius: 999px; text-wrap: balance; }
  .eco-hint .eco-hint-ic { font-size: 14px; animation: ecoTapNudge 1.6s ease-in-out infinite; }
  @keyframes ecoTapNudge { 0%,100% { transform: translateY(0); } 50% { transform: translateY(3px); } }
  @media (prefers-reduced-motion: reduce) { .eco-hint .eco-hint-ic { animation: none; } }
  @media (max-width: 640px) {
    .hero { min-height: auto; padding: 64px 20px 32px; }
    .eco { margin: 4px auto 4px; }
    .eco-ring { container-type: normal; aspect-ratio: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
    .eco-ring::before, .eco-ring::after, .eco-pulse { display: none; }
    .eco-core { position: static; transform: none; width: 100%; height: auto; border-radius: 16px; grid-column: 1 / -1; padding: 14px; }
    .eco-core-t { font-size: 22px; } .eco-core-s { font-size: 13px; } .eco-core-s2 { font-size: 11px; gap: 5px; margin-top: 7px; } .eco-core-s2 i { font-size: 13px; }
    .eco-node { position: static; transform: none; width: auto; height: auto; aspect-ratio: auto; border-radius: 12px; flex-direction: row; justify-content: flex-start; gap: 9px; padding: 12px; }
    .eco-node:hover, .eco-node.active { transform: none; }
    .eco-ic { width: 34px; height: 34px; } .eco-lbl { font-size: 12px; }
    .eco-detail { min-height: 0; }
    .eco-tip { display: none; }
    .eco-detail > b { display: block; }
    .eco-detail > span:not(.eco-hint) { display: inline; }
    .eco-hint .hd { display: none; }
    .eco-hint .hm { display: inline; }
  }

  /* Journey step labels — bigger, interactive pill on section eyebrows */
  /* Prevent orphan words (one word alone on a line) across key copy */
  .h2, .h3, .sub, .hero-sub, .section-head .sub, .eco-detail b, .card h3, .psviz-h { text-wrap: balance; }
  .eyebrow:has(.step-n) { display: inline-flex; align-items: center; font-family: "Sora","Inter",sans-serif; font-weight: 700; font-size: 16px; letter-spacing: .01em; text-transform: none; line-height: 1.2; padding: 8px 18px 8px 8px; border-radius: 999px; border: 1px solid rgba(124,58,237,.22); background: rgba(124,58,237,.07); transition: transform .22s cubic-bezier(.22,1,.36,1), box-shadow .22s, border-color .22s, background .22s; cursor: default; text-wrap: balance; }
  .eyebrow.light:has(.step-n) { border-color: rgba(183,155,245,.35); background: rgba(183,155,245,.12); color: #d9c8ff; }
  .eyebrow:has(.step-n):hover { transform: translateY(-2px) scale(1.035); border-color: rgba(124,58,237,.55); background: rgba(124,58,237,.12); box-shadow: 0 18px 34px -16px rgba(124,58,237,.6); }
  .eyebrow .step-n { position: relative; isolation: isolate; display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%; margin-right: 11px; font-family: "Sora","Inter",sans-serif; font-size: 15px; font-weight: 800; color: #fff; background: linear-gradient(100deg,#2563eb,#7c3aed 55%,#db2777); vertical-align: middle; flex: 0 0 auto; box-shadow: 0 6px 14px -4px rgba(124,58,237,.7); transition: transform .22s cubic-bezier(.22,1,.36,1), box-shadow .22s; }
  .eyebrow .step-n::before { content: ""; position: absolute; inset: -3.5px; border-radius: 50%; z-index: -1; background: conic-gradient(from 0deg, #2563eb, #7c3aed, #db2777, #2563eb); animation: stepSpin 2.6s linear infinite; }
  @keyframes stepSpin { to { transform: rotate(360deg); } }
  .eyebrow:has(.step-n):hover .step-n { transform: rotate(-8deg) scale(1.12); box-shadow: 0 10px 20px -4px rgba(124,58,237,.9); }
  .eyebrow:has(.step-n):hover .step-n::before { animation-duration: 1s; }
  .eyebrow .step-eq { font-family: "Sora","Inter",sans-serif; font-weight: 700; }
  .eyebrow .step-eq b { color: #7c3aed; font-weight: 800; }
  .eyebrow.light .step-eq b { color: #c9b3ff; }
  .eyebrow .step-eq .step-arrow { margin: 0 4px; font-weight: 800; color: #7c3aed; }
  .eyebrow.light .step-eq .step-arrow { color: #c9b3ff; }
  @media (prefers-reduced-motion: reduce) { .eyebrow .step-n::before { animation: none; } }

  /* Custom software — connected-stack hub visual */
  .cs-hub { max-width: 820px; margin: 8px auto 30px; background: radial-gradient(120% 130% at 50% 0%, #f5f2ff 0%, #eef3ff 55%, #ffffff 100%); border: 1px solid #e6e6ee; border-radius: 20px; padding: 28px 24px 30px; text-align: center; }
  .cs-sources { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
  .cs-src { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid #e6e6ee; border-radius: 11px; padding: 9px 13px; font-size: 13px; font-weight: 600; color: #14141c; box-shadow: 0 8px 18px -14px rgba(20,20,50,.45); }
  .cs-src .cs-ico { font-size: 15px; line-height: 1; }
  .cs-flow { position: relative; width: 2px; height: 30px; margin: 10px auto; background: linear-gradient(#cbb8f2, #7c3aed); border-radius: 2px; }
  .cs-flow::after { content: ""; position: absolute; left: 50%; top: 0; width: 7px; height: 7px; margin-left: -3.5px; border-radius: 50%; background: #7c3aed; box-shadow: 0 0 9px #7c3aed; animation: csFlow 1.6s linear infinite; }
  @keyframes csFlow { 0% { top: -3px; opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } 100% { top: 28px; opacity: 0; } }
  .cs-core { display: inline-flex; align-items: center; gap: 14px; text-align: left; background: linear-gradient(100deg,#2563eb,#7c3aed 55%,#db2777); color: #fff; border-radius: 16px; padding: 16px 22px; box-shadow: 0 26px 50px -24px rgba(124,58,237,.65); max-width: 540px; }
  .cs-core-ic { font-size: 26px; line-height: 1; flex: 0 0 auto; }
  .cs-core b { font-family: "Sora","Inter",sans-serif; font-size: 16px; display: block; }
  .cs-core span { font-size: 13px; opacity: .92; display: block; margin-top: 3px; line-height: 1.45; }
  .cs-result { display: inline-block; font-size: 13.5px; font-weight: 600; color: #14141c; background: #fff; border: 1px solid #e6e6ee; border-radius: 999px; padding: 9px 18px; box-shadow: 0 8px 18px -14px rgba(20,20,50,.4); }
  .cs-result b { color: #7c3aed; }

  /* ROI dashboard — live report visual */
  .roiviz { max-width: 940px; margin: 10px auto 22px; border-radius: 18px; overflow: hidden; border: 1px solid #26263a; background: #10101a; box-shadow: 0 50px 90px -50px rgba(0,0,0,.85); }
  .roiviz-bar { display: flex; align-items: center; gap: 10px; padding: 11px 16px; background: #0b0b12; border-bottom: 1px solid #26263a; }
  .roiviz-dots { display: flex; gap: 6px; flex: 0 0 auto; }
  .roiviz-dots i { width: 10px; height: 10px; border-radius: 50%; background: #2b2b3d; }
  .roiviz-url { flex: 1; text-align: center; font-size: 12.5px; color: #dcdcea; font-family: ui-monospace, "SFMono-Regular", Menlo, monospace; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .roiviz-live { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; letter-spacing: .08em; color: #34d399; flex: 0 0 auto; }
  .roiviz-live i { width: 7px; height: 7px; border-radius: 50%; background: #34d399; animation: roiPulse 1.8s infinite; }
  @keyframes roiPulse { 0%{box-shadow:0 0 0 0 rgba(52,211,153,.6);} 70%{box-shadow:0 0 0 7px rgba(52,211,153,0);} 100%{box-shadow:0 0 0 0 rgba(52,211,153,0);} }
  .roiviz-body { padding: 20px; }
  .roiviz-tiles { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
  .roiviz-tile { background: #16161f; border: 1px solid #26263a; border-radius: 12px; padding: 14px 15px; }
  .rt-lbl { display: block; font-size: 10.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: #7d7d92; }
  .rt-num { display: block; font-family: "Sora","Inter",sans-serif; font-weight: 800; font-size: 30px; line-height: 1.1; margin: 7px 0 3px; background: linear-gradient(100deg,#60a5fa,#a78bfa 55%,#f472b6); -webkit-background-clip: text; background-clip: text; color: transparent; }
  .rt-sub { display: block; font-size: 11.5px; color: #dcdcea; }
  .roiviz-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; }
  .roiviz-panel { background: #16161f; border: 1px solid #26263a; border-radius: 12px; padding: 15px 16px; }
  .rp-head { font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: #a78bfa; margin-bottom: 13px; display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
  .rp-head span { color: #6f6f85; font-weight: 600; letter-spacing: .02em; }
  .rp-bar { margin-bottom: 11px; }
  .rp-bar:last-child { margin-bottom: 0; }
  .rp-bar-top { display: flex; justify-content: space-between; font-size: 12.5px; color: #d5d5e0; margin-bottom: 5px; }
  .rp-bar-top b { color: #fff; font-family: "Sora","Inter",sans-serif; }
  .rp-track { height: 7px; border-radius: 5px; background: rgba(255,255,255,.06); overflow: hidden; }
  .rp-fill { height: 100%; width: 0; border-radius: 5px; background: linear-gradient(90deg,#2563eb,#7c3aed 60%,#db2777); transition: width 1.1s cubic-bezier(.22,1,.36,1); }
  .rp-chips { display: flex; flex-wrap: wrap; gap: 8px; }
  .rp-chip { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; color: #f0f0f8; background: rgba(255,255,255,.05); border: 1px solid #2b2b3d; border-radius: 999px; padding: 6px 11px; }
  .rp-chip b { color: #fff; font-family: "Sora","Inter",sans-serif; }
  .rp-div { height: 1px; background: #26263a; margin: 14px 0; }
  .rp-ai { display: flex; gap: 10px; }
  .rp-ai .rp-chip { flex: 1; justify-content: space-between; }
  .roiviz-calls { background: #16161f; border: 1px solid #26263a; border-radius: 12px; padding: 15px 16px; margin-top: 14px; }
  .rc-row { display: flex; align-items: center; gap: 12px; padding: 9px 0; border-top: 1px solid #21212f; }
  .rc-row:first-of-type { border-top: 0; padding-top: 2px; }
  .rc-ic { width: 30px; height: 30px; flex: 0 0 auto; border-radius: 8px; background: linear-gradient(135deg, rgba(37,99,235,.25), rgba(124,58,237,.25)); display: flex; align-items: center; justify-content: center; font-size: 14px; }
  .rc-main { flex: 1; min-width: 0; }
  .rc-name { display: block; font-size: 13px; color: #fff; font-weight: 600; }
  .rc-desc { display: block; font-size: 12px; color: #d7d7e6; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .rc-tag { font-size: 10.5px; font-weight: 700; letter-spacing: .04em; color: #a78bfa; background: rgba(124,58,237,.14); border-radius: 6px; padding: 4px 8px; white-space: nowrap; flex: 0 0 auto; }
  .roiviz-cta { display: flex; justify-content: center; margin: 2px 0 8px; }
  .roiviz-link { display: inline-flex; align-items: center; gap: 8px; font-family: "Sora","Inter",sans-serif; font-weight: 700; font-size: 14px; color: #fff; text-decoration: none; padding: 12px 22px; border-radius: 999px; background: linear-gradient(100deg,#2563eb,#7c3aed 55%,#db2777); box-shadow: 0 18px 40px -18px rgba(124,58,237,.7); transition: transform .18s, box-shadow .18s; }
  .roiviz-link:hover { transform: translateY(-2px); box-shadow: 0 24px 50px -18px rgba(124,58,237,.9); }
  @media (max-width: 700px) {
    .roiviz-tiles { grid-template-columns: 1fr 1fr; }
    .roiviz-cols { grid-template-columns: 1fr; }
    .rt-num { font-size: 25px; }
  }
  /* mobile: never leave a single word alone on its own line */
  @media (max-width: 640px) {
    p, li, .sub, .hero-sub, .card p, dd, dt, blockquote { text-wrap: pretty; }
    h1, h2, h3, h4, .reality-points li, .eyebrow, .eco-hint, .eco-lbl, .eco-tip span, figcaption, .reality-kicker { text-wrap: balance; }
    .reality-kicker { font-size: 10.5px; letter-spacing: .05em; padding: 6px 13px 6px 7px; }
    .reality-kicker::before { font-size: 9.5px; margin-right: 8px; }
    /* calculator: center everything on mobile */
    .psviz-side { text-align: center; }
    .calc-head { display: block; text-align: center; }
    .calc-field label { display: block; text-align: center; }
    .reach-stats { justify-content: center; gap: 12px 16px; }
    .reach-stat { align-items: center; text-align: center; }
    .psone-line { text-align: center; }
  }

  /* ---- E-sign: terms + signature (unlocks checkout) ---- */
  .esign { margin: 4px 0 22px; text-align: left; border-top: 1px solid #ececf4; padding-top: 22px; }
  .esign-head b { display: block; font-family: "Sora","Inter",sans-serif; font-size: 19px; color: #14141c; margin-bottom: 4px; }
  .esign-head span { color: #4a4a58; font-size: 13.5px; line-height: 1.55; }
  .terms-box { max-height: 280px; overflow-y: auto; background: #f8f7fc; border: 1px solid #e6e6ee; border-radius: 14px; padding: 18px 20px; font-size: 13px; color: #4a4a58; line-height: 1.65; margin: 14px 0; -webkit-overflow-scrolling: touch; }
  .terms-box h4 { color: #14141c; font-size: 13.5px; margin: 15px 0 6px; font-family: "Sora","Inter",sans-serif; }
  .terms-box h4:first-of-type { margin-top: 0; }
  .terms-box p { margin: 0 0 8px; }
  .terms-box .t-title { font-weight: 700; color: #14141c; margin-bottom: 2px; }
  .terms-box .t-date { font-weight: 600; color: #8a8a98; margin-bottom: 12px; font-size: 12px; }
  .agree { display: flex; align-items: flex-start; gap: 11px; padding: 14px 15px; background: rgba(124,58,237,.06); border: 1px solid rgba(124,58,237,.25); border-radius: 12px; font-size: 13.5px; color: #33333d; line-height: 1.5; cursor: pointer; }
  .agree input { width: 20px; height: 20px; accent-color: #7c3aed; flex: 0 0 auto; margin-top: 1px; cursor: pointer; }
  .agree b { color: #7c3aed; }
  .esign-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 14px; }
  @media (max-width: 640px) { .esign-grid { grid-template-columns: 1fr; } }
  .esign-field { margin-top: 12px; }
  .esign-grid .esign-field { margin-top: 0; }
  .esign-field label { display: block; font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #6b6b78; margin-bottom: 6px; }
  .esign-field input { width: 100%; padding: 12px 14px; border: 1px solid #e0e0ea; border-radius: 10px; font: inherit; font-size: 14.5px; color: #14141c; background: #fff; box-sizing: border-box; }
  .esign-field input:focus { outline: none; border-color: #7c3aed; box-shadow: 0 0 0 3px rgba(124,58,237,.14); }
  .sig-pad { width: 100%; height: 150px; background: #fff; border: 2px dashed #d5d0e8; border-radius: 12px; touch-action: none; cursor: crosshair; display: block; box-sizing: border-box; }
  .sig-pad.signed { border-style: solid; border-color: #7c3aed; }
  .sig-tools { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; }
  .sig-clear { padding: 8px 16px; background: #fff; border: 1px solid #e0e0ea; border-radius: 999px; color: #6b6b78; font-size: 13px; font-family: inherit; cursor: pointer; transition: all .2s; }
  .sig-clear:hover { border-color: #db2777; color: #db2777; }
  .sig-date { font-size: 13px; color: #6b6b78; }
  .sig-date b { color: #14141c; }
  .esign-btn { display: block; width: 100%; margin-top: 16px; padding: 15px 20px; border: 0; border-radius: 999px; background: linear-gradient(100deg, #2563eb, #7c3aed 55%, #db2777); color: #fff; font-family: "Sora","Inter",sans-serif; font-weight: 700; font-size: 15.5px; cursor: pointer; box-shadow: 0 18px 40px -18px rgba(124,58,237,.7); transition: transform .2s, box-shadow .2s; }
  .esign-btn:hover { transform: translateY(-1px); box-shadow: 0 22px 48px -18px rgba(124,58,237,.85); }
  .esign-btn:disabled { opacity: .55; cursor: not-allowed; transform: none; }
  .esign-err { display: none; margin-top: 10px; color: #db2777; font-size: 13.5px; font-weight: 600; }
  .esign-err.show { display: block; }
  .esign-done { display: none; align-items: center; gap: 10px; margin-top: 4px; padding: 15px 18px; background: rgba(22,163,74,.1); border: 1px solid rgba(22,163,74,.3); border-radius: 12px; color: #14532d; font-weight: 700; font-size: 14.5px; }
  .esign-done.show { display: flex; }
  .esign.signed .terms-box, .esign.signed .agree, .esign.signed .esign-grid, .esign.signed .esign-field, .esign.signed .esign-btn { display: none; }
  /* slide CTA locked until signed */
  .slide-wrap { position: relative; }
  .slide-lock { position: absolute; inset: 0; z-index: 5; display: flex; align-items: center; justify-content: center; gap: 9px; background: rgba(250,250,253,.72); backdrop-filter: blur(2.5px); border-radius: 999px; color: #4a4a58; font-weight: 700; font-size: 14px; cursor: not-allowed; }
  .slide-wrap.unlocked .slide-lock { display: none; }


/* ================================================================
   BOSSEO PRODUCT PAGES — shared components (nav, reviews, videos,
   CTA, footer, eco links, state picker)
   ================================================================ */

/* ---------- Sell strip fixed above nav ---------- */
.sell-strip { position: fixed; top: 0; left: 0; right: 0; z-index: 120; }
.sell-item { padding: 10px 0; }

/* ---------- Nav (products) ---------- */
.nav { top: 40px; background: rgba(255,255,255,0.86); backdrop-filter: saturate(180%) blur(18px); -webkit-backdrop-filter: saturate(180%) blur(18px); border-bottom: 1px solid var(--line); }
.nav-inner { padding: 12px 24px; }
.brand img { height: 50px; width: auto; display: block; }
@media (max-width: 640px) { .brand img { height: 40px; } }
.nav-links { align-items: center; }
.nav-cta, .nav-links a.nav-cta { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: 16px; color: #fff; background: var(--grad); padding: 12px 26px; border-radius: 999px; box-shadow: 0 10px 24px -10px rgba(124,58,237,0.65); transition: transform .2s var(--ease), box-shadow .25s; white-space: nowrap; }
.nav-cta:hover, .nav-links a.nav-cta:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 16px 32px -10px rgba(124,58,237,0.8); }
.nav-drop { position: relative; }
.nav-drop-btn { display: inline-flex; align-items: center; gap: 6px; font-size: 17px; color: var(--muted); font-weight: 600; background: none; border: none; cursor: pointer; font-family: var(--sans); padding: 0; transition: color .2s; }
.nav-drop-btn:hover { color: var(--ink); }
.nav-drop-btn .caret { font-size: 10px; transition: transform .25s var(--ease); }
.nav-drop.open .nav-drop-btn .caret { transform: rotate(180deg); }
.nav-drop-menu { position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px); width: 620px; max-width: calc(100vw - 40px); background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 40px 90px -30px rgba(20,20,50,0.35); padding: 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 2px; opacity: 0; visibility: hidden; transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s; z-index: 50; }
.nav-drop.open .nav-drop-menu, .nav-drop:hover .nav-drop-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-drop-item { display: flex; align-items: center; gap: 11px; padding: 9px 11px; border-radius: 12px; transition: background .18s; }
.nav-drop-item:hover { background: var(--tint); }
.nav-drop-item.current { background: rgba(124,58,237,0.07); }
.ndi-ic { flex: 0 0 auto; width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, var(--ic1,#7c3aed), var(--ic2,#c084fc)); }
.ndi-ic svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.nav-drop-item b { display: block; font-family: var(--disp); font-size: 13.5px; font-weight: 700; color: var(--ink); line-height: 1.2; }
.nav-drop-item span { display: block; font-size: 11.5px; color: var(--muted); margin-top: 1px; }
@media (max-width: 900px) { .nav-links { display: none; } }

/* burger */
.nav-burger { display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: #fff; border-radius: 12px; cursor: pointer; position: relative; }
.nav-burger i { position: absolute; left: 11px; right: 11px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform .28s var(--ease), opacity .2s, top .28s var(--ease); }
.nav-burger i:nth-child(1) { top: 14px; }
.nav-burger i:nth-child(2) { top: 20px; }
.nav-burger i:nth-child(3) { top: 26px; }
.nav-burger.open i:nth-child(1) { top: 20px; transform: rotate(45deg); }
.nav-burger.open i:nth-child(2) { opacity: 0; }
.nav-burger.open i:nth-child(3) { top: 20px; transform: rotate(-45deg); }
@media (max-width: 900px) { .nav-burger { display: block; } }
html.nav-locked { overflow: hidden; }
.nav-panel { position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 90; background: #fff; padding: 122px 22px 30px; overflow-y: auto; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s; }
.nav-panel.open { opacity: 1; visibility: visible; transform: none; }
.nav-panel-label { display: block; font-size: 11.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); margin: 18px 0 10px; }
.nav-panel-grid { display: grid; gap: 4px; }
.nav-panel .nav-drop-item { padding: 10px 10px; }
.nav-panel-cta { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 22px; font-weight: 700; font-size: 15.5px; color: #fff; background: var(--grad); padding: 15px; border-radius: 999px; box-shadow: 0 14px 30px -12px rgba(124,58,237,0.7); }

/* ---------- Product hero ---------- */
.hero.product-hero { min-height: auto; display: block; padding: 168px 24px 76px; }
@media (max-width: 700px) { .hero.product-hero { padding: 138px 20px 48px; } }
.hero-ctas { display: flex; gap: 14px; justify-content: center; align-items: center; flex-wrap: wrap; margin-top: 34px; }
.btn-ghost { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 14px 26px; box-shadow: 0 14px 30px -22px rgba(20,20,50,0.5); transition: transform .2s var(--ease), box-shadow .25s, border-color .2s; }
.btn-ghost:hover { transform: translateY(-2px); border-color: #d9cdf7; box-shadow: 0 18px 38px -20px rgba(124,58,237,0.45); }
.hero-chips { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }
.hero-eyebrow-ic { display: inline-flex; align-items: center; gap: 9px; }
.hero-eyebrow-ic .pi { width: 26px; height: 26px; border-radius: 8px; display: inline-grid; place-items: center; color: #fff; background: linear-gradient(135deg, var(--ic1,#7c3aed), var(--ic2,#c084fc)); }
.hero-eyebrow-ic .pi svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- State picker ---------- */
.ps-picker { display: flex; flex-direction: column; gap: 8px; margin-bottom: 4px; }
.ps-picker label { font-size: 13px; font-weight: 600; color: #5b6472; }
.ps-select-wrap { position: relative; }
.ps-select-wrap::after { content: "▾"; position: absolute; right: 16px; top: 50%; transform: translateY(-50%); color: #7c3aed; font-size: 14px; pointer-events: none; }
select.ps-select { -webkit-appearance: none; appearance: none; width: 100%; border: 1px solid #e6e6ee; border-radius: 12px; background: #fff; padding: 12px 40px 12px 14px; font-family: var(--disp); font-weight: 700; font-size: 16px; color: #14141c; cursor: pointer; outline: none; transition: border-color .18s, box-shadow .18s; }
select.ps-select:focus { border-color: #c9b8f5; box-shadow: 0 0 0 3px rgba(124,58,237,.12); }

/* ---------- Google reviews (real) ---------- */
.grev-head { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-bottom: 40px; text-align: center; }
.grev-score { display: inline-flex; align-items: center; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 12px 26px; box-shadow: 0 24px 50px -34px rgba(20,20,50,0.5); }
.grev-score img { width: 30px; height: 30px; }
.grev-score-num { font-family: var(--disp); font-weight: 800; font-size: 30px; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.grev-score-stars { color: #f5a623; font-size: 18px; letter-spacing: 2.5px; }
.grev-score-count { font-size: 13.5px; color: var(--muted); font-weight: 600; }
.grev-score-count b { color: var(--ink); }
.grev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .grev-grid { grid-template-columns: 1fr; } }
.grev { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 22px 22px 20px; box-shadow: 0 26px 54px -42px rgba(20,20,50,0.45); transition: transform .3s var(--ease), box-shadow .3s; }
.grev:hover { transform: translateY(-4px); box-shadow: 0 34px 70px -40px rgba(124,58,237,0.4); }
.grev-top { display: flex; align-items: center; gap: 11px; margin-bottom: 12px; }
.grev-av { width: 40px; height: 40px; border-radius: 50%; color: #fff; display: grid; place-items: center; font-family: var(--disp); font-weight: 700; font-size: 15px; flex: 0 0 auto; }
.grev-who b { display: block; font-family: var(--disp); font-size: 14.5px; color: var(--ink); }
.grev-who span { display: block; font-size: 12px; color: var(--muted); margin-top: 1px; }
.grev-g { margin-left: auto; width: 20px; height: 20px; flex: 0 0 auto; }
.grev-stars { color: #f5a623; font-size: 14px; letter-spacing: 1.5px; margin-bottom: 9px; }
.grev-text { font-size: 14px; color: #3a3a46; line-height: 1.62; margin: 0; }
.grev-cta-row { text-align: center; margin-top: 30px; }
.grev-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14.5px; color: var(--g2); }
.grev-link:hover { color: var(--g3); }

/* ---------- Video testimonials ---------- */
.vt-wrap { position: relative; }
.vt-row { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 6px 4px 22px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.vt-row::-webkit-scrollbar { display: none; }
.vt-card { position: relative; flex: 0 0 auto; width: 250px; border-radius: 20px; overflow: hidden; cursor: pointer; scroll-snap-align: start; background: var(--dark-2); border: 1px solid var(--line); box-shadow: 0 30px 60px -40px rgba(20,20,50,0.55); transition: transform .3s var(--ease), box-shadow .3s; }
.vt-card:hover { transform: translateY(-5px); box-shadow: 0 40px 76px -38px rgba(124,58,237,0.55); }
.vt-card .vt-media { position: relative; width: 100%; aspect-ratio: 9 / 16; }
.vt-card.vt-wide { width: 420px; }
.vt-card.vt-wide .vt-media { aspect-ratio: 16 / 9; }
.vt-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vt-media iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 3; }
.vt-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,18,0) 40%, rgba(10,10,18,0.82) 100%); z-index: 1; }
.vt-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 62px; height: 62px; border-radius: 50%; background: rgba(255,255,255,0.92); display: grid; place-items: center; z-index: 2; box-shadow: 0 14px 34px -8px rgba(20,20,50,0.6); transition: transform .25s var(--ease), background .2s; }
.vt-card:hover .vt-play { transform: translate(-50%,-50%) scale(1.1); background: #fff; }
.vt-play::before { content: ""; display: block; width: 0; height: 0; border-style: solid; border-width: 11px 0 11px 19px; border-color: transparent transparent transparent #7c3aed; margin-left: 4px; }
.vt-card.playing .vt-play, .vt-card.playing .vt-shade, .vt-card.playing .vt-cap { display: none; }
.vt-cap { position: absolute; left: 16px; right: 16px; bottom: 14px; z-index: 2; color: #fff; }
.vt-cap b { display: block; font-family: var(--disp); font-size: 15px; font-weight: 700; line-height: 1.3; }
.vt-cap span { display: block; font-size: 12px; color: #cfd0dd; margin-top: 3px; }
.vt-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); background: rgba(255,255,255,0.95); cursor: pointer; display: grid; place-items: center; font-size: 20px; color: var(--ink); box-shadow: 0 16px 34px -14px rgba(20,20,50,0.5); transition: transform .2s var(--ease), box-shadow .2s; }
.vt-arrow:hover { transform: translateY(-50%) scale(1.08); box-shadow: 0 20px 42px -14px rgba(124,58,237,0.55); }
.vt-arrow[data-dir="-1"] { left: -10px; }
.vt-arrow[data-dir="1"] { right: -10px; }
@media (max-width: 700px) { .vt-arrow { display: none; } .vt-card { width: 218px; } .vt-card.vt-wide { width: 340px; } }

/* ---------- Final CTA ---------- */
.cta-final { position: relative; overflow: hidden; background: var(--dark); color: #fff; text-align: center; }
.cta-final .container { position: relative; z-index: 1; }
.cta-final-title { font-family: var(--disp); font-weight: 800; font-size: clamp(32px, 5.6vw, 58px); line-height: 1.06; letter-spacing: -0.02em; }
.cta-final-sub { font-size: clamp(16px, 2vw, 19px); color: #ffffff; max-width: 640px; margin: 18px auto 34px; }
.cta-final .btn-grad { font-size: 17px; padding: 17px 34px; }
.cta-final-note { margin-top: 18px; font-size: 13.5px; color: #ffffff; }
.cta-chips { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }
.cta-chips .chip { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.22); color: #ffffff; }

/* ---------- Footer ---------- */
.pfooter { background: #fff; border-top: 1px solid var(--line); padding: 54px 24px 34px; }
.pfooter-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 34px; }
@media (max-width: 860px) { .pfooter-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .pfooter-grid { grid-template-columns: 1fr; } }
.pfooter-brand img { height: 32px; width: auto; margin-bottom: 14px; }
.pfooter-brand p { font-size: 13.5px; color: var(--muted); line-height: 1.6; max-width: 260px; }
.pfooter h5 { font-family: var(--disp); font-size: 13px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--ink); margin-bottom: 14px; }
.pfooter ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.pfooter ul a { font-size: 14px; color: var(--muted); transition: color .18s; }
.pfooter ul a:hover { color: var(--g2); }
.pfooter-bottom { max-width: var(--maxw); margin: 40px auto 0; padding-top: 22px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 13px; color: var(--muted-2); }

/* ---------- Eco wheel as product links ---------- */
a.eco-node { text-decoration: none; }
.eco-node.current .eco-ic { box-shadow: 0 0 0 3px #fff, 0 0 0 5.5px var(--ic1, #7c3aed), 0 18px 38px -12px rgba(124,58,237,0.7); }
.eco-cta-row { text-align: center; margin-top: 26px; }

/* ---------- Sticky mobile CTA bar ---------- */
.mcta { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 80; display: none; }
.mcta a { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 15px; border-radius: 999px; font-family: var(--disp); font-weight: 800; font-size: 15.5px; color: #fff; background: var(--grad); box-shadow: 0 18px 40px -10px rgba(124,58,237,0.85); }
@media (max-width: 700px) { .mcta { display: block; } body { padding-bottom: 74px; } }


/* ---------- Pairs (per-page ecosystem integrations) ---------- */
.pairs-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; max-width: 1060px; margin: 0 auto; }
.pair-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 26px; text-decoration: none; color: inherit; transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s var(--ease); }
.pair-card:hover { transform: translateY(-5px); box-shadow: 0 26px 48px -30px rgba(20, 20, 50, 0.45); border-color: rgba(124, 58, 237, 0.35); }
.pair-ic { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 16px; background: linear-gradient(135deg, var(--ic1), var(--ic2)); }
.pair-ic svg { width: 22px; height: 22px; fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.pair-card h3 { font-family: var(--disp); font-weight: 700; font-size: 18.5px; margin: 0 0 8px; color: var(--ink); }
.pair-card p { font-size: 14.5px; line-height: 1.62; color: var(--muted); margin: 0 0 16px; flex: 1; }
.pair-go { font-family: var(--disp); font-weight: 700; font-size: 13.5px; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.pairs-note { text-align: center; font-size: 14px; color: var(--muted); max-width: 640px; margin: 26px auto 0; }
@media (max-width: 860px) { .pairs-grid { grid-template-columns: 1fr; } }


/* ---------- Spec sheet (full deliverables) ---------- */
.spec-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; max-width: 1000px; margin: 0 auto; }
.spec-item { display: flex; gap: 15px; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 20px 22px; box-shadow: 0 18px 40px -36px rgba(20, 20, 50, 0.45); }
.spec-ck { flex: 0 0 auto; display: grid; place-items: center; width: 26px; height: 26px; margin-top: 2px; border-radius: 50%; background: var(--grad); color: #fff; font-size: 13px; font-weight: 800; }
.spec-item b { display: block; font-family: var(--disp); font-weight: 700; font-size: 15.5px; color: var(--ink); margin-bottom: 5px; }
.spec-item p { margin: 0; font-size: 14px; line-height: 1.62; color: #4a4a55; }
@media (max-width: 760px) { .spec-grid { grid-template-columns: 1fr; } }


/* ============================================================
   FULLSCREEN PRODUCTS MENU (same experience as bosseo.com header)
   ============================================================ */
.bpb-panel { position: fixed; inset: 0; width: 100%; height: 100dvh; background: radial-gradient(1400px 800px at 75% -10%, rgba(124,58,237,.24), transparent 60%), radial-gradient(1000px 700px at 5% 110%, rgba(37,99,235,.2), transparent 55%), #0a0a11; z-index: 99999; overflow-y: auto; -webkit-overflow-scrolling: touch; opacity: 0; visibility: hidden; pointer-events: none; transform: scale(1.015); transition: opacity .28s ease, transform .28s cubic-bezier(.2,.7,.3,1), visibility .28s; text-align: left; box-sizing: border-box; padding: 0 4vw; }
.bpb-panel.open { opacity: 1; visibility: visible; pointer-events: auto; transform: scale(1); }
.bpb-shell { width: 100%; max-width: 1760px; margin: 0 auto; min-height: 100dvh; display: flex; flex-direction: column; box-sizing: border-box; padding: 30px 0 34px; }
.bpb-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.bpb-title { font-family: var(--disp); font-weight: 800; font-size: clamp(28px, 3.6vw, 54px); line-height: 1.08; color: #fff; margin: 0; }
.bpb-title em { font-style: normal; background: linear-gradient(100deg, #60a5fa, #a78bfa 55%, #f472b6); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.bpb-x { flex: 0 0 auto; width: 52px; height: 52px; min-width: 52px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.06); color: #fff; padding: 0; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .15s ease, transform .15s ease; }
.bpb-x:hover { background: rgba(255,255,255,.14); transform: rotate(90deg); }
.bpb-x svg { width: 20px; height: 20px; stroke: #fff; stroke-width: 2.2; stroke-linecap: round; fill: none; display: block; }
.bpb-subtitle { margin: 10px 0 0; font-size: clamp(14px, 1.3vw, 17px); color: #c9c9dd; max-width: 720px; line-height: 1.55; }
.bpb-cols { flex: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px 3.2vw; align-items: stretch; margin-top: 30px; }
.bpb-group { display: flex; flex-direction: column; }
.bpb-group h5 { font-family: var(--disp); font-weight: 800; font-size: clamp(12px, 1vw, 14px); line-height: 1; letter-spacing: .18em; text-transform: uppercase; margin: 0 0 16px; padding: 0 4px; background: linear-gradient(100deg, #60a5fa, #a78bfa 55%, #f472b6); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.bpb-list { flex: 1; display: flex; flex-direction: column; gap: 18px; }
.bpb-item { flex: 1; display: flex; align-items: center; gap: 18px; padding: 18px 22px; border-radius: 20px; text-decoration: none; background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.07); transition: background .16s ease, border-color .16s ease, transform .16s ease, box-shadow .16s ease; }
.bpb-item:hover { background: rgba(255,255,255,.07); border-color: rgba(167,139,250,.35); transform: translateY(-3px); box-shadow: 0 22px 44px -22px rgba(124,58,237,.5); }
.bpb-item.bpb-current { border-color: rgba(167,139,250,.55); background: rgba(124,58,237,.12); }
.bpb-ic { flex: 0 0 auto; width: clamp(48px, 3.6vw, 62px); height: clamp(48px, 3.6vw, 62px); border-radius: 16px; display: flex; align-items: center; justify-content: center; line-height: 0; box-shadow: 0 14px 30px -12px rgba(0,0,0,.7); }
.bpb-ic svg { width: 52%; height: 52%; display: block; fill: none; stroke: #fff; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.bpb-item b { display: block; font-family: var(--disp); font-weight: 700; font-size: clamp(15.5px, 1.25vw, 19px); line-height: 1.25; color: #fff; margin-bottom: 5px; }
.bpb-item > div > span { display: block; font-weight: 400; font-size: clamp(12.5px, 1vw, 14.5px); color: #bcbcd2; line-height: 1.5; }
.bpb-item:hover b { background: linear-gradient(100deg, #60a5fa, #a78bfa 55%, #f472b6); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.bpb-foot { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 30px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); }
.bpb-cta { flex: 0 0 auto; display: inline-block; font-family: var(--disp); font-weight: 800; font-size: clamp(14px, 1.2vw, 17px); letter-spacing: .06em; text-transform: uppercase; color: #fff; background: var(--grad); padding: 15px 38px; border-radius: 999px; text-decoration: none; box-shadow: 0 16px 34px -12px rgba(124,58,237,.85); transition: transform .15s ease; }
.bpb-cta:hover { transform: translateY(-2px); color: #fff; }
@media (max-width: 1100px) { .bpb-cols { grid-template-columns: 1fr 1fr; } .bpb-list { flex: none; } }
@media (max-width: 640px) { .bpb-panel { padding: 0 14px; } .bpb-shell { padding: 20px 0 26px; min-height: 0; } .bpb-cols { grid-template-columns: 1fr; gap: 8px; margin-top: 18px; } .bpb-list { gap: 10px; } .bpb-item { flex: none; padding: 14px 16px; border-radius: 16px; } .bpb-group h5 { margin: 16px 0 10px; } .bpb-group:first-child h5 { margin-top: 0; } .bpb-foot { margin-top: 22px; } .bpb-x { width: 44px; height: 44px; min-width: 44px; } }


/* ============================================================
   OUTCOME VISUALS — with/without split, journey flow, moments
   ============================================================ */
/* ---- With/Without split ---- */
.vs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 1060px; margin: 0 auto; align-items: stretch; }
.vs-col { border-radius: 22px; padding: 30px 30px 26px; }
.vs-col.vs-without { background: #f1f1f5; border: 1px solid #e3e3ea; }
.vs-col.vs-with { position: relative; background: #fff; border: 1.5px solid transparent; background-clip: padding-box; box-shadow: 0 34px 70px -44px rgba(124, 58, 237, 0.55); }
.vs-col.vs-with::before { content: ""; position: absolute; inset: -1.5px; border-radius: inherit; padding: 1.5px; background: var(--grad); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.vs-tag { display: inline-block; font-family: var(--disp); font-weight: 800; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; padding: 7px 15px; border-radius: 999px; margin-bottom: 20px; }
.vs-without .vs-tag { background: #dcdce3; color: #55555f; }
.vs-with .vs-tag { background: var(--grad); color: #fff; box-shadow: 0 10px 22px -10px rgba(124, 58, 237, 0.7); }
.vs-row { display: flex; gap: 13px; padding: 12px 0; border-top: 1px solid rgba(0, 0, 0, 0.06); }
.vs-row:first-of-type { border-top: 0; padding-top: 0; }
.vs-mk { flex: 0 0 auto; display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; font-size: 12.5px; font-weight: 800; margin-top: 1px; }
.vs-without .vs-mk { background: #cfcfd8; color: #6b6b76; }
.vs-with .vs-mk { background: var(--grad); color: #fff; }
.vs-row b { display: block; font-family: var(--disp); font-weight: 700; font-size: 15px; color: var(--ink); margin-bottom: 3px; }
.vs-without .vs-row b { color: #565660; }
.vs-row p { margin: 0; font-size: 13.5px; line-height: 1.58; color: #4a4a55; }
.vs-without .vs-row p { color: #75757f; }
@media (max-width: 860px) { .vs-grid { grid-template-columns: 1fr; } }

/* ---- Journey flow ---- */
.jt-flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; max-width: 1120px; margin: 0 auto; counter-reset: jt; }
.jt-step { position: relative; padding: 0 22px; text-align: center; }
.jt-step + .jt-step::before { content: ""; position: absolute; left: -14px; top: 33px; width: 28px; height: 2px; background: linear-gradient(90deg, rgba(124, 58, 237, 0.15), rgba(124, 58, 237, 0.55)); }
.jt-chip { display: inline-block; font-family: var(--disp); font-weight: 800; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: #6d28d9; background: rgba(124, 58, 237, 0.09); border: 1px solid rgba(124, 58, 237, 0.18); border-radius: 999px; padding: 5px 12px; margin-bottom: 14px; }
.jt-ic { width: 66px; height: 66px; margin: 0 auto 16px; border-radius: 20px; display: flex; align-items: center; justify-content: center; background: var(--grad); box-shadow: 0 18px 36px -16px rgba(124, 58, 237, 0.65); }
.jt-ic svg { width: 30px; height: 30px; fill: none; stroke: #fff; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; display: block; }
.jt-step h3 { font-family: var(--disp); font-weight: 700; font-size: 17.5px; margin: 0 0 8px; color: var(--ink); }
.jt-step p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--muted); }
@media (max-width: 960px) { .jt-flow { grid-template-columns: 1fr 1fr; row-gap: 34px; } .jt-step + .jt-step::before { display: none; } }
@media (max-width: 540px) { .jt-flow { grid-template-columns: 1fr; } }

/* ---- Moment cards ---- */
.mo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1080px; margin: 0 auto; }
.mo-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 26px 26px 24px; box-shadow: 0 24px 54px -40px rgba(20, 20, 50, 0.5); transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease); }
.mo-card:hover { transform: translateY(-5px); box-shadow: 0 34px 66px -36px rgba(124, 58, 237, 0.45); }
.mo-when { display: inline-flex; align-self: flex-start; align-items: center; gap: 7px; font-family: var(--disp); font-weight: 800; font-size: 11.5px; letter-spacing: 0.07em; text-transform: uppercase; color: #fff; background: var(--grad); border-radius: 999px; padding: 6px 14px; margin-bottom: 16px; }
.mo-q { font-family: var(--disp); font-weight: 700; font-size: 17px; line-height: 1.35; color: var(--ink); margin: 0 0 10px; }
.mo-card p { margin: 0; font-size: 14px; line-height: 1.62; color: #4a4a55; flex: 1; }
.mo-card .mo-result { margin-top: 16px; padding-top: 14px; border-top: 1px dashed rgba(124, 58, 237, 0.25); font-size: 13.5px; font-weight: 700; color: #6d28d9; }
@media (max-width: 860px) { .mo-grid { grid-template-columns: 1fr; } }


/* ============================================================
   HERO DUO — product demo lives in the hero, text beside it
   ============================================================ */
.hero.product-hero.hero-duo .hero-inner { max-width: 1400px; display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(30px, 4.5vw, 70px); align-items: center; text-align: left; }
.hero-duo .hero-title { font-size: clamp(32px, 3.5vw, 56px); }
.hero-duo .hero-sub { margin: 0 0 8px; max-width: none; }
.hero-duo .hero-ctas, .hero-duo .hero-chips { justify-content: flex-start; }
.hero-fig { position: relative; z-index: 1; min-width: 0; }
.hero-fig .split-fig { margin: 0; }
.hero-fig-tag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--disp); font-weight: 800; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: #6d28d9; background: rgba(124, 58, 237, 0.08); border: 1px solid rgba(124, 58, 237, 0.2); border-radius: 999px; padding: 7px 15px; margin-bottom: 14px; }
.hero-fig-tag .dotb { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18); }
@media (max-width: 1020px) {
  .hero.product-hero.hero-duo .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-duo .hero-ctas, .hero-duo .hero-chips { justify-content: center; }
  .hero-duo .hero-sub { margin: 0 auto 8px; }
  .hero-fig { max-width: 640px; width: 100%; margin: 30px auto 0; }
  .hero-fig-tag { margin-left: auto; margin-right: auto; }
}
.split.solo { grid-template-columns: 1fr; max-width: 780px; margin-left: auto; margin-right: auto; text-align: center; }
.split.solo .ticks { text-align: left; display: inline-block; }

/* Stacked hero variant — full-width demo directly under the hero copy */
.hero-stack .hero-fig { margin: 46px auto 0; max-width: 1160px; }
.hero-stack .hero-fig-head { text-align: center; }
@media (max-width: 700px) { .hero-stack .hero-fig { margin-top: 30px; } }

/* Coverage mode toggle + county picker (programmatic-seo) */
.ps-mode { display: flex; gap: 6px; background: #eef0f6; border: 1px solid var(--line); border-radius: 12px; padding: 5px; margin: 14px 0 0; }
.ps-mode-btn { flex: 1; border: none; background: transparent; font-family: var(--sans); font-weight: 700; font-size: 13.5px; color: var(--muted); padding: 9px 8px; border-radius: 9px; cursor: pointer; transition: background .2s, color .2s, box-shadow .2s; white-space: nowrap; }
.ps-mode-btn.active { background: #fff; color: #14141c; box-shadow: 0 4px 12px -6px rgba(20,20,50,.3); }
.ps-counties { margin-top: 12px; border: 1px solid var(--line); border-radius: 14px; background: #fff; overflow: hidden; }
.ps-cty-search { width: 100%; border: none; border-bottom: 1px solid var(--line); padding: 10px 14px; font-family: var(--sans); font-size: 14px; outline: none; background: #fafafe; color: var(--ink); }
.ps-cty-search::placeholder { color: #9aa1b2; }
.ps-cty-list { max-height: 200px; overflow-y: auto; padding: 6px; }
.ps-cty { display: flex; align-items: center; gap: 9px; padding: 7px 9px; border-radius: 8px; cursor: pointer; font-size: 13.5px; }
.ps-cty:hover { background: #f5f4fd; }
.ps-cty input { accent-color: #7c3aed; width: 15px; height: 15px; flex: 0 0 auto; margin: 0; }
.ps-cty-name { flex: 1; font-weight: 600; color: var(--ink); }
.ps-cty-n { font-size: 12px; color: var(--muted); white-space: nowrap; }
.ps-cty-none { font-size: 13px; color: var(--muted); padding: 10px 12px; margin: 0; }
.ps-cty-sum { font-size: 12.5px; color: var(--muted); padding: 9px 14px; border-top: 1px solid var(--line); margin: 0; background: #fafafe; }
.ps-cty-sum b { color: #6d28d9; }
.ps-dot.off { animation: none; opacity: .1 !important; fill: #b9bdd0; }
.city-chip.cty b { font-weight: 800; }


/* ============================================================
   VALUE VISUALS — interactive calculators + moving demos
   ============================================================ */

/* ---- Value calculator (shared) ---- */
.vc { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 24px; max-width: 1080px; margin: 0 auto; align-items: stretch; }
.vc-in { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 28px 28px 24px; box-shadow: 0 24px 54px -40px rgba(20, 20, 50, 0.5); }
.vc-head { display: inline-block; font-family: var(--disp); font-weight: 800; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: #7c3aed; margin-bottom: 18px; }
.vc-field { margin-bottom: 20px; }
.vc-field:last-of-type { margin-bottom: 8px; }
.vc-lab { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 9px; }
.vc-lab label { font-size: 13.5px; font-weight: 600; color: #5b6472; }
.vc-lab output { font-family: var(--disp); font-weight: 800; font-size: 16.5px; color: #14141c; white-space: nowrap; font-variant-numeric: tabular-nums; }
.vc input[type="range"], .gl input[type="range"], .lv input[type="range"], .ct input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 8px; border-radius: 99px; background: linear-gradient(90deg, #7c3aed var(--p, 50%), #e9e9f2 var(--p, 50%)); outline: none; cursor: pointer; display: block; margin: 0; padding: 0; border: none; }
.vc input[type="range"]::-webkit-slider-thumb, .gl input[type="range"]::-webkit-slider-thumb, .lv input[type="range"]::-webkit-slider-thumb, .ct input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 2.5px solid #7c3aed; box-shadow: 0 4px 12px -2px rgba(124, 58, 237, 0.5); cursor: grab; }
.vc input[type="range"]::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.08); }
.vc input[type="range"]::-moz-range-thumb, .gl input[type="range"]::-moz-range-thumb, .lv input[type="range"]::-moz-range-thumb, .ct input[type="range"]::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 2.5px solid #7c3aed; box-shadow: 0 4px 12px -2px rgba(124, 58, 237, 0.5); cursor: grab; }
.vc-note { font-size: 12.5px; color: var(--muted); margin: 14px 0 0; }
.vc-out { position: relative; border-radius: 22px; padding: 30px; background: linear-gradient(140deg, #17162a, #241a3f 55%, #1c1430); color: #fff; overflow: hidden; display: flex; flex-direction: column; justify-content: center; }
.vc-out::before { content: ""; position: absolute; top: -80px; right: -80px; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(124, 58, 237, 0.35), transparent 70%); pointer-events: none; }
.vc-big { position: relative; }
.vc-num { display: block; font-family: var(--disp); font-weight: 800; font-size: clamp(36px, 4.4vw, 56px); line-height: 1.04; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.vc-bad .vc-num { color: #fb7185; }
.vc-good .vc-num { color: #34d399; }
.vc-num.kpi-win { color: #fbbf24; text-shadow: 0 0 24px rgba(251, 191, 36, 0.45); animation: kpiWin 1.8s ease-in-out infinite; }
@keyframes kpiWin { 0%, 100% { text-shadow: 0 0 14px rgba(251, 191, 36, 0.3); } 50% { text-shadow: 0 0 30px rgba(251, 191, 36, 0.65); } }
.vc-cap { display: block; font-size: 13px; color: #c9c9dd; margin-top: 9px; line-height: 1.5; }
.vc-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 24px; position: relative; }
.vc-duo .vc-num { font-size: clamp(24px, 2.6vw, 34px); }
.vc-bars { margin-top: 26px; display: flex; flex-direction: column; gap: 16px; position: relative; }
.vc-bar-top { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.vc-bar-top span { font-family: var(--disp); font-weight: 800; font-size: 11.5px; letter-spacing: 0.07em; text-transform: uppercase; color: #a5a5c0; }
.vc-bar-top b { font-size: 13px; color: #fff; font-variant-numeric: tabular-nums; }
.vc-track2 { height: 12px; border-radius: 99px; background: rgba(255, 255, 255, 0.08); overflow: hidden; margin-top: 7px; }
.vc-track2 i { display: block; height: 100%; width: 0; border-radius: inherit; background: #fb7185; transition: width 0.7s cubic-bezier(0.22, 0.61, 0.36, 1); }
.vc-bar.good .vc-track2 i { background: linear-gradient(90deg, #34d399, #22d3ee); }
.vc-line { margin: 24px 0 0; font-size: 14px; line-height: 1.62; color: #d9d9ea; border-top: 1px dashed rgba(255, 255, 255, 0.16); padding-top: 16px; position: relative; }
.vc-line b { color: #fff; }
.vc-foot { font-size: 12px; color: var(--muted); text-align: center; margin: 16px auto 0; max-width: 640px; }
@media (max-width: 900px) { .vc { grid-template-columns: 1fr; } .vc-out { padding: 26px 22px; } }

/* ---- Race lanes (speed comparisons) ---- */
.rr { max-width: 1000px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 28px; box-shadow: 0 24px 54px -40px rgba(20, 20, 50, 0.5); }
.rr-lane { padding: 20px 0; }
.rr-lane + .rr-lane { border-top: 1px solid var(--line); }
.rr-top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 12px; }
.rr-top b { font-family: var(--disp); font-weight: 700; font-size: 15.5px; color: var(--ink); }
.rr-time { font-family: var(--disp); font-weight: 800; font-size: 17px; color: #6d28d9; font-variant-numeric: tabular-nums; white-space: nowrap; }
.rr-lane.slow .rr-time { color: #9a9aa8; }
.rr-track { position: relative; height: 14px; background: #f0f0f6; border-radius: 99px; overflow: hidden; }
.rr-fill { position: absolute; top: 0; bottom: 0; left: 0; width: 0; background: var(--grad); border-radius: inherit; }
.rr-lane.slow .rr-fill { background: #c5c5d2; }
.rr-steps { display: flex; justify-content: space-between; margin-top: 9px; font-size: 11.5px; color: var(--muted); gap: 6px; }
.rr-steps span { transition: color 0.3s; }
.rr-steps span.done { color: #6d28d9; font-weight: 700; }
.rr-lane.slow .rr-steps span.done { color: #6b6b76; }
.rr-foot { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 22px; }
.rr-replay { border: 1px solid var(--line); background: #fff; border-radius: 99px; padding: 10px 24px; font-family: var(--disp); font-weight: 700; font-size: 13px; color: #14141c; cursor: pointer; transition: box-shadow 0.18s, border-color 0.18s; }
.rr-replay:hover { border-color: #c9b8f5; box-shadow: 0 10px 24px -14px rgba(124, 58, 237, 0.6); }

/* ---- Funnel comparison ---- */
.fn { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 1000px; margin: 0 auto; }
.fn-col { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 26px; }
.fn-col.win { position: relative; border: 1.5px solid transparent; background-clip: padding-box; box-shadow: 0 34px 70px -44px rgba(124, 58, 237, 0.55); }
.fn-col.win::before { content: ""; position: absolute; inset: -1.5px; border-radius: inherit; padding: 1.5px; background: var(--grad); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.fn-tag { display: inline-block; font-family: var(--disp); font-weight: 800; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; padding: 7px 15px; border-radius: 999px; margin-bottom: 16px; background: #dcdce3; color: #55555f; }
.fn-col.win .fn-tag { background: var(--grad); color: #fff; }
.fn-stage { margin-top: 15px; }
.fn-lab { display: flex; justify-content: space-between; align-items: baseline; font-size: 12.5px; color: #5b6472; font-weight: 600; margin-bottom: 6px; }
.fn-lab b { font-family: var(--disp); font-weight: 800; color: var(--ink); font-variant-numeric: tabular-nums; }
.fn-track { height: 26px; background: #f0f0f6; border-radius: 10px; overflow: hidden; }
.fn-fill { height: 100%; width: 0; border-radius: inherit; background: #c5c5d2; transition: width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1); }
.fn-col.win .fn-fill { background: var(--grad); }
.fn-res { margin-top: 18px; padding-top: 14px; border-top: 1px dashed rgba(124, 58, 237, 0.25); font-size: 13.5px; line-height: 1.55; color: #4a4a55; }
.fn-res b { color: #6d28d9; }
@media (max-width: 860px) { .fn { grid-template-columns: 1fr; } }

/* ---- 24h coverage strip ---- */
.cvr { max-width: 1000px; margin: 0 auto; background: linear-gradient(140deg, #17162a, #241a3f 55%, #1c1430); border-radius: 22px; padding: 30px; color: #fff; }
.cvr-toggle, .ba-toggle { display: flex; gap: 6px; background: rgba(255, 255, 255, 0.08); border-radius: 12px; padding: 5px; width: max-content; max-width: 100%; margin: 0 auto 26px; }
.cvr-btn, .ba-btn { border: none; background: transparent; color: #c9c9dd; font-family: var(--sans); font-weight: 700; font-size: 13.5px; padding: 10px 20px; border-radius: 9px; cursor: pointer; transition: background 0.2s, color 0.2s; white-space: nowrap; }
.cvr-btn.active, .ba-btn.active { background: #fff; color: #14141c; box-shadow: 0 4px 12px -6px rgba(0, 0, 0, 0.5); }
.ba-toggle.light { background: #eef0f6; border: 1px solid var(--line); }
.ba-toggle.light .ba-btn { color: var(--muted); }
.ba-toggle.light .ba-btn.active { color: #14141c; box-shadow: 0 4px 12px -6px rgba(20, 20, 50, 0.3); }

/* Reputation — live Google map-pack mock */
.ct-grid { display: grid; grid-template-columns: 380px 1fr; gap: 22px; align-items: start; margin-bottom: 26px; }
.ct-controls .ct-share { margin-top: 22px; }
.gmb { background: #fff; border: 1px solid var(--line); border-radius: 22px; overflow: hidden; box-shadow: 0 24px 54px -40px rgba(20, 20, 50, 0.5); }
.gmb-top { display: flex; align-items: center; gap: 14px; padding: 14px 18px; border-bottom: 1px solid var(--line); }
.gmb-g { font-weight: 800; font-size: 20px; letter-spacing: -0.5px; user-select: none; }
.gmb-g i { font-style: normal; }
.gmb-g i:nth-child(1) { color: #4285f4; }
.gmb-g i:nth-child(2) { color: #ea4335; }
.gmb-g i:nth-child(3) { color: #fbbc04; }
.gmb-g i:nth-child(4) { color: #4285f4; }
.gmb-g i:nth-child(5) { color: #34a853; }
.gmb-g i:nth-child(6) { color: #ea4335; }
.gmb-q { flex: 1; background: #f1f3f4; border-radius: 99px; padding: 9px 18px; font-size: 14px; color: #202124; }
.gmb-map { position: relative; height: 74px; background: linear-gradient(115deg, #e8f0e3 0%, #dcebf5 45%, #e6efe2 100%); border-bottom: 1px solid var(--line); }
.gmb-map::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255, 255, 255, 0.65) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.65) 1px, transparent 1px); background-size: 34px 34px; }
.gmb-pin { position: absolute; width: 14px; height: 14px; background: #ea4335; border: 2.5px solid #fff; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3); }
.gmb-r { display: flex; gap: 14px; padding: 15px 18px; border-bottom: 1px solid var(--line); animation: rsIn 0.4s both; }
.gmb-r.you { background: rgba(124, 58, 237, 0.05); box-shadow: inset 3px 0 0 #7c3aed; }
.gmb-r.you.first { background: linear-gradient(90deg, rgba(251, 191, 36, 0.18), rgba(251, 191, 36, 0.03)); box-shadow: inset 3px 0 0 #f59e0b; }
.gmb-pos { flex: 0 0 26px; height: 26px; margin-top: 2px; border-radius: 50%; background: #ea4335; color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 12.5px; }
.gmb-r.you .gmb-pos { background: #7c3aed; }
.gmb-r.you.first .gmb-pos { background: #f59e0b; color: #14141c; box-shadow: 0 0 14px rgba(251, 191, 36, 0.55); }
.gmb-body { flex: 1; min-width: 0; }
.gmb-name { font-size: 16.5px; font-weight: 600; color: #202124; display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.gmb-win { font-size: 10.5px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; background: #fbbf24; color: #14141c; border-radius: 99px; padding: 3px 9px; }
.gmb-rate { display: flex; align-items: center; gap: 6px; font-size: 13.5px; color: #70757a; margin-top: 3px; }
.gmb-rate b { font-weight: 400; color: #70757a; }
.gstars { position: relative; display: inline-block; font-size: 14px; line-height: 1; letter-spacing: 1px; color: #dadce0; }
.gstars-bg { display: block; }
.gstars-fg { position: absolute; left: 0; top: 0; overflow: hidden; white-space: nowrap; color: #fbbc04; transition: width 0.2s; }
.gmb-sub { font-size: 13px; color: #70757a; margin-top: 3px; }
.gmb-actions { display: flex; gap: 8px; margin-top: 9px; }
.gmb-act { border: 1px solid #dadce0; color: #1a73e8; border-radius: 99px; padding: 4px 13px; font-size: 12.5px; font-weight: 600; }
.gmb-more { padding: 12px 18px; font-size: 13.5px; font-weight: 600; color: #1a73e8; }
@media (max-width: 900px) { .ct-grid { grid-template-columns: 1fr; } }
@media (max-width: 540px) { .gmb-actions { display: none; } .gmb-r { padding: 13px 14px; } .gmb-top { padding: 12px 14px; } }

/* Visibility gap — benchmark rows */
.vc-bench { margin-top: 18px; border-top: 1px dashed var(--line); padding-top: 14px; }
.vc-bench-t { display: block; font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.vc-bench-row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; font-size: 13.5px; color: var(--muted); padding: 7px 0; border-bottom: 1px solid rgba(20, 20, 50, 0.06); }
.vc-bench-row:last-child { border-bottom: 0; }
.vc-bench-row b { color: #14141c; font-weight: 700; white-space: nowrap; }
.vc-bench-row.gold b { color: #b45309; }

/* Stop renting your own clients — SERP visual */
.rs { max-width: 860px; margin: 0 auto; }
.rs-serp { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 22px; box-shadow: 0 24px 54px -40px rgba(20, 20, 50, 0.5); }
.rs-head { font-size: 13px; color: var(--muted); border-bottom: 1px solid var(--line); padding-bottom: 12px; margin-bottom: 4px; }
.rs-head b { color: #14141c; }
.rs-row { display: flex; align-items: flex-start; gap: 14px; padding: 13px 8px; border-bottom: 1px solid var(--line); animation: rsIn 0.45s both; }
.rs-row:last-child { border-bottom: 0; }
@keyframes rsIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.rs-pos { flex: 0 0 30px; height: 30px; border-radius: 50%; background: #eef0f6; color: #4a4a5c; display: grid; place-items: center; font-weight: 800; font-size: 13px; }
.rs-body { flex: 1; min-width: 0; }
.rs-t { font-weight: 700; color: #1a0dab; font-size: 15px; line-height: 1.35; }
.rs-u { font-size: 12px; color: #006621; margin-top: 2px; word-break: break-all; }
.rs-tag { flex: 0 0 auto; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 99px; white-space: nowrap; }
.rs-row.dir .rs-tag { background: #fee2e2; color: #b91c1c; }
.rs-row.comp .rs-tag { background: #ffedd5; color: #c2410c; }
.rs-row.you .rs-tag { background: #fef3c7; color: #92400e; }
.rs-row.you.win { background: linear-gradient(90deg, rgba(251, 191, 36, 0.16), transparent); border-radius: 14px; outline: 2px solid rgba(251, 191, 36, 0.55); outline-offset: -2px; }
.rs-row.you.win .rs-pos { background: #fbbf24; color: #14141c; box-shadow: 0 0 18px rgba(251, 191, 36, 0.5); }
.rs-row.you.lost { opacity: 0.55; }
.rs-line { margin: 22px auto 0; max-width: 760px; font-size: 14.5px; line-height: 1.62; color: #4a4a5c; text-align: center; }
.rs-line b { color: #14141c; }
@media (max-width: 640px) { .rs-tag { display: none; } .rs-serp { padding: 16px 12px; } }
.cvr-strip { position: relative; height: 68px; border-radius: 14px; background: rgba(255, 255, 255, 0.06); }
.cvr-office { position: absolute; top: 0; bottom: 0; background: rgba(124, 58, 237, 0.22); border-left: 1px dashed rgba(167, 139, 250, 0.55); border-right: 1px dashed rgba(167, 139, 250, 0.55); }
.cvr-office span { position: absolute; top: 6px; left: 50%; transform: translateX(-50%); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: #b9a8f0; font-weight: 800; white-space: nowrap; }
.cvr-dot { position: absolute; top: 58%; width: 15px; height: 15px; border-radius: 50%; transform: translate(-50%, -50%) scale(0); background: #34d399; box-shadow: 0 0 0 5px rgba(52, 211, 153, 0.16); transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s, box-shadow 0.3s; }
.cvr-dot.miss { background: #fb7185; box-shadow: 0 0 0 5px rgba(251, 113, 133, 0.16); }
.cvr-dot.on { transform: translate(-50%, -50%) scale(1); }
.cvr-hours { display: flex; justify-content: space-between; font-size: 11px; color: #8f8fa8; margin-top: 9px; }
.cvr-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 26px; text-align: center; }
.cvr-stat b { display: block; font-family: var(--disp); font-weight: 800; font-size: clamp(26px, 3vw, 38px); line-height: 1.1; font-variant-numeric: tabular-nums; }
.cvr-stat.good b { color: #34d399; }
.cvr-stat.bad b { color: #fb7185; }
.cvr-stat span { display: block; font-size: 12px; color: #a5a5c0; margin-top: 5px; }
.cvr-cap { margin: 22px 0 0; text-align: center; font-size: 13.5px; color: #d9d9ea; line-height: 1.6; }
.cvr-cap b { color: #fff; }

/* ---- Animated growth chart ---- */
.gl { max-width: 1000px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 28px; box-shadow: 0 24px 54px -40px rgba(20, 20, 50, 0.5); }
.gl-kpis { display: flex; flex-wrap: wrap; justify-content: center; text-align: center; gap: 10px 44px; margin-bottom: 18px; }
.gl-kpi b { display: block; font-family: var(--disp); font-weight: 800; font-size: clamp(24px, 2.6vw, 34px); color: #14141c; line-height: 1.1; font-variant-numeric: tabular-nums; }
.gl-kpi b.vio { color: #6d28d9; }
.gl-kpi span { font-size: 12px; color: var(--muted); }
.gl-svg { width: 100%; height: auto; display: block; }
.gl-ms-lab { font-family: var(--sans); font-size: 11px; font-weight: 700; fill: #5b6472; }
.gl-ms-dot { fill: #fff; stroke: #7c3aed; stroke-width: 2.5; opacity: 0; }
.gl-ms-dot.on { opacity: 1; transition: opacity 0.4s; }
.gl-x { font-size: 10.5px; fill: #9aa1b2; font-family: var(--sans); }
.gl-cap { margin: 16px 0 0; font-size: 12.5px; color: var(--muted); text-align: center; }
.gl .vc-field { max-width: 420px; margin: 0 auto 20px; }
.gl .vc-lab label { font-size: 13px; }

/* ---- Live event feed + tiles ---- */
.feed { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 1040px; margin: 0 auto; align-items: stretch; }
.feed-log { background: #0f0f1e; border-radius: 20px; padding: 20px; overflow: hidden; position: relative; display: flex; flex-direction: column; gap: 9px; min-height: 320px; }
.feed-log::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 70px; background: linear-gradient(transparent, #0f0f1e); pointer-events: none; }
.feed-title { font-family: var(--disp); font-weight: 800; font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: #8f8fa8; margin: 0 0 4px; display: flex; align-items: center; gap: 8px; }
.feed-title .dotb { width: 8px; height: 8px; border-radius: 50%; background: #34d399; box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.15); animation: cvrPulse 1.8s infinite; }
@keyframes cvrPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.45; } }
.feed-item { display: flex; align-items: flex-start; gap: 10px; padding: 10px 12px; border-radius: 12px; background: rgba(255, 255, 255, 0.045); font-size: 13px; line-height: 1.45; color: #d9d9ea; opacity: 0; transform: translateY(10px); transition: opacity 0.4s, transform 0.4s; }
.feed-item.on { opacity: 1; transform: none; }
.feed-item i { flex: 0 0 auto; width: 9px; height: 9px; border-radius: 50%; margin-top: 5px; background: #34d399; font-style: normal; }
.feed-item.f-warn i { background: #fbbf24; }
.feed-item.f-bad i { background: #fb7185; }
.feed-item.f-info i { background: #60a5fa; }
.feed-item b { color: #fff; }
.feed-item .feed-t { margin-left: auto; flex: 0 0 auto; font-size: 11px; color: #8f8fa8; font-variant-numeric: tabular-nums; }
.feed-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-content: stretch; }
.feed-tile { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 20px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.feed-tile b { font-family: var(--disp); font-weight: 800; font-size: clamp(26px, 2.8vw, 36px); color: #14141c; line-height: 1.1; font-variant-numeric: tabular-nums; }
.feed-tile b.vio { color: #6d28d9; }
.feed-tile span { font-size: 12px; color: var(--muted); margin-top: 5px; }
.feed-tile.bump { animation: tileBump 0.5s ease; }
@keyframes tileBump { 30% { box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.25); transform: translateY(-3px); } }
@media (max-width: 860px) { .feed { grid-template-columns: 1fr; } }

/* ---- Before/after toggle panes ---- */
.ba { max-width: 1000px; margin: 0 auto; }
.ba-panes { position: relative; }
.ba-pane { display: none; }
.ba-pane.on { display: block; animation: baIn 0.35s ease; }
@keyframes baIn { from { opacity: 0; transform: translateY(10px); } }
.ba-card { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 28px; box-shadow: 0 24px 54px -40px rgba(20, 20, 50, 0.5); }
.ba-quote { display: flex; gap: 12px; margin-bottom: 14px; }
.ba-quote .who { flex: 0 0 auto; width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; font-family: var(--disp); font-weight: 800; font-size: 12px; color: #fff; background: #9a9aa8; }
.ba-quote.staff .who { background: var(--grad); }
.ba-quote .bub { background: #f4f4f9; border-radius: 4px 16px 16px 16px; padding: 12px 16px; font-size: 14px; line-height: 1.55; color: #3a3a45; }
.ba-quote.staff .bub { background: #f5f2ff; }
.ba-quote .bub b { color: #14141c; }
.ba-gauge { margin-top: 20px; }
.ba-gauge .vc-bar-top span { color: #7a7a8c; }
.ba-gauge .vc-bar-top b { color: #14141c; font-family: var(--disp); font-weight: 800; font-size: 17px; }
.ba-gauge .vc-track2 { background: #eeeef4; height: 14px; }
.ba-gauge.bad .vc-track2 i { background: linear-gradient(90deg, #fb7185, #f59e0b); }
.ba-gauge.good .vc-track2 i { background: linear-gradient(90deg, #34d399, #22d3ee); }
.ba-verdict { margin-top: 16px; padding-top: 14px; border-top: 1px dashed rgba(124, 58, 237, 0.25); font-size: 13.5px; line-height: 1.6; color: #4a4a55; }
.ba-verdict b { color: #6d28d9; }

/* ---- Channel bars (attribution reallocation) ---- */
.chan-row { display: flex; align-items: center; gap: 14px; padding: 9px 0; }
.chan-name { flex: 0 0 148px; font-size: 13px; font-weight: 700; color: var(--ink); }
.chan-track { flex: 1; height: 22px; background: #f0f0f6; border-radius: 9px; overflow: hidden; }
.chan-fill { height: 100%; width: 0; border-radius: inherit; background: #c5c5d2; transition: width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1); }
.chan-row.hot .chan-fill { background: var(--grad); }
.chan-val { flex: 0 0 118px; text-align: right; font-size: 12.5px; color: var(--muted); font-variant-numeric: tabular-nums; }
.chan-val b { color: #14141c; }
.chan-row.hot .chan-val b { color: #6d28d9; }
.chan-total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); font-size: 13.5px; color: var(--muted); }
.chan-total b { font-family: var(--disp); font-weight: 800; font-size: 21px; color: #14141c; font-variant-numeric: tabular-nums; }
@media (max-width: 640px) { .chan-name { flex-basis: 104px; font-size: 12px; } .chan-val { flex-basis: 84px; font-size: 11.5px; } }

/* ---- Workflow steps (custom software before/after) ---- */
.ws-list { display: flex; flex-direction: column; gap: 10px; }
.ws-step { display: flex; align-items: center; gap: 13px; background: #f7f7fb; border: 1px solid var(--line); border-radius: 14px; padding: 13px 17px; font-size: 14px; color: #3a3a45; opacity: 0.45; transition: opacity 0.3s, box-shadow 0.3s; }
.ws-step.lit { opacity: 1; box-shadow: 0 10px 24px -16px rgba(20, 20, 50, 0.4); }
.ws-step .ws-n { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-family: var(--disp); font-weight: 800; font-size: 12px; background: #dcdce3; color: #55555f; }
.ws-step.auto .ws-n { background: var(--grad); color: #fff; }
.ws-step .ws-min { margin-left: auto; flex: 0 0 auto; font-size: 12px; font-weight: 700; color: #b45309; background: #fef3c7; border-radius: 99px; padding: 4px 11px; white-space: nowrap; }
.ws-step.auto .ws-min { color: #047857; background: #d1fae5; }
.ws-timer { margin-top: 18px; text-align: center; font-size: 13.5px; color: var(--muted); }
.ws-timer b { font-family: var(--disp); font-weight: 800; font-size: 24px; color: #14141c; font-variant-numeric: tabular-nums; }
.ws-timer.slow b { color: #b45309; }
.ws-timer.fast b { color: #047857; }

/* ---- Question picker ---- */
.qa { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 22px; max-width: 1040px; margin: 0 auto; align-items: stretch; }
.qa-list { display: flex; flex-direction: column; gap: 10px; }
.qa-q { text-align: left; border: 1px solid var(--line); background: #fff; border-radius: 14px; padding: 15px 19px; font-family: var(--sans); font-size: 14.5px; font-weight: 600; color: #3a3a45; cursor: pointer; transition: border-color 0.18s, background 0.18s, box-shadow 0.18s, transform 0.18s; }
.qa-q:hover { transform: translateX(3px); border-color: #c9b8f5; }
.qa-q.active { border-color: rgba(124, 58, 237, 0.55); background: #f7f5ff; color: #14141c; box-shadow: 0 14px 30px -22px rgba(124, 58, 237, 0.7); }
.qa-panel { background: linear-gradient(140deg, #17162a, #241a3f 55%, #1c1430); color: #fff; border-radius: 22px; padding: 30px; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: center; }
.qa-eyebrow { font-family: var(--disp); font-weight: 800; font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: #b9a8f0; margin: 0 0 12px; }
.qa-metric { font-family: var(--disp); font-weight: 800; font-size: clamp(30px, 3.6vw, 46px); line-height: 1.05; color: #fff; margin: 0 0 8px; font-variant-numeric: tabular-nums; }
.qa-metric .grn { color: #34d399; }
.qa-desc { margin: 0 0 20px; font-size: 14px; line-height: 1.62; color: #d9d9ea; }
.qa-vs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.qa-chip { border-radius: 14px; padding: 13px 15px; font-size: 12.5px; line-height: 1.5; }
.qa-chip b { display: block; font-family: var(--disp); font-size: 13px; margin-bottom: 3px; }
.qa-chip.old { background: rgba(255, 255, 255, 0.06); color: #a5a5c0; }
.qa-chip.old b { color: #c9c9dd; }
.qa-chip.new { background: rgba(52, 211, 153, 0.12); color: #a7f3d0; border: 1px solid rgba(52, 211, 153, 0.3); }
.qa-chip.new b { color: #34d399; }
.qa-fade { animation: baIn 0.35s ease; }
@media (max-width: 860px) { .qa { grid-template-columns: 1fr; } }

/* ---- LSA ranking levers ---- */
.lv { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 22px; max-width: 1040px; margin: 0 auto; align-items: stretch; }
.lv-serp { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 22px; box-shadow: 0 24px 54px -40px rgba(20, 20, 50, 0.5); }
.lv-serp-head { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--muted); border-bottom: 1px solid var(--line); padding-bottom: 12px; margin-bottom: 14px; }
.lv-serp-head b { color: #1a73e8; font-weight: 700; }
.lv-stack { display: flex; flex-direction: column; gap: 10px; }
.lv-card { display: flex; align-items: center; gap: 13px; border: 1px solid var(--line); border-radius: 14px; padding: 13px 16px; background: #fafafd; transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.3s, border-color 0.3s; order: var(--ord, 0); }
.lv-card.you { background: #f5f2ff; border-color: rgba(124, 58, 237, 0.45); box-shadow: 0 14px 30px -20px rgba(124, 58, 237, 0.65); }
.lv-av { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; font-family: var(--disp); font-weight: 800; font-size: 13px; color: #fff; background: #9a9aa8; }
.lv-card.you .lv-av { background: var(--grad); }
.lv-card b { display: block; font-size: 14px; color: var(--ink); font-family: var(--disp); }
.lv-meta { font-size: 12px; color: var(--muted); }
.lv-meta .st { color: #fbbc04; letter-spacing: 1px; }
.lv-pos { margin-left: auto; flex: 0 0 auto; font-family: var(--disp); font-weight: 800; font-size: 15px; color: #9a9aa8; font-variant-numeric: tabular-nums; }
.lv-card.you .lv-pos { color: #6d28d9; }
.lv-cap { margin: 14px 0 0; font-size: 12.5px; color: var(--muted); line-height: 1.55; }
.lv-cap b { color: #6d28d9; }
@media (max-width: 860px) { .lv { grid-template-columns: 1fr; } }

/* ---- Choice test (reputation) ---- */
.ct { max-width: 980px; margin: 0 auto; }
.ct-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.ct-card { border: 1px solid var(--line); border-radius: 18px; padding: 22px; background: #fff; transition: border-color 0.3s, box-shadow 0.3s; }
.ct-card.lead { border-color: rgba(124, 58, 237, 0.5); box-shadow: 0 20px 44px -28px rgba(124, 58, 237, 0.6); }
.ct-card h4 { margin: 0 0 6px; font-family: var(--disp); font-size: 16px; color: var(--ink); }
.ct-stars { color: #fbbc04; font-size: 15px; letter-spacing: 1.5px; }
.ct-meta { font-size: 13px; color: var(--muted); margin-top: 4px; font-variant-numeric: tabular-nums; }
.ct-share { margin-top: 26px; }
.ct-share-lab { display: flex; justify-content: space-between; font-size: 12.5px; font-weight: 700; color: #5b6472; margin-bottom: 8px; }
.ct-share-lab b { font-variant-numeric: tabular-nums; }
.ct-share-lab .a { color: #6d28d9; }
.ct-track { display: flex; height: 36px; border-radius: 12px; overflow: hidden; background: #e9e9f2; }
.ct-a { height: 100%; width: 50%; background: var(--grad); transition: width 0.7s cubic-bezier(0.22, 0.61, 0.36, 1); }
@media (max-width: 700px) { .ct-cards { grid-template-columns: 1fr; } }

/* ---- AI cited toggle (ai-seo) ---- */
.aib-q { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; margin-bottom: 20px; }
.aib-qbtn { border: 1px solid var(--line); background: #fff; border-radius: 99px; padding: 9px 18px; font-family: var(--sans); font-size: 13px; font-weight: 700; color: #3a3a45; cursor: pointer; transition: all 0.18s; }
.aib-qbtn.active { border-color: rgba(124, 58, 237, 0.55); background: #f7f5ff; color: #6d28d9; }
.aib-win { background: #0f0f1e; border-radius: 20px; padding: 24px; color: #e7e7f2; }
.aib-prompt { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: #a5a5c0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding-bottom: 14px; margin-bottom: 16px; }
.aib-prompt b { color: #fff; font-weight: 600; }
.aib-ans { font-size: 14.5px; line-height: 1.75; min-height: 132px; }
.aib-ans .you { color: #a78bfa; font-weight: 800; border-bottom: 2px solid rgba(167, 139, 250, 0.5); }
.aib-ans .comp { color: #c9c9dd; font-weight: 700; }
.aib-badge { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; font-family: var(--disp); font-weight: 800; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; border-radius: 99px; padding: 8px 16px; }
.aib-badge.out { background: rgba(251, 113, 133, 0.12); color: #fb7185; border: 1px solid rgba(251, 113, 133, 0.3); }
.aib-badge.in { background: rgba(52, 211, 153, 0.12); color: #34d399; border: 1px solid rgba(52, 211, 153, 0.3); }
.aib-src { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.aib-src span { font-size: 11.5px; color: #c9c9dd; background: rgba(255, 255, 255, 0.07); border-radius: 99px; padding: 5px 12px; }

/* Booking calendar embed + review quote wall */
.book-grid { display: grid; grid-template-columns: minmax(0, 1fr) 500px; gap: 34px; align-items: center; }
.book-wall { display: flex; flex-direction: column; justify-content: center; padding: 10px 0; }
.bw-stage { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 38px 34px; }
.bw-word { display: inline-flex; flex-direction: column; align-items: flex-start; line-height: 1; transform: rotate(var(--rot)); animation: bwFloat 6s ease-in-out infinite; animation-delay: var(--delay, 0s); transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1); cursor: default; }
.bw-word em { font-family: var(--disp); font-style: normal; font-weight: 800; font-size: var(--size, 26px); letter-spacing: -0.01em; line-height: 0.98; text-transform: uppercase; color: var(--col); text-shadow: 3px 3px 0 var(--shadow); }
.bw-word b { font-size: 10px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: #6b6b80; margin-top: 8px; padding-left: 7px; border-left: 2px solid var(--col); }
.bw-word:hover { transform: rotate(0) scale(1.05); animation: none; z-index: 5; }
.bw-c1 { --col: #d97706; --shadow: #fbe4bd; }
.bw-c2 { --col: #7c3aed; --shadow: #e2d6fb; }
.bw-c3 { --col: #db2777; --shadow: #fad2e5; }
.bw-c4 { --col: #059669; --shadow: #c4ecdd; }
.bw-c5 { --col: #0369a1; --shadow: #cbe7f8; }
.bw-c6 { --col: #14141c; --shadow: #dcdce8; }
@keyframes bwFloat { 0%, 100% { transform: rotate(var(--rot)) translateY(0); } 50% { transform: rotate(var(--rot)) translateY(-3px); } }
.bw-goog { text-align: center; margin-top: 28px; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #6b6b80; }
.book-embed { display: block; }
.book-embed iframe { display: block; width: 100%; height: 700px; border: 0; background: transparent; }
@media (max-width: 980px) { .book-grid { grid-template-columns: 1fr; gap: 10px; } .book-embed { max-width: 500px; width: 100%; margin: 0 auto; } }
@media (max-width: 560px) { .bw-word em { font-size: calc(var(--size, 26px) * 0.8); } .bw-stage { gap: 18px 22px; } }
