:root {
  --bg: #0b0f14;
  --bg2: #0f1620;
  --card: rgba(255, 255, 255, 0.04);
  --card2: rgba(255, 255, 255, 0.06);
  --stroke: rgba(255, 255, 255, 0.10);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --muted2: rgba(255, 255, 255, 0.55);
  --accent: #5eead4; /* teal-ish */
  --accent2: #60a5fa; /* blue-ish */
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
  --radius: 18px;
  --radius2: 24px;
  --max: 1120px;
  --pad: 24px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  background: radial-gradient(1200px 700px at 15% -10%, rgba(96,165,250,0.12), transparent 60%),
              radial-gradient(900px 600px at 85% 10%, rgba(94,234,212,0.10), transparent 55%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  color: var(--text);
  line-height: 1.55;
}



/* === Seamless site background (prevents block seams / misaligned tiles) === */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(1100px 700px at 18% 8%, rgba(96,165,250,0.16), transparent 60%),
    radial-gradient(900px 600px at 82% 12%, rgba(94,234,212,0.12), transparent 62%),
    radial-gradient(1200px 900px at 50% 100%, rgba(0,0,0,0.55), rgba(0,0,0,0.86)),
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: auto, auto, auto, 64px 64px, 64px 64px;
  background-position: center, center, center, 0 0, 0 0;
  transform: translateZ(0);
}

a { color: inherit; text-decoration: none; }
a.link { color: var(--text); text-decoration: underline; text-decoration-color: rgba(94,234,212,0.55); }

.container {
  width: min(var(--max), calc(100% - 2 * var(--pad)));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: #000;
  color: #fff;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--stroke);
}
.skip-link:focus { left: 12px; z-index: 9999; }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(11, 15, 20, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.brand__mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(94,234,212,0.18), rgba(96,165,250,0.18));
  border: 1px solid rgba(255, 255, 255, 0.10);
}
.brand__name { font-size: 15px; }

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav__link {
  font-size: 14px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 10px;
}
.nav__link:hover { color: var(--text); background: rgba(255, 255, 255, 0.03); }
.nav__link.is-active { color: var(--text); background: rgba(255, 255, 255, 0.05); }

.nav-toggle {
  display: none;
  appearance: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  padding: 10px;
}
.nav-toggle__bar {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.75);
  margin: 4px 0;
  border-radius: 2px;
}

.section { padding: 72px 0; }
.section--alt { background: rgba(255, 255, 255, 0.02); border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
.section--hero { padding: 86px 0 72px; }
.section--cta { padding: 56px 0; }
.section--pagehead { padding: 76px 0 36px; }

.section__head { max-width: 760px; margin-bottom: 28px; }

.eyebrow {
  color: var(--muted2);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 10px;
}

.h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.h3 { margin: 0 0 10px; font-size: 18px; }

.lead {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 18px;
  max-width: 62ch;
}
.muted { color: var(--muted); }
.small { font-size: 13px; }

.grad {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.grid { display: grid; gap: 22px; }
.grid--hero { grid-template-columns: 1.2fr 1fr; align-items: start; }

.hero-card {
  border-radius: var(--radius2);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: var(--shadow);
  padding: 18px;
  overflow: hidden;
}
.hero-card__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.kpi {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  background: rgba(0,0,0,0.14);
  padding: 14px;
}
.kpi__label { color: var(--muted2); font-size: 12px; margin-bottom: 6px; }
.kpi__value { font-size: 16px; font-weight: 700; }

.hero-card__mid { margin: 14px 0; padding: 14px; border-radius: 16px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); }
.mini-chart { display: flex; align-items: flex-end; gap: 8px; height: 92px; margin-bottom: 12px; }
.mini-chart__bar {
  width: 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(94,234,212,0.85), rgba(96,165,250,0.75));
  opacity: 0.95;
}

.hero-card__bottom { padding: 14px; border-radius: 16px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); }

.checklist { display: grid; gap: 10px; }
.checklist__item {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
}
.checklist__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(94,234,212,0.9), rgba(96,165,250,0.9));
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.trust-pill {
  font-size: 13px;
  color: var(--muted);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 8px 10px;
  border-radius: 999px;
}

.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin: 18px 0 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 650;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.08s ease, background 0.15s ease, border-color 0.15s ease;
  user-select: none;
}
.btn:active { transform: translateY(1px); }
.btn--sm { padding: 10px 12px; border-radius: 12px; font-size: 13px; }

.btn--primary {
  background: linear-gradient(135deg, rgba(94,234,212,0.95), rgba(96,165,250,0.90));
  color: #071018;
  border-color: rgba(255,255,255,0.10);
}
.btn--primary:hover { filter: brightness(1.03); }

.btn--ghost {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.10);
  color: var(--text);
}
.btn--ghost:hover { background: rgba(255,255,255,0.05); }

.cards { display: grid; gap: 16px; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  padding: 18px;
}
.card__cta { margin-top: 14px; }

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: start;
}

.list { display: grid; gap: 12px; }
.list__item {
  padding: 14px;
  border-radius: 16px;
  background: rgba(0,0,0,0.16);
  border: 1px solid rgba(255,255,255,0.08);
}
.list__title { font-weight: 700; margin-bottom: 4px; }
.list__desc { color: var(--muted); }

.steps { display: grid; gap: 12px; }
.step {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}
.step__num {
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  font-weight: 800;
}
.step__title { font-weight: 800; margin-bottom: 4px; }
.step__body { color: var(--muted); }

.bullets {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.bullets li { margin: 8px 0; }
.bullets strong { color: rgba(255,255,255,0.88); }

.divider { height: 1px; background: rgba(255,255,255,0.07); margin: 24px 0; }

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
}
.cta__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.quote {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.15);
}
.quote p { margin: 0 0 8px; }

.form {
  max-width: 860px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius2);
  padding: 18px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field { display: grid; gap: 8px; margin-bottom: 14px; }
.field__label { font-size: 13px; color: var(--muted2); }
.field__input {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.22);
  color: var(--text);
  outline: none;
}
.field__input:focus { border-color: rgba(94,234,212,0.55); box-shadow: 0 0 0 3px rgba(94,234,212,0.10); }
.field__textarea { resize: vertical; min-height: 120px; }

.form__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 6px; }

.footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 34px 0 18px;
  background: rgba(0,0,0,0.10);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
  align-items: start;
}
.brand--footer .brand__mark { width: 34px; height: 34px; border-radius: 12px; }
.footer__right { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.footer__title { font-weight: 700; margin-bottom: 10px; color: rgba(255,255,255,0.88); }
.footer__link {
  display: block;
  color: var(--muted);
  padding: 6px 0;
}
.footer__link:hover { color: var(--text); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
}

@media (max-width: 980px) {
  .grid--hero { grid-template-columns: 1fr; }
  .cards--3 { grid-template-columns: 1fr; }
  .cards--2 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .cta { flex-direction: column; align-items: flex-start; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__right { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute;
    right: 12px;
    top: 64px;
    width: min(92vw, 360px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(10, 14, 19, 0.92);
    box-shadow: var(--shadow);
  }
  .nav.is-open { display: flex; }
  .nav__link { padding: 10px 12px; }
  .form__row { grid-template-columns: 1fr; }
  .footer__right { grid-template-columns: 1fr; }
}

/* === Scroll reveal animations === */
.reveal{
  opacity: 0;
  transform: translateY(16px) scale(0.985);
  transition: opacity 650ms ease, transform 650ms ease, filter 650ms ease;
  will-change: opacity, transform, filter;
}
.reveal.in-view{
  opacity: 1;
  transform: translateY(0) scale(1);
  
}
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity: 1; transform: none; transition: none; }
}

/* === Interactive hover & click effects === */
:where(button, [role="button"], input[type="button"], input[type="submit"], .btn, .button, .cta, .card){
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease, outline-color 180ms ease;
  will-change: transform;
}
:where(button, [role="button"], input[type="button"], input[type="submit"], .btn, .button, .cta, .card):hover{
  transform: translateY(-1px) scale(1.018);
  box-shadow: 0 0 0 1px rgba(94, 234, 212, 0.18), 0 16px 48px rgba(0,0,0,0.22);
  filter: saturate(1.08) brightness(1.04);
}
.net-hover{
  transform: translateY(-1px) scale(1.018) !important;
  box-shadow: 0 0 0 1px rgba(94, 234, 212, 0.18), 0 16px 48px rgba(0,0,0,0.22) !important;
  filter: saturate(1.08) brightness(1.04) !important;
}

/* Click highlight (applied only to the clicked element) */
.net-highlight{
  box-shadow: 0 0 0 1px rgba(94, 234, 212, 0.26), 0 14px 44px rgba(94, 234, 212, 0.10) !important;
  filter: saturate(1.10) brightness(1.06) !important;
  transition: box-shadow 220ms ease, filter 220ms ease;
}


/* Click animation (pulse + subtle ripple) */
.net-click{
  position: relative;
  overflow: hidden;
}
.net-click::after{
  content: "";
  position: absolute;
  left: var(--click-x, 50%);
  top: var(--click-y, 50%);
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%) scale(0);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(94, 234, 212, 0.32) 0%, rgba(94, 234, 212, 0.00) 70%);
  pointer-events: none;
  animation: netRipple 520ms ease-out forwards;
}
@keyframes netRipple{
  0% { transform: translate(-50%, -50%) scale(0); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(22); opacity: 0; }
}
.net-click-pulse{
  animation: netPulse 420ms ease-out;
}
@keyframes netPulse{
  0%   { transform: translateY(-1px) scale(1.018); }
  40%  { transform: translateY(-1px) scale(1.035); }
  100% { transform: translateY(-1px) scale(1.018); }
}


/* === Custom cursor dot + per-word hover highlight (no layout shift) === */
body.cursor-over-word #cursor-dot{
  background: rgba(62, 210, 186, 0.92);
  box-shadow: 0 0 0 5px rgba(94, 234, 212, 0.12);
}

/* Word wrapper */
.w{
  position: relative;
  display: inline;
  z-index: 0;
}

/* Highlight strictly inside the word box (no spread, no overlap stacking) */
.w::before{
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 0.10em; bottom: 0.10em;
  border-radius: 0.38em;
  background: rgba(94, 234, 212, 0.18);
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  transition: opacity 220ms ease;
}

.w.is-hot::before{ opacity: var(--w-alpha, 1); }

/* Preserve gradient text inside .grad when words are wrapped */
.grad .w{
  background: inherit;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}


/* === Remove default click/focus outline (no ugly green box) === */
*:focus{ outline: none !important; }
*:focus-visible{ outline: none !important; }


/* === Custom cursor dot + per-word hover (no layout shift, no overlap) === */
html.cursor-dot-enabled{ cursor: none; }
html.cursor-dot-enabled a,
html.cursor-dot-enabled button,
html.cursor-dot-enabled [role="button"],
html.cursor-dot-enabled input,
html.cursor-dot-enabled textarea,
html.cursor-dot-enabled select{ cursor: none; }

#cursor-dot{
  position: fixed;
  left: 0;
  top: 0;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(94, 234, 212, 0.85);
  box-shadow: 0 0 0 6px rgba(94, 234, 212, 0.12);
  transform: translate3d(-9999px,-9999px,0);
  z-index: 99999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 120ms ease, background-color 120ms ease, box-shadow 120ms ease;
}
html.cursor-dot-enabled.cursor-active #cursor-dot{ opacity: 1; }
html.cursor-dot-enabled.cursor-over-text #cursor-dot{
  background: rgba(64, 200, 180, 0.95);
  box-shadow: 0 0 0 7px rgba(94, 234, 212, 0.14);
}

.w{
  position: relative;
  display: inline-block; /* improves hit-testing */
  z-index: 0;
}
.w::before{
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 0.10em; bottom: 0.10em;
  border-radius: 0.40em;
  background: rgba(94, 234, 212, 0.22);
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  transition: opacity 180ms ease;
}
.w.is-hot::before{ opacity: var(--w-alpha, 1); }

/* Keep gradient text visible inside wrapped words */
.grad .w{
  background: inherit;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}


/* Override: never draw a box around clicked elements */
.net-highlight{ box-shadow: none !important; outline: none !important; }



/* === Mobile nav clickability / stacking fix === */
@media (max-width: 760px){
  .header{ z-index: 10000; }
  .nav{
    position: fixed;
    top: 72px;
    right: 12px;
    left: auto;
    z-index: 10001;
    max-height: calc(100vh - 92px);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav.is-open{ display: flex !important; }
  .mobile-nav-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease;
  }
  body.nav-open .mobile-nav-overlay{
    opacity: 1;
    pointer-events: auto;
  }
}


/* ===== Scroll pillar section ===== */
.pillar-section{ padding: 96px 0; }
.pillar-grid{
  display:grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  align-items:start;
}
.pillar-rail{
  position: relative;
  /* Ensure the rail can stretch to the full height of the flow column */
  align-self: stretch;
}
.pillar-track{
  /* Match the full height of the pillar content (all cards), not just the viewport */
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  height: auto;
  min-height: 100%;
  width: 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
  overflow:hidden;
}
.pillar-fill{
  --pillar-progress: 0;
  position:absolute;
  left:0; right:0; top:0;
  height: 100%;
  /* Fill from top -> bottom */
  transform-origin: top;
  transform: scaleY(var(--pillar-progress));
  background: linear-gradient(180deg, rgba(77,214,255,.95), rgba(120,90,255,.85));
  filter: saturate(1.1);
}
.pillar-flow{ display:flex; flex-direction:column; gap: 24px; }
.pillar-card{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.pillar-card__kicker{
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 8px;
}
.pill-row{ display:flex; flex-wrap:wrap; gap: 10px; margin: 14px 0 6px; }
.pill{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.86);
}
.pillar-split{
  margin-top: 14px;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items:start;
}
.bullets{ margin: 0; padding-left: 18px; }
.bullets li{ margin: 8px 0; color: rgba(255,255,255,.82); }
.pillar-section .mini-chart{
  border-radius: 16px;
  padding: 16px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.10);
  display:flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.pillar-section .mini-chart__title{
  font-weight: 700;
  line-height: 1.25;
}
.pillar-section .mini-bars{
  display:flex;
  align-items:flex-end;
  gap: 8px;
  height: 64px;
  margin: 0;
  width: 100%;
  overflow:hidden;
}
.pillar-section .mini-chart__note{
  line-height: 1.35;
  margin: 0;
}
.pillar-section .mini-bars span{
  width: 10px;
  border-radius: 8px;
  background: rgba(77,214,255,.9);
  box-shadow: 0 8px 30px rgba(77,214,255,.18);
  animation: miniBar 2.6s ease-in-out infinite;
}
.pillar-section .mini-bars span:nth-child(1){ height: 22px; opacity:.65; }
.pillar-section .mini-bars span:nth-child(2){ height: 30px; opacity:.72; animation-delay:.1s;}
.pillar-section .mini-bars span:nth-child(3){ height: 36px; opacity:.78; animation-delay:.2s;}
.pillar-section .mini-bars span:nth-child(4){ height: 44px; opacity:.85; animation-delay:.3s;}
.pillar-section .mini-bars span:nth-child(5){ height: 52px; opacity:.92; animation-delay:.4s;}
.pillar-section .mini-bars span:nth-child(6){ height: 58px; opacity:.96; animation-delay:.5s;}
.pillar-section .mini-bars span:nth-child(7){ height: 62px; opacity:1; animation-delay:.6s;}
@keyframes miniBar{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-4px); }
}
.stat-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  margin-top: 14px;
}
.stat{
  background: rgba(0,0,0,.20);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  padding: 14px;
}
.stat__value{ font-weight: 800; margin-top: 6px; }
.quote-card{
  margin-top: 14px;
  display:grid;
  grid-template-columns: 10px 1fr;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(0,0,0,.20);
  border: 1px solid rgba(255,255,255,.10);
}
.quote-card__bar{
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(77,214,255,.95), rgba(120,90,255,.85));
}
.quote-card__title{ font-weight: 800; margin-bottom: 2px; }

.cadence{
  margin-top: 14px;
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
}
.cadence__row{
  display:grid;
  grid-template-columns: 90px 1fr 130px;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(0,0,0,.18);
}
.cadence__row + .cadence__row{ border-top: 1px solid rgba(255,255,255,.08); }
.cadence__day{ font-weight: 800; }
.objection-grid{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}
.objection{
  background: rgba(0,0,0,.20);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  padding: 14px;
}
.objection__title{ font-weight: 800; margin-bottom: 6px; }

.kpi-grid{ margin-top: 14px; display:grid; gap: 12px; }
.kpi{
  padding: 14px;
  border-radius: 16px;
  background: rgba(0,0,0,.20);
  border: 1px solid rgba(255,255,255,.10);
}
.kpi__top{ display:flex; justify-content:space-between; gap: 12px; font-weight: 700; }
.kpi__bar{
  margin-top: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  overflow:hidden;
}
.kpi__bar i{
  display:block;
  height:100%;
  width: 70%;
  background: linear-gradient(90deg, rgba(77,214,255,.95), rgba(120,90,255,.85));
  border-radius: 999px;
}
.kpi:nth-child(2) .kpi__bar i{ width: 58%; }
.kpi:nth-child(3) .kpi__bar i{ width: 46%; }

.handoff{
  margin-top: 14px;
  display:grid;
  gap: 10px;
}
.handoff__item{ display:flex; align-items:center; gap: 10px; }
.dot{
  width: 10px; height: 10px; border-radius: 999px;
  background: rgba(77,214,255,.9);
  box-shadow: 0 10px 30px rgba(77,214,255,.22);
}
.cta-strip{
  margin-top: 18px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(77,214,255,.08);
  border: 1px solid rgba(77,214,255,.18);
}

@media (max-width: 920px){
  .pillar-grid{ grid-template-columns: 1fr; }
  .pillar-rail{ display:none; }
  .pillar-split{ grid-template-columns: 1fr; }
  .stat-grid{ grid-template-columns: 1fr; }
  .objection-grid{ grid-template-columns: 1fr; }
  .cadence__row{ grid-template-columns: 80px 1fr; }
  .cadence__why{ display:none; }
  .cta-strip{ flex-direction:column; align-items:flex-start; }
}
