/* landing.css - Marketing Redesign for Carlo.AI */

/* Base overrides */
html { scroll-behavior: smooth; }
.serif { font-family: var(--ff-serif); }
.display { font-family: var(--ff-display); }

.vl {
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}
.vl .wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Nav */
.vl nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(14, 17, 22, 0.08);
}
.vl nav .wrap {
  display: flex;
  align-items: center;
  height: 72px;
}
.vl nav .links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.vl nav .links a {
  color: var(--muted);
  font-weight: 500;
  font-size: 14.5px;
  transition: color 0.2s;
}
.vl nav .links a:hover { color: var(--ink); text-decoration: none; }
.vl nav .links a.btn {
  color: #fff;
  padding: 10px 20px;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(109, 94, 246, 0.2);
}
@media (max-width: 820px) { .vl nav .links a.hide { display: none; } }

/* Section Utilities */
.pad { padding: 64px 0; }
.pad-sm { padding: 44px 0; }
.bg-alt { background: linear-gradient(180deg, #F8FAFC, #FFFFFF); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.bg-slate { background: #F1F4F9; border-top: 1px solid var(--line); }
.center-intro { text-align: center; max-width: 680px; margin: 0 auto 36px; }
.vl .h2 { font-size: clamp(32px, 4vw, 48px); line-height: 1.1; margin: 16px 0 0; color: var(--ink); letter-spacing: -0.02em; }
.vl .lead { font-size: 18px; color: var(--muted); margin: 20px auto 0; max-width: 58ch; line-height: 1.6; }

/* Scroll Reveal */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-up.revealed { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) {
  .reveal-up { transition: none !important; opacity: 1 !important; transform: none !important; }
}

/* Hero */
.vl .hero {
  padding: 48px 0 40px;
  position: relative;
}
.vl .hero::before {
  content: "";
  position: absolute;
  top: -150px; left: 50%;
  transform: translateX(-50%);
  width: 1200px; height: 800px;
  background: radial-gradient(circle at 50% 30%, rgba(109, 94, 246, 0.12), transparent 60%);
  pointer-events: none;
  z-index: -2;
}
.vl .hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.vl .hero .wrap > * { min-width: 0; }
.vl .hero { overflow-x: clip; }
@media (max-width: 1024px) {
  .vl .hero .wrap { grid-template-columns: 1fr; text-align: center; gap: 40px; }
}
.vl .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(109, 94, 246, 0.2);
  color: var(--primary-700);
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(109, 94, 246, 0.08);
  margin-bottom: 28px;
}
.vl .pill .d {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(109, 94, 246, 0.4); }
  70% { box-shadow: 0 0 0 8px rgba(109, 94, 246, 0); }
  100% { box-shadow: 0 0 0 0 rgba(109, 94, 246, 0); }
}
.vl h1.title {
  font-size: clamp(42px, 5.5vw, 64px);
  line-height: 1.05;
  margin: 0 0 24px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.vl h1.title .g {
  background: var(--grad-blue);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.vl .sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.6;
  margin: 0 0 32px;
}
@media (max-width: 1024px) {
  .vl .sub { margin: 0 auto 32px; }
  .vl .cta { justify-content: center; }
  .vl .trust { justify-content: center; }
}
.vl .cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.vl .cta .btn.lg {
  padding: 16px 28px;
  font-size: 16px;
  border-radius: 14px;
}
.vl .trust {
  margin-top: 24px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Hero Visual / Demo */
.vl .hero-visual {
  position: relative;
  perspective: 1000px;
}
.vl .hero-visual::after {
  content: "";
  position: absolute;
  inset: -20px;
  background: var(--grad-blue);
  opacity: 0.15;
  filter: blur(50px);
  z-index: -1;
  border-radius: 40px;
}
.vl .stage {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(14, 17, 22, 0.1);
  border-radius: 24px;
  box-shadow: 0 24px 60px -12px rgba(14, 17, 22, 0.12), 0 4px 12px rgba(14, 17, 22, 0.04);
  overflow: hidden;
  transform: rotateY(-3deg) rotateX(2deg);
  transition: transform 0.5s ease;
}
.vl .stage:hover { transform: none; }
@media (max-width: 1024px) { .vl .stage { transform: none; } }
.vl .stage .bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: #1C1F2E;
}
.vl .stage .bar i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.vl .stage .who {
  margin-left: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.vl .stage .live {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}
.vl .stage .live i { width: 8px; height: 8px; border-radius: 50%; background: var(--sky); animation: blink 1.6s infinite; }
@keyframes blink { 0%, 100% { opacity: 0.35; } 50% { opacity: 1; } }

/* Demo Tab Controls */
.vl .scen-tabs {
  display: flex;
  gap: 8px;
  padding: 16px 20px 0;
  flex-wrap: wrap;
}
.vl .scen-tabs button {
  background: var(--bg);
  border: 1px solid var(--line2);
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
}
.vl .scen-tabs button:hover { border-color: var(--primary); color: var(--primary-700); }
.vl .scen-tabs button.on {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  box-shadow: 0 4px 12px rgba(14, 17, 22, 0.15);
}

/* Demo Scene */
.vl .scene { position: relative; padding: 20px; min-height: 470px; }
.d2-bubble {
  background: var(--primary-50);
  border: 1px solid rgba(109, 94, 246, 0.3);
  font-size: 14.5px;
  font-weight: 500;
  padding: 14px 18px;
  border-radius: 16px 16px 4px 16px;
  max-width: 88%;
  margin-left: auto;
  min-height: 24px;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  color: var(--primary-700);
  box-shadow: 0 4px 12px rgba(109, 94, 246, 0.08);
}
.d2-bubble.on { opacity: 1; transform: none; }
.d2-cur { display: inline-block; width: 2px; height: 16px; background: var(--primary-700); margin-left: 2px; vertical-align: -2px; animation: cur 0.8s steps(1) infinite; }
@keyframes cur { 50% { opacity: 0; } }

.d2-think {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  opacity: 0;
  transform: translateY(8px);
  transition: 0.35s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.d2-think.on { opacity: 1; transform: none; }
.sp { width: 14px; height: 14px; border-radius: 50%; border: 2px solid var(--line2); border-top-color: var(--primary-700); animation: spin 0.7s linear infinite; flex: none; }
@keyframes spin { to { transform: rotate(360deg); } }

.d2-flow {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: center;
  margin-top: 20px;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.45s;
}
.d2-flow.on { opacity: 1; transform: none; }
.d2-acct {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  background: var(--surface);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.d2-acct.to { border-color: rgba(34, 211, 238, 0.4); background: #F4FDFF; }
.d2-acct-h { font-weight: 700; font-size: 13.5px; color: var(--ink); }
.d2-acct-bal { font-family: var(--ff-display); font-weight: 700; font-size: 24px; margin-top: 4px; transition: color 0.35s, transform 0.35s; }
.d2-acct-bal.flash { color: var(--sky); transform: scale(1.05); }
.d2-acct-sub { color: var(--soft); font-size: 11px; margin-top: 4px; font-family: ui-monospace, Menlo, monospace; }

.d2-mid { position: relative; height: 48px; }
.d2-track { position: absolute; top: 50%; left: 4px; right: 12px; height: 2px; background: repeating-linear-gradient(90deg, var(--line2) 0 6px, transparent 6px 12px); transform: translateY(-50%); }
.d2-coin { position: absolute; top: 50%; left: 4px; transform: translate(-50%, -50%); background: var(--primary); color: #fff; font-weight: 700; font-size: 11.5px; padding: 6px 10px; border-radius: 999px; box-shadow: 0 4px 12px rgba(109, 94, 246, 0.3); white-space: nowrap; opacity: 0; }
.d2-coin.fly { animation: coinfly 1.8s cubic-bezier(0.5, 0, 0.35, 1) forwards; }
@keyframes coinfly { 0% { opacity: 0; left: 4px; } 15% { opacity: 1; } 85% { opacity: 1; } 100% { opacity: 0; left: calc(100% - 4px); } }

.d2-card {
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  opacity: 0;
  transform: translateY(12px);
  transition: 0.45s;
}
.d2-card.on { opacity: 1; transform: none; }
.d2-ch { padding: 12px 16px; border-bottom: 1px solid var(--line); background: #F8FAFC; font-size: 12px; color: var(--muted); display: flex; justify-content: space-between; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.d2-jr { display: flex; justify-content: space-between; font-size: 13.5px; padding: 10px 16px; border-bottom: 1px solid var(--line); opacity: 0; transform: translateX(-8px); transition: 0.35s; }
.d2-jr.on { opacity: 1; transform: none; }
.d2-code { font-family: ui-monospace, Menlo, monospace; color: var(--muted); font-size: 12px; margin-right: 4px; }
.d2-dr { color: var(--dr); font-weight: 600; }
.d2-cr { color: var(--cr); font-weight: 600; }
.d2-tot { font-weight: 700; border-bottom: none; background: #F8FAFC; }
.d2-ok { margin: 12px 16px; background: #E7F6EF; border: 1px solid #BEE6D2; color: #0E7A54; border-radius: 12px; padding: 10px 14px; font-size: 12.5px; font-weight: 600; opacity: 0; transform: scale(0.97); transition: 0.35s; }
.d2-ok.on { opacity: 1; transform: none; }

.d2-sync { display: flex; gap: 12px; margin-top: 16px; }
.d2-chip { flex: 1; display: flex; align-items: center; gap: 10px; border: 1px solid var(--line); border-radius: 14px; padding: 12px; background: var(--surface); font-size: 12.5px; font-weight: 600; color: var(--soft); opacity: 0.5; transition: 0.45s; box-shadow: 0 2px 8px rgba(0,0,0,0.02); }
.d2-chip.on { opacity: 1; color: var(--ink); border-color: #BEE6D2; background: #F0FDF4; box-shadow: 0 4px 12px rgba(22, 163, 74, 0.08); }
.d2-chip .ico { width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; color: #fff; font-size: 11px; font-weight: 700; flex: none; }
.d2-chip .qb { background: #2CA01C; }
.d2-chip .gs { background: #0F9D58; }
.d2-chip .ck { margin-left: auto; color: var(--good); font-weight: 800; opacity: 0; transition: 0.3s; font-size: 14px; }
.d2-chip.on .ck { opacity: 1; }

/* Integrations */
.vl .integ {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 20%, rgba(255,255,255,0.8) 80%, rgba(255,255,255,0) 100%);
  padding: 24px 0;
}
.vl .integ .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.vl .integ-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--ink);
  font-size: 15px;
}
.vl .integ-item svg { width: 20px; height: 20px; color: var(--muted); }
.vl .integ .lbl {
  font-family: var(--ff-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--soft);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-right: 12px;
}

/* Stats Band */
.vl .band { padding: 40px 0; position: relative; }
.vl .band .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
@media (max-width: 768px) { .vl .band .wrap { grid-template-columns: repeat(2, 1fr); gap: 40px; } }
.vl .stat .n { font-family: var(--ff-display); font-weight: 700; font-size: clamp(32px, 4vw, 44px); line-height: 1; margin-bottom: 10px; }
.vl .stat:nth-child(1) .n { color: var(--sky); }
.vl .stat:nth-child(2) .n { color: var(--primary); }
.vl .stat:nth-child(3) .n { color: var(--ink); }
.vl .stat:nth-child(4) .n { color: var(--good); }
.vl .stat .l { color: var(--muted); font-size: 14px; font-weight: 500; }

/* How It Works Grid */
.vl .steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 820px) { .vl .steps { grid-template-columns: 1fr; } }
.vl .step {
  padding: 36px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 12px 36px -12px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.vl .step:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px -12px rgba(109, 94, 246, 0.12);
  border-color: rgba(109, 94, 246, 0.2);
}
.vl .step .n {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: var(--primary-50);
  color: var(--primary-700);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 22px;
  display: grid;
  place-items: center;
}
.vl .step h3 { font-size: 22px; margin: 0 0 12px; }
.vl .step p { font-size: 15.5px; line-height: 1.6; color: var(--muted); margin: 0; }

/* Recon Section */
.vl .rec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .vl .rec-grid { grid-template-columns: 1fr; } }
.vl .rec-stage {
  padding: 0;
  overflow: hidden;
  background: var(--surface);
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px -12px rgba(0,0,0,0.08);
}
.vl .rec-head { display: flex; align-items: center; gap: 12px; padding: 16px 20px; border-bottom: 1px solid var(--line); background: #F8FAFC; font-size: 13.5px; font-weight: 700; }
.vl .rec-head .live { margin-left: auto; display: flex; align-items: center; gap: 8px; font-size: 11.5px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.vl .rec-head .live i { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); animation: blink 1.6s infinite; }
.vl .rec-row { display: flex; align-items: center; gap: 14px; padding: 14px 20px; border-bottom: 1px solid var(--line); font-size: 14px; opacity: 0; transform: translateY(8px); transition: 0.35s; }
.vl .rec-row.in { opacity: 1; transform: none; }
.vl .rec-row.active { background: var(--primary-50); }
.vl .rec-row .d { width: 44px; color: var(--soft); font-size: 12px; font-weight: 600; flex: none; }
.vl .rec-row .m { flex: 1; font-weight: 600; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vl .rec-row .a { font-weight: 700; color: var(--dr); flex: none; font-family: var(--ff-display); font-size: 15px; }
.vl .rec-res { flex: none; min-width: 170px; text-align: right; }
.vl .stamp { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 700; padding: 6px 12px; border-radius: 999px; transform: scale(0.7); opacity: 0; transition: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
.vl .stamp.pop { transform: scale(1); opacity: 1; }
.vl .stamp.ok { background: #E7F6EF; color: #0E7A54; }
.vl .stamp.match { background: rgba(34, 211, 238, 0.15); color: #0891B2; }
.vl .stamp.you { background: #FDECEA; color: var(--bad); animation: recpulse 2.2s infinite; }
.vl .rec-foot { display: flex; align-items: center; gap: 12px; padding: 16px 20px; font-size: 12.5px; font-weight: 600; color: var(--muted); background: #F8FAFC; }
.vl .rec-foot .track { flex: 1; height: 8px; border-radius: 4px; background: var(--line2); overflow: hidden; }
.vl .rec-foot .track i { display: block; height: 100%; width: 0; background: var(--grad-blue); transition: width 0.6s; }
.vl .rec-done { color: var(--good); font-weight: 700; opacity: 0; transition: 0.35s; white-space: nowrap; }
.vl .rec-done.on { opacity: 1; }

.vl .rec-mech { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; }
.vl .rec-mech .mi { display: flex; gap: 16px; align-items: flex-start; }
.vl .rec-mech .ic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; color: var(--primary-700); background: var(--primary-50); font-size: 20px; flex: none; }
.vl .rec-mech h3 { font-size: 18px; margin: 0 0 6px; font-weight: 700; }
.vl .rec-mech p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.6; }

/* CFO Forecast */
.fxstage {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 30px 80px -20px rgba(14, 17, 22, 0.15);
  overflow: hidden;
  max-width: 1080px;
  margin: 0 auto;
}
.fx-chrome { display: flex; align-items: center; gap: 8px; padding: 14px 20px; background: #1C1F2E; border-bottom: 1px solid rgba(255,255,255,0.05); }
.fx-chrome i { width: 12px; height: 12px; border-radius: 50%; }
.fx-chrome i:nth-child(1) { background: #FF5F56; } .fx-chrome i:nth-child(2) { background: #FFBD2E; } .fx-chrome i:nth-child(3) { background: #27C93F; }
.fx-chrome .u { margin-left: 16px; font-family: var(--ff-display); font-size: 13px; color: #8B90A3; letter-spacing: 0.04em; }
.fx-chrome .live { margin-left: auto; display: flex; align-items: center; gap: 8px; font-family: var(--ff-display); font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #9AA1C9; }
.fx-chrome .live .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sky); animation: fxpulse 1.8s infinite; }

.fx-hd { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; padding: 20px 24px 10px; }
.fx-hd .t { font-family: var(--ff-display); font-weight: 700; font-size: 18px; letter-spacing: 0.02em; }
.fx-hd .t .ill { font-family: var(--ff-body); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--primary-700); background: var(--primary-50); border: 1px solid rgba(109,94,246,0.2); border-radius: 6px; padding: 4px 10px; margin-left: 12px; vertical-align: 2px; }
.fx-horizon { margin-left: auto; display: flex; gap: 8px; flex-wrap: wrap; }
.fx-horizon button { font-family: var(--ff-display); font-weight: 700; font-size: 13px; letter-spacing: 0.04em; padding: 8px 16px; border-radius: 999px; border: 1px solid var(--line2); background: var(--surface); color: var(--muted); cursor: pointer; transition: 0.25s; }
.fx-horizon button:hover { border-color: var(--primary); color: var(--primary-700); }
.fx-horizon button.on { background: var(--ink); border-color: var(--ink); color: #fff; box-shadow: 0 4px 12px rgba(14,17,22,0.15); }

.fx-bd { display: grid; grid-template-columns: 280px 1fr; gap: 16px; padding: 10px 24px 24px; }
@media (max-width: 820px) { .fx-bd { grid-template-columns: 1fr; } }
.fx-ctrls { display: flex; flex-direction: column; gap: 20px; padding: 10px 16px 0 4px; }
.fx-sl .lab { display: flex; justify-content: space-between; align-items: baseline; font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); font-weight: 700; margin-bottom: 10px; }
.fx-sl .lab b { font-size: 14.5px; color: var(--ink); letter-spacing: 0; font-variant-numeric: tabular-nums; }
.fx-sl input[type=range] { -webkit-appearance: none; width: 100%; height: 6px; border-radius: 99px; background: var(--line2); outline: none; cursor: pointer; }
.fx-sl input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%; background: #fff; border: none; box-shadow: 0 0 0 4px var(--primary), 0 2px 8px rgba(0,0,0,0.2); cursor: grab; }
.fx-escrow { margin-top: 16px; border-radius: 14px; padding: 14px 16px; font-size: 13px; line-height: 1.5; background: #FEF7E9; border: 1px solid #F3E0AF; color: #6b5a2a; opacity: 0; transform: translateY(10px); transition: 0.45s; }
.fx-escrow.show { opacity: 1; transform: none; }
.fx-escrow b { color: #7a5c11; }

.fx-chartcard { background: #F8FAFC; border: 1px solid var(--line); border-radius: 20px; padding: 20px 20px 12px; position: relative; overflow: hidden; }
.fx-chartcard .cap { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.fx-chartcard .cap .l { font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--soft); font-weight: 800; }
.fx-verdict { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 700; padding: 6px 14px; border-radius: 999px; transition: 0.3s; }
.fx-verdict .vd { width: 10px; height: 10px; border-radius: 50%; }
.fx-verdict.ok { background: #E9F7EE; color: #0F7A37; } .fx-verdict.ok .vd { background: var(--good); }
.fx-verdict.warn { background: #FEF3E2; color: #8A5A06; } .fx-verdict.warn .vd { background: var(--amber); }

.fx-chart { width: 100%; height: auto; display: block; overflow: visible; font-variant-numeric: tabular-nums; }
#fx-line { fill: none; stroke: url(#fxlg); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 6px 12px rgba(109, 94, 246, 0.3)); }
#fx-endDot { fill: #fff; stroke: var(--primary); stroke-width: 3.5; }
#fx-endGlow { fill: var(--primary); opacity: 0.2; }
#fx-trough { transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1); }
#fx-trough .ring { fill: none; stroke: var(--amber); stroke-width: 2.5; opacity: 0.9; }
#fx-trough .ring2 { fill: none; stroke: var(--amber); opacity: 0.5; animation: fxripple 2s ease-out infinite; }
#fx-trough .dot { fill: var(--amber); }
.fx-tlabel { font-size: 11px; fill: var(--muted); font-weight: 600; }
.fx-zero { stroke: var(--ink); stroke-width: 1.5; opacity: 0.2; }
.fx-grid { stroke: var(--line); stroke-width: 1; }
.fx-axis { font-size: 10px; fill: var(--soft); font-weight: 500; }
.fx-taxband { fill: var(--amber); opacity: 0.08; }
.fx-taxtag { font-family: var(--ff-display); font-size: 9px; font-weight: 700; letter-spacing: 0.1em; fill: #B45309; text-transform: uppercase; }

.fx-foot { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; padding: 12px 10px 4px; color: var(--soft); font-size: 13px; max-width: 1080px; margin: 12px auto 0; }
.fx-foot b { color: var(--muted); }
.fx-std { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; align-items: center; margin: 20px 0 4px; font-size: 13.5px; color: var(--muted); }
.fx-std .c { font-size: 11px; font-weight: 800; background: var(--primary-50); color: var(--primary-700); border: 1px solid rgba(109,94,246,0.2); border-radius: 6px; padding: 4px 10px; letter-spacing: 0.04em; }

.fx-val { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 24px auto 0; max-width: 1080px; }
@media (max-width: 768px) { .fx-val { grid-template-columns: 1fr; } }
.fx-val .v { display: flex; gap: 14px; align-items: flex-start; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 20px; box-shadow: 0 8px 24px rgba(0,0,0,0.04); }
.fx-val .v .e { font-size: 24px; flex: none; line-height: 1.1; color: var(--primary); }
.fx-val .v b { font-family: var(--ff-display); font-size: 15px; display: block; margin-bottom: 4px; color: var(--ink); }
.fx-val .v p { margin: 0; font-size: 13.5px; color: var(--muted); line-height: 1.5; }

/* ROI Section */
.vl .roi { max-width: 900px; margin: 0 auto; background: linear-gradient(145deg, #1C1F2E, #0E1116); border-radius: 32px; padding: 48px; color: #fff; position: relative; overflow: hidden; box-shadow: 0 30px 60px -15px rgba(14,17,22,0.4); }
.vl .roi::before { content: ""; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(109, 94, 246, 0.25), transparent 60%); pointer-events: none; }
.vl .roi-row { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; position: relative; }
.vl .roi input[type=range] { flex: 1; min-width: 200px; -webkit-appearance: none; width: 100%; height: 8px; background: rgba(255,255,255,0.1); border-radius: 99px; outline: none; }
.vl .roi input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 28px; height: 28px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 4px var(--primary), 0 4px 12px rgba(0,0,0,0.3); cursor: grab; transition: transform 0.1s; }
.vl .roi input[type=range]::-webkit-slider-thumb:active { transform: scale(1.1); }
.vl .roi-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; position: relative; }
@media (max-width: 700px) { .vl .roi-stats { grid-template-columns: 1fr; } }
.vl .roi-stat { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 24px; text-align: center; backdrop-filter: blur(8px); }
.vl .roi-stat .n { font-family: var(--ff-display); font-weight: 700; font-size: 32px; }
.vl .roi-stat:nth-child(2) .n { color: var(--sky); }
.vl .roi-stat:nth-child(3) .n { color: var(--lime); }
.vl .roi-stat .l { font-size: 13.5px; color: rgba(255,255,255,0.6); margin-top: 8px; }
.vl .roi-note { text-align: center; color: rgba(255,255,255,0.4); font-size: 12.5px; margin-top: 20px; position: relative; }
.vl .roi-head { text-align: center; font-size: clamp(16px, 2vw, 20px); font-weight: 500; margin-top: 32px; color: rgba(255,255,255,0.9); line-height: 1.5; text-wrap: balance; position: relative; }
.vl .roi-head b { color: var(--lime); white-space: nowrap; font-weight: 700; }

/* Pricing */
.vl .prices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; align-items: stretch; }
@media (max-width: 900px) { .vl .prices { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; } }
.vl .price { padding: 40px 32px; display: flex; flex-direction: column; gap: 8px; position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: 24px; box-shadow: 0 12px 36px -12px rgba(0,0,0,0.05); transition: transform 0.3s, box-shadow 0.3s; }
.vl .price:hover { transform: translateY(-8px); box-shadow: 0 20px 48px -12px rgba(109, 94, 246, 0.1); }
.vl .price.pop { border: 2px solid var(--primary); box-shadow: 0 20px 48px -12px rgba(109, 94, 246, 0.15); transform: scale(1.03); z-index: 2; }
.vl .price.pop:hover { transform: scale(1.03) translateY(-8px); }
.vl .price .tag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #fff; font-family: var(--ff-display); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px; box-shadow: 0 4px 12px rgba(109,94,246,0.3); }
.vl .price .nm { font-family: var(--ff-display); font-weight: 700; font-size: 20px; color: var(--ink); }
.vl .price .amt { font-family: var(--ff-display); font-weight: 700; font-size: 48px; letter-spacing: -0.02em; margin-top: 4px; color: var(--ink); }
.vl .price .amt small { font-size: 15px; color: var(--muted); font-weight: 500; font-family: var(--ff-body); }
.vl .price .conn { font-size: 13px; color: var(--primary-700); font-weight: 600; background: var(--primary-50); border-radius: 10px; padding: 8px 12px; margin-top: 12px; }
.vl .price ul { list-style: none; padding: 0; margin: 20px 0 32px; display: flex; flex-direction: column; gap: 12px; }
.vl .price li { font-size: 14.5px; padding-left: 28px; position: relative; color: var(--muted); }
.vl .price li::before { content: "✓"; position: absolute; left: 0; color: var(--good); font-weight: 800; font-size: 16px; }
.vl .price .btn { margin-top: auto; padding: 14px; font-size: 15px; border-radius: 12px; }
.vl .price:not(.pop) .btn { background: var(--surface); color: var(--ink); border: 1px solid var(--line2); box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.vl .price:not(.pop) .btn:hover { border-color: var(--primary); color: var(--primary-700); }

/* Trust & FAQ */
.vl .trustrow { display: flex; flex-wrap: wrap; gap: 14px 32px; justify-content: center; margin-top: 28px; font-size: 14px; font-weight: 600; color: var(--muted); }
.vl .faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.vl .faq details { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 4px 24px; box-shadow: 0 4px 16px rgba(0,0,0,0.02); transition: box-shadow 0.2s; }
.vl .faq details:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.vl .faq summary { cursor: pointer; font-weight: 600; padding: 20px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; font-size: 16px; color: var(--ink); }
.vl .faq summary::-webkit-details-marker { display: none; }
.vl .faq summary::after { content: "+"; color: var(--primary); font-size: 24px; font-weight: 400; transition: transform 0.2s; }
.vl .faq details[open] summary::after { content: "−"; transform: rotate(180deg); }
.vl .faq p { margin: 0 0 20px; color: var(--muted); font-size: 15px; line-height: 1.6; }

/* Morning Brief / CFO Snapshot */
.vl .insights { display: grid; grid-template-columns: 1fr 1.15fr; gap: 24px; align-items: stretch; max-width: 1080px; margin: 0 auto; }
@media (max-width: 900px) { .vl .insights { grid-template-columns: 1fr; } }
.vl .brief { background: linear-gradient(168deg, #1C1F2E, #0E1116); color: #EEF1F6; border-radius: 24px; padding: 28px; box-shadow: 0 24px 60px -12px rgba(14,17,22,0.35); position: relative; overflow: hidden; }
.vl .brief::before { content: ""; position: absolute; inset: -40% 50% 60% -20%; background: radial-gradient(circle, rgba(109, 94, 246, 0.28), transparent 62%); pointer-events: none; }
.vl .brief > * { position: relative; }
.vl .brief-h { display: flex; align-items: center; gap: 10px; }
.vl .brief-h .t { font-family: var(--ff-display); font-weight: 700; font-size: 14px; letter-spacing: 0.04em; }
.vl .brief-h .when { margin-left: auto; font-size: 11px; color: rgba(238,241,246,0.5); }
.vl .brief p { margin: 14px 0 4px; font-size: 14px; line-height: 1.6; color: rgba(238,241,246,0.86); }
.vl .brief p b { color: #fff; }
.vl .iflag { display: flex; gap: 10px; align-items: flex-start; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09); border-radius: 12px; padding: 10px 12px; font-size: 12.5px; line-height: 1.5; margin-top: 10px; color: rgba(238,241,246,0.86); }
.vl .iflag .ib { width: 8px; height: 8px; border-radius: 50%; flex: none; margin-top: 5px; }
.vl .iflag.warn .ib { background: var(--amber); }
.vl .iflag.info .ib { background: var(--sky); }
.vl .iflag.good .ib { background: var(--good); }
.vl .iflag b { color: #fff; }
.vl .snap { background: var(--surface); border: 1px solid var(--line); border-radius: 24px; padding: 24px; box-shadow: 0 12px 36px -12px rgba(0,0,0,0.08); }
.vl .snap-h { font-family: var(--ff-display); font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--soft); margin-bottom: 12px; }
.vl .snap-h2 { margin: 18px 0 10px; }
.vl .kgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 480px) { .vl .kgrid { grid-template-columns: 1fr; } }
.vl .kpi { border: 1px solid var(--line); border-radius: 14px; padding: 12px 14px; background: #F8FAFC; }
.vl .kpi .l { font-size: 11.5px; color: var(--muted); font-weight: 600; }
.vl .kpi .v { font-family: var(--ff-display); font-weight: 700; font-size: 22px; margin-top: 2px; color: var(--ink); }
.vl .kpi .s { font-size: 11px; color: var(--soft); margin-top: 2px; }
.vl .kpi.good .v { color: var(--good); }
.vl .kpi.warn .v { color: var(--amber); }
.vl .dbar { display: flex; align-items: center; gap: 10px; font-size: 12.5px; margin-bottom: 8px; }
.vl .dbar .lab { width: 100px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--muted); flex: none; }
.vl .dbar .track { flex: 1; height: 12px; background: var(--line); border-radius: 6px; overflow: hidden; min-width: 0; }
.vl .dbar .fill { display: block; height: 100%; background: var(--grad-blue); border-radius: 6px; }
.vl .dbar .fill.w82 { width: 82%; }
.vl .dbar .fill.w68 { width: 68%; }
.vl .dbar .fill.w44 { width: 44%; }
.vl .dbar .amt { width: 56px; text-align: right; font-weight: 700; font-family: var(--ff-display); font-size: 13px; flex: none; }

/* CFO Suite Grid */
.vl .suite-intro { margin-top: 64px; }
.vl .suite { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1080px; margin: 0 auto; }
@media (max-width: 900px) { .vl .suite { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .vl .suite { grid-template-columns: 1fr; } }
.vl .suite-card { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 26px; box-shadow: 0 12px 36px -12px rgba(0,0,0,0.06); transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s; }
.vl .suite-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px -12px rgba(109, 94, 246, 0.12); border-color: rgba(109, 94, 246, 0.2); }
.vl .suite-card .ic { width: 46px; height: 46px; border-radius: 14px; background: var(--primary-50); display: grid; place-items: center; font-size: 22px; margin-bottom: 16px; }
.vl .suite-card h3 { font-size: 17px; margin: 0 0 8px; color: var(--ink); }
.vl .suite-card p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--muted); }
.vl .suite-cta { text-align: center; margin-top: 32px; }
.vl .suite-cta .trust { justify-content: center; margin-top: 12px; font-size: 12.5px; }

/* Final CTA */
.vl .final { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--ink), #1C1F2E); color: #fff; border-radius: 32px; padding: 56px 48px; box-shadow: 0 30px 80px -20px rgba(14,17,22,0.6); }
.vl .final::before { content: ""; position: absolute; inset: -40% 30% 40% -20%; background: radial-gradient(circle, rgba(109, 94, 246, 0.4), transparent 60%); pointer-events: none; }
.vl .final-grid { position: relative; display: grid; grid-template-columns: 1.25fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 860px) { .vl .final { padding: 48px 32px; } .vl .final-grid { grid-template-columns: 1fr; text-align: center; } }
.vl .final h2 { font-size: clamp(32px, 4vw, 48px); margin: 0 0 16px; line-height: 1.1; color: #fff; letter-spacing: -0.02em; }
.vl .final p { margin: 0 0 28px; max-width: 44ch; color: rgba(255,255,255,0.8); font-size: 18px; line-height: 1.6; }
@media (max-width: 860px) { .vl .final p { margin-left: auto; margin-right: auto; } }
.vl .final .cta-btns { display: flex; gap: 16px; flex-wrap: wrap; }
@media (max-width: 860px) { .vl .final .cta-btns { justify-content: center; } }
.vl .final .btn.w { background: #fff; color: var(--ink); border-radius: 12px; padding: 14px 28px; font-size: 16px; }
.vl .final .btn.w:hover { background: #f0f0f0; }
.vl .final .btn.ghost { border-color: rgba(255,255,255,0.2); color: #fff; border-radius: 12px; padding: 14px 28px; font-size: 16px; }
.vl .final .btn.ghost:hover { background: rgba(255,255,255,0.1); }
.vl .final .note { position: relative; color: rgba(255,255,255,0.6); font-size: 13px; margin: 32px auto 0; max-width: 72ch; line-height: 1.5; text-align: center; }

.vl .ticks { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.vl .ticks li { display: flex; align-items: center; gap: 12px; font-weight: 500; font-size: 16px; color: rgba(255,255,255,0.9); }
@media (max-width: 860px) { .vl .ticks li { justify-content: center; } }
.vl .ticks .c { width: 28px; height: 28px; border-radius: 50%; background: rgba(109, 94, 246, 0.3); color: var(--sky); display: grid; place-items: center; font-size: 14px; flex: none; font-weight: 800; }

/* Footer */
.vl footer { border-top: 1px solid var(--line); padding: 28px 0; color: var(--soft); font-size: 14px; margin-top: 40px; }
.vl footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; align-items: center; }
.vl footer a { color: var(--muted); font-weight: 500; }
.vl footer a:hover { color: var(--ink); }

/* ══════════════════════════════════════════════════════════════
   DARK HERO
══════════════════════════════════════════════════════════════ */
.vl .hero.hero-dark {
  background: linear-gradient(160deg, #060C1A 0%, #0C1628 65%, #111827 100%);
  position: relative;
  overflow: hidden;
}
.vl .hero.hero-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 70% 40%, rgba(109,94,246,0.22) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 20% 80%, rgba(34,211,238,0.1) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.vl .hero.hero-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.032) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 0;
}
.vl .hero.hero-dark .wrap { position: relative; z-index: 1; }

/* Text colours in dark hero */
.vl .hero.hero-dark h1.title { color: #FFFFFF; }
.vl .hero.hero-dark h1.title .g {
  background: linear-gradient(110deg, #C4B5FD 0%, #22D3EE 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.vl .hero.hero-dark .sub    { color: rgba(255,255,255,0.62); }
.vl .hero.hero-dark .trust  { color: rgba(255,255,255,0.38); }
.vl .hero.hero-dark .pill {
  background: rgba(109,94,246,0.15);
  border-color: rgba(167,139,250,0.45);
  color: #C4B5FD;
  box-shadow: 0 0 24px rgba(109,94,246,0.18), inset 0 0 12px rgba(109,94,246,0.05);
}
.vl .hero.hero-dark .pill .d { background: #C4B5FD; animation: pulse 2.2s infinite; }
.vl .hero.hero-dark .cta .btn.lg.ghost {
  border-color: rgba(255,255,255,0.2);
  color: #fff;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
}
.vl .hero.hero-dark .cta .btn.lg.ghost:hover { background: rgba(255,255,255,0.12); }

/* Stage (demo widget) on dark background — lift the glow */
.vl .hero.hero-dark .hero-visual::after {
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(109,94,246,0.4), rgba(34,211,238,0.15), transparent 70%);
  opacity: 0.9;
}
.vl .hero.hero-dark .stage {
  border-color: rgba(255,255,255,0.1);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 32px 80px -12px rgba(0,0,0,0.7),
    0 0 80px rgba(109,94,246,0.18);
}

/* Floating stat chips below the demo */
.hero-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s;
}
.hero-chip:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.18); }
.hero-chip .dot { width: 7px; height: 7px; border-radius: 50%; flex: none; }
.hero-chip .dot.good { background: #34D399; box-shadow: 0 0 6px rgba(52,211,153,0.6); }
.hero-chip .dot.sky  { background: #22D3EE; box-shadow: 0 0 6px rgba(34,211,238,0.6); }
.hero-chip .dot.pu   { background: #A78BFA; box-shadow: 0 0 6px rgba(167,139,250,0.6); }

/* ══════════════════════════════════════════════════════════════
   PIPELINE SECTION
══════════════════════════════════════════════════════════════ */
.pipeline-sec {
  background: #05090F;
  padding: 72px 0 56px;
  position: relative;
  overflow: hidden;
}
.pipeline-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(109,94,246,0.1), transparent 65%);
  pointer-events: none;
}
.pl-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  position: relative;
}
.pipeline-sec .eyebrow { color: #6D5EF6; }
.pipeline-sec .h2.serif { color: #fff; }
.pipeline-sec .lead { color: rgba(255,255,255,0.6); }

.pl-svg-wrap {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.pl-svg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(109,94,246,0.12);
}

/* Live stats row below SVG */
.pl-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 1px;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  border-top: none;
}
@media (max-width: 640px) { .pl-stats { grid-template-columns: repeat(2, 1fr); } }
.pl-stat {
  background: rgba(255,255,255,0.03);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-right: 1px solid rgba(255,255,255,0.05);
  transition: background 0.25s;
}
.pl-stat:last-child { border-right: none; }
.pl-stat:hover { background: rgba(255,255,255,0.06); }
.pl-stat .n {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 24px;
  color: #fff;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.pl-stat .l {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}

/* ── Eyebrow badge ─────────────────────────────────── */
.pipeline-sec .eyebrow,
.vl .eyebrow {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* ══ ROI calculator — 4-column layout + savings highlight ══ */
.vl .roi-stats { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .vl .roi-stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px)  { .vl .roi-stats { grid-template-columns: 1fr; } }

.roi-stat-save .n { color: var(--lime) !important; }
.roi-stat-save {
  border: 1px solid rgba(163,230,53,0.25) !important;
  background: rgba(163,230,53,0.06) !important;
}

.roi-slider-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex: 1;
  min-width: 200px;
}
.roi-slider-lbl {
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
}
