/* ============================================================
   TracPoint — Marketing Site
   Dark / futuristic-but-approachable. Vanilla CSS.
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Color */
  --bg: #070310;
  --bg-2: #0d0722;
  --bg-3: #150a30;
  --indigo: #2f6bff;        /* primary blue (gradient start) */
  --indigo-soft: #5f8cff;
  --cyan: #22d3ee;          /* bright cyan accent */
  --violet: #a855f7;        /* purple (gradient end) */
  --plum: #070a22;          /* deep ink */
  --orange: #ff5b12;        /* warm CTA accent */
  --orange-soft: #ff8a00;
  --text: #ffffff;
  --text-muted: #c8d0e5;
  --text-dim: #8a93ad;
  --good: #34E0A1;
  --bad: #FF6B7A;

  --glass: rgba(255, 255, 255, 0.05);
  --glass-2: rgba(255, 255, 255, 0.07);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-border-bright: rgba(255, 255, 255, 0.2);

  --grad: linear-gradient(135deg, var(--indigo) 0%, var(--violet) 100%);
  --grad-soft: linear-gradient(135deg, #4f7bff 0%, #b96cff 100%);
  --grad-tri: linear-gradient(120deg, #2f6bff, #a855f7 52%, #22d3ee);
  --grad-orange: linear-gradient(135deg, var(--orange), var(--orange-soft));

  /* Type */
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;

  /* Spacing scale (8px grid) */
  --s-1: 4px;  --s-2: 8px;  --s-3: 16px; --s-4: 24px;
  --s-5: 32px; --s-6: 48px; --s-7: 64px; --s-8: 96px; --s-9: 128px;

  /* Radii */
  --r-sm: 8px; --r-md: 14px; --r-lg: 22px; --r-xl: 32px; --r-pill: 999px;

  --maxw: 1200px;
  --nav-h: 72px;

  --shadow-glow: 0 0 0 1px var(--glass-border), 0 24px 60px -20px rgba(0,0,0,0.7);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::before {
  content: ""; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(circle at 80% 4%, rgba(150,70,230,0.30), transparent 34%),
    radial-gradient(circle at 20% 34%, rgba(90,35,165,0.20), transparent 42%),
    linear-gradient(180deg, #26083f 0%, #17042c 28%, #0b0417 62%, #070310 100%);
}
main, nav, footer, header { position: relative; z-index: 1; }

/* Fixed-width digits everywhere a number counts up or updates live, so the
   layout doesn't jitter as digit glyphs of different natural widths cycle through. */
.stat-card b, .rr-kpi b, .spot-stat b, .ns-tile b, .tb-card b,
.roi2-num, .roi2-mult-pill b, .roi2-bar-num, .roi2-foot .rf-n, .nr-num {
  font-variant-numeric: tabular-nums;
}

/* Count-up settle pulse — a brief pop when a counter reaches its target */
.count-settle { animation: countSettle .4s var(--ease); }
@keyframes countSettle { 0% { transform: scale(1); } 45% { transform: scale(1.12); } 100% { transform: scale(1); } }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 4px; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--s-4); }
section { position: relative; }
.section-pad { padding-block: clamp(64px, 9vw, 128px); }

.eyebrow {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--cyan);
  display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--cyan); opacity: 0.6; }

.section-head { max-width: 720px; margin-bottom: var(--s-6); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.05; letter-spacing: -0.02em; }
.h-display { font-size: clamp(40px, 6.4vw, 76px); }
.h-section { font-size: clamp(30px, 4.6vw, 52px); margin-top: var(--s-3); }
.lead { color: var(--text-muted); font-size: clamp(16px, 1.4vw, 19px); margin-top: var(--s-3); }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  padding: 14px 24px; border-radius: var(--r-pill);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, border-color .25s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad); color: #ffffff;
  box-shadow: 0 8px 30px -8px rgba(47,107,255,0.6), inset 0 0 0 1px rgba(255,255,255,0.18);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px -8px rgba(168,85,247,0.55), inset 0 0 0 1px rgba(255,255,255,0.3); }
.btn-orange { background: var(--grad-orange); color: #fff; box-shadow: 0 10px 34px -8px rgba(255,91,18,0.5), inset 0 0 0 1px rgba(255,255,255,0.18); }
.btn-orange:hover { transform: translateY(-2px); box-shadow: 0 16px 44px -8px rgba(255,138,0,0.6), inset 0 0 0 1px rgba(255,255,255,0.28); }
.btn-ghost {
  background: var(--glass); color: var(--text);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
}
.btn-ghost:hover { border-color: var(--glass-border-bright); background: var(--glass-2); transform: translateY(-2px); }
.btn-lg { padding: 17px 32px; font-size: 16px; }
.btn .ico { width: 18px; height: 18px; }

/* ---------- Pills / badges ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--text);
  padding: 7px 14px; border-radius: var(--r-pill);
  background: var(--glass); border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
.pill svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--cyan); }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .3s var(--ease), border-color .3s var(--ease), backdrop-filter .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8, 12, 20, 0.7);
  backdrop-filter: blur(20px) saturate(160%); -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom-color: var(--glass-border);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.logo { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 2px; font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: -0.02em; }
.logo-tag { font-family: var(--font-display); font-weight: 500; font-size: 12px; letter-spacing: 0.01em; line-height: 1; margin-left: 4px; color: var(--text-muted); white-space: nowrap; text-transform: none; }
.logo .mark {
  width: 30px; height: 30px; border-radius: 9px;
  background: var(--grad); display: grid; place-items: center;
  box-shadow: 0 6px 18px -6px rgba(47,107,255,0.8);
}
.logo .mark svg { width: 17px; height: 17px; }
.logo .word { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.logo img { height: 36px; width: auto; display: block; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 13.5px; font-weight: 500; color: var(--text-muted); white-space: nowrap; flex-shrink: 0;
  padding: 8px 10px; border-radius: var(--r-pill); transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--text); background: var(--glass); }

/* dropdown menus */
.nav-item { position: relative; }
.nav-item > .nav-trigger { display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; flex-shrink: 0; font-size: 13.5px; font-weight: 500; color: var(--text-muted); padding: 8px 10px; border-radius: var(--r-pill); cursor: pointer; transition: color .2s, background .2s; }
.nav-item > .nav-trigger svg { width: 14px; height: 14px; transition: transform .25s; }
.nav-item:hover > .nav-trigger, .nav-item:focus-within > .nav-trigger { color: var(--text); background: var(--glass); }
.nav-item:hover > .nav-trigger svg, .nav-item:focus-within > .nav-trigger svg { transform: rotate(180deg); }
.nav-drop {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  margin-top: 10px;
  min-width: 260px; padding: 8px; border-radius: var(--r-md);
  background: rgba(14,10,26,0.96); border: 1px solid var(--glass-border-bright);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 26px 60px -20px rgba(0,0,0,0.8);
  opacity: 0; pointer-events: none; transition: opacity .22s, transform .22s var(--ease); z-index: 120;
}
.nav-item:hover > .nav-drop, .nav-item:focus-within > .nav-drop { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.nav-drop::before { content: ""; position: absolute; top: -18px; left: 0; right: 0; height: 18px; }
.nav-drop a { display: flex; flex-direction: column; gap: 2px; padding: 11px 14px; border-radius: 10px; color: var(--text); transition: background .18s; }
.nav-drop a:hover { background: var(--glass-2); }
.nav-drop a b { font-family: var(--font-display); font-weight: 600; font-size: 14px; }
.nav-drop a span { font-size: 12px; color: var(--text-dim); }
.drawer .draw-group { margin: 4px 0; padding-top: 8px; border-top: 1px solid var(--glass-border); }
.drawer .draw-group > b { display: block; font-family: var(--font-display); font-weight: 600; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-dim); padding: 6px 16px; }
@media (max-width: 1100px) { .logo-tag { display: none; } }
.nav-right { display: flex; align-items: center; gap: 7px; }
.nav-right .btn { padding: 9px 13px; font-size: 13.5px; }

.hamburger { display: none; width: 44px; height: 44px; border-radius: 12px; align-items: center; justify-content: center; background: var(--glass); border: 1px solid var(--glass-border); }
.hamburger span { display: block; width: 20px; height: 2px; background: var(--text); position: relative; transition: transform .3s, opacity .2s; }
.hamburger span::before, .hamburger span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--text); transition: transform .3s; }
.hamburger span::before { top: -6px; } .hamburger span::after { top: 6px; }
.nav.open .hamburger span { background: transparent; }
.nav.open .hamburger span::before { transform: translateY(6px) rotate(45deg); }
.nav.open .hamburger span::after { transform: translateY(-6px) rotate(-45deg); }

.drawer {
  position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 99;
  background: rgba(8,12,20,0.96); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-border);
  padding: var(--s-4); display: flex; flex-direction: column; gap: 6px;
  transform: translateY(-12px); opacity: 0; pointer-events: none; transition: transform .3s var(--ease), opacity .3s;
}
.nav.open .drawer { transform: translateY(0); opacity: 1; pointer-events: auto; }
.drawer a { padding: 14px 16px; border-radius: 12px; font-weight: 500; color: var(--text-muted); }
.drawer a:hover { background: var(--glass); color: var(--text); }
.drawer .btn { margin-top: 8px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-top: calc(var(--nav-h) + clamp(40px, 7vw, 90px)); padding-bottom: clamp(60px, 8vw, 120px); overflow: hidden; }

/* Hero entrance: copy and visual fade/rise in together, same duration and start time */
.hero-enter { opacity: 0; transform: translateY(24px); animation: heroIn .8s var(--ease) both; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

.hero-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.hero-stack { display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero-stack .hero-copy { max-width: 760px; }
.hero-stack .hero-cta, .hero-stack .hero-meta { justify-content: center; }
.hero-stack .hero-stage { width: 100%; max-width: 1040px; margin-top: clamp(40px, 5vw, 64px); }

/* Mesh gradient + dot grid background */
.mesh { position: absolute; inset: -20% -10%; z-index: -2; filter: blur(60px); opacity: 0.5; pointer-events: none; }
.mesh i { position: absolute; border-radius: 50%; mix-blend-mode: screen; }
.mesh .m1 { width: 46vw; height: 46vw; left: -6vw; top: -6vw; background: radial-gradient(circle, #7a2bd0, transparent 70%); animation: drift1 18s ease-in-out infinite; }
.mesh .m2 { width: 40vw; height: 40vw; right: -4vw; top: -10vw; background: radial-gradient(circle, var(--violet), transparent 70%); animation: drift2 22s ease-in-out infinite; }
.mesh .m3 { width: 38vw; height: 38vw; left: 25vw; top: 12vw; background: radial-gradient(circle, #5a1e9e, transparent 70%); animation: drift3 26s ease-in-out infinite; }
@keyframes drift1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(8vw,6vw) scale(1.15)} }
@keyframes drift2 { 0%,100%{transform:translate(0,0) scale(1.05)} 50%{transform:translate(-7vw,8vw) scale(0.9)} }
@keyframes drift3 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-5vw,-7vw) scale(1.2)} }

.dotgrid {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 75%);
}

.hero-copy { max-width: 560px; }
.hero h1 { margin-top: var(--s-4); }
.hero .lead { max-width: 480px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: var(--s-5); }
.hero-meta { display: flex; align-items: center; gap: 18px; margin-top: var(--s-5); color: var(--text-dim); font-size: 13px; flex-wrap: wrap; }
.hero-meta .av { display: flex; }
.hero-meta .av span { width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--bg); margin-left: -9px; background: var(--grad-tri); }
.hero-meta .av span:first-child { margin-left: 0; }

/* Hero stage (mockup + toasts) */
.hero-stage { position: relative; perspective: 1600px; }
.mockup-float { animation: floatY 5.5s ease-in-out infinite; transform-style: preserve-3d; }
@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
.hero-stage .hero-dash { transform: perspective(1800px) rotateY(-11deg) rotateX(5deg) rotateZ(0.6deg); transition: transform .5s var(--ease); }
.hero-stage:hover .hero-dash { transform: perspective(1800px) rotateY(-5deg) rotateX(2deg) rotateZ(0deg); }

.browser {
  position: relative;
  transform: rotateY(calc(-13deg + var(--tilt-y, 0deg))) rotateX(calc(6deg + var(--tilt-x, 0deg))) rotateZ(1deg);
  transition: transform .2s ease-out;
  border-radius: var(--r-lg); overflow: hidden;
  background: var(--bg-2); border: 1px solid var(--glass-border);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.85), 0 0 0 1px rgba(255,255,255,0.04), 0 0 70px -30px rgba(47,107,255,0.6);
}
.browser-bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; background: rgba(255,255,255,0.03); border-bottom: 1px solid var(--glass-border); }
.browser-bar .d { width: 11px; height: 11px; border-radius: 50%; background: #2A3142; }
.browser-bar .url { margin-left: 12px; flex: 1; height: 24px; border-radius: 7px; background: rgba(255,255,255,0.04); display: flex; align-items: center; padding: 0 12px; font-size: 11px; color: var(--text-dim); font-family: var(--font-body); }
.browser-bar .url::before { content: "🔒"; font-size: 9px; margin-right: 7px; filter: grayscale(1) opacity(0.6); }

.pwa-app { padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.pwa-head { display: flex; align-items: center; justify-content: space-between; }
.pwa-head .brand { display: flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 600; font-size: 15px; }
.pwa-head .brand .b-mark { width: 26px; height: 26px; border-radius: 8px; background: var(--grad); }
.pwa-head .bell { width: 32px; height: 32px; border-radius: 10px; background: var(--glass); display: grid; place-items: center; color: var(--text-muted); position: relative; }
.pwa-head .bell::after { content: ""; position: absolute; top: 7px; right: 7px; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }

.referral-card {
  border-radius: var(--r-md); padding: 18px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(47,107,255,0.18), rgba(168,85,247,0.1));
  border: 1px solid var(--glass-border);
}
.referral-card .lbl { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 7px; }
.referral-card .lbl .live { width: 7px; height: 7px; border-radius: 50%; background: var(--good); box-shadow: 0 0 8px var(--good); animation: pulse 2s infinite; }
.referral-card .num { font-family: var(--font-display); font-weight: 700; font-size: 42px; line-height: 1; margin-top: 8px; letter-spacing: -0.03em; }
.referral-card .delta { font-size: 12px; color: var(--good); margin-top: 6px; font-weight: 500; }

@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.35} }

.mini-chart { display: flex; align-items: flex-end; gap: 7px; height: 70px; padding: 14px; border-radius: var(--r-md); background: var(--glass); border: 1px solid var(--glass-border); }
.mini-chart .bar { flex: 1; border-radius: 5px 5px 2px 2px; background: var(--grad); opacity: 0.85; transform-origin: bottom; }

/* hero live-activity strip */
.act-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.act-tile { padding: 11px 13px; border-radius: var(--r-md); background: var(--glass); border: 1px solid var(--glass-border); }
.act-tile .at-lbl { display: block; font-size: 10.5px; color: var(--text-muted); }
.act-tile .at-num { display: block; font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: -0.02em; margin-top: 3px; }

/* hero in-phone push toast */

/* ============================================================
   BRAND GALLERY — real screenshots
   ============================================================ */
.brandgal { padding-block: var(--s-7); }
.bg-showcase { margin-top: var(--s-5); display: flex; justify-content: center; }
.bg-showcase img {
  width: 100%; max-width: 900px; height: auto;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.6)) drop-shadow(0 0 70px rgba(168,85,247,0.28));
  animation: bgFloat 6s ease-in-out infinite;
}
@keyframes bgFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (prefers-reduced-motion: reduce) { .bg-showcase img { animation: none; } }

/* ============================================================
   DIGITAL BUSINESS CARD showcase
   ============================================================ */
.dbc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.dbc-copy { max-width: 520px; }
.dbc-copy .h-section { margin-top: var(--s-3); }
.dbc-copy .lead { margin-bottom: var(--s-5); }
.dbc-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: var(--s-5); }
.dbc-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text-muted); }
.dbc-list .dbc-ck { width: 26px; height: 26px; border-radius: 8px; flex-shrink: 0; display: grid; place-items: center; color: var(--cyan); background: rgba(34,211,238,0.12); border: 1px solid rgba(34,211,238,0.2); }
.dbc-shot img { width: 100%; height: auto; filter: drop-shadow(0 40px 80px rgba(0,0,0,0.6)) drop-shadow(0 0 70px rgba(168,85,247,0.28)); }

/* ============================================================
   REAL RESULTS case study
   ============================================================ */
.results-shot { margin-top: var(--s-5); display: flex; justify-content: center; }
/* clean results layout */
.rr-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: var(--s-5); }
.rr-kpi { padding: 24px 18px; text-align: center; border-radius: var(--r-lg); background: linear-gradient(165deg, rgba(124,60,255,0.12), var(--glass)); border: 1px solid var(--glass-border); transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.rr-kpi:hover { transform: translateY(-6px); border-color: var(--glass-border-bright); box-shadow: 0 24px 50px -26px rgba(0,0,0,0.8), 0 0 36px -20px rgba(124,60,255,0.7); }
.rr-kpi b { display: block; font-family: var(--font-display); font-weight: 700; font-size: clamp(30px, 3.6vw, 44px); letter-spacing: -0.02em; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.rr-kpi > span { display: block; margin-top: 8px; font-size: 13px; color: var(--text-muted); }
.rr-kpi .rr-stars { display: inline; color: #FFC34D; font-style: normal; letter-spacing: 1px; }
.rr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 18px; }
.rr-compare, .rr-quote { padding: clamp(24px, 3vw, 34px); border-radius: var(--r-lg); background: var(--glass); border: 1px solid var(--glass-border); }
.rr-ba-head { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; font-size: 16px; }
.rr-ba-head .rr-g { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-size: 15px; color: #4285F4; background: #fff; }
.rr-rise { color: var(--violet); font-size: 13px; }
.rr-bars { display: flex; align-items: flex-end; justify-content: center; gap: 40px; height: 150px; margin: 24px 0; }
.rr-col { display: flex; flex-direction: column; align-items: center; gap: 8px; height: 100%; justify-content: flex-end; }
.rr-col .rr-bar-track { flex: 1; display: flex; align-items: flex-end; }
.rr-n { font-family: var(--font-display); font-weight: 700; font-size: 22px; }
.rr-bar { width: 64px; border-radius: 10px 10px 4px 4px; background: rgba(255,255,255,0.14); height: var(--h); flex: none; transition: height .8s var(--ease); }
.rr-bar.tall { background: var(--grad); box-shadow: 0 0 30px -8px rgba(124,60,255,0.8); }
.rr-w { font-size: 12px; color: var(--text-dim); }
.rr-note { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.rr-note b { color: var(--text); }
.rr-quote { display: flex; flex-direction: column; }
.rr-qmark { font-family: var(--font-display); font-size: 54px; line-height: .5; color: var(--violet); opacity: .7; }
.rr-quote blockquote { font-size: 16px; line-height: 1.6; color: var(--text); margin: 14px 0 20px; }
.rr-quote figcaption { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.rr-ava { width: 44px; height: 44px; border-radius: 50%; background: var(--grad-tri); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; color: #fff; flex-shrink: 0; }
.rr-who b { display: block; font-family: var(--font-display); font-weight: 600; font-size: 14px; }
.rr-who small { font-size: 12.5px; color: var(--text-dim); }
@media (max-width: 860px) {
  .rr-kpis { grid-template-columns: 1fr 1fr; }
  .rr-grid { grid-template-columns: 1fr; }
}
.results-shot img { width: 100%; max-width: 1040px; height: auto; border-radius: var(--r-lg); box-shadow: 0 50px 110px -40px rgba(0,0,0,0.9), 0 0 0 1px var(--glass-border), 0 0 90px -50px rgba(255,91,18,0.5); }

/* hero in-phone push toast (marker) */
.hero-push {
  position: absolute; left: 14px; right: 14px; top: 60px; z-index: 8;
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px; border-radius: 14px;
  background: rgba(20,10,42,0.92); border: 1px solid var(--glass-border-bright);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px -16px rgba(0,0,0,0.85);
  font-size: 12.5px; font-weight: 500; color: var(--text);
  opacity: 0; transform: translateY(-12px); pointer-events: none;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.hero-push.show { opacity: 1; transform: translateY(0); }
.hero-push .hp-ico { width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0; display: grid; place-items: center; color: #fff; background: var(--grad); }

/* per-brand accent recolor (hero phone) */
#heroBrowser { --ha: #2f6bff; --ha2: #a855f7; }
#heroBrowser .b-mark,
#heroBrowser .share-btn { background: linear-gradient(135deg, var(--ha), var(--ha2)); transition: background .5s var(--ease); }
#heroBrowser .referral-card { background: linear-gradient(135deg, color-mix(in srgb, var(--ha) 22%, transparent), color-mix(in srgb, var(--ha2) 12%, transparent)); transition: background .5s var(--ease); }
#heroBrand, #bizUrl { transition: color .3s; }

.pwa-notif { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-radius: var(--r-md); background: var(--glass); border: 1px solid var(--glass-border); font-size: 12.5px; color: var(--text-muted); }
.pwa-notif b { color: var(--text); font-weight: 600; }
.pwa-notif .ic { width: 30px; height: 30px; border-radius: 9px; background: rgba(168,85,247,0.12); display: grid; place-items: center; color: var(--cyan); flex-shrink: 0; }

.share-btn {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px; border-radius: var(--r-md); font-family: var(--font-display); font-weight: 600; font-size: 14px;
  color: #ffffff; background: var(--grad); position: relative;
  box-shadow: 0 0 0 0 rgba(168,85,247,0.5); animation: glowPulse 2.6s ease-in-out infinite;
}
@keyframes glowPulse { 0%,100%{box-shadow: 0 0 0 0 rgba(168,85,247,0.45)} 50%{box-shadow: 0 0 26px 3px rgba(168,85,247,0.55)} }

/* Floating toasts */
.toast {
  position: absolute; z-index: 5;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-radius: var(--r-pill);
  background: rgba(14,22,38,0.86); border: 1px solid var(--glass-border-bright);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px -16px rgba(0,0,0,0.8);
  font-size: 13px; font-weight: 500; white-space: nowrap;
  opacity: 0; animation: toastLoop 9s ease-in-out infinite;
}
.toast .emo { font-size: 16px; }
.toast.t1 { top: 6%; left: -8%; animation-delay: .6s; }
.toast.t2 { top: 44%; right: -10%; animation-delay: 3.6s; }
.toast.t3 { bottom: 6%; left: -4%; animation-delay: 6.4s; }
@keyframes toastLoop {
  0% { opacity: 0; transform: translateY(14px) scale(.96); }
  6%, 26% { opacity: 1; transform: translateY(0) scale(1); }
  33%, 100% { opacity: 0; transform: translateY(-10px) scale(.97); }
}

/* ---------- AI App Builder (hero) ---------- */
.ai-builder { margin-top: var(--s-5); max-width: 480px; }
.ai-field {
  display: flex; align-items: center; gap: 10px; padding: 7px 7px 7px 16px;
  border-radius: var(--r-pill); background: var(--glass); border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  transition: border-color .25s, box-shadow .25s;
}
.ai-field:focus-within { border-color: rgba(168,85,247,0.6); box-shadow: 0 0 0 4px rgba(168,85,247,0.12), 0 14px 40px -18px rgba(168,85,247,0.7); }
.ai-spark { width: 20px; height: 20px; color: var(--cyan); flex-shrink: 0; }
#aiInput { flex: 1; min-width: 0; background: none; border: none; outline: none; color: var(--text); font-family: var(--font-body); font-size: 15px; }
#aiInput::placeholder { color: var(--text-dim); }
.ai-go {
  display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0;
  padding: 12px 20px; border-radius: var(--r-pill);
  font-family: var(--font-display); font-weight: 600; font-size: 14px; color: #fff;
  background: var(--grad); box-shadow: 0 8px 24px -8px rgba(47,107,255,0.7);
  transition: transform .2s, box-shadow .2s, opacity .2s;
}
.ai-go:hover { transform: translateY(-1px); box-shadow: 0 12px 30px -8px rgba(168,85,247,0.7); }
.ai-go svg { width: 16px; height: 16px; transition: transform .25s; }
.ai-go:hover svg { transform: translateX(3px); }
.ai-go.busy { opacity: .65; pointer-events: none; }
.ai-go.busy svg { animation: spin 0.8s linear infinite; }
.ai-chips { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 14px; }
.ai-chips-lbl { font-size: 13px; color: var(--text-dim); }
.ai-chip {
  padding: 7px 14px; border-radius: var(--r-pill); font-size: 13px; font-weight: 500;
  color: var(--text-muted); background: var(--glass); border: 1px solid var(--glass-border);
  transition: color .2s, border-color .2s, background .2s, transform .2s;
}
.ai-chip:hover { color: var(--text); border-color: var(--glass-border-bright); background: var(--glass-2); transform: translateY(-1px); }
.hero-demolink { display: inline-flex; align-items: center; gap: 10px; margin-top: var(--s-4); font-size: 14px; font-weight: 500; color: var(--text-muted); transition: color .2s; }
.hero-demolink:hover { color: var(--text); }
.hero-demolink svg { width: 32px; height: 32px; padding: 9px; border-radius: 50%; background: var(--glass); border: 1px solid var(--glass-border); color: var(--cyan); transition: border-color .2s; }
.hero-demolink:hover svg { border-color: var(--glass-border-bright); }

.pwa-tagline { font-size: 11.5px; color: var(--text-muted); margin-top: -6px; }

/* AI build overlay on the hero mockup */
.build-overlay {
  position: absolute; inset: 0; z-index: 10;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  padding: 24px; text-align: center;
  background: rgba(11,6,19,0.82); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  opacity: 0; pointer-events: none; transition: opacity .4s;
}
.build-overlay.show { opacity: 1; pointer-events: auto; }
.build-orb { width: 60px; height: 60px; border-radius: 50%; background: var(--grad); position: relative; box-shadow: 0 0 44px -6px rgba(168,85,247,0.85); animation: orbPulse 1.4s ease-in-out infinite; }
.build-orb::after { content: ""; position: absolute; inset: -9px; border-radius: 50%; border: 2px solid rgba(199,125,255,0.55); border-top-color: transparent; animation: spin 1s linear infinite; }
@keyframes orbPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.08); } }
.build-title { font-family: var(--font-display); font-weight: 600; font-size: 15px; }
.build-steps { display: flex; flex-direction: column; gap: 11px; text-align: left; }
.build-steps li { display: flex; align-items: center; gap: 11px; font-size: 13px; color: var(--text-dim); transition: color .3s; }
.build-steps li::before { content: ""; width: 19px; height: 19px; border-radius: 50%; border: 2px solid var(--glass-border-bright); flex-shrink: 0; display: grid; place-items: center; font-size: 11px; transition: background .3s, border-color .3s; }
.build-steps li.done { color: var(--text); }
.build-steps li.done::before { content: "✓"; color: #fff; background: var(--grad); border-color: transparent; }

/* ---------- Hero: interactive app preview ---------- */
/* Real PWA two-phone showcase */
.pwa-duo { display: flex; justify-content: center; align-items: center; gap: clamp(-40px, -3vw, 0px); margin-top: var(--s-6); }
.pwa-phone { width: min(280px, 74vw); border-radius: 38px; padding: 8px; background: #04070d; border: 1px solid var(--glass-border-bright); box-shadow: 0 50px 100px -34px rgba(0,0,0,0.9), inset 0 0 0 2px rgba(255,255,255,0.04), 0 0 90px -40px rgba(124,60,255,0.7); }
.pwa-phone img { width: 100%; display: block; border-radius: 30px; }
.pwa-phone.p-back { transform: rotate(-5deg) translateY(18px) scale(0.9); z-index: 1; opacity: 0.96; }
.pwa-phone.p-front { transform: rotate(3deg); z-index: 2; margin-left: -60px; }
@media (max-width: 620px) {
  .pwa-duo { flex-direction: column; gap: 24px; }
  .pwa-phone.p-back, .pwa-phone.p-front { transform: none; margin-left: 0; }
}

/* Real device / dashboard frames (real screenshots) */
.hero-phone { width: min(300px, 78vw); margin-inline: auto; border-radius: 40px; padding: 9px; background: #04070d; border: 1px solid var(--glass-border-bright); box-shadow: 0 50px 110px -34px rgba(0,0,0,0.9), inset 0 0 0 2px rgba(255,255,255,0.04), 0 0 90px -34px rgba(124,60,255,0.7); }
.hero-phone img { width: 100%; display: block; border-radius: 32px; }
.hero-dash { width: 100%; margin-inline: auto; border-radius: var(--r-lg); overflow: hidden; background: #1a0625; border: 1px solid var(--glass-border-bright); box-shadow: 0 50px 110px -34px rgba(0,0,0,0.9), inset 0 0 0 1px rgba(255,255,255,0.04), 0 0 120px -40px rgba(124,60,255,0.75); transform-origin: center; }
.hero-dash img { width: 100%; display: block; font-size: 0; }
.hero-duo { margin-top: 0; }
.hero-duo .pwa-phone { width: min(240px, 60vw); }
.hero-duo .pwa-phone.p-front { margin-left: -52px; }
.dash-showcase { max-width: 940px; margin: var(--s-6) auto 0; }
.dash-real { border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--glass-border); background: #1a0625; box-shadow: 0 50px 110px -40px rgba(0,0,0,0.9), 0 0 0 1px rgba(255,255,255,0.03), 0 0 90px -50px rgba(124,60,255,0.6); margin-top: var(--s-6); }
.dash-topbar { display: flex; align-items: center; gap: 8px; padding: 14px 18px; border-bottom: 1px solid var(--glass-border); background: rgba(255,255,255,0.02); }
.dash-topbar .d { width: 11px; height: 11px; border-radius: 50%; background: #2a2740; }
.dash-topbar .ttl { margin-left: 12px; font-size: 12px; color: var(--text-dim); font-family: var(--font-display); }
.dash-imgs { display: block; background: #1a0625; font-size: 0; }
.dclip { width: 100%; overflow: hidden; }
.dclip img { width: 100%; display: block; }
.dclip-top { aspect-ratio: 1827 / 600; }
.dash-full { width: 100%; display: block; }

.pwa-panels { position: relative; min-height: 292px; display: flex; flex-direction: column; }
.pwa-panel { display: none; flex-direction: column; gap: 14px; }
.pwa-panel.active { display: flex; animation: panelIn .38s var(--ease); }
@keyframes panelIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.pwa-tabs { display: flex; gap: 4px; margin-top: 16px; padding-top: 12px; border-top: 1px solid var(--glass-border); }
.pwa-tab { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 7px 2px; border-radius: 11px; color: var(--text-dim); font-family: var(--font-display); font-size: 10px; font-weight: 600; transition: color .2s, background .2s; }
.pwa-tab svg { width: 19px; height: 19px; }
.pwa-tab.active { color: var(--cyan); }
.pwa-tab:hover:not(.active) { color: var(--text-muted); background: var(--glass); }

/* digital business card */
.dcard { padding: 18px; border-radius: 16px; background: linear-gradient(150deg, rgba(47,107,255,0.3), rgba(168,85,247,0.12)); border: 1px solid var(--glass-border); display: flex; flex-direction: column; gap: 16px; }
.dcard-top { display: flex; align-items: center; gap: 12px; }
.dcard-ava { width: 48px; height: 48px; border-radius: 50%; background: var(--grad-tri); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; color: #fff; }
.dcard-name { font-family: var(--font-display); font-weight: 600; font-size: 16px; }
.dcard-role { font-size: 12px; color: var(--text-muted); }
.dcard-acts { display: flex; gap: 8px; }
.dcard-btn { flex: 1; padding: 11px; border-radius: 11px; font-family: var(--font-display); font-weight: 600; font-size: 12px; color: var(--text); background: var(--glass-2); border: 1px solid var(--glass-border); transition: transform .15s, border-color .2s; }
.dcard-btn:hover { transform: translateY(-1px); border-color: var(--glass-border-bright); }
.dcard-btn.primary { color: #fff; background: var(--grad); border: none; }
.dcard-links { display: flex; gap: 8px; }
.dcard-links span { flex: 1; height: 38px; border-radius: 10px; background: var(--glass); border: 1px solid var(--glass-border); display: grid; place-items: center; color: var(--text-muted); transition: color .2s, border-color .2s; }
.dcard-links span:hover { color: var(--cyan); border-color: var(--glass-border-bright); }
.dcard-links svg { width: 16px; height: 16px; }

/* promo */
.promo-card { padding: 22px 20px; border-radius: 16px; text-align: center; background: linear-gradient(150deg, rgba(168,85,247,0.22), rgba(47,107,255,0.1)); border: 1px dashed rgba(199,125,255,0.55); display: flex; flex-direction: column; align-items: center; gap: 8px; }
.promo-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cyan); padding: 5px 11px; border-radius: 999px; background: rgba(199,125,255,0.14); }
.promo-amt { font-family: var(--font-display); font-weight: 700; font-size: 42px; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.promo-desc { font-size: 13px; color: var(--text-muted); }
.promo-code { font-size: 12px; color: var(--text-dim); }
.promo-code b { font-family: var(--font-display); color: var(--text); letter-spacing: 0.06em; }
.promo-btn { margin-top: 6px; padding: 11px 22px; border-radius: 11px; font-family: var(--font-display); font-weight: 700; font-size: 13px; color: #fff; background: var(--grad); transition: transform .15s; }
.promo-btn:hover { transform: translateY(-1px); }

/* reviews */
.rev-prompt { padding: 18px; border-radius: 16px; background: var(--glass); border: 1px solid var(--glass-border); text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.rev-q { font-family: var(--font-display); font-weight: 600; font-size: 15px; }
.rev-stars { display: flex; gap: 6px; }
.rev-stars button { color: #463c5e; transition: color .15s, transform .15s; }
.rev-stars button svg { width: 26px; height: 26px; display: block; }
.rev-stars button:hover { transform: scale(1.15); }
.rev-stars button.on { color: #FFC34D; }
.rev-btn { padding: 10px 18px; border-radius: 10px; font-family: var(--font-display); font-weight: 700; font-size: 12px; color: #fff; background: var(--grad); transition: transform .15s; }
.rev-btn:hover { transform: translateY(-1px); }
.rev-item { font-size: 12px; color: var(--text-muted); padding: 10px 12px; border-radius: 11px; background: var(--glass); border: 1px solid var(--glass-border); }
.rev-item .rev-mini { color: #FFC34D; margin-right: 6px; font-size: 11px; letter-spacing: 1px; }

/* share ripple fx */
.share-fx { position: absolute; inset: 0; z-index: 6; display: flex; flex-direction: column; align-items: center; justify-content: center; background: rgba(11,6,19,0.9); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); border-radius: 14px; opacity: 0; pointer-events: none; transition: opacity .3s; }
.share-fx.play { opacity: 1; }
.ripple-net { position: relative; width: 188px; height: 168px; }
.ripple { position: absolute; left: 50%; top: 50%; width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid rgba(199,125,255,0.6); transform: translate(-50%,-50%) scale(0); }
.share-fx.play .ripple { animation: rippleOut 1.8s ease-out infinite; }
.share-fx.play .ripple:nth-child(2) { animation-delay: .45s; }
.share-fx.play .ripple:nth-child(3) { animation-delay: .9s; }
@keyframes rippleOut { 0% { transform: translate(-50%,-50%) scale(.25); opacity: .9; } 100% { transform: translate(-50%,-50%) scale(3.6); opacity: 0; } }
.snode { position: absolute; border-radius: 50%; transform: translate(-50%,-50%); }
.snode.c { left: 50%; top: 50%; width: 38px; height: 38px; background: var(--grad); box-shadow: 0 0 20px rgba(168,85,247,0.9); z-index: 2; }
.snode:not(.c) { width: 16px; height: 16px; background: var(--grad-tri); opacity: 0; box-shadow: 0 0 10px rgba(168,85,247,0.6); }
.share-fx.play .snode:not(.c) { animation: nodePop .6s var(--ease) forwards; }
@keyframes nodePop { 0% { transform: translate(-50%,-50%) scale(0); opacity: 0; } 60% { transform: translate(-50%,-50%) scale(1.2); opacity: 1; } 100% { transform: translate(-50%,-50%) scale(1); opacity: 1; } }
.snode.d1 { left: 50%; top: 6%; animation-delay: .15s; }
.snode.d2 { left: 85%; top: 26%; animation-delay: .25s; }
.snode.d3 { left: 85%; top: 74%; animation-delay: .35s; }
.snode.d4 { left: 50%; top: 94%; animation-delay: .45s; }
.snode.d5 { left: 15%; top: 74%; animation-delay: .3s; }
.snode.d6 { left: 15%; top: 26%; animation-delay: .2s; }
.share-fx-txt { position: absolute; bottom: 16px; left: 0; right: 0; text-align: center; font-family: var(--font-display); font-weight: 600; font-size: 13px; color: var(--text); }

/* ============================================================
   SOCIAL PROOF
   ============================================================ */
.proof { padding-block: var(--s-7); border-block: 1px solid var(--glass-border); }
.proof-label { text-align: center; color: var(--text-dim); font-size: 13px; font-weight: 500; letter-spacing: 0.04em; margin-bottom: var(--s-5); }
.marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 18px; width: max-content; animation: marquee 38s linear infinite; }
@keyframes marquee { to { transform: translateX(-50%); } }
.logo-chip {
  display: flex; align-items: center; justify-content: center;
  min-width: 168px; height: 56px; border-radius: var(--r-md);
  background: var(--glass); border: 1px solid var(--glass-border);
  font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--text-muted);
  letter-spacing: 0.02em;
}
.stat-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: var(--s-6); }
.stat-pills .pill { font-size: 14px; padding: 10px 18px; }
.stat-pills .pill b { font-family: var(--font-display); color: var(--text); }

/* boxed stat cards */
.stat-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: var(--s-6); }
.stat-card { text-align: center; padding: 26px 18px; border-radius: var(--r-lg); background: linear-gradient(160deg, rgba(124,60,255,0.12), var(--glass)); border: 1px solid var(--glass-border); transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.stat-card:hover { transform: translateY(-6px); border-color: var(--glass-border-bright); box-shadow: 0 24px 50px -26px rgba(0,0,0,0.8), 0 0 36px -20px rgba(124,60,255,0.7); }
.stat-card b { display: block; font-family: var(--font-display); font-weight: 700; font-size: clamp(28px, 3vw, 38px); letter-spacing: -0.02em; }
.stat-card b i { font-style: normal; color: var(--cyan); }
.stat-card > span { display: block; margin-top: 6px; font-size: 14px; color: var(--text-muted); }

/* Cellular Plus spotlight */
.spotlight { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(20px, 4vw, 48px); margin-top: 16px; padding: clamp(22px, 3vw, 34px) clamp(24px, 4vw, 40px); border-radius: var(--r-lg); background: linear-gradient(120deg, rgba(34,211,238,0.06), rgba(124,60,255,0.1)); border: 1px solid var(--glass-border); }
.spot-brand { font-family: var(--font-display); font-weight: 700; font-size: clamp(20px, 2.4vw, 26px); flex-shrink: 0; }
.spot-stats { display: flex; flex-wrap: wrap; gap: clamp(20px, 3vw, 40px); }
.spot-stat b { display: block; font-family: var(--font-display); font-weight: 700; font-size: clamp(20px, 2.2vw, 26px); background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.spot-stat > span { font-size: 12.5px; color: var(--text-muted); }
.spot-quote { flex: 1; min-width: 240px; font-size: 15px; color: var(--text); font-style: italic; }

/* ============================================================
   THE TRACPOINT PLATFORM
   ============================================================ */
.pillars { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.pillar { padding: var(--s-4); border-radius: var(--r-lg); background: linear-gradient(180deg, var(--glass), rgba(124,60,255,0.05)); border: 1px solid var(--glass-border); transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.pillar:hover { transform: translateY(-6px); border-color: var(--glass-border-bright); box-shadow: 0 24px 50px -26px rgba(0,0,0,0.8), 0 0 36px -20px rgba(124,60,255,0.7); }
.pillar .p-ico { width: 40px; height: 40px; display: grid; place-items: center; color: var(--cyan); margin-bottom: 16px; }
.pillar .p-ico svg { width: 30px; height: 30px; }
.pillar h3 { font-size: 18px; line-height: 1.2; }
.pillar p { margin-top: 10px; font-size: 14px; color: var(--text-muted); }

.tracbuddy { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: clamp(24px, 4vw, 56px); margin-top: var(--s-6); padding: clamp(28px, 4vw, 52px); border-radius: var(--r-xl); background: linear-gradient(150deg, rgba(124,60,255,0.16), rgba(34,211,238,0.05)); border: 1px solid var(--glass-border); }
.tb-left .eyebrow { color: var(--violet); }
.tb-title { font-size: clamp(26px, 3vw, 34px); margin: 14px 0; }
.tb-left p { color: var(--text-muted); font-size: 15px; margin-bottom: var(--s-4); max-width: 340px; }
.tb-orb { position: relative; width: clamp(180px, 18vw, 250px); height: clamp(180px, 18vw, 250px); border-radius: 50%; background: radial-gradient(circle at 50% 50%, rgba(168,85,247,0.55), rgba(80,30,160,0.25) 55%, transparent 72%); display: grid; place-items: center; }
.tb-orb::after { content: ""; position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 90px -10px rgba(168,85,247,0.7); animation: glowBreathe 5s ease-in-out infinite; }
.orb-core { width: 30%; height: 30%; border-radius: 50%; background: radial-gradient(circle, #fff, #c9a8ff 60%, transparent 75%); box-shadow: 0 0 50px 10px rgba(255,255,255,0.5); animation: orbPulse 3s ease-in-out infinite; }
.tb-right { display: flex; flex-direction: column; gap: 14px; }
.tb-card { padding: 16px 18px; border-radius: var(--r-md); background: var(--glass); border: 1px solid var(--glass-border); transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.tb-card:hover { transform: translateY(-3px); border-color: var(--glass-border-bright); box-shadow: 0 16px 34px -18px rgba(0,0,0,0.75), 0 0 24px -14px rgba(124,60,255,0.6); }
.tb-card b { display: block; font-family: var(--font-display); font-weight: 600; font-size: 15px; }
.tb-card span { font-size: 13.5px; color: var(--text-muted); }

/* ============================================================
   WHY CHOOSE
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.why-card { padding: var(--s-5); border-radius: var(--r-lg); background: var(--glass); border: 1px solid var(--glass-border); transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.why-card:hover { transform: translateY(-6px); border-color: var(--glass-border-bright); box-shadow: 0 26px 54px -28px rgba(0,0,0,0.8), 0 0 38px -22px rgba(47,107,255,0.7); }
.why-ico { width: 48px; height: 48px; border-radius: var(--r-md); display: grid; place-items: center; color: var(--cyan); background: rgba(34,211,238,0.1); border: 1px solid rgba(34,211,238,0.18); margin-bottom: 18px; }
.why-ico svg { width: 24px; height: 24px; }
.why-card h3 { font-size: 18px; line-height: 1.2; }
.why-card p { margin-top: 12px; font-size: 14px; color: var(--text-muted); }

/* ============================================================
   FROM THE BLOG
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 18px; }
.blog-card { position: relative; display: flex; flex-direction: column; gap: 12px; padding: var(--s-5); border-radius: var(--r-lg); background: var(--glass); border: 1px solid var(--glass-border); transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.blog-card:hover { transform: translateY(-6px); border-color: var(--glass-border-bright); box-shadow: 0 26px 54px -28px rgba(0,0,0,0.8), 0 0 40px -22px rgba(124,60,255,0.7); }
.blog-card.feature { grid-row: span 1; background: linear-gradient(155deg, rgba(124,60,255,0.16), var(--glass)); }
.blog-tag { align-self: flex-start; font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cyan); padding: 5px 11px; border-radius: 999px; background: rgba(34,211,238,0.12); }
.blog-card h3 { font-size: 18px; line-height: 1.25; }
.blog-card.feature h3 { font-size: 23px; }
.blog-card p { font-size: 14px; color: var(--text-muted); }
.blog-link { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 600; font-size: 13.5px; color: var(--text); }
.blog-link svg { transition: transform .25s; }
.blog-card:hover .blog-link svg { transform: translateX(4px); }
.blog-more { text-align: center; margin-top: var(--s-5); }
.foot-addr { font-size: 13px; color: var(--text-dim); margin-top: 14px; line-height: 1.7; }
.foot-addr a { color: var(--cyan); }

/* ============================================================
   NETWORK EFFECT ENGINE
   ============================================================ */
.net-stage-legacy {
  position: relative; margin-top: var(--s-6);
  border-radius: var(--r-xl); overflow: hidden;
  background:
    radial-gradient(60% 60% at 50% 45%, rgba(47,107,255,0.14), transparent 70%),
    var(--glass);
  border: 1px solid var(--glass-border);
  box-shadow: 0 40px 90px -40px rgba(0,0,0,0.9), inset 0 0 0 1px rgba(47,107,255,0.08);
}
#netCanvas { display: block; width: 100%; height: 560px; }
.net-headline {
  position: absolute; top: 26px; left: 30px; pointer-events: none;
  font-family: var(--font-display); font-weight: 700; font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.1; letter-spacing: -0.02em;
}
.net-badge {
  position: absolute; top: 26px; right: 30px;
  font-size: 12.5px; font-weight: 600; color: var(--text-muted);
  padding: 9px 16px; border-radius: var(--r-pill);
  background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.net-controls {
  position: absolute; left: 30px; bottom: 26px; right: 30px; z-index: 7;
  display: flex; align-items: flex-end; justify-content: space-between; gap: var(--s-5); flex-wrap: wrap;
  pointer-events: none;
}
.net-slider { pointer-events: auto; width: min(340px, 70%); }
.net-slider label { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.net-slider label b { font-family: var(--font-display); font-weight: 700; color: var(--text); font-size: 16px; }
.net-slider input[type="range"] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 999px;
  background: rgba(255,255,255,0.12); outline: none;
}
.net-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--grad); cursor: pointer; border: 3px solid var(--bg);
  box-shadow: 0 0 0 1px var(--glass-border-bright), 0 4px 14px -2px rgba(47,107,255,0.7);
}
.net-slider input[type="range"]::-moz-range-thumb { width: 18px; height: 18px; border-radius: 50%; background: var(--indigo); cursor: pointer; border: 3px solid var(--bg); }
.net-reach { text-align: right; line-height: 1.1; }
.net-reach .nr-lbl { display: block; font-size: 12px; color: var(--text-muted); }
.net-reach .nr-num { font-family: var(--font-display); font-weight: 700; font-size: clamp(30px, 4vw, 46px); letter-spacing: -0.02em; }
.net-reach .nr-sub { display: block; font-size: 12px; color: var(--text-dim); }
.net-cta { text-align: center; margin-top: var(--s-5); }

/* --- Interactive 3-layer photo network (two-column) --- */
.net-wrap { display: grid; grid-template-columns: 1.35fr 0.85fr; gap: 22px; margin-top: var(--s-6); align-items: stretch; }
.net-side { display: flex; flex-direction: column; gap: 18px; padding: clamp(22px, 2.4vw, 32px); border-radius: var(--r-xl); background: linear-gradient(165deg, rgba(124,60,255,0.16), rgba(47,107,255,0.05)); border: 1px solid rgba(124,60,255,0.3); box-shadow: 0 0 60px -32px rgba(124,60,255,0.9); }
.net-side .net-reach { text-align: left; line-height: 1.05; }
.net-side .nr-lbl { display: block; font-size: 13px; color: var(--text-muted); }
.net-side .nr-num { display: block; font-family: var(--font-display); font-weight: 700; font-size: clamp(40px, 5vw, 60px); letter-spacing: -0.03em; margin: 4px 0 2px; }
.net-side .nr-sub { display: block; font-size: 12.5px; color: var(--text-dim); }
.net-side .net-slider { width: 100%; }
.net-side .net-slider label { display: flex; align-items: baseline; gap: 6px; font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.net-side .net-slider label b { font-family: var(--font-display); font-weight: 700; color: var(--text); font-size: 17px; }
.net-side .net-slider input[type="range"] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 8px; border-radius: 999px; outline: none; cursor: pointer;
  background: linear-gradient(90deg, var(--indigo), var(--violet)) no-repeat, rgba(255,255,255,0.12);
  background-size: var(--fill, 40%) 100%;
}
.net-side .net-slider input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 24px; height: 24px; border-radius: 50%; background: #fff; cursor: pointer; border: 5px solid var(--violet); box-shadow: 0 4px 16px -2px rgba(124,60,255,0.8); }
.net-side .net-slider input[type="range"]::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: #fff; cursor: pointer; border: 5px solid var(--violet); }
.net-scale { display: flex; justify-content: space-between; font-size: 11px; color: var(--text-dim); margin-top: 8px; }
.net-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ns-tile { padding: 14px; border-radius: var(--r-md); background: rgba(255,255,255,0.04); border: 1px solid var(--glass-border); transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.ns-tile:hover { transform: translateY(-3px); border-color: var(--glass-border-bright); box-shadow: 0 16px 34px -18px rgba(0,0,0,0.75), 0 0 24px -14px rgba(47,107,255,0.6); }
.ns-tile b { display: block; font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -0.02em; }
.ns-tile span { font-size: 11.5px; color: var(--text-muted); }
.net-side-cta { margin-top: auto; width: 100%; }
.net-live { position: absolute; top: 20px; right: 20px; z-index: 5; display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-display); font-weight: 600; font-size: 11px; color: var(--text); padding: 6px 12px; border-radius: 999px; background: rgba(255,255,255,0.06); border: 1px solid var(--glass-border-bright); }
.net-live .lv-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--good); box-shadow: 0 0 10px var(--good); animation: pulse 1.6s infinite; }
@media (max-width: 900px) {
  .net-wrap { grid-template-columns: 1fr; }
}

/* --- Interactive 3-layer photo network --- */
.net2 {
  position: relative; margin-top: var(--s-6);
  height: clamp(460px, 62vw, 620px);
  border-radius: var(--r-xl); overflow: hidden;
  background:
    radial-gradient(58% 58% at 50% 46%, rgba(124,60,255,0.16), transparent 72%),
    var(--glass);
  border: 1px solid var(--glass-border);
  box-shadow: 0 40px 90px -40px rgba(0,0,0,0.9), inset 0 0 0 1px rgba(124,60,255,0.08);
}
.net-links { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.net-links line { stroke-linecap: round; transition: stroke .3s, stroke-opacity .3s, stroke-width .3s; }
.net-links line.l-emp { stroke: rgba(139,120,255,0.55); stroke-width: 1.8; stroke-dasharray: 5 7; animation: netDash 1.1s linear infinite; }
.net-links line.l-c1  { stroke: rgba(124,60,255,0.34); stroke-width: 1.3; }
.net-links line.l-c2  { stroke: rgba(34,211,238,0.22); stroke-width: 1; }
@keyframes netDash { to { stroke-dashoffset: -24; } }
.net2.focused .net-links line { stroke-opacity: 0.12; }
.net2.focused .net-links line.on { stroke-opacity: 1; stroke-width: 2.4; }

.net-nodes { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.nn-emp { pointer-events: auto; }
.nn { position: absolute; transform: translate(-50%, -50%); transition: opacity .3s, filter .3s; }
.net2.focused .nn.dim { opacity: 0.22; filter: saturate(0.4); }

/* center business node */
.nn-biz { width: 92px; height: 92px; border-radius: 26px; display: grid; place-items: center; background: linear-gradient(150deg, var(--indigo), var(--violet)); box-shadow: 0 0 0 8px rgba(124,60,255,0.12), 0 20px 50px -12px rgba(124,60,255,0.8); }
.nn-biz::after { content: ""; position: absolute; inset: -8px; border-radius: 32px; border: 1.5px solid rgba(168,85,247,0.5); animation: netRing 3s ease-out infinite; }
.nn-biz::before { content: ""; position: absolute; inset: -8px; border-radius: 32px; border: 1.5px solid rgba(34,211,238,0.4); animation: netRing 3s ease-out infinite; animation-delay: -1.5s; }
@keyframes netRing { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.5); opacity: 0; } }
.nn-biz img { width: 62%; height: auto; }

/* employee avatar (layer 1) */
.nn-emp { width: 62px; height: 62px; border-radius: 50%; cursor: pointer; padding: 3px; background: linear-gradient(150deg, var(--indigo), var(--violet)); box-shadow: 0 10px 28px -8px rgba(124,60,255,0.7); }
.nn-emp .av { width: 100%; height: 100%; border-radius: 50%; overflow: hidden; position: relative; background: var(--grad-tri); display: grid; place-items: center; }
.nn-emp .av img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nn-emp .av span { position: absolute; font-family: var(--font-display); font-weight: 700; font-size: 15px; color: #fff; }
.nn-emp:hover, .nn-emp.on { transform: translate(-50%, -50%) scale(1.12); }
.nn-emp .badge { position: absolute; bottom: -4px; right: -4px; min-width: 18px; height: 18px; padding: 0 4px; border-radius: 999px; background: var(--cyan); color: #071018; font-family: var(--font-display); font-weight: 700; font-size: 10px; display: grid; place-items: center; border: 2px solid #12071f; }

/* contact avatar (layer 2) */
.nn-c1 { width: 34px; height: 34px; border-radius: 50%; overflow: hidden; background: var(--grad-tri); border: 2px solid rgba(255,255,255,0.15); box-shadow: 0 6px 16px -6px rgba(0,0,0,0.7); }
.nn-c1 img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* 2nd/3rd degree dot (layer 3) */
.nn-c2 { width: 11px; height: 11px; border-radius: 50%; background: radial-gradient(circle at 35% 35%, #7fe9ff, #22d3ee); box-shadow: 0 0 10px rgba(34,211,238,0.7); }

/* traveling share packet + burst */
.net-packet { position: absolute; width: 12px; height: 12px; border-radius: 50%; z-index: 3; transform: translate(-50%,-50%); background: radial-gradient(circle at 35% 35%, #fff, var(--violet)); box-shadow: 0 0 14px 3px rgba(168,85,247,0.9); transition: left .5s ease, top .5s ease, opacity .3s; pointer-events: none; }
.net-burst { position: absolute; z-index: 4; transform: translate(-50%,-50%); font-family: var(--font-display); font-weight: 600; font-size: 12px; color: #fff; white-space: nowrap; padding: 4px 10px; border-radius: 999px; background: rgba(124,60,255,0.9); box-shadow: 0 8px 20px -6px rgba(124,60,255,0.9); pointer-events: none; animation: netBurst 1.5s ease forwards; }
@keyframes netBurst { 0% { opacity: 0; transform: translate(-50%,-50%) scale(.8); } 15% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%,-160%) scale(1); } }

/* legend + tooltip */
.net-legend { position: absolute; top: 20px; left: 22px; z-index: 5; display: flex; flex-direction: column; gap: 7px; font-size: 12px; color: var(--text-muted); pointer-events: none; }
.net-legend span { display: inline-flex; align-items: center; gap: 8px; }
.net-legend .ld { width: 10px; height: 10px; border-radius: 50%; }
.net-legend .ld.biz { background: linear-gradient(150deg, var(--indigo), var(--violet)); }
.net-legend .ld.emp { background: var(--indigo-soft); }
.net-legend .ld.c1 { background: var(--violet); }
.net-legend .ld.c2 { background: var(--cyan); }
.net-tip { position: absolute; z-index: 6; transform: translate(-50%, -120%); pointer-events: none; opacity: 0; transition: opacity .2s; background: rgba(16,8,30,0.96); border: 1px solid var(--glass-border-bright); border-radius: 12px; padding: 10px 13px; box-shadow: 0 16px 40px -14px rgba(0,0,0,0.85); white-space: nowrap; }
.net-tip.show { opacity: 1; }
.net-tip b { display: block; font-family: var(--font-display); font-weight: 600; font-size: 14px; }
.net-tip span { font-size: 12px; color: var(--cyan); }

/* ============================================================
   DEPLOY TIMELINE
   ============================================================ */
.tl-wrap { display: grid; grid-template-columns: 1fr auto 1fr; gap: clamp(20px, 3vw, 44px); align-items: stretch; margin-top: var(--s-6); }
.tl-track { padding: var(--s-5); border-radius: var(--r-lg); background: var(--glass); border: 1px solid var(--glass-border); }
.tl-track.old { background: linear-gradient(180deg, rgba(255,107,122,0.06), var(--glass)); border-color: rgba(255,107,122,0.18); }
.tl-track.new { background: linear-gradient(180deg, rgba(47,107,255,0.1), var(--glass)); border-color: rgba(47,107,255,0.32); box-shadow: 0 0 50px -24px rgba(47,107,255,0.7); }
.tl-head { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; font-size: 17px; }
.tl-head .tl-meta { margin-left: auto; font-size: 14px; color: var(--text-muted); font-weight: 600; }
.tl-dot { width: 9px; height: 9px; border-radius: 50%; }
.tl-dot.bad { background: var(--bad); }
.tl-dot.good { background: var(--good); box-shadow: 0 0 8px var(--good); }
.tl-line { position: relative; height: 3px; border-radius: 999px; background: rgba(255,255,255,0.08); margin: 20px 0 var(--s-4); overflow: hidden; }
.tl-fill { position: absolute; left: 0; top: 0; height: 100%; width: 0; border-radius: 999px; background: var(--bad); transition: width 1.3s var(--ease); }
.tl-fill.grad { background: var(--grad-tri); }
.tl-wrap.drawn .old .tl-fill { width: 100%; }
.tl-wrap.drawn .new .tl-fill { width: 100%; }
.tl-nodes { display: flex; flex-direction: column; gap: 12px; }
.tl-node {
  position: relative; display: grid; grid-template-columns: 20px 76px 1fr; align-items: center; gap: 12px;
  padding: 11px 14px; border-radius: var(--r-md);
  background: rgba(255,255,255,0.03); border: 1px solid var(--glass-border);
  cursor: default; transition: border-color .25s, background .25s, transform .25s var(--ease);
}
.tl-node:hover { border-color: var(--glass-border-bright); background: rgba(255,255,255,0.06); transform: translateX(3px); }
.tl-pt { width: 14px; height: 14px; border-radius: 50%; }
.tl-node .tl-pt { background: #444c63; border: 2px solid rgba(255,255,255,0.12); }
.tl-node.ok .tl-pt { background: var(--grad); border: none; box-shadow: 0 0 10px rgba(47,107,255,0.7); position: relative; }
.tl-node.ok .tl-pt::after { content: "✓"; position: absolute; inset: 0; display: grid; place-items: center; font-size: 9px; font-weight: 800; color: #fff; }
.tl-when { font-size: 12px; color: var(--text-dim); font-family: var(--font-display); font-weight: 600; }
.tl-step { font-size: 14.5px; font-weight: 500; }
.tl-node::after {
  content: attr(data-tip);
  position: absolute; left: 50%; bottom: calc(100% + 8px); transform: translateX(-50%) translateY(4px);
  width: max-content; max-width: 220px; padding: 8px 12px; border-radius: 10px;
  background: rgba(9,13,28,0.97); border: 1px solid var(--glass-border-bright);
  font-size: 12px; color: var(--text); line-height: 1.4; text-align: center;
  opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s; z-index: 5;
  box-shadow: 0 12px 30px -12px rgba(0,0,0,0.8);
}
.tl-node:hover::after { opacity: 1; transform: translateX(-50%) translateY(0); }
/* spring pop-in for nodes */
[data-stagger] > .tl-node { opacity: 0; transform: scale(0.6); transition: opacity .5s var(--ease), transform .5s cubic-bezier(0.34, 1.56, 0.64, 1); }
[data-stagger].visible > .tl-node { opacity: 1; transform: scale(1); }

.tl-vs { display: grid; place-items: center; }
.tl-vs span {
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--text-muted);
  background: var(--glass); border: 1px solid var(--glass-border-bright);
}
.tl-saved { text-align: center; margin-top: var(--s-7); }
.tl-saved .tls-lbl { display: block; font-size: 14px; color: var(--text-muted); letter-spacing: 0.04em; }
.tl-saved .tls-num { font-family: var(--font-display); font-weight: 700; font-size: clamp(72px, 14vw, 180px); line-height: 1; letter-spacing: -0.04em; margin: 8px 0 var(--s-5); }

/* ============================================================
   LIVE CUSTOMIZER
   ============================================================ */
.cz-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; margin-top: var(--s-6); }
.cz-panel { display: flex; flex-direction: column; gap: var(--s-5); max-width: 460px; }
.cz-field > label { display: block; font-size: 13px; font-weight: 600; color: var(--text-muted); margin-bottom: 12px; letter-spacing: 0.02em; }
.cz-field input[type="text"] {
  width: 100%; padding: 14px 16px; border-radius: var(--r-md);
  background: var(--glass); border: 1px solid var(--glass-border); color: var(--text);
  font-family: var(--font-body); font-size: 15px; transition: border-color .2s, box-shadow .2s;
}
.cz-field input[type="text"]:focus { outline: none; border-color: rgba(47,107,255,0.6); box-shadow: 0 0 0 4px rgba(47,107,255,0.12); }
.cz-swatches { display: flex; gap: 12px; flex-wrap: wrap; }
.cz-sw { width: 44px; height: 44px; border-radius: 50%; background: var(--sw); border: 2px solid transparent; cursor: pointer; transition: transform .2s, box-shadow .2s, border-color .2s; }
.cz-sw:hover { transform: scale(1.08); }
.cz-sw.active { border-color: #fff; box-shadow: 0 0 0 3px rgba(255,255,255,0.18), 0 6px 18px -6px rgba(0,0,0,0.6); }
.cz-toggles { display: flex; gap: 10px; flex-wrap: wrap; }
.cz-tg { display: inline-flex; align-items: center; gap: 9px; padding: 10px 16px; border-radius: var(--r-pill); font-family: var(--font-display); font-weight: 600; font-size: 13px; color: var(--text-dim); background: var(--glass); border: 1px solid var(--glass-border); transition: color .2s, border-color .2s, background .2s; }
.cz-tg .cz-tg-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--text-dim); transition: background .2s, box-shadow .2s; }
.cz-tg.active { color: var(--text); border-color: rgba(47,107,255,0.4); background: rgba(47,107,255,0.1); }
.cz-tg.active .cz-tg-dot { background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }

.cz-preview { position: relative; display: flex; justify-content: center; }
.cz-glow { position: absolute; width: 320px; height: 320px; border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%,-50%); background: radial-gradient(circle, var(--cz-accent, #2f6bff), transparent 68%); opacity: 0.4; filter: blur(50px); z-index: 0; transition: background .4s; }
.cz-phone {
  --cz-accent: #2f6bff; --cz-accent-2: #a855f7;
  position: relative; z-index: 1; width: 290px; border-radius: 42px; background: #04070d; padding: 12px;
  box-shadow: 0 50px 110px -34px rgba(0,0,0,0.9), 0 0 0 1px var(--glass-border-bright), inset 0 0 0 2px rgba(255,255,255,0.04);
}
.cz-notch { position: absolute; top: 20px; left: 50%; transform: translateX(-50%); width: 100px; height: 24px; border-radius: 999px; background: #04070d; z-index: 3; }
.cz-screen { border-radius: 32px; overflow: hidden; background: var(--bg-2); padding: 40px 18px 20px; display: flex; flex-direction: column; gap: 13px; }
.cz-top { display: flex; align-items: center; justify-content: space-between; }
.cz-brand { display: flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 600; font-size: 16px; }
.cz-mark { width: 26px; height: 26px; border-radius: 8px; background: linear-gradient(135deg, var(--cz-accent), var(--cz-accent-2)); transition: background .4s; }
.cz-bell { width: 30px; height: 30px; border-radius: 9px; background: var(--glass); position: relative; }
.cz-bell::after { content: ""; position: absolute; top: 7px; right: 7px; width: 6px; height: 6px; border-radius: 50%; background: var(--cz-accent); box-shadow: 0 0 8px var(--cz-accent); transition: background .4s; }
.cz-tagline { font-size: 12px; color: var(--text-muted); margin-top: -4px; }
.cz-hero { border-radius: 16px; padding: 16px; background: linear-gradient(135deg, color-mix(in srgb, var(--cz-accent) 30%, transparent), color-mix(in srgb, var(--cz-accent-2) 16%, transparent)); border: 1px solid var(--glass-border); transition: background .4s; }
.cz-hero-lbl { font-size: 11px; color: var(--text-muted); }
.cz-hero-num { font-family: var(--font-display); font-weight: 700; font-size: 32px; line-height: 1.1; letter-spacing: -0.02em; }
.cz-hero-sub { font-size: 11px; color: var(--text-dim); margin-top: 2px; }
.cz-row { display: flex; align-items: center; gap: 11px; padding: 10px 12px; border-radius: 12px; background: var(--glass); border: 1px solid var(--glass-border); }
.cz-row.hide { display: none; }
.cz-row .cz-ico { width: 32px; height: 32px; border-radius: 9px; flex-shrink: 0; display: grid; place-items: center; color: var(--cz-accent); background: color-mix(in srgb, var(--cz-accent) 14%, transparent); transition: color .4s, background .4s; }
.cz-row .cz-ico svg { width: 17px; height: 17px; }
.cz-row b { display: block; font-size: 13px; font-weight: 600; }
.cz-row small { font-size: 11px; color: var(--text-dim); }
.cz-btn { margin-top: 4px; padding: 13px; border-radius: 13px; font-family: var(--font-display); font-weight: 700; font-size: 14px; color: #fff; background: linear-gradient(135deg, var(--cz-accent), var(--cz-accent-2)); transition: background .4s; }
.cz-url { text-align: center; font-size: 11px; color: var(--text-dim); font-family: var(--font-display); }

/* ============================================================
   PROBLEM → SOLUTION
   ============================================================ */
.bridge-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: var(--s-4); align-items: center; }
.compare {
  border-radius: var(--r-lg); padding: var(--s-5);
  background: var(--glass); border: 1px solid var(--glass-border);
}
.compare.old { background: linear-gradient(180deg, rgba(255,107,122,0.06), var(--glass)); border-color: rgba(255,107,122,0.18); }
.compare.new { background: linear-gradient(180deg, rgba(47,107,255,0.12), var(--glass)); border-color: rgba(47,107,255,0.35); box-shadow: 0 0 50px -22px rgba(47,107,255,0.7); }
.compare h3 { font-size: 22px; margin-bottom: 6px; }
.compare .sub { font-size: 13px; color: var(--text-dim); margin-bottom: var(--s-4); }
.compare ul { display: flex; flex-direction: column; gap: 14px; }
.compare li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; }
.compare li .ck { width: 24px; height: 24px; border-radius: 7px; flex-shrink: 0; display: grid; place-items: center; }
.compare.old li .ck { background: rgba(255,107,122,0.12); color: var(--bad); }
.compare.new li .ck { background: rgba(52,224,161,0.14); color: var(--good); }
.compare.old li { color: var(--text-muted); }
.bridge-arrow { display: grid; place-items: center; width: 64px; height: 64px; border-radius: 50%; background: var(--glass); border: 1px solid var(--glass-border-bright); color: var(--cyan); animation: nudge 2.2s ease-in-out infinite; }
@keyframes nudge { 0%,100%{transform:translateX(-5px)} 50%{transform:translateX(5px)} }

/* ============================================================
   FEATURES — BENTO
   ============================================================ */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; grid-auto-rows: 1fr; }
.feat {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg); padding: var(--s-5);
  background: var(--glass); border: 1px solid var(--glass-border);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
  display: flex; flex-direction: column; gap: 12px;
}
.feat::after {
  content: ""; position: absolute; left: 0; right: 0; top: -2px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0; transform: translateY(0);
}
.feat:hover { transform: translateY(-8px); border-color: var(--glass-border-bright); box-shadow: 0 30px 60px -28px rgba(0,0,0,0.8), 0 0 40px -20px rgba(47,107,255,0.6); }
.feat:hover::after { animation: scanline 1.1s var(--ease); }
@keyframes scanline { 0%{opacity:0; top:-2px} 10%{opacity:1} 90%{opacity:1} 100%{opacity:0; top:100%} }

.feat .f-ico { width: 46px; height: 46px; border-radius: var(--r-md); display: grid; place-items: center; color: var(--cyan); background: rgba(168,85,247,0.1); border: 1px solid rgba(168,85,247,0.18); }
.feat h3 { font-size: 19px; }
.feat p { color: var(--text-muted); font-size: 14.5px; }
.feat.tall { grid-row: span 2; }
.feat.wide { grid-column: span 2; }
.feat .tag { font-family: var(--font-display); font-size: 11px; font-weight: 600; letter-spacing: 0.08em; color: var(--violet); text-transform: uppercase; }

/* phone mockup inside tall card */
.mini-phone {
  margin-top: auto; align-self: center; width: 168px; padding: 14px 12px 0;
  border-radius: 26px 26px 0 0; background: var(--bg-3); border: 1px solid var(--glass-border); border-bottom: none;
  box-shadow: 0 -20px 50px -30px rgba(47,107,255,0.7);
}
.mini-phone .notch { width: 50px; height: 5px; border-radius: 999px; background: rgba(255,255,255,0.18); margin: 0 auto 12px; }
.mini-phone .scr { background: var(--bg); border-radius: 14px 14px 0 0; padding: 14px; }
.mini-phone .scr .row { height: 9px; border-radius: 5px; background: var(--glass-2); margin-bottom: 8px; }
.mini-phone .scr .row.s { width: 60%; }
.a2hs { display: flex; align-items: center; gap: 9px; padding: 10px; border-radius: 11px; background: var(--grad); color: #ffffff; font-size: 11.5px; font-weight: 700; font-family: var(--font-display); margin-top: 12px; }
.a2hs .plus { margin-left: auto; width: 20px; height: 20px; border-radius: 6px; background: rgba(6,18,26,0.18); display: grid; place-items: center; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps { position: relative; }
.steps-svg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; overflow: visible; }
.steps-svg path { fill: none; stroke: url(#stepGrad); stroke-width: 2; stroke-dasharray: 8 8; stroke-linecap: round; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); position: relative; z-index: 1; }
.step { text-align: center; padding: var(--s-4); }
.step .n { font-family: var(--font-display); font-weight: 700; font-size: clamp(56px, 7vw, 84px); line-height: 1; }
.step .s-ico { width: 56px; height: 56px; border-radius: var(--r-md); display: grid; place-items: center; margin: 18px auto 0; color: #ffffff; background: var(--grad); box-shadow: 0 14px 34px -14px rgba(47,107,255,0.8); }
.step h3 { font-size: 22px; margin-top: 18px; }
.step p { color: var(--text-muted); font-size: 15px; margin-top: 10px; max-width: 300px; margin-inline: auto; }

/* ============================================================
   DASHBOARD PREVIEW
   ============================================================ */
.dash-frame {
  border-radius: var(--r-xl); overflow: hidden; margin-top: var(--s-6);
  background: var(--bg-2); border: 1px solid var(--glass-border);
  box-shadow: 0 50px 110px -40px rgba(0,0,0,0.9), 0 0 0 1px rgba(255,255,255,0.03), 0 0 90px -50px rgba(47,107,255,0.6);
}
.dash-top { display: flex; align-items: center; gap: 8px; padding: 14px 18px; border-bottom: 1px solid var(--glass-border); background: rgba(255,255,255,0.02); }
.dash-top .d { width: 11px; height: 11px; border-radius: 50%; background: #2A3142; }
.dash-top .ttl { margin-left: 12px; font-size: 12px; color: var(--text-dim); font-family: var(--font-display); }
.dash-body { display: grid; grid-template-columns: 220px 1fr; min-height: 460px; }
.dash-side { padding: 20px 14px; border-right: 1px solid var(--glass-border); display: flex; flex-direction: column; gap: 4px; background: rgba(255,255,255,0.012); }
.dash-side .s-logo { display: flex; align-items: center; gap: 9px; padding: 0 10px 18px; font-family: var(--font-display); font-weight: 700; font-size: 16px; }
.dash-side .s-logo .m { width: 26px; height: 26px; border-radius: 8px; background: var(--grad); }
.dash-side .nav-i { display: flex; align-items: center; gap: 11px; padding: 11px 12px; border-radius: 10px; font-size: 13.5px; color: var(--text-muted); transition: background .2s, color .2s; }
.dash-side .nav-i svg { width: 17px; height: 17px; }
.dash-side .nav-i.active { background: rgba(47,107,255,0.16); color: var(--text); border: 1px solid rgba(47,107,255,0.3); }
.dash-side .nav-i:hover:not(.active) { background: var(--glass); color: var(--text); }

.dash-main { padding: 24px; display: flex; flex-direction: column; gap: 20px; }
.dash-main .dm-head { display: flex; align-items: center; justify-content: space-between; }
.dash-main .dm-head h4 { font-size: 18px; }
.dash-main .dm-head .date { font-size: 12px; color: var(--text-dim); }
.kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.kpi { padding: 16px; border-radius: var(--r-md); background: var(--glass); border: 1px solid var(--glass-border); }
.kpi .k-lbl { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 7px; }
.kpi .k-lbl svg { width: 14px; height: 14px; color: var(--cyan); }
.kpi .k-num { font-family: var(--font-display); font-weight: 700; font-size: 28px; margin-top: 8px; letter-spacing: -0.02em; }
.kpi .k-delta { font-size: 11.5px; margin-top: 4px; color: var(--good); font-weight: 500; }

.dash-cols { display: grid; grid-template-columns: 1.3fr 1fr; gap: 18px; }
.panel { padding: 18px; border-radius: var(--r-md); background: var(--glass); border: 1px solid var(--glass-border); }
.panel .p-ttl { font-family: var(--font-display); font-weight: 600; font-size: 14px; margin-bottom: 16px; display: flex; align-items: center; justify-content: space-between; }
.panel .p-ttl span { font-size: 11px; color: var(--text-dim); font-weight: 400; font-family: var(--font-body); }
.bigchart { display: flex; align-items: flex-end; gap: 10px; height: 150px; }
.bigchart .bcol { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.bigchart .bcol .bar { width: 100%; border-radius: 6px 6px 3px 3px; background: var(--grad); transform-origin: bottom; opacity: 0.9; }
.bigchart .bcol .day { font-size: 10px; color: var(--text-dim); }

.feed-row { display: flex; align-items: center; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--glass-border); }
.feed-row:last-child { border-bottom: none; }
.feed-row .ava { width: 32px; height: 32px; border-radius: 50%; background: var(--grad-tri); flex-shrink: 0; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 12px; color: #ffffff; }
.feed-row .ft { flex: 1; font-size: 13px; }
.feed-row .ft b { font-weight: 600; }
.feed-row .ft .act { color: var(--text-muted); }
.feed-row .ftime { font-size: 11px; color: var(--text-dim); }

.lead-row { display: flex; align-items: center; gap: 12px; padding: 9px 0; }
.lead-row .rk { font-family: var(--font-display); font-weight: 700; font-size: 13px; color: var(--text-dim); width: 18px; }
.lead-row .rk.top { color: var(--cyan); }
.lead-row .ln { flex: 1; font-size: 13px; font-weight: 500; }
.lead-row .lbar { width: 90px; height: 6px; border-radius: 999px; background: var(--glass-2); overflow: hidden; }
.lead-row .lbar i { display: block; height: 100%; border-radius: 999px; background: var(--grad); }
.lead-row .lv { font-size: 12px; color: var(--text-muted); width: 34px; text-align: right; font-family: var(--font-display); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tcard {
  padding: var(--s-5); border-radius: var(--r-lg);
  background: var(--glass); border: 1px solid var(--glass-border);
  display: flex; flex-direction: column; gap: 16px;
  transition: border-color .3s, box-shadow .3s, transform .3s var(--ease);
}
.tcard:hover { border-color: rgba(47,107,255,0.4); box-shadow: 0 0 50px -22px rgba(47,107,255,0.7); transform: translateY(-4px); }
.tcard .stars { display: flex; gap: 3px; color: #FFC34D; }
.tcard .stars svg { width: 17px; height: 17px; }
.tcard blockquote { font-size: 16px; line-height: 1.55; color: var(--text); }
.tcard .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.tcard .who .ava { width: 44px; height: 44px; border-radius: 50%; background: var(--grad-tri); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; color: #ffffff; }
.tcard .who .nm { font-family: var(--font-display); font-weight: 600; font-size: 14px; }
.tcard .who .rl { font-size: 12.5px; color: var(--text-dim); }

/* ============================================================
   PRICING
   ============================================================ */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.price {
  position: relative; padding: var(--s-5); border-radius: var(--r-lg);
  background: var(--glass); border: 1px solid var(--glass-border);
  display: flex; flex-direction: column; gap: 18px;
}
.price.popular { border-color: transparent; background: linear-gradient(180deg, rgba(47,107,255,0.14), var(--glass)); box-shadow: 0 0 60px -24px rgba(47,107,255,0.9); }
.price.popular::before { content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; 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; }
.price .badge-pop { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; background: var(--grad); color: #ffffff; }
.price .tier { font-family: var(--font-display); font-weight: 600; font-size: 18px; }
.price .tier-sub { font-size: 13px; color: var(--text-dim); margin-top: 4px; }
.price .amt { font-family: var(--font-display); font-weight: 700; font-size: 40px; letter-spacing: -0.02em; }
.price .amt span { font-size: 14px; font-weight: 400; color: var(--text-dim); font-family: var(--font-body); }
.price .amt .from { display: block; font-size: 12px; color: var(--text-dim); font-weight: 400; font-family: var(--font-body); margin-bottom: 2px; }
.price ul { display: flex; flex-direction: column; gap: 12px; flex: 1; }
.price li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-muted); }
.price li svg { width: 17px; height: 17px; color: var(--cyan); flex-shrink: 0; margin-top: 2px; }
.price .btn { width: 100%; }

/* volume (per-location) pricing scale */
.vol-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; align-items: stretch; }
.vtier { position: relative; padding: 24px 14px; border-radius: var(--r-lg); background: var(--glass); border: 1px solid var(--glass-border); text-align: center; display: flex; flex-direction: column; gap: 8px; transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.vtier:hover { transform: translateY(-6px); border-color: var(--glass-border-bright); box-shadow: 0 24px 50px -28px rgba(0,0,0,0.8); }
.vtier.popular { border-color: transparent; background: linear-gradient(180deg, rgba(47,107,255,0.2), var(--glass)); box-shadow: 0 0 50px -22px rgba(47,107,255,0.9); }
.vtier.popular::before { content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; 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; }
.vtier .badge-pop { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); font-family: var(--font-display); font-size: 9px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px; background: var(--grad); color: #fff; white-space: nowrap; }
.vt-loc { font-family: var(--font-display); font-weight: 600; font-size: 13px; color: var(--cyan); }
.vt-amt { font-family: var(--font-display); font-weight: 700; font-size: 30px; letter-spacing: -0.02em; line-height: 1; }
.vt-amt span { display: block; font-size: 11px; font-weight: 400; color: var(--text-dim); font-family: var(--font-body); margin-top: 4px; }
.vt-sub { font-size: 11px; color: var(--text-muted); line-height: 1.4; }
.vol-note { text-align: center; color: var(--text-dim); font-size: 13px; margin-top: var(--s-5); }
.vol-cta { display: flex; justify-content: center; gap: 14px; margin-top: var(--s-4); flex-wrap: wrap; }
@media (max-width: 1024px) { .vol-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .vol-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   ROI CALCULATOR
   ============================================================ */
.roi2 { display: grid; grid-template-columns: 1fr 0.92fr; gap: 22px; align-items: stretch; }
.roi2-inputs { padding: clamp(24px, 3vw, 40px); border-radius: var(--r-xl); background: var(--glass); border: 1px solid var(--glass-border); display: flex; flex-direction: column; gap: 26px; }
.roi2-field { display: flex; flex-direction: column; gap: 12px; }
.roi2-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.roi2-top label { font-size: 14.5px; font-weight: 500; color: var(--text); }
.roi2-val { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: #06121a; background: var(--grad); padding: 4px 8px; border-radius: var(--r-pill); min-width: 62px; display: inline-flex; align-items: center; justify-content: center; gap: 1px; transition: box-shadow .2s; }
.roi2-val:focus-within { box-shadow: 0 0 0 3px rgba(199,125,255,0.4); }
.roi2-val input { width: 100%; max-width: 62px; border: none; background: none; outline: none; font: inherit; color: #06121a; text-align: center; padding: 1px 2px; -moz-appearance: textfield; }
.roi2-val input::-webkit-outer-spin-button, .roi2-val input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.roi2-val .pfx, .roi2-val .sfx { font-style: normal; opacity: 0.75; }
.roi2-val.has-pfx input, .roi2-val.has-sfx input { max-width: 52px; }
.roi2-scale { display: flex; justify-content: space-between; font-size: 11px; color: var(--text-dim); }

/* filled range track */
.roi2-inputs input[type="range"] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 8px; border-radius: 999px; outline: none; cursor: pointer;
  background: linear-gradient(90deg, var(--indigo), var(--violet)) no-repeat, rgba(255,255,255,0.1);
  background-size: var(--fill, 40%) 100%;
}
.roi2-inputs input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 24px; height: 24px; border-radius: 50%; background: #fff; cursor: pointer; border: 5px solid var(--violet); box-shadow: 0 4px 16px -2px rgba(124,60,255,0.8); transition: transform .12s; }
.roi2-inputs input[type="range"]::-webkit-slider-thumb:active { transform: scale(1.15); }
.roi2-inputs input[type="range"]::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: #fff; cursor: pointer; border: 5px solid var(--violet); box-shadow: 0 4px 16px -2px rgba(124,60,255,0.8); }
.roi2-inputs input[type="range"]::-moz-range-progress { background: linear-gradient(90deg, var(--indigo), var(--violet)); height: 8px; border-radius: 999px; }

/* result card */
.roi2-result { position: relative; overflow: hidden; padding: clamp(26px, 3vw, 40px); border-radius: var(--r-xl); background: linear-gradient(165deg, rgba(124,60,255,0.22), rgba(47,107,255,0.06)); border: 1px solid rgba(124,60,255,0.35); display: flex; flex-direction: column; box-shadow: 0 0 60px -30px rgba(124,60,255,0.9); }
.roi2-glow { position: absolute; top: -40%; right: -30%; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(168,85,247,0.5), transparent 70%); filter: blur(30px); pointer-events: none; animation: glowBreathe 6s ease-in-out infinite; }
.roi2-headline { position: relative; text-align: center; }
.roi2-toggle { display: inline-flex; padding: 4px; border-radius: var(--r-pill); background: rgba(255,255,255,0.08); border: 1px solid var(--glass-border-bright); margin-bottom: 16px; }
.rt-opt { font-family: var(--font-display); font-weight: 600; font-size: 13px; color: var(--text-muted); padding: 7px 18px; border-radius: var(--r-pill); transition: color .2s, background .2s; }
.rt-opt.active { color: #06121a; background: var(--grad); }
.roi2-lbl { font-size: 13.5px; color: var(--text-muted); }
.roi2-num { font-family: var(--font-display); font-weight: 700; font-size: clamp(48px, 6.5vw, 76px); line-height: 1; letter-spacing: -0.03em; margin: 8px 0 12px; background: linear-gradient(120deg, #fff, #d9c2ff); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.roi2-mult-pill { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text); padding: 6px 14px; border-radius: var(--r-pill); background: rgba(255,255,255,0.08); border: 1px solid var(--glass-border-bright); }
.roi2-mult-pill b { font-family: var(--font-display); font-weight: 700; color: var(--cyan); }

.roi2-bars { position: relative; display: flex; flex-direction: column; gap: 14px; margin: 26px 0; }
.roi2-bar-row { display: grid; grid-template-columns: 118px 1fr auto; align-items: center; gap: 12px; }
.roi2-bar-lbl { font-size: 12.5px; color: var(--text-muted); }
.roi2-track { height: 12px; border-radius: 999px; background: rgba(255,255,255,0.08); overflow: hidden; }
.roi2-fill { display: block; height: 100%; width: 0; border-radius: 999px; transition: width .5s var(--ease); }
.roi2-fill.rev { background: linear-gradient(90deg, var(--indigo), var(--violet)); }
.roi2-fill.cost { background: rgba(255,255,255,0.28); }
.roi2-bar-num { font-family: var(--font-display); font-weight: 700; font-size: 14px; text-align: right; min-width: 62px; }

.roi2-foot { position: relative; display: flex; gap: 12px; padding: 18px 0; margin-bottom: 6px; border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); }
.roi2-foot-item { flex: 1; text-align: center; }
.roi2-foot .rf-n { font-family: var(--font-display); font-weight: 700; font-size: 22px; }
.roi2-foot .rf-l { font-size: 11px; color: var(--text-dim); margin-top: 4px; }
.roi2-rate { position: relative; margin: 16px 0; font-size: 12px; color: var(--text-muted); font-family: var(--font-display); font-weight: 500; text-align: center; }
.roi2-cta { position: relative; width: 100%; }

/* ============================================================
   CTA + FOOTER
   ============================================================ */
.cta-band { position: relative; overflow: hidden; border-radius: var(--r-xl); padding: clamp(48px, 7vw, 96px) var(--s-5); text-align: center; border: 1px solid var(--glass-border); }
.cta-band .mesh { filter: blur(70px); opacity: 0.7; }
.cta-band h2 { font-size: clamp(32px, 5vw, 60px); max-width: 760px; margin-inline: auto; }
.cta-band .lead { max-width: 560px; margin-inline: auto; }
.cta-band .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: var(--s-5); }
.cta-trust { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-top: var(--s-5); color: var(--text-muted); font-size: 13px; }
.cta-trust span { display: inline-flex; align-items: center; gap: 7px; }
.cta-trust svg { width: 15px; height: 15px; color: var(--cyan); }

.footer { padding-block: var(--s-7) var(--s-5); border-top: 1px solid var(--glass-border); margin-top: var(--s-8); }
.foot-grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: var(--s-5); }
.foot-brand .logo { margin-bottom: 14px; }
.foot-brand p { color: var(--text-muted); font-size: 14px; max-width: 260px; }
.foot-social { display: flex; gap: 10px; margin-top: 20px; }
.foot-social a { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: var(--glass); border: 1px solid var(--glass-border); color: var(--text-muted); transition: color .2s, border-color .2s, background .2s; }
.foot-social a:hover { color: var(--text); border-color: var(--glass-border-bright); background: var(--glass-2); }
.foot-col h5 { font-family: var(--font-display); font-size: 13px; font-weight: 600; letter-spacing: 0.04em; margin-bottom: 16px; color: var(--text); }
.foot-col a { display: block; font-size: 14px; color: var(--text-muted); padding: 6px 0; transition: color .2s; }
.foot-col a:hover { color: var(--cyan); }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: var(--s-6); padding-top: var(--s-4); border-top: 1px solid var(--glass-border); color: var(--text-dim); font-size: 13px; flex-wrap: wrap; }
.foot-bottom .pwa-tag { display: inline-flex; align-items: center; gap: 7px; }
.foot-bottom .pwa-tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--good); box-shadow: 0 0 8px var(--good); }

/* ============================================================
   SCAN / QR
   ============================================================ */
.scan-grid { display: grid; grid-template-columns: 1fr 0.82fr; gap: clamp(36px, 6vw, 84px); align-items: center; }
.scan-copy { max-width: 520px; }
.scan-copy .h-section { margin-top: var(--s-3); }
.scan-list { display: flex; flex-direction: column; gap: 14px; margin-top: var(--s-5); }
.scan-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text-muted); }
.scan-list .sl-ico { width: 26px; height: 26px; border-radius: 8px; flex-shrink: 0; display: grid; place-items: center; color: var(--cyan); background: rgba(168,85,247,0.12); border: 1px solid rgba(168,85,247,0.2); }

.link-row { display: flex; align-items: center; gap: 12px; margin-top: var(--s-5); flex-wrap: wrap; }
.link-chip {
  font-family: var(--font-display); font-size: 14px; letter-spacing: 0.01em; color: var(--text);
  padding: 12px 18px; border-radius: var(--r-pill);
  background: var(--glass); border: 1px solid var(--glass-border);
}
.copy-btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--text);
  padding: 12px 18px; border-radius: var(--r-pill);
  background: var(--glass); border: 1px solid var(--glass-border);
  transition: border-color .2s, background .2s, color .2s;
}
.copy-btn:hover { border-color: var(--glass-border-bright); background: var(--glass-2); }
.copy-btn .ci-check { display: none; color: var(--good); }
.copy-btn.copied { color: var(--good); border-color: rgba(52,224,161,0.4); }
.copy-btn.copied .ci-copy { display: none; }
.copy-btn.copied .ci-check { display: block; }

/* QR card */
.scan-visual { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.qr-stage {
  position: relative; width: min(330px, 100%); padding: 26px; border-radius: var(--r-xl);
  background: var(--glass); border: 1px solid var(--glass-border);
  box-shadow: 0 40px 90px -36px rgba(0,0,0,0.85), 0 0 80px -36px rgba(47,107,255,0.7);
}
.qr-stage .corner { position: absolute; width: 26px; height: 26px; border: 2.5px solid var(--cyan); border-radius: 4px; }
.qr-stage .corner.tl { top: 12px; left: 12px; border-right: none; border-bottom: none; }
.qr-stage .corner.tr { top: 12px; right: 12px; border-left: none; border-bottom: none; }
.qr-stage .corner.bl { bottom: 12px; left: 12px; border-right: none; border-top: none; }
.qr-stage .corner.br { bottom: 12px; right: 12px; border-left: none; border-top: none; }

.qr-card {
  position: relative; aspect-ratio: 1 / 1; background: #fff; border-radius: var(--r-lg);
  padding: 20px; display: grid; place-items: center; overflow: hidden;
}
#qrCode { width: 100%; height: 100%; display: grid; place-items: center; }
#qrCode svg { width: 100%; height: 100%; display: block; }
#qrCode.failed { font-family: var(--font-display); font-weight: 600; font-size: 13px; color: #240038; text-align: center; padding: 16px; line-height: 1.4; }

.qr-logo {
  position: absolute; inset: 0; margin: auto; width: 52px; height: 52px; border-radius: 14px;
  background: var(--grad); display: grid; place-items: center;
  box-shadow: 0 0 0 6px #fff, 0 8px 18px -6px rgba(47,107,255,0.6);
}
.qr-logo svg { width: 27px; height: 27px; }

.qr-scan {
  position: absolute; left: 14px; right: 14px; top: 6%; height: 2px; border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--indigo), var(--cyan), transparent);
  box-shadow: 0 0 14px 2px rgba(168,85,247,0.6);
  animation: qrScan 2.8s ease-in-out infinite;
}
@keyframes qrScan { 0%,100% { top: 6%; opacity: .9; } 50% { top: 94%; opacity: 1; } }

.qr-cap { display: inline-flex; align-items: center; gap: 9px; font-size: 13px; color: var(--text-muted); }
.qr-cap .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); animation: pulse 2s infinite; }

/* ============================================================
   LIVING DEMO (scrollytelling)
   ============================================================ */
.journey { position: relative; height: 460vh; }
.journey-sticky { position: sticky; top: 0; height: 100vh; display: flex; align-items: center; overflow: hidden; }
.journey-inner { display: grid; grid-template-columns: 1fr 360px; gap: clamp(32px, 5vw, 80px); align-items: center; width: 100%; }
.journey-left { max-width: 540px; }
.journey-left .h-section { margin-top: var(--s-3); }
.journey-hint { display: inline-flex; align-items: center; gap: 8px; margin-top: var(--s-3); font-size: 13px; color: var(--text-dim); font-family: var(--font-display); font-weight: 500; }
.journey-hint svg { animation: hintBob 1.8s ease-in-out infinite; }
@keyframes hintBob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(4px)} }

.journey-track { display: grid; grid-template-columns: 22px 1fr; gap: 22px; margin-top: var(--s-6); }
.journey-rail { position: relative; width: 3px; justify-self: center; background: var(--glass-2); border-radius: 999px; }
.rail-fill { position: absolute; left: 0; top: 0; width: 100%; height: 0%; border-radius: 999px; background: var(--grad-tri); box-shadow: 0 0 14px rgba(168,85,247,0.5); transition: height .15s linear; }
.rail-node { position: absolute; left: 50%; top: 0%; width: 15px; height: 15px; border-radius: 50%; transform: translate(-50%,-50%); background: var(--cyan); box-shadow: 0 0 0 4px rgba(168,85,247,0.18), 0 0 18px var(--cyan); transition: top .15s linear; }

.journey-steps { display: flex; flex-direction: column; gap: 22px; }
.jstep { display: flex; gap: 14px; opacity: 0.4; transition: opacity .4s var(--ease), transform .4s var(--ease); transform: translateX(-4px); }
.jstep.active { opacity: 1; transform: none; }
.jstep .js-n { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--text-dim); transition: color .3s; flex-shrink: 0; padding-top: 2px; }
.jstep.active .js-n { color: var(--cyan); }
.jstep b { font-family: var(--font-display); font-weight: 600; font-size: 17px; }
.jstep p { font-size: 14px; color: var(--text-muted); margin-top: 3px; }

/* Phone */
.journey-right { position: relative; display: flex; flex-direction: column; align-items: center; gap: 18px; justify-self: center; }
.journey-glow { position: absolute; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(47,107,255,0.4), transparent 70%); filter: blur(40px); z-index: -1; animation: glowBreathe 6s ease-in-out infinite; }
@keyframes glowBreathe { 0%,100%{opacity:.6; transform:scale(1)} 50%{opacity:1; transform:scale(1.12)} }

.jphone { position: relative; width: 286px; height: 588px; border-radius: 46px; background: #04070d; padding: 12px; box-shadow: 0 50px 110px -34px rgba(0,0,0,0.9), 0 0 0 1px var(--glass-border-bright), inset 0 0 0 2px rgba(255,255,255,0.04), 0 0 90px -34px rgba(47,107,255,0.7); }
.jp-notch { position: absolute; top: 20px; left: 50%; transform: translateX(-50%); width: 104px; height: 26px; border-radius: 999px; background: #04070d; z-index: 30; }
.jp-screen { position: relative; width: 100%; height: 100%; border-radius: 34px; overflow: hidden; background: var(--bg); }

.jscreen { position: absolute; inset: 0; opacity: 0; transform: scale(1.05); transition: opacity .55s var(--ease), transform .55s var(--ease); pointer-events: none; display: flex; flex-direction: column; }
.jscreen.active { opacity: 1; transform: none; }

.jsbar { display: flex; align-items: center; justify-content: space-between; padding: 16px 22px 8px; font-size: 12px; font-weight: 600; font-family: var(--font-display); color: var(--text); }
.jsbar .jsb-r { display: flex; align-items: center; gap: 6px; }
.jsbar .sig { width: 16px; height: 11px; border-radius: 2px; background: var(--text); }
.jsbar .bat { width: 22px; height: 11px; border-radius: 3px; border: 1.5px solid var(--text); }

/* mini shared logo mark */
.jmark { width: 26px; height: 26px; border-radius: 8px; background: var(--grad); display: inline-block; }
.jmark.sm { width: 22px; height: 22px; border-radius: 7px; }

/* 0 · SCAN */
.s-scan .cam { flex: 1; position: relative; background: radial-gradient(circle at 50% 38%, #131b3e, #050712 75%); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px; }
.viewfinder { position: relative; width: 168px; height: 168px; }
.viewfinder .vf { position: absolute; width: 30px; height: 30px; border: 3px solid var(--cyan); }
.viewfinder .vf.tl { top: 0; left: 0; border-right: none; border-bottom: none; border-radius: 8px 0 0 0; }
.viewfinder .vf.tr { top: 0; right: 0; border-left: none; border-bottom: none; border-radius: 0 8px 0 0; }
.viewfinder .vf.bl { bottom: 0; left: 0; border-right: none; border-top: none; border-radius: 0 0 0 8px; }
.viewfinder .vf.br { bottom: 0; right: 0; border-left: none; border-top: none; border-radius: 0 0 8px 0; }
.vf-qr { position: absolute; inset: 22px; border-radius: 8px; background-color: #fff; background-image: repeating-conic-gradient(#0a0f1a 0% 25%, #fff 0% 50%); background-size: 13px 13px; }
.vf-qr .f { position: absolute; width: 28px; height: 28px; background: #fff; border: 5px solid #0a0f1a; border-radius: 4px; }
.vf-qr .f1 { top: 5px; left: 5px; } .vf-qr .f2 { top: 5px; right: 5px; } .vf-qr .f3 { bottom: 5px; left: 5px; }
.vf-line { position: absolute; left: 6px; right: 6px; top: 6px; height: 2px; border-radius: 999px; background: linear-gradient(90deg, transparent, var(--cyan), transparent); box-shadow: 0 0 14px 2px rgba(168,85,247,0.7); animation: vfScan 2.2s ease-in-out infinite; }
@keyframes vfScan { 0%,100%{top:6px} 50%{top:158px} }
.cam-cap { display: inline-flex; align-items: center; gap: 9px; font-size: 13px; color: var(--text); font-weight: 500; }
.cam-cap .cdot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); animation: pulse 1.4s infinite; }

/* 1 · OPEN */
.s-open { background: var(--bg-2); }
.s-open .jbar { display: flex; align-items: center; gap: 6px; padding: 44px 16px 12px; border-bottom: 1px solid var(--glass-border); }
.s-open .jbar .d { width: 9px; height: 9px; border-radius: 50%; background: #2A3142; }
.s-open .jbar .url { margin-left: 8px; flex: 1; height: 26px; border-radius: 8px; background: rgba(255,255,255,0.05); display: flex; align-items: center; padding: 0 12px; font-size: 11px; color: var(--text-dim); }
.jload { height: 3px; background: rgba(255,255,255,0.06); overflow: hidden; }
.jload span { display: block; height: 100%; width: 0; background: var(--grad); }
.s-open.active .jload span { animation: loadbar 1.6s var(--ease) forwards; }
@keyframes loadbar { 0%{width:0} 100%{width:100%} }
.jsplash { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; }
.jsplash .jmark { width: 64px; height: 64px; border-radius: 18px; box-shadow: 0 18px 40px -12px rgba(47,107,255,0.8); }
.s-open.active .jsplash .jmark { animation: pop .6s var(--ease) both; }
.jbrand { font-family: var(--font-display); font-weight: 700; font-size: 22px; }
.jspin { width: 26px; height: 26px; border-radius: 50%; border: 3px solid var(--glass-2); border-top-color: var(--cyan); animation: spin 0.9s linear infinite; }
.jhint { font-size: 13px; color: var(--text-muted); }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pop { 0%{transform:scale(.5); opacity:0} 60%{transform:scale(1.08)} 100%{transform:scale(1); opacity:1} }

/* 2 · INSTALL */
.s-install { background: var(--bg-2); }
.s-install .japp { flex: 1; padding: 8px 20px 20px; display: flex; flex-direction: column; gap: 14px; }
.japp-head { display: flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 600; font-size: 16px; }
.japp-hero { height: 120px; border-radius: 16px; background: linear-gradient(135deg, rgba(47,107,255,0.3), rgba(168,85,247,0.18)); border: 1px solid var(--glass-border); }
.japp-row { height: 44px; border-radius: 12px; background: var(--glass); border: 1px solid var(--glass-border); }
.japp-row.s { width: 70%; }
.jsheet { position: absolute; left: 10px; right: 10px; bottom: 10px; padding: 20px; border-radius: 24px; background: rgba(16,24,40,0.96); border: 1px solid var(--glass-border-bright); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: 0 -20px 50px -16px rgba(0,0,0,0.7); transform: translateY(130%); transition: transform .6s var(--ease); display: flex; flex-direction: column; gap: 16px; }
.s-install.active .jsheet { transform: translateY(0); transition-delay: .25s; }
.jsheet-grab { width: 40px; height: 4px; border-radius: 999px; background: rgba(255,255,255,0.25); align-self: center; }
.jsheet-row { display: flex; align-items: center; gap: 13px; }
.jsheet .appicon { width: 50px; height: 50px; border-radius: 14px; background: var(--grad); box-shadow: 0 10px 24px -8px rgba(47,107,255,0.8); flex-shrink: 0; }
.jsheet-meta b { font-family: var(--font-display); font-weight: 600; font-size: 16px; display: block; }
.jsheet-meta small { font-size: 12px; color: var(--text-dim); }
.jsheet-btn { padding: 14px; border-radius: 14px; font-family: var(--font-display); font-weight: 700; font-size: 15px; color: #ffffff; background: var(--grad); box-shadow: 0 0 24px -6px rgba(168,85,247,0.6); }
.s-install.active .jsheet-btn { animation: glowPulse 2.4s ease-in-out infinite 1s; }

/* 3 · HOME */
.s-home .jhome { flex: 1; background: linear-gradient(165deg, #15224d, #0a1230 55%, #060a18); display: flex; flex-direction: column; align-items: center; padding: 60px 22px 26px; }
.jhome-clock { text-align: center; margin-bottom: 36px; }
.jh-time { font-family: var(--font-display); font-weight: 600; font-size: 52px; display: block; line-height: 1; letter-spacing: -0.02em; }
.jh-date { font-size: 13px; color: rgba(255,255,255,0.7); }
.jhome-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px 16px; width: 100%; }
.jhome-grid .hi { aspect-ratio: 1; border-radius: 15px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.06); }
.jhome-grid .hi.app { background: var(--grad); border: none; display: grid; place-items: center; box-shadow: 0 0 0 0 rgba(168,85,247,0); }
.jhome-grid .hi.app svg { width: 22px; height: 22px; }
.s-home.active .hi.app { animation: iconPop .7s var(--ease) .3s both, iconGlow 2.4s ease-in-out 1s infinite; }
@keyframes iconPop { 0%{transform:scale(0); opacity:0} 55%{transform:scale(1.18)} 100%{transform:scale(1); opacity:1} }
@keyframes iconGlow { 0%,100%{box-shadow:0 0 0 0 rgba(168,85,247,0)} 50%{box-shadow:0 0 24px 3px rgba(168,85,247,0.6)} }
.jhome-cap { margin-top: auto; font-size: 13px; color: rgba(255,255,255,0.85); font-weight: 500; display: inline-flex; align-items: center; gap: 7px; padding-bottom: 14px; }
.jhome-cap::before { content: "✓"; color: var(--cyan); font-weight: 700; }
.jdock { display: flex; gap: 16px; padding: 12px 18px; border-radius: 22px; background: rgba(255,255,255,0.08); backdrop-filter: blur(10px); }
.jdock span { width: 38px; height: 38px; border-radius: 11px; background: rgba(255,255,255,0.16); }

/* 4 · USE */
.s-use { background: var(--bg-2); }
.s-use .juse { flex: 1; padding: 6px 18px 18px; display: flex; flex-direction: column; gap: 13px; }
.juse-head { display: flex; align-items: center; justify-content: space-between; }
.juse-head .brand { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 600; font-size: 15px; }
.juse-head .jbell { width: 30px; height: 30px; border-radius: 9px; background: var(--glass); position: relative; }
.juse-head .jbell::after { content: ""; position: absolute; top: 7px; right: 7px; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
.juse-hero { border-radius: 16px; padding: 16px; background: linear-gradient(135deg, rgba(47,107,255,0.22), rgba(168,85,247,0.12)); border: 1px solid var(--glass-border); }
.juse-hero .lbl { font-size: 11px; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.juse-hero .lbl .live { width: 7px; height: 7px; border-radius: 50%; background: var(--good); box-shadow: 0 0 8px var(--good); animation: pulse 1.8s infinite; }
.juse-hero .num { font-family: var(--font-display); font-weight: 700; font-size: 38px; line-height: 1; margin-top: 6px; letter-spacing: -0.03em; }
.juse-hero .delta { font-size: 11px; color: var(--good); margin-top: 5px; }
.juse-chart { display: flex; align-items: flex-end; gap: 6px; height: 70px; padding: 12px; border-radius: 14px; background: var(--glass); border: 1px solid var(--glass-border); }
.juse-chart span { flex: 1; border-radius: 4px 4px 2px 2px; background: var(--grad); opacity: .85; transform-origin: bottom; }
.s-use.active .juse-chart span { animation: barGrow .8s var(--ease) both; }
.s-use.active .juse-chart span:nth-child(2){animation-delay:.06s} .s-use.active .juse-chart span:nth-child(3){animation-delay:.12s} .s-use.active .juse-chart span:nth-child(4){animation-delay:.18s} .s-use.active .juse-chart span:nth-child(5){animation-delay:.24s} .s-use.active .juse-chart span:nth-child(6){animation-delay:.3s} .s-use.active .juse-chart span:nth-child(7){animation-delay:.36s}
@keyframes barGrow { from{transform:scaleY(0)} to{transform:scaleY(1)} }
.juse-notif { display: flex; align-items: center; gap: 10px; padding: 11px 13px; border-radius: 13px; background: var(--glass); border: 1px solid var(--glass-border); font-size: 12px; color: var(--text-muted); }
.juse-notif b { color: var(--text); }
.juse-notif .ic { width: 28px; height: 28px; border-radius: 8px; background: rgba(168,85,247,0.14); flex-shrink: 0; }
.juse-share { margin-top: auto; padding: 14px; border-radius: 14px; font-family: var(--font-display); font-weight: 700; font-size: 14px; color: #ffffff; background: var(--grad); animation: glowPulse 2.6s ease-in-out infinite; }

/* mobile mini dots */
.journey-mini { display: none; gap: 9px; }
.journey-mini .jm-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--glass-2); transition: background .3s, transform .3s; }
.journey-mini .jm-dot.active { background: var(--cyan); transform: scale(1.3); box-shadow: 0 0 10px var(--cyan); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
[data-stagger] > * { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
[data-stagger].visible > * { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-stage { max-width: 480px; margin-inline: auto; margin-top: var(--s-5); }
  .browser { transform: rotateY(-8deg) rotateX(4deg); }
  .dash-cols { grid-template-columns: 1fr; }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: repeat(3, 1fr); }
  .tracbuddy { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .tb-left p { margin-inline: auto; }
  .tb-right { width: 100%; max-width: 420px; }
}
@media (max-width: 1090px) {
  .nav-links { display: none; }
  .nav-right .btn-ghost, .nav-right .btn-primary { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 900px) {
  .logo-tag { display: none; }
  .dbc-grid { grid-template-columns: 1fr; gap: var(--s-6); }
  .dbc-shot { max-width: 480px; margin-inline: auto; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .stat-cards { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-card.feature { grid-column: 1 / -1; }
  .tl-wrap { grid-template-columns: 1fr; }
  .tl-vs { transform: rotate(90deg); margin: -8px auto; }
  .cz-grid { grid-template-columns: 1fr; gap: var(--s-6); justify-items: center; }
  .cz-panel { max-width: 460px; width: 100%; }
  #netCanvas { height: 460px; }
  .net-headline { font-size: 20px; left: 20px; top: 20px; }
  .spotlight { flex-direction: column; align-items: flex-start; }
  .feat.wide { grid-column: span 2; }
  .feat.tall { grid-row: span 1; }
  .tgrid, .price-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .roi2 { grid-template-columns: 1fr; }
  .scan-grid { grid-template-columns: 1fr; gap: var(--s-6); }
  .scan-copy { max-width: 560px; margin-inline: auto; text-align: center; }
  .scan-list { align-items: center; }
  .scan-list li { justify-content: center; }
  .link-row { justify-content: center; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: var(--s-5); }
  .foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .bridge-grid { grid-template-columns: 1fr; }
  .bridge-arrow { transform: rotate(90deg); margin-inline: auto; animation: nudgeV 2.2s ease-in-out infinite; }
  @keyframes nudgeV { 0%,100%{transform:rotate(90deg) translateX(-5px)} 50%{transform:rotate(90deg) translateX(5px)} }
  .steps-grid { grid-template-columns: 1fr; gap: var(--s-6); }
  .steps-svg { display: none; }
  .dash-body { grid-template-columns: 1fr; }
  .dash-side { flex-direction: row; overflow-x: auto; border-right: none; border-bottom: 1px solid var(--glass-border); padding: 12px; }
  .dash-side .s-logo { display: none; }
  .dash-side .nav-i span { display: none; }
}
@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; }
  .feat.wide { grid-column: span 1; }
  .kpi-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .toast { display: none; }
  .hero-cta .btn { flex: 1; }
  .pillars { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  #netCanvas { height: 400px; }
  .net-headline { display: none; }
  .net-controls { position: static; padding: 0 20px 22px; flex-direction: column; align-items: stretch; gap: 18px; }
  .net-slider { width: 100%; }
  .net-reach { text-align: left; }
  .net-badge { display: none; }
}

/* ============================================================
   LIVING DEMO — responsive
   ============================================================ */
@media (max-width: 1024px) {
  .journey-inner { grid-template-columns: 1fr 320px; }
  .jphone { width: 264px; height: 542px; }
}
@media (max-width: 900px) {
  .journey { height: 440vh; }
  .journey-inner { grid-template-columns: 1fr; gap: 28px; justify-items: center; text-align: center; }
  .journey-left { max-width: 460px; }
  .journey-left .eyebrow::before { display: none; }
  .journey-hint { display: none; }
  .journey-track { display: none; }
  .journey-mini { display: flex; }
}
@media (max-width: 380px) {
  .jphone { transform: scale(0.88); }
  .journey-glow { width: 280px; height: 280px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal, [data-stagger] > * { opacity: 1 !important; transform: none !important; }
  .toast { opacity: 1; }
  .qr-scan { display: none; }
}

/* ============================================================
   RESULTS INFOGRAPHIC (namespaced, inlined)
   ============================================================ */

  .tpr-poster{
    --bg:#0B0613; --bg2:#140a26; --ink:#070310;
    --purple:#662D91; --violet:#a855f7; --indigo:#7c3cff; --cyan:#22d3ee;
    --text:#F3EEFB; --muted:#b7abcf; --dim:#7d719a;
    --good:#34E0A1;
    --grad:linear-gradient(135deg,#7c3cff,#a855f7 55%,#22d3ee);
    --card:#160b28; --card-border:rgba(255,255,255,0.1);
    --font:'Inter',system-ui,sans-serif; --disp:'Space Grotesk','Inter',sans-serif;
  }
  
  
  .tpr-poster{
    width:1120px; flex:none; border-radius:22px; overflow:hidden; position:relative;
    background:
      radial-gradient(120% 90% at 82% 6%, rgba(124,60,255,0.32), transparent 55%),
      radial-gradient(80% 70% at 12% 4%, rgba(102,45,145,0.28), transparent 60%),
      linear-gradient(180deg,#1a0a30 0%, #0d0619 45%, #070310 100%);
    box-shadow:0 40px 100px -30px rgba(0,0,0,.8);
  }
  .grad-text{background:var(--grad);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;color:transparent}
  /* header */
  .tpr-hd{display:flex;align-items:flex-start;gap:18px;padding:26px 30px 0;position:relative}
  .tpr-hd .tpr-logo{height:40px}
  .tpr-hd .tpr-dealer{padding-top:2px}
  .tpr-hd .tpr-dealer .tpr-t1{font-family:var(--disp);font-weight:700;font-size:24px;letter-spacing:.02em;line-height:1}
  .tpr-hd .tpr-dealer .tpr-t2{font-family:var(--disp);font-weight:700;font-size:14px;letter-spacing:.14em;color:var(--violet);margin-top:5px}
  .tpr-g{position:absolute;top:24px;right:30px;width:60px;height:60px;border-radius:50%;background:#fff;display:grid;place-items:center;font-family:var(--disp);font-weight:700;font-size:30px;box-shadow:0 8px 24px -6px rgba(0,0,0,.6)}
  .tpr-g span{background:conic-gradient(from -30deg,#4285F4,#34A853,#FBBC05,#EA4335,#4285F4);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent}
  .tpr-hero-h{padding:6px 300px 0 30px;position:relative}
  .tpr-hero-h h1{font-family:var(--disp);font-weight:700;font-size:54px;line-height:.98;letter-spacing:-.02em}
  .tpr-hero-h .tpr-sub{font-family:var(--disp);font-weight:600;font-size:14px;letter-spacing:.05em;color:var(--muted);margin-top:10px}
  .tpr-hero-h .tpr-sub b{color:var(--cyan)}
  /* body grid */
  .tpr-grid{display:grid;grid-template-columns:300px 1fr;gap:18px;padding:20px 300px 0 30px}
  .tpr-panel{background:var(--card);border:1px solid var(--card-border);border-radius:16px}
  .tpr-cap{font-family:var(--disp);font-weight:700;font-size:14px;letter-spacing:.12em;text-align:center;padding:10px;border-radius:10px}
  /* before */
  .tpr-before{padding:16px}
  .tpr-before .tpr-cap{background:rgba(255,255,255,.08);color:var(--muted);width:150px;margin:0 auto 16px}
  .tpr-brow{display:flex;align-items:center;gap:14px;padding:14px 6px}
  .tpr-brow+.tpr-brow{border-top:1px solid var(--card-border)}
  .tpr-brow .tpr-ic{width:52px;height:52px;border-radius:12px;background:rgba(255,255,255,.06);display:grid;place-items:center;color:var(--dim);flex-shrink:0}
  .tpr-brow .tpr-ic svg{width:26px;height:26px}
  .tpr-brow .tpr-lbl{font-size:14px;color:var(--muted);line-height:1.3}
  .tpr-brow .tpr-lbl small{color:var(--dim);font-size:12px}
  .tpr-brow .tpr-val{margin-left:auto;font-family:var(--disp);font-weight:700;font-size:40px;line-height:1}
  /* after */
  .tpr-after{padding:0}
  .tpr-after .tpr-cap{background:var(--grad);color:#fff;border-radius:16px 16px 0 0;padding:12px;font-size:15px}
  .tpr-arow{display:flex;align-items:center;gap:18px;padding:14px 22px}
  .tpr-arow+.tpr-arow{border-top:1px solid var(--card-border)}
  .tpr-arow .tpr-ai{width:44px;height:44px;border-radius:50%;background:var(--grad);display:grid;place-items:center;flex-shrink:0;color:#fff}
  .tpr-arow .tpr-ai svg{width:22px;height:22px}
  .tpr-arow .tpr-big{font-family:var(--disp);font-weight:700;font-size:40px;line-height:1;min-width:120px}
  .tpr-arow .tpr-rt{font-family:var(--disp);font-weight:700;font-size:15px;letter-spacing:.02em;line-height:1.25}
  .tpr-arow .tpr-rt small{display:block;font-family:var(--font);font-weight:500;font-size:12.5px;color:var(--muted);letter-spacing:0}
  .tpr-arow .tpr-rt .tpr-amber{color:#FFC34D}
  .tpr-stars{color:#FFC34D;font-size:15px;letter-spacing:2px}
  /* google rise band */
  .tpr-band{display:flex;align-items:center;gap:26px;margin:18px 300px 0 30px;padding:20px 24px;border-radius:16px;background:linear-gradient(120deg,rgba(124,60,255,.14),rgba(34,211,238,.06));border:1px solid var(--card-border)}
  .tpr-band .tpr-gwrap{display:flex;align-items:center;gap:16px;flex:1}
  .tpr-band .tpr-gicon{width:56px;height:56px;border-radius:50%;background:#fff;display:grid;place-items:center;font-family:var(--disp);font-weight:700;font-size:28px;flex-shrink:0}
  .tpr-band .tpr-gicon span{background:conic-gradient(from -30deg,#4285F4,#34A853,#FBBC05,#EA4335,#4285F4);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent}
  .tpr-band .tpr-gt b{font-family:var(--disp);font-weight:700;font-size:17px;display:block}
  .tpr-band .tpr-gt .tpr-rise{color:var(--violet)}
  .tpr-band .tpr-gt p{font-size:13px;color:var(--muted);margin-top:3px}
  .tpr-band .tpr-gt p i{color:var(--cyan);font-style:normal;font-weight:600}
  .tpr-bars{display:flex;align-items:flex-end;gap:24px;height:90px}
  .tpr-bars .tpr-col{display:flex;flex-direction:column;align-items:center;gap:6px}
  .tpr-bars .tpr-bar{width:56px;border-radius:6px 6px 0 0;background:var(--grad)}
  .tpr-bars .tpr-col .tpr-n{font-family:var(--disp);font-weight:700;font-size:20px}
  .tpr-bars .tpr-col .tpr-w{font-size:11px;color:var(--dim);letter-spacing:.08em}
  /* trajectory */
  .tpr-traj{display:flex;align-items:center;gap:22px;margin:18px 30px 0;padding:16px 24px;border-radius:14px;border:1px solid var(--card-border);background:rgba(255,255,255,.03)}
  .tpr-traj .tpr-tgt{width:40px;height:40px;color:var(--cyan);flex-shrink:0}
  .tpr-traj .tpr-tl b{font-family:var(--disp);font-weight:700;font-size:18px;color:var(--cyan)}
  .tpr-traj .tpr-tl p{font-size:13px;color:var(--muted);margin-top:2px}
  .tpr-traj .tpr-tr{margin-left:auto;text-align:right;font-family:var(--disp);font-weight:700;font-size:15px;line-height:1.4}
  .tpr-traj .tpr-tr span{color:var(--cyan)}
  /* quote */
  .tpr-quote{margin:18px 0 0;padding:20px 40px 26px;background:rgba(255,255,255,.03);border-top:1px solid var(--card-border);position:relative}
  .tpr-quote .tpr-mark{font-family:var(--disp);font-size:44px;color:var(--violet);line-height:.6;opacity:.7}
  .tpr-quote p{font-size:13.5px;color:var(--muted);line-height:1.55;margin-top:-8px}
  .tpr-quote .tpr-who{margin-top:8px;font-family:var(--disp);font-weight:700;font-size:14px;text-align:center}
  /* phone */
  .tpr-phone{position:absolute;top:150px;right:30px;width:236px;height:470px;border-radius:36px;background:#04070d;padding:9px;box-shadow:0 40px 80px -24px rgba(0,0,0,.85),0 0 0 1px rgba(255,255,255,.14),0 0 70px -26px rgba(124,60,255,.7);z-index:4}
  .tpr-pscreen{position:relative;height:100%;border-radius:28px;overflow:hidden;background:#0a0512;display:flex;flex-direction:column}
  .tpr-phdr{background:linear-gradient(135deg,#7c3cff,#a855f7);padding:16px 16px 12px;color:#fff}
  .tpr-phdr .tpr-pm{font-family:var(--disp);font-weight:700;font-size:20px;letter-spacing:.02em}
  .tpr-pmid{padding:12px 16px 0;text-align:center}
  .tpr-pav{width:62px;height:62px;border-radius:50%;margin:0 auto;background:var(--grad);border:3px solid #fff;box-shadow:0 0 0 3px var(--violet)}
  .tpr-pmid .tpr-pn{font-family:var(--disp);font-weight:700;font-size:16px;margin-top:8px}
  .tpr-pmid .tpr-pr{font-size:10px;letter-spacing:.12em;color:var(--muted);margin-top:2px}
  .tpr-pacts{display:flex;justify-content:center;gap:10px;padding:14px 12px 10px}
  .tpr-pacts .tpr-pa{display:flex;flex-direction:column;align-items:center;gap:4px;font-size:8.5px;color:var(--muted)}
  .tpr-pacts .tpr-pa .tpr-cir{width:38px;height:38px;border-radius:50%;background:var(--grad);display:grid;place-items:center;color:#fff}
  .tpr-pacts .tpr-pa .tpr-cir svg{width:17px;height:17px}
  .tpr-pacts .tpr-pa.tpr-hl .tpr-cir{box-shadow:0 0 0 3px rgba(34,211,238,.9),0 0 18px 2px rgba(34,211,238,.6)}
  .tpr-promo{margin:6px 12px 0;border-radius:14px;overflow:hidden;flex:1;background:linear-gradient(160deg,#7c3cff,#3a1a6e);display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:14px}
  .tpr-promo .tpr-free{font-family:var(--disp);font-weight:700;font-size:40px;line-height:.9;color:#fff;text-shadow:0 2px 10px rgba(0,0,0,.4)}
  .tpr-promo .tpr-pp{font-family:var(--disp);font-weight:700;font-size:13px;color:var(--cyan);margin-top:6px;line-height:1.2}
  .tpr-promo .tpr-pd{font-size:10px;color:rgba(255,255,255,.8);margin-top:6px}
  .tpr-ptabs{display:flex;justify-content:space-around;padding:9px 6px;background:#0a0512;border-top:1px solid rgba(255,255,255,.08);font-size:7.5px;color:var(--dim)}
  .tpr-ptabs .tpr-pt{display:flex;flex-direction:column;align-items:center;gap:3px}
  .tpr-ptabs .tpr-pt svg{width:14px;height:14px}
  .tpr-ptabs .tpr-pt.tpr-on{color:var(--cyan)}

.tpr-embed{position:relative;width:100%;max-width:1120px;margin:0 auto;overflow:hidden}
.tpr-poster{transform-origin:top left}

