/* ===========================================================
   VEXTO — Home v2 (operator funnel)
   =========================================================== */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; }

img, svg { display: block; max-width: 100%; }

::selection { background: var(--vx-signal-core); color: #fff; }

/* override tokens.css default p { text-align: justify } for body copy */
p, .lede, .t-body, .tier__pitch, .case__quote, .vector__body, .kpi__lbl,
.dom__stat-label, .form__sub, .form__legal, .hero__sub {
  text-align: left;
  hyphens: manual;
}
.shell {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
}
.shell--narrow { max-width: 1080px; }

section { position: relative; }
.section { padding-block: clamp(72px, 9vw, 132px); }
.section--tight { padding-block: clamp(56px, 7vw, 96px); }

/* surface backgrounds (no patterns, flat) */
.surface-light { background: var(--vx-warm-concrete); color: var(--vx-structural-ink); }
.surface-dark  { background: var(--vx-deep-void);    color: #F2F2EF; }
.surface-light + .surface-dark,
.surface-dark + .surface-light { border-top: 0; }

/* hairline between adjacent same-tone surfaces (rare) */
.hair { border-top: 1px solid var(--line-1); }
.surface-dark .hair { border-top-color: rgba(255,255,255,0.08); }

/* ---------- Type helpers ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--vx-dim-metadata);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--vx-signal-core);
}
.surface-dark .eyebrow { color: #888; }

.display-xxl {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 7.2vw, 116px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin: 0;
  text-wrap: balance;
}
.display-xl {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 5.2vw, 80px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0;
  text-wrap: balance;
}
.display-l {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 3.6vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
}
.h-section {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.022em;
  margin: 0;
  text-wrap: balance;
}
.h-card {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.018em;
  margin: 0;
}
.lede {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.5;
  color: var(--fg-2);
  max-width: 62ch;
  margin: 0;
}
.surface-dark .lede { color: #B8B8B5; }

.t-body { font-size: 15px; line-height: 1.55; color: var(--fg-2); margin: 0; max-width: 60ch; }
.surface-dark .t-body { color: #B0B0AD; }

.t-meta { font-size: 12px; font-weight: 500; letter-spacing: 0.02em; color: var(--vx-dim-metadata); }

.num {
  font-family: var(--font-display);
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum';
  letter-spacing: -0.025em;
  font-weight: 700;
}

/* The Pulse */
.pulse {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--vx-signal-core);
  vertical-align: middle;
}
.pulse--live {
  position: relative;
}
.pulse--live::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid var(--vx-signal-core);
  animation: pulseRing 2.4s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}
@keyframes pulseRing {
  0%   { transform: scale(0.6); opacity: 0; }
  35%  { opacity: 0.8; }
  100% { transform: scale(2.2); opacity: 0; }
}

.signal-text { color: var(--vx-signal-core); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  padding: 14px 20px;
  border-radius: var(--r-2);
  border: 1px solid transparent;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: background var(--dur-2) var(--ease-out),
              border-color var(--dur-2) var(--ease-out),
              color var(--dur-2) var(--ease-out),
              transform var(--dur-1) var(--ease-out);
  text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn .ic { width: 16px; height: 16px; stroke-width: 1.75; }

.btn--primary {
  background: var(--vx-signal-core);
  color: #fff;
  border-color: var(--vx-signal-core);
}
.btn--primary:hover { background: var(--vx-signal-hover); border-color: var(--vx-signal-hover); }

.btn--ghost {
  background: transparent;
  border-color: rgba(10,10,10,0.18);
  color: var(--vx-structural-ink);
}
.btn--ghost:hover { background: rgba(10,10,10,0.04); border-color: rgba(10,10,10,0.32); }
.surface-dark .btn--ghost {
  border-color: rgba(255,255,255,0.18);
  color: #F2F2EF;
}
.surface-dark .btn--ghost:hover {
  border-color: rgba(255,255,255,0.36);
  background: rgba(255,255,255,0.04);
}

.btn--inverse {
  background: var(--vx-warm-concrete);
  color: var(--vx-structural-ink);
}
.btn--inverse:hover { background: #fff; }

.btn--link {
  padding: 4px 0;
  background: transparent;
  color: var(--vx-signal-core);
  font-weight: 600;
  font-size: 14px;
}
.btn--link:hover { color: var(--vx-signal-hover); }
.btn--link .ic { transition: transform var(--dur-2) var(--ease-out); }
.btn--link:hover .ic { transform: translateX(3px); }

.btn--lg { padding: 16px 24px; font-size: 15px; }
.btn--sm { padding: 10px 14px; font-size: 13px; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding-block: 16px;
  transition: background var(--dur-2) var(--ease-out), border-color var(--dur-2) var(--ease-out);
  color: #F2F2EF;
}
.nav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav__logo { display: inline-flex; align-items: center; }
.nav__logo img { height: 22px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__links a {
  font-size: 13px;
  color: rgba(242,242,239,0.6);
  text-decoration: none;
  transition: color var(--dur-1) var(--ease-out);
}
.nav__links a:hover { color: #F2F2EF; }
.nav.is-scrolled {
  background: rgba(5,5,5,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav--on-light { color: var(--vx-structural-ink); }
.nav--on-light .nav__links a { color: rgba(10,10,10,0.55); }
.nav--on-light .nav__links a:hover { color: var(--vx-structural-ink); }
.nav--on-light.is-scrolled {
  background: rgba(240,240,237,0.88);
  border-bottom-color: rgba(10,10,10,0.06);
}
.nav__menu-btn {
  display: none;
  background: transparent; border: 0; cursor: pointer; padding: 6px;
  color: inherit;
}
@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__menu-btn { display: inline-flex; }
}

/* ---------- Mobile Menu Overlay ---------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  padding: 100px 32px 48px;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.is-active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu__close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: transparent;
  border: 0;
  color: #F2F2EF;
  cursor: pointer;
  padding: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}
.mobile-menu__close:hover {
  opacity: 0.8;
}
.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 20px;
}
.mobile-menu__links a {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: rgba(242, 242, 239, 0.65);
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
  letter-spacing: -0.02em;
}
.mobile-menu__links a:hover, .mobile-menu__links a:focus {
  color: #F2F2EF;
  transform: translateX(6px);
}
.mobile-menu__footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 64px;
  overflow: hidden;
  position: relative;
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; gap: 56px; }
}
.hero__copy { display: flex; flex-direction: column; gap: 24px; max-width: 720px; }
.hero__h {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(38px, 4.8vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.032em;
  margin: 0;
  text-wrap: balance;
}
.hero__h .em { color: var(--vx-warm-concrete); display: block; margin-top: 6px; font-weight: 700; }
.hero__h .em::after {
  content: '';
  display: inline-block;
  width: 0.32em;
  height: 0.32em;
  border-radius: 50%;
  background: var(--vx-signal-core);
  margin-left: 0.12em;
  vertical-align: 0.12em;
}
.hero__sub {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.5;
  color: #B8B8B5;
  max-width: 56ch;
  margin: 0;
}
.hero__cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.hero__trust {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 4px;
}
.hero__trust-item { font-size: 12px; color: #888; }
.hero__trust-item strong { color: #B8B8B5; font-weight: 500; }

/* Live data card (prueba de vida) */
.live {
  background: var(--vx-void-80);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-3);
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.live__head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 18px;
  gap: 12px;
  flex-wrap: wrap;
}
.live__label, .live__live { white-space: nowrap; }
.live__label { font-size: 11px; color: #888; letter-spacing: 0.02em; }
.live__live {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; color: #B8B8B5;
}
.live__zone {
  font-size: 12px; color: #888; margin-bottom: 6px;
  display: flex; align-items: center; gap: 6px;
  white-space: nowrap;
}
.live__zone .sep { color: #444; }
.live__giro {
  font-family: var(--font-body);
  font-size: 13px; font-weight: 500;
  color: #F2F2EF;
  margin-bottom: 18px;
}
.live__num {
  font-family: var(--font-display);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: #fff;
  margin-bottom: 8px;
  white-space: nowrap;
}
.live__num .currency { font-size: 0.5em; color: #888; margin-right: 6px; vertical-align: top; }
.live__caption { font-size: 13px; color: #888; margin-bottom: 24px; }

.live__score-row {
  display: flex; gap: 18px; align-items: center;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.live__score-meter {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}
.live__score-fill {
  height: 100%;
  background: var(--vx-signal-core);
  width: 0%;
  transition: width 1.6s var(--ease-out);
}
.live__score-num {
  font-family: var(--font-display);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: 18px;
  color: #F2F2EF;
}
.live__score-num span { color: #555; font-size: 12px; font-weight: 500; margin-left: 2px; }
.live__score-label {
  font-size: 11px; color: #888; min-width: 110px;
}

.live__tick {
  position: absolute;
  inset: auto 28px 14px;
  display: flex; justify-content: space-between;
  font-size: 10px; color: #555;
  font-variant-numeric: tabular-nums;
}

/* ---------- Score de Dominación section ---------- */
.dom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
@media (max-width: 860px) { .dom { grid-template-columns: 1fr; gap: 56px; } }

.dom__copy { display: flex; flex-direction: column; gap: 24px; }
.dom__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line-1);
}
.dom__stat-num {
  font-family: var(--font-display);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--vx-structural-ink);
}
.dom__stat-label {
  font-size: 13px;
  color: var(--fg-2);
  margin-top: 6px;
  line-height: 1.4;
}

/* Gauge */
.gauge-wrap {
  position: relative;
  width: 100%;
  max-width: 540px;
  margin-inline: auto;
}
.gauge {
  display: block;
  width: 100%;
  height: auto;
}
.gauge__track { stroke: rgba(10,10,10,0.08); }
.gauge__fill  {
  stroke: var(--vx-signal-core);
  stroke-linecap: butt;
  transition: stroke-dashoffset 2s var(--ease-out);
}
.gauge__bench {
  stroke: rgba(10,10,10,0.5);
  stroke-width: 1.5;
}
.gauge__center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 16%;
  text-align: center;
  pointer-events: none;
}
.gauge__score {
  font-family: var(--font-display);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: clamp(54px, 7vw, 84px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--vx-structural-ink);
  margin-bottom: 6px;
  position: relative;
  display: inline-block;
}
.gauge__score .of {
  color: var(--vx-dim-metadata);
  font-size: 0.28em;
  font-weight: 600;
  position: absolute;
  left: 100%;
  bottom: 0.15em;
  margin-left: 6px;
  white-space: nowrap;
}
.gauge__label {
  font-size: 13px;
  color: var(--fg-2);
  letter-spacing: 0.02em;
  max-width: 24ch;
}

.gauge-legend {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 24px;
  gap: 24px;
}
.gauge-legend__item { display: flex; flex-direction: column; gap: 4px; align-items: flex-start; }
.gauge-legend__num { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.gauge-legend__num .dot-mark { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 8px; vertical-align: middle; }
.gauge-legend__lbl { font-size: 12px; color: var(--fg-3); }

/* ---------- Ladder (3 tiers) ---------- */
.ladder {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line-1);
  border-radius: var(--r-3);
  overflow: hidden;
  background: #fff;
}
@media (max-width: 860px) { .ladder { grid-template-columns: 1fr; } }

.tier {
  display: flex;
  flex-direction: column;
  padding: 36px 32px 32px;
  border-right: 1px solid var(--line-1);
  position: relative;
  background: #fff;
}
.tier:last-child { border-right: 0; }
@media (max-width: 860px) {
  .tier { border-right: 0; border-bottom: 1px solid var(--line-1); }
  .tier:last-child { border-bottom: 0; }
}
.tier--featured {
  background: var(--vx-deep-void);
  color: #F2F2EF;
}
.tier--featured .tier__head .tier__num,
.tier--featured .tier__rule { color: rgba(242,242,239,0.45); border-color: rgba(255,255,255,0.12); }

.tier__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
.tier__num {
  font-family: var(--font-display);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: 13px;
  color: var(--vx-dim-metadata);
  letter-spacing: 0.02em;
}
.tier__badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--vx-signal-core);
  display: inline-flex; align-items: center; gap: 6px;
  white-space: nowrap;
}
.tier__badge .pulse { width: 6px; height: 6px; }

.tier__price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}
.tier__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.tier__price .currency { font-size: 0.5em; color: var(--vx-dim-metadata); margin-right: 4px; vertical-align: top; font-weight: 600; }
.tier--featured .tier__price .currency { color: rgba(242,242,239,0.5); }
.tier__price-meta { font-size: 13px; color: var(--vx-dim-metadata); white-space: nowrap; }
.tier--featured .tier__price-meta { color: rgba(242,242,239,0.55); }

.tier__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.018em;
  margin: 0 0 6px;
}
.tier__pitch {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--fg-2);
  margin: 0 0 24px;
}
.tier--featured .tier__pitch { color: rgba(242,242,239,0.72); }

.tier__rule {
  height: 1px;
  background: var(--line-1);
  margin-bottom: 20px;
}

.tier__list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}
.tier__list li {
  display: flex; gap: 12px;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--fg-1);
}
.tier--featured .tier__list li { color: rgba(242,242,239,0.92); }
.tier__list .tick {
  flex-shrink: 0;
  width: 14px; height: 14px;
  margin-top: 3px;
  color: var(--vx-signal-core);
}

.tier__cta { margin-top: auto; }
.tier__cta .btn { width: 100%; justify-content: center; }
.tier__foot {
  font-size: 11.5px;
  color: var(--vx-dim-metadata);
  margin-top: 14px;
  line-height: 1.45;
}
.tier--featured .tier__foot { color: rgba(242,242,239,0.55); }

.ladder__credit-note {
  margin-top: 16px;
  font-size: 12.5px;
  color: var(--fg-3);
  text-align: center;
}

/* ---------- Motor (condensed) ---------- */
.motor {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.4fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}
@media (max-width: 860px) { .motor { grid-template-columns: 1fr; } }

.motor__vectors {
  display: flex;
  flex-direction: column;
}
.vector {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.vector:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
.vector__num {
  font-family: var(--font-display);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: 13px;
  color: #555;
  letter-spacing: 0.02em;
  padding-top: 5px;
}
.vector__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.018em;
  margin: 0 0 6px;
  color: #F2F2EF;
}
.vector__body { font-size: 14px; line-height: 1.55; color: #888; margin: 0; max-width: 50ch; }
.vector__tag {
  font-size: 11px; font-weight: 500;
  color: #888;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 5px 10px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  align-self: center;
}

/* ---------- Casos ---------- */
.cases {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 860px) { .cases { grid-template-columns: 1fr; } }
.case {
  border: 1px solid var(--line-1);
  border-radius: var(--r-3);
  padding: 28px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--dur-2) var(--ease-out), box-shadow var(--dur-2) var(--ease-out);
}
.case:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.case__zone {
  font-size: 12px;
  color: var(--vx-dim-metadata);
  display: flex; align-items: center; gap: 8px;
}
.case__giro {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.018em;
  color: var(--vx-structural-ink);
  margin: 0;
}
.case__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line-1);
}
.case__metric-num {
  font-family: var(--font-display);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--vx-structural-ink);
}
.case__metric-num .signal { color: var(--vx-signal-core); }
.case__metric-num .dim { color: var(--vx-dim-metadata); font-size: 0.55em; margin-left: 2px; font-weight: 600; letter-spacing: 0; }
.case__metric-label {
  font-size: 11.5px;
  color: var(--fg-3);
  margin-top: 6px;
  line-height: 1.35;
}
.case__quote {
  font-size: 14px;
  line-height: 1.5;
  color: var(--fg-2);
  margin: 0;
}

.cases__sample {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px;
  border: 1px solid var(--line-1);
  border-radius: var(--r-3);
  background: #fff;
  flex-wrap: wrap;
}
.cases__sample-text { display: flex; flex-direction: column; gap: 4px; }

/* ---------- Validation grid ---------- */
.val {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
@media (max-width: 860px) { .val { grid-template-columns: 1fr; } }

.kpi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-3);
  overflow: hidden;
}
.kpi {
  background: var(--vx-deep-void);
  padding: 28px;
}
.kpi__num {
  font-family: var(--font-display);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #F2F2EF;
}
.kpi__num.signal { color: var(--vx-signal-core); }
.kpi__num .signal-dot {
  display: inline-block;
  width: 0.22em; height: 0.22em;
  border-radius: 50%;
  background: var(--vx-signal-core);
  vertical-align: 0.18em;
  margin-left: 0.08em;
}
.kpi__num .unit { font-size: 0.45em; color: #888; font-weight: 600; margin-left: 4px; }
.kpi__lbl { font-size: 12.5px; color: #888; margin-top: 10px; line-height: 1.45; max-width: 26ch; }

.giros {
  margin-top: 32px;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.giro-chip {
  font-size: 12px;
  color: #B8B8B5;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: transparent;
}
.giro-chip--off {
  color: #555;
  border-style: dashed;
}

.sources {
  display: flex; flex-wrap: wrap; gap: 24px 36px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.source {
  display: flex; flex-direction: column; gap: 2px;
}
.source__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: #F2F2EF;
  letter-spacing: -0.012em;
}
.source__what { font-size: 12px; color: #777; }

/* ---------- Final CTA + Form ---------- */
.final {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
@media (max-width: 860px) {
  .final { grid-template-columns: 1fr; }
  .form { max-width: none; justify-self: stretch; }
}

.form {
  background: #fff;
  border: 1px solid var(--line-1);
  border-radius: var(--r-3);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-2);
  min-width: 0;
  width: 100%;
  max-width: 460px;
  justify-self: end;
}
.form__head { display: flex; flex-direction: column; gap: 4px; margin-bottom: 6px; }
.form__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.018em;
  margin: 0;
}
.form__sub { font-size: 13px; color: var(--fg-2); margin: 0; }

.field { display: flex; flex-direction: column; gap: 6px; }
.field__label {
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-2);
  letter-spacing: 0.01em;
}
.field__input, .field__select {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid rgba(10,10,10,0.16);
  border-radius: var(--r-2);
  background: #fff;
  color: var(--vx-structural-ink);
  outline: none;
  transition: border-color var(--dur-1) var(--ease-out), box-shadow var(--dur-1) var(--ease-out);
  width: 100%;
  min-width: 0;
}
.field__input:focus, .field__select:focus {
  border-color: var(--vx-signal-core);
  box-shadow: 0 0 0 3px var(--vx-signal-glow);
}
.field__select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'><path d='m6 9 6 6 6-6'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 540px) { .form__row { grid-template-columns: 1fr; } }

.form__cta { display: flex; gap: 10px; margin-top: 6px; flex-wrap: wrap; }
.form__cta .btn { flex: 1 1 0; justify-content: center; min-width: 0; }
.form__cta .btn--ghost { flex: 0 0 auto; min-width: 110px; }
.form__legal { font-size: 11.5px; color: var(--fg-3); line-height: 1.45; margin: 0; }

/* ---------- Footer ---------- */
.foot {
  padding-block: 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  color: #888;
}
.foot__row {
  display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap;
}
.foot__row a { color: #B8B8B5; text-decoration: none; }
.foot__row a:hover { color: #F2F2EF; }
.foot__links { display: flex; gap: 24px; flex-wrap: wrap; }

/* ---------- Reveal (no-op now; kept as marker class) ---------- */
.reveal { opacity: 1; }

/* ---------- Utility ---------- */
.stack { display: flex; flex-direction: column; }
.row { display: flex; align-items: center; }
.gap-1 { gap: 8px; } .gap-2 { gap: 12px; } .gap-3 { gap: 16px; } .gap-4 { gap: 24px; }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 12px; } .mt-3 { margin-top: 16px; } .mt-4 { margin-top: 24px; }
.mt-6 { margin-top: 40px; } .mt-8 { margin-top: 56px; }

/* Section header (eyebrow + title + lede block) */
.sec-head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 64ch;
  margin-bottom: clamp(48px, 6vw, 72px);
}
.sec-head--center { align-items: center; text-align: center; margin-inline: auto; }

/* Big inline data callout */
.data-callout {
  font-family: var(--font-display);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.025em;
  color: var(--vx-structural-ink);
}
.surface-dark .data-callout { color: #F2F2EF; }
