/* ─────────────────────────────────────────────────────────────────
   AdPulze · Scorecard v2 — estilos
   Fuente de verdad visual: export Claude Design (reference/ + tokens
   en assets/colors_and_type.css). Mobile-first 390 → 768 → 1440.
   ───────────────────────────────────────────────────────────────── */

/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ap-font-sans);
  color: var(--ap-ink-900);
  background: #FFFFFF;
}
h1, h2, h3, p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; }
[hidden] { display: none !important; }

/* Tokens propios del flow (superficies oscuras nuevas + tier colors) */
:root {
  --sq-dark-1: #141414;
  --sq-dark-2: #17171A;
  --sq-dark-card: #232326;
  --sq-dark-border: #33333A;
  --sq-dark-hairline: #26262B;
  --sq-canvas-gate: #F5F5F3;
  --sq-tier-1: #FF4F54;
  --sq-tier-2: #FF5E26;
  --sq-tier-3: #F5A623;
  --sq-tier-4: #2DB967;
  --sq-select-tint: rgba(234, 61, 1, 0.05);
  --sq-select-border: #EA3D01;
  --sq-ease: cubic-bezier(0, 0, 0.2, 1); /* ease-out */
}

.numeric, .hero-score-num, .gate-score-num, .odometer-digits,
.hero-waste-value, .gate-waste-value, .hero-cat-num, .slider-value {
  font-variant-numeric: tabular-nums;
}

:focus-visible {
  outline: 2px solid var(--sq-select-border);
  outline-offset: 2px;
  border-radius: 4px;
}
/* Targets de foco programático (lectores de pantalla) — sin anillo visual */
.q-title:focus, .q-title:focus-visible,
.gate-form-title:focus, .gate-form-title:focus-visible,
.hero:focus, .hero:focus-visible { outline: none; }

/* ── Screens (SPA) ── */
.screen { min-height: 100dvh; display: flex; flex-direction: column; }

/* ── Componentes compartidos ── */
.btn-primary {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  width: 100%; height: 54px; border: 0; border-radius: 999px;
  background: #111111; color: #FFFFFF;
  font-size: 16px; font-weight: 600;
  transition: opacity 150ms var(--sq-ease), transform 80ms var(--sq-ease);
}
.btn-primary:active { transform: scale(0.985); }
.btn-primary[disabled] { opacity: 0.55; cursor: default; }

.btn-back {
  width: 44px; height: 44px; flex: none;
  border-radius: 999px; border: 1px solid rgba(0, 0, 0, 0.10);
  background: #FFFFFF; color: var(--ap-ink-700);
  display: flex; align-items: center; justify-content: center;
  transition: background 150ms var(--sq-ease);
}
.btn-back:hover { background: var(--ap-canvas-3); }

.chip-pending {
  display: inline-flex; align-items: center;
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.4px;
  color: #A96A00; background: rgba(245, 166, 35, 0.10);
  border: 1px dashed rgba(245, 166, 35, 0.55);
  border-radius: 999px; padding: 3px 9px;
}
.chip-pending-sm { font-size: 9px; padding: 2px 7px; }

.card-dark {
  position: relative; background: var(--sq-dark-2);
  border-radius: 22px; overflow: hidden;
}
.card-dark-glow {
  position: absolute; left: 50%; bottom: -90px;
  width: 420px; height: 210px; transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(244, 57, 0, 0.22), rgba(244, 57, 0, 0));
  filter: blur(34px);
}
.card-dark-glow.glow-green {
  background: radial-gradient(closest-side, rgba(45, 185, 103, 0.16), rgba(45, 185, 103, 0));
}

/* Barra de tiers (4 segmentos, pesos inline por JS) */
.tierbar { display: flex; gap: 3px; position: relative; }
.tierbar-seg { height: 5px; border-radius: 999px; position: relative; }
.tierbar-dot {
  position: absolute; top: -4px; width: 13px; height: 13px;
  border-radius: 999px; background: #FFFFFF; transform: translateX(-50%);
}

.hl-green { color: var(--sq-tier-4); font-weight: 700; }
.hl-red { color: var(--sq-tier-1); font-weight: 700; }
.hl-white { color: #FFFFFF; }

/* ═══ P0 · Landing = primera pregunta (export 1b) ═══ */
.screen-p0 {
  background: var(--ap-canvas);
  align-items: center;
  padding: clamp(32px, 6vh, 56px) 20px 40px;
}
.p0-logo { height: 18px; display: block; flex: none; }
.p0-main {
  /* Ancla arriba (no vertical-center): en viewports altos/anchos "margin:
     auto 0" dejaba el bloque flotando en el medio de la pantalla con la
     mitad de arriba vacía. El padding-top da el respiro fijo bajo el logo. */
  width: 100%; max-width: 540px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 18px;
  padding-top: 40px;
}
.p0-pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(0, 0, 0, 0.10); background: #FFFFFF;
  border-radius: 999px; padding: 7px 15px 7px 13px;
  font-size: 12.5px; font-weight: 600; color: var(--ap-ink-700);
  white-space: nowrap;
}
.p0-pill svg { stroke: var(--ap-ink-600); flex: none; }
.p0-h1 {
  font-size: clamp(27px, 6.4vw, 39px); line-height: 1.1;
  font-weight: 700; letter-spacing: -0.8px;
  color: var(--ap-ink-900); text-wrap: balance;
}
.p0-accent { color: var(--ap-orange-600); }
.p0-question {
  font-size: clamp(15px, 3.6vw, 18px); line-height: 1.45;
  font-weight: 500; color: var(--ap-ink-600);
}
.p0-options {
  display: flex; flex-direction: column; gap: 12px;
  width: 100%; margin-top: 8px;
}
.p0-option {
  display: flex; align-items: center; gap: 14px; width: 100%;
  background: #FFFFFF; border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 18px; padding: 16px 18px;
  cursor: pointer; text-align: left; font-family: inherit;
  transition: background 150ms ease, border-color 150ms ease;
}
.p0-option:hover { background: var(--ap-canvas-2); border-color: rgba(0, 0, 0, 0.16); }
.p0-option:active { background: var(--ap-canvas-4); }
.p0-option:focus-visible { outline: 2px solid var(--ap-orange-600); outline-offset: 2px; }
.p0-option-icon {
  width: 44px; height: 44px; flex: none; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.p0-option.yes .p0-option-icon { background: rgba(45, 185, 103, 0.10); color: var(--sq-tier-4); }
.p0-option.no .p0-option-icon { background: rgba(255, 79, 84, 0.10); color: var(--sq-tier-1); }
.p0-option-label { flex: 1; font-size: 16px; font-weight: 600; color: var(--ap-ink-900); }
.p0-option-chevron { flex: none; color: var(--ap-ink-500); }

/* ═══ Descalificación (q0 = "Todavía no") ═══ */
.screen-disqualify {
  background: var(--ap-canvas);
  align-items: center;
  padding: clamp(32px, 6vh, 56px) 20px 48px;
}
.dq-logo { height: 18px; display: block; flex: none; }
.dq-main {
  width: 100%; max-width: 560px;
  padding-top: 40px;
  display: flex; flex-direction: column; align-items: flex-start;
}
.dq-h1 {
  font-size: clamp(24px, 5.4vw, 33px); line-height: 1.15;
  font-weight: 700; letter-spacing: -0.6px;
  color: var(--ap-ink-900); text-wrap: balance;
}
.dq-h1:focus, .dq-h1:focus-visible { outline: none; }
.dq-sub {
  margin-top: 14px; font-size: clamp(15px, 3.4vw, 17px); line-height: 1.5;
  font-weight: 500; color: var(--ap-ink-700);
}
.dq-body { margin-top: 18px; display: flex; flex-direction: column; gap: 12px; }
.dq-body p { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--ap-ink-600); }
.dq-h2 {
  margin-top: 26px; font-size: 18px; font-weight: 700;
  letter-spacing: -0.3px; color: var(--ap-ink-900);
}
.dq-lead { margin-top: 8px; font-size: 14.5px; line-height: 1.55; color: var(--ap-ink-600); }
.dq-list {
  margin: 14px 0 0; padding: 0; list-style: none;
  display: flex; flex-direction: column; gap: 10px; width: 100%;
}
.dq-list li {
  position: relative; padding-left: 26px;
  font-size: 14.5px; line-height: 1.5; color: var(--ap-ink-700);
}
.dq-list li::before {
  content: ""; position: absolute; left: 4px; top: 8px;
  width: 6px; height: 6px; border-radius: 999px; background: var(--ap-orange-600);
}
.dq-closing { margin-top: 22px; font-size: 14.5px; line-height: 1.55; color: var(--ap-ink-600); }
.dq-cta {
  margin-top: 26px; height: auto; min-height: 54px; padding: 12px 22px;
  text-decoration: none; line-height: 1.3;
}
.dq-cta .btn-primary, .dq-cta span { text-align: center; }
.dq-micro { margin-top: 12px; align-self: center; font-size: 12px; color: var(--ap-ink-500); text-align: center; }

/* ═══ Pregunta ═══ */
.screen-question { background: #FFFFFF; }
.q-header { display: flex; align-items: center; gap: 12px; padding: 14px 16px 0; }
.q-header-mid { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 7px; }
.q-logo { height: 11px; opacity: 0.9; }
.q-progress { width: 100%; height: 3px; border-radius: 999px; background: var(--ap-border-softer); overflow: hidden; }
.q-progress-fill {
  height: 100%; border-radius: 999px; background: var(--ap-orange);
  transition: width 240ms var(--sq-ease);
}
.q-header-spacer { width: 44px; flex: none; }

.q-slide { flex: 1; display: flex; flex-direction: column; overflow-x: hidden; }
.q-content { display: flex; flex-direction: column; }
/* Info pages: el Continuar sube al ras del texto en vez de pinnearse al fondo. */
.screen-question.is-info .q-slide { flex: 0 1 auto; }
.screen-question.is-info .q-footer { margin-top: 8px; }
.q-content.slide-out { animation: qSlideOut 240ms var(--sq-ease) forwards; }
.q-content.slide-in { animation: qSlideIn 240ms var(--sq-ease); }
.q-content.slide-back-out { animation: qSlideBackOut 240ms var(--sq-ease) forwards; }
.q-content.slide-back-in { animation: qSlideBackIn 240ms var(--sq-ease); }
@keyframes qSlideOut { to { transform: translateX(-28px); opacity: 0; } }
@keyframes qSlideIn { from { transform: translateX(28px); opacity: 0; } }
@keyframes qSlideBackOut { to { transform: translateX(28px); opacity: 0; } }
@keyframes qSlideBackIn { from { transform: translateX(-28px); opacity: 0; } }

.q-eyebrow {
  padding: 30px 22px 0;
  font-size: 10px; font-weight: 700; letter-spacing: 1.1px;
  text-transform: uppercase; color: var(--ap-ink-400);
}
.q-eyebrow .q-eyebrow-cat { color: var(--sq-select-border); }
.q-title {
  padding: 0 22px; margin-top: 10px;
  font-size: 25px; line-height: 1.18; font-weight: 700;
  letter-spacing: -0.7px; color: var(--ap-ink-800);
}
/* Páginas info: sin eyebrow, el título asume el respiro superior */
.q-content > .q-title:first-child { padding-top: 30px; }
.q-sub { padding: 0 22px; margin-top: 8px; font-size: 14.5px; line-height: 1.45; color: var(--ap-ink-500); }

.q-options { display: flex; flex-direction: column; gap: 10px; padding: 22px 22px 12px; }

/* Fila de selección única */
.opt-row {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  width: 100%; min-height: 56px; text-align: left;
  border-radius: 16px; background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.10);
  padding: 17px 16px;
  font-size: 15px; font-weight: 600; color: var(--ap-ink-800);
  transition: background 150ms var(--sq-ease), border-color 150ms var(--sq-ease);
}
.opt-row:hover { background: var(--ap-canvas-3); }
.opt-check {
  width: 22px; height: 22px; flex: none; border-radius: 999px;
  background: var(--ap-orange); color: #FFFFFF;
  display: none; align-items: center; justify-content: center;
}
.opt-row.selected, .opt-card.selected {
  background: var(--sq-select-tint);
  border-color: transparent;
  box-shadow: inset 0 0 0 1.5px var(--sq-select-border);
}
.opt-row.selected { font-weight: 700; }
.opt-row.selected .opt-check { display: flex; }

/* Cards de funnel (Q1) */
.opt-card {
  position: relative; width: 100%; text-align: left;
  border-radius: 16px; background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.10); padding: 15px 16px;
  transition: background 150ms var(--sq-ease);
}
.opt-card:hover { background: var(--ap-canvas-3); }
.opt-card .opt-check { position: absolute; top: 13px; right: 13px; }
.opt-card.selected .opt-check { display: flex; }
/* Pasos del funnel: icono + palabra juntos, chevron entre pasos */
.opt-card-steps {
  display: flex; align-items: center; gap: 5px 4px; flex-wrap: wrap;
  padding-right: 26px;
}
.opt-card-step { display: inline-flex; align-items: center; gap: 6px; }
.opt-card-icon {
  width: 26px; height: 26px; flex: none; border-radius: 8px;
  background: var(--ap-canvas-3); border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--ap-ink-600);
}
.opt-card-step-text {
  font-size: 13px; font-weight: 600; line-height: 1.35; color: var(--ap-ink-800);
}
.opt-card.selected .opt-card-icon {
  background: #FFFFFF; border-color: rgba(234, 61, 1, 0.25); color: var(--sq-select-border);
}
.opt-card-chevron { color: var(--ap-ink-400); flex: none; }
.opt-card.selected .opt-card-chevron { color: #D4915F; }

/* Mobile: pregunta de funnel como stepper vertical (cada paso en su fila, unido
   por un riel corto). Evita que labels largos ("Webinar / Entrenamiento",
   "Perfil de Instagram") se partan en 2 líneas. Desktop (≥768px) queda con el
   layout horizontal actual — mismo markup, el chevron se restila como conector. */
@media (max-width: 767px) {
  .opt-card-steps { flex-direction: column; align-items: flex-start; flex-wrap: nowrap; gap: 0; }
  .opt-card-step { width: 100%; gap: 12px; }
  .opt-card-step-text { font-size: 14.5px; }
  .opt-card-chevron {
    width: 2px; height: 9px; margin: 3px 0 3px 12px;
    border-radius: 2px; background: #E4E4E8;
  }
  .opt-card-chevron svg { display: none; }
  .opt-card.selected .opt-card-chevron { background: rgba(234, 61, 1, 0.28); }
}

/* Multi-select (Q9) */
.opt-multi {
  display: flex; align-items: center; gap: 12px;
  width: 100%; min-height: 56px; text-align: left;
  border-radius: 14px; background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.10); padding: 13px 14px;
  font-size: 14.5px; font-weight: 600; color: var(--ap-ink-800);
  transition: background 150ms var(--sq-ease);
}
.opt-multi:hover { background: var(--ap-canvas-3); }
.opt-multi .opt-box {
  width: 22px; height: 22px; flex: none; border-radius: 7px;
  border: 1.5px solid var(--ap-ink-300); color: #FFFFFF;
  display: flex; align-items: center; justify-content: center;
}
.opt-multi.selected {
  background: var(--sq-select-tint); border-color: transparent;
  box-shadow: inset 0 0 0 1.5px var(--sq-select-border);
}
.opt-multi.selected .opt-box { background: var(--ap-orange); border-color: var(--ap-orange); }
.opt-multi .opt-sublabel { font-weight: 400; color: var(--ap-ink-500); }
/* "No estoy seguro" = misma fila que el resto (checkbox cuadrado), solo con
   un respiro extra arriba. Sigue deseleccionando las demás por lógica. */
.opt-multi.opt-exclusive { margin-top: 6px; }
.q-multi-note { padding: 2px 24px 0; font-size: 11px; color: var(--ap-ink-400); }

/* Chips de rango (Q11/Q12) */
.q-options-chips { display: flex; flex-wrap: wrap; gap: 9px; padding: 22px 22px 12px; }
.opt-chip {
  height: 48px; display: flex; align-items: center; gap: 8px; padding: 0 18px;
  border-radius: 999px; background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 14.5px; font-weight: 600; color: var(--ap-ink-700);
  transition: background 150ms var(--sq-ease);
}
.opt-chip:hover { background: var(--ap-canvas-3); }
.opt-chip .opt-chip-check { display: none; }
.opt-chip.selected {
  background: var(--sq-select-tint); border-color: transparent;
  box-shadow: inset 0 0 0 1.5px var(--sq-select-border);
  color: var(--sq-select-border); font-weight: 700;
}
.opt-chip.selected .opt-chip-check { display: block; }

/* Slider 1–10 */
.q-slider-wrap { display: flex; flex-direction: column; align-items: center; padding: 44px 30px 0; }
.slider-value {
  font-size: 64px; font-weight: 700; letter-spacing: -2px;
  color: var(--sq-select-border); line-height: 1;
}
.slider-input-wrap { width: 100%; margin-top: 34px; }
/* Alto 44px = target táctil mínimo; el visual (track 6px + thumb 28px) queda centrado */
input[type="range"].slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 44px; margin: 0; background: transparent;
}
input[type="range"].slider::-webkit-slider-runnable-track {
  height: 6px; border-radius: 999px;
  background: linear-gradient(to right, var(--ap-orange) var(--slider-fill, 50%), var(--ap-border-softer) var(--slider-fill, 50%));
}
input[type="range"].slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 28px; height: 28px; margin-top: -11px;
  border-radius: 999px; background: #FFFFFF;
  border: 2px solid var(--ap-orange); box-shadow: var(--ap-shadow-sm);
}
input[type="range"].slider::-moz-range-track {
  height: 6px; border-radius: 999px; background: var(--ap-border-softer);
}
input[type="range"].slider::-moz-range-progress {
  height: 6px; border-radius: 999px; background: var(--ap-orange);
}
input[type="range"].slider::-moz-range-thumb {
  width: 24px; height: 24px; border-radius: 999px;
  background: #FFFFFF; border: 2px solid var(--ap-orange); box-shadow: var(--ap-shadow-sm);
}
.slider-labels { width: 100%; display: flex; justify-content: space-between; margin-top: 10px; }
.slider-labels span { font-size: 12px; font-weight: 600; color: var(--ap-ink-400); }

/* Chip hot lead (Q13) */
.hot-wrap { padding: 26px 22px 0; }
.hot-chip {
  width: 100%; height: 50px; border-radius: 999px;
  background: #FFFFFF; border: 1px solid rgba(0, 0, 0, 0.12);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 14.5px; font-weight: 700; color: var(--ap-ink-600);
  transition: background 150ms var(--sq-ease), color 150ms var(--sq-ease);
}
.hot-chip .hot-check {
  width: 20px; height: 20px; border-radius: 999px;
  background: var(--ap-orange); color: #FFFFFF;
  display: none; align-items: center; justify-content: center;
}
.hot-chip.active {
  background: var(--sq-select-tint); border-color: transparent;
  box-shadow: inset 0 0 0 1.5px var(--sq-select-border);
  color: var(--sq-select-border);
}
.hot-chip.active .hot-check { display: flex; }

.q-hint { display: flex; align-items: center; gap: 8px; margin-top: 6px; justify-content: center; padding: 0 22px; }
.q-hint-dot {
  width: 14px; height: 14px; border-radius: 999px;
  background: rgba(234, 61, 1, 0.10);
  display: flex; align-items: center; justify-content: center;
}
.q-hint-dot::after { content: ""; width: 5px; height: 5px; border-radius: 999px; background: var(--sq-select-border); }
.q-hint span { font-size: 11.5px; color: var(--ap-ink-500); }

.q-footer { padding: 14px 22px 26px; }

/* ═══ P6 · Analizando ═══ */
.screen-analyzing {
  background: var(--sq-dark-1);
  align-items: center; position: relative; overflow: hidden;
}
.an-glow {
  position: absolute; left: 50%; top: 40%;
  width: 340px; height: 140px;
  transform: translate(-50%, -50%) rotate(-18deg);
  background: radial-gradient(closest-side, rgba(244, 57, 0, 0.18), rgba(244, 57, 0, 0));
  filter: blur(34px);
}
.an-mark {
  margin-top: max(120px, 18dvh); position: relative;
  width: 84px; height: 84px;
  display: flex; align-items: center; justify-content: center;
}
.an-ring { position: absolute; inset: 0; border-radius: 999px; }
.an-ring-1 { border: 1.5px solid rgba(255, 94, 38, 0.5); animation: apPulse 1.8s ease-out infinite; }
.an-ring-2 { border: 1.5px solid rgba(255, 94, 38, 0.35); animation: apPulse 1.8s ease-out 0.6s infinite; }
@keyframes apPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}
.an-chips { display: flex; align-items: center; gap: 5px; margin-top: 34px; position: relative; }
.an-chip { width: 44px; height: 26px; border-radius: 8px; background: var(--sq-dark-card); border: 1px solid var(--sq-dark-border); }
.an-chip-hot {
  background: rgba(244, 57, 0, 0.16);
  border-color: rgba(255, 94, 38, 0.65);
  box-shadow: 0 0 18px rgba(244, 57, 0, 0.35);
}
.an-chip-dash { background: transparent; border: 1px dashed #3A3A42; }

.an-steps { display: flex; flex-direction: column; gap: 14px; margin-top: 34px; width: 300px; position: relative; }
.an-step { display: flex; align-items: center; gap: 10px; }
.an-step-icon {
  width: 18px; height: 18px; flex: none; border-radius: 999px;
  border: 1.5px solid #2E2E34;
  display: flex; align-items: center; justify-content: center;
}
.an-step span { font-size: 13.5px; color: #4A4A55; transition: color 150ms var(--sq-ease); }
.an-step.active .an-step-icon {
  border-color: rgba(255, 94, 38, 0.6); border-top-color: var(--sq-tier-2);
  animation: anSpin 0.9s linear infinite;
}
.an-step.active span { font-weight: 600; color: #FFFFFF; }
.an-step.active .an-dots { animation: apDots 1.2s infinite; }
.an-step.done .an-step-icon { border: 0; background: rgba(255, 94, 38, 0.14); color: var(--sq-tier-2); }
.an-step.done span { color: #6E6E7A; }
@keyframes anSpin { to { transform: rotate(360deg); } }
@keyframes apDots { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }

.an-reframe {
  margin-top: 34px; width: 300px; position: relative; text-align: center;
  font-size: 15px; line-height: 1.55; font-weight: 500; color: #D9D9E0;
  opacity: 0; transform: translateY(6px);
  transition: opacity 400ms var(--sq-ease), transform 400ms var(--sq-ease);
}
.an-reframe.visible { opacity: 1; transform: none; }

.an-odometer {
  margin-top: auto; padding-bottom: 90px; position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.an-odometer-label {
  font-size: 10px; font-weight: 700; letter-spacing: 1.1px;
  text-transform: uppercase; color: #4A4A55;
}
.an-odometer-value {
  font-size: 34px; font-weight: 700; letter-spacing: -0.5px;
  color: #5A3A3C; display: flex; align-items: baseline; gap: 6px;
}
.an-odometer .odometer-digits { filter: blur(2px); min-width: 3ch; }

/* ═══ P-GATE ═══ */
.screen-gate { background: var(--sq-canvas-gate); }
.gate-logo { display: flex; justify-content: center; padding: 18px 0 0; }
.gate-logo img { height: 12px; }

.gate-scorecard { margin: 14px 18px 0; padding: 22px 20px; }
.gate-eyebrow {
  position: relative; text-align: center;
  font-size: 10px; font-weight: 700; letter-spacing: 1.1px;
  text-transform: uppercase; color: #6E6E7A;
}
.gate-score { position: relative; display: flex; align-items: baseline; justify-content: center; gap: 6px; margin-top: 8px; }
.gate-score-num { font-size: 74px; font-weight: 700; letter-spacing: -3px; line-height: 1; color: var(--sq-tier-2); }
.gate-score-suffix { font-size: 17px; font-weight: 600; color: #6E6E7A; }
.gate-scorecard .tierbar { position: relative; margin-top: 16px; }

.gate-locked-tier { position: relative; display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 18px; }
.gate-locked-tier .locked-blur { font-size: 15px; font-weight: 700; color: #FFFFFF; }
.gate-lock { color: #8A8A96; flex: none; }
.locked-blur { filter: blur(6px); user-select: none; pointer-events: none; }
.gate-locked-waste { position: relative; display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 10px; }
.gate-waste-label {
  font-size: 9.5px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: #6E6E7A;
}
.gate-waste-value { font-size: 16px; font-weight: 700; color: var(--sq-tier-1); filter: blur(5px); }

.gate-peek { position: relative; margin-top: 16px; height: 74px; overflow: hidden; }
.gate-peek-card {
  position: absolute; height: 60px;
  background: var(--sq-dark-card); border: 1px solid var(--sq-dark-border);
  border-radius: 12px; padding: 10px 12px;
}
.gate-peek-1 { inset: 0 18px auto; filter: blur(3px); opacity: 0.8; }
.gate-peek-2 { inset: 14px 34px auto; filter: blur(4px); opacity: 0.55; }
.gate-peek-pilldeco { display: block; width: 52px; height: 12px; border-radius: 999px; background: #3A3A42; }
.gate-peek-line { display: block; width: 70%; height: 8px; border-radius: 4px; background: #2E2E34; margin-top: 9px; }
.gate-peek-pill {
  position: absolute; left: 50%; top: 26px; transform: translateX(-50%);
  display: flex; align-items: center; gap: 6px; white-space: nowrap;
  background: rgba(23, 23, 26, 0.85); border: 1px solid var(--sq-dark-border);
  border-radius: 999px; padding: 6px 12px; color: #C9C9D2;
}
.gate-peek-pill span { font-size: 10.5px; font-weight: 600; }

.gate-formcard {
  margin: 14px 18px 0;
  background: #FFFFFF; border: 1px solid var(--ap-border);
  border-radius: 20px; padding: 20px 18px;
}
.gate-form-title { font-size: 16.5px; font-weight: 700; letter-spacing: -0.3px; color: var(--ap-ink-900); }
#gate-form { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.field { display: flex; flex-direction: column; }
.field-label { font-size: 11px; font-weight: 600; color: var(--ap-ink-500); margin-bottom: 5px; }
.field-input {
  height: 48px; width: 100%;
  border: 1px solid var(--ap-border-strong); border-radius: 12px;
  padding: 0 14px; font-size: 14px; font-family: inherit;
  color: var(--ap-ink-900); background: #FFFFFF;
}
.field-input::placeholder { color: var(--ap-ink-400); }
.field-input:focus { border-color: var(--sq-select-border); } /* teclado además recibe el anillo global :focus-visible */
.field-input.invalid { border-color: var(--sq-tier-1); }
.field-error { margin-top: 5px; font-size: 11px; color: var(--sq-tier-1); }
.field-helper { margin-top: 5px; font-size: 11px; color: var(--ap-ink-500); }
.phone-row { display: flex; gap: 8px; }
.phone-cc {
  flex: none; width: auto; padding: 0 12px;
  font-size: 14px; font-weight: 600; color: var(--ap-ink-700);
  background: var(--ap-canvas-2);
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%238A8A9E' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  padding-right: 30px;
}
.phone-num { flex: 1; min-width: 0; }
.hp-wrap { position: absolute; left: -9999px; top: -9999px; height: 1px; width: 1px; overflow: hidden; }
#btn-unlock { margin-top: 4px; font-size: 15.5px; }
#btn-unlock.loading { opacity: 0.7; pointer-events: none; }
#btn-unlock.loading svg { display: none; }
.gate-trust {
  margin-top: 10px; display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 4px; font-size: 11px; color: var(--ap-ink-500); text-align: center;
}
.gate-footer { text-align: center; padding: 14px 22px 20px; font-size: 11px; color: var(--ap-ink-400); }

/* ═══ P7 · Resultados ═══ */
.screen-results { background: #FFFFFF; }
.hero-wrap { padding: 18px 18px 0; }
/* Header del reporte (solo resultados): logo color + eyebrow, sobre el canvas claro */
.results-header { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 0 2px 12px; }
.results-header-logo { height: 14px; display: block; flex: none; }
.hero { padding: 20px; }
.hero-eyebrow {
  font-size: 9px; font-weight: 700; letter-spacing: 1.1px;
  text-transform: uppercase; color: #6E6E7A;
}
.hero-scorerow { position: relative; display: flex; align-items: center; gap: 18px; }
.hero-scorecol { flex: none; }
.hero-score-eyebrow {
  font-size: 9.5px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: #6E6E7A;
}
.hero-score { display: flex; align-items: baseline; gap: 5px; margin-top: 4px; }
.hero-score-num { font-size: 62px; font-weight: 700; letter-spacing: -2.4px; line-height: 1; color: var(--sq-tier-2); }
.hero-score-suffix { font-size: 15px; font-weight: 600; color: #6E6E7A; }
.hero-tiercol { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 9px; }
.tier-chip {
  display: inline-flex; align-self: flex-start; align-items: center;
  background: var(--ap-orange); border-radius: 999px; padding: 6px 12px;
  font-size: 12px; font-weight: 700; color: #FFFFFF; white-space: nowrap;
  max-width: 100%; line-height: 1.3;
}
/* En viewports muy angostos el nombre del tier envuelve en vez de cortarse */
@media (max-width: 400px) {
  .tier-chip { white-space: normal; }
}
.tier-desc { font-size: 9.5px; color: #6E6E7A; line-height: 1.4; }

.hero-waste {
  position: relative; display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--sq-dark-hairline);
}
.hero-waste-label {
  font-size: 9.5px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: #6E6E7A; flex: none;
}
.hero-waste-num { display: inline-flex; align-items: baseline; gap: 4px; white-space: nowrap; }
.hero-waste-value {
  font-size: 24px; font-weight: 700; letter-spacing: -0.8px;
  color: var(--sq-tier-1); line-height: 1; white-space: nowrap;
}
.hero-waste-unit { font-size: 12px; font-weight: 500; color: var(--sq-tier-1); opacity: 0.75; }
.hero-waste-note { flex-basis: 100%; margin-top: 4px; font-size: 11px; line-height: 1.5; color: #8A8A96; }

.hero-cats { position: relative; display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.hero-cat { display: flex; align-items: center; gap: 10px; }
.hero-cat-label {
  width: 74px; flex: none;
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.8px;
  text-transform: uppercase; color: #8A8A96;
}
.hero-cat-track { display: block; flex: 1; height: 5px; border-radius: 999px; background: var(--sq-dark-hairline); overflow: hidden; }
.hero-cat-fill { display: block; height: 100%; border-radius: 999px; background: var(--sq-tier-2); transition: width 600ms var(--sq-ease); }
.hero-cat-num { width: 26px; flex: none; text-align: right; font-size: 11px; font-weight: 700; color: #D9D9E0; }

/* TL;DR de jerarquía bajo el score (Fase 1.1) */
.hero-tldr { position: relative; margin-top: 14px; }
.hero-tldr-causal { margin: 0; font-size: 13px; line-height: 1.5; font-weight: 600; color: #D9D9E0; }
.hero-tldr-list {
  margin: 10px 0 0; padding: 0; list-style: none; counter-reset: tldr;
  display: flex; flex-direction: column; gap: 7px;
}
.hero-tldr-list li {
  counter-increment: tldr; position: relative; padding-left: 26px;
  font-size: 12.5px; line-height: 1.5; color: #A8A8B8;
}
.hero-tldr-list li::before {
  content: counter(tldr); position: absolute; left: 0; top: 1px;
  width: 17px; height: 17px; border-radius: 999px;
  background: var(--ap-orange); color: #FFFFFF;
  font-size: 10px; font-weight: 700; line-height: 17px; text-align: center;
}
.hero-tldr-close { margin: 10px 0 0; font-size: 12px; color: #6E6E7A; }

/* Reveal del gap Q5 (precisión autopercibida) vs Visibilidad real */
.hero-reveal { margin: 12px 0 0; font-size: 12.5px; line-height: 1.55; color: #C9C9D2; text-wrap: pretty; }

/* Sección de atribución "Hasta dónde ve cada plataforma" (dentro de la card dark del hero) */
.hero-attr {
  position: relative; margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--sq-dark-hairline);
}
.attr-title { font-size: 13px; font-weight: 700; color: #FFFFFF; letter-spacing: -0.2px; margin-bottom: 6px; }
.attr-intro { margin: 0 0 16px; font-size: 12px; line-height: 1.5; color: #9A9AA6; text-wrap: pretty; }

/* Label sobre la barra Meta, con caret al punto de corte (borde derecho del segmento azul) */
.attr-metalabel { display: flex; align-items: flex-end; margin-bottom: 5px; }
.attr-metalabel-track { flex: 1; }
.attr-metalabel-inner { position: relative; display: flex; justify-content: flex-end; padding-bottom: 6px; }
.attr-metalabel-text { font-size: 8.5px; font-weight: 700; letter-spacing: 0.3px; color: #C4C4CF; white-space: nowrap; }
.attr-caret {
  position: absolute; right: 0; bottom: 0; transform: translateX(50%);
  width: 0; height: 0;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 5px solid #C4C4CF;
}

.attr-bar {
  display: flex; align-items: center; height: 24px;
  border-radius: 999px; background: var(--sq-dark-hairline); overflow: hidden;
}
.attr-bar-ap { margin-top: 0; }
.attr-cap {
  width: 62px; flex: none; align-self: stretch;
  display: flex; align-items: center; justify-content: center;
}
.attr-cap-meta { background: #0866FF; }
.attr-cap-ap { background: var(--ap-orange); }
.attr-meta-logo { height: 9px; display: block; }
.attr-cap-ap svg { height: 9px; display: block; }
.attr-track { flex: 1; align-self: stretch; position: relative; }
.attr-fill { position: absolute; left: 0; top: 0; bottom: 0; }
.attr-fill-meta { background: linear-gradient(90deg, #1C7BFF, #0866FF); }
.attr-fill-ap { width: 100%; background: linear-gradient(90deg, #FF5E26, var(--ap-orange)); }
.attr-cut { position: absolute; top: 0; bottom: 0; width: 0; }
.attr-cut-meta { border-left: 1.5px dashed rgba(255, 255, 255, 0.5); }
.attr-cut-ap { border-left: 1.5px dashed rgba(255, 255, 255, 0.35); }
.attr-blind {
  position: absolute; right: 0; top: 0; bottom: 0;
  display: flex; align-items: center; justify-content: center;
}
.attr-blind-chip {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 2px 7px; border-radius: 999px; background: rgba(255, 255, 255, 0.06);
}
.attr-blind-label { font-size: 8px; font-weight: 700; letter-spacing: 0.2px; color: #8E8E9A; white-space: nowrap; }

.attr-labels { display: flex; margin-top: 8px; }
.attr-spacer { width: 62px; flex: none; }
.attr-labels-row { flex: 1; display: flex; }
.attr-step { text-align: center; font-size: 8px; line-height: 1.1; }
.attr-step.tracked { color: #C4C4CF; font-weight: 700; }
.attr-step.dim { color: #54545E; font-weight: 600; }

/* Línea bajo los pasos de Meta */
.attr-metasub { display: flex; margin-top: 5px; }
.attr-metasub-text { flex: 1; margin: 0; font-size: 9px; line-height: 1.3; color: #8E8E9A; }

/* Label sobre la barra AdPulze ("TODO" en naranja) */
.attr-aplabel { display: flex; margin-top: 14px; margin-bottom: 5px; }
.attr-aplabel-text { flex: 1; font-size: 8.5px; font-weight: 700; letter-spacing: 0.3px; color: #FFFFFF; }
.attr-ap-em { color: var(--ap-orange); }

.attr-bracket-wrap { display: flex; margin-top: 7px; }
.attr-bracket-row { flex: 1; display: flex; }
.attr-bracket-group { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.attr-bracket-rule {
  align-self: stretch; height: 6px;
  border: 1px solid rgba(244, 57, 0, 0.45); border-top: none; border-radius: 0 0 4px 4px;
}
.attr-bracket-label { display: flex; align-items: center; gap: 5px; }
.attr-bracket-mark { width: 10px; height: 10px; flex: none; }
.attr-bracket-label span { font-size: 8.5px; font-weight: 700; letter-spacing: 0.2px; color: #F0956F; }

.attr-caption { margin: 14px 0 0; font-size: 11.5px; line-height: 1.5; color: #9A9AA6; text-wrap: pretty; }

.hero-alto { position: relative; }
.hero-alto-h { margin-top: 16px; font-size: 20px; font-weight: 700; letter-spacing: -0.5px; line-height: 1.25; color: #FFFFFF; }
.hero-alto-sub { margin-top: 8px; font-size: 12.5px; line-height: 1.55; color: #9A9AA6; text-wrap: pretty; }

/* Tier alto: acentos verdes */
.screen-results.tier-alto .hero-score-num { color: var(--sq-tier-4); }
.screen-results.tier-alto .tier-chip { background: var(--sq-tier-4); }
.screen-results.tier-alto .hero-cat-fill { background: var(--sq-tier-4); }

/* Banda de identidad actual + capacidad (Fase 2.3) */
.identity-wrap { padding: 18px 18px 0; }
.identity-band {
  margin: 0; text-align: center; text-wrap: pretty;
  font-size: 14.5px; line-height: 1.5; font-weight: 600; color: var(--ap-ink-800);
}

/* Cards de puntos ciegos */
.cards { display: flex; flex-direction: column; gap: 12px; padding: 16px 18px 0; }
.bs-card {
  background: #FFFFFF; border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 20px; padding: 18px;
}
.bs-card.enter { animation: cardIn 400ms var(--sq-ease) both; }
@keyframes cardIn { from { opacity: 0; transform: translateY(8px); } }
/* Fila cabecera: badge numerado (mismo orden que el TL;DR) + tag de severidad */
.bs-cardhead { display: flex; align-items: center; gap: 8px; }
.bs-num {
  width: 20px; height: 20px; flex: none; border-radius: 999px;
  background: var(--ap-orange); color: #FFFFFF;
  font-size: 11px; font-weight: 700; line-height: 20px; text-align: center;
}
.bs-tag {
  display: inline-block; font-size: 9px; font-weight: 700;
  letter-spacing: 1.1px; text-transform: uppercase;
  border-radius: 999px; padding: 4px 9px;
}
.bs-tag-critico { color: #FFFFFF; background: var(--ap-orange); }
.bs-tag-alto {
  color: #A96A00; background: rgba(245, 166, 35, 0.14);
  border: 1px solid rgba(245, 166, 35, 0.35); padding: 3px 9px;
}
.bs-title {
  margin-top: 10px; font-size: 18.5px; font-weight: 700;
  letter-spacing: -0.4px; line-height: 1.25; color: var(--ap-ink-900);
}
.bs-todo { margin-top: 8px; }
.bs-growth { margin: 0 0 12px; font-size: 13px; font-weight: 700; line-height: 1.45; color: var(--ap-ink-900); }
.bs-sections { margin-top: 14px; display: flex; flex-direction: column; gap: 13px; }
.bs-sec-label {
  font-size: 9.5px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--ap-ink-500);
}
.bs-sec-label.cost { color: var(--sq-tier-1); }
.bs-sec-body { margin-top: 5px; font-size: 13.5px; line-height: 1.55; color: var(--ap-ink-700); }
.bs-sec-body.decision { font-weight: 600; color: var(--ap-ink-900); }
.bs-sec .chip-pending { margin-top: 7px; }
.solution-panel {
  background: rgba(244, 57, 0, 0.045); border: 1px solid rgba(234, 61, 1, 0.14);
  border-radius: 14px; padding: 13px 14px;
}
.solution-panel-head { display: flex; align-items: center; gap: 6px; }
.solution-panel-head img { width: 11px; height: 11px; }
.solution-panel-label {
  font-size: 9.5px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--sq-select-border);
}
.solution-panel-body { margin-top: 5px; font-size: 13.5px; line-height: 1.55; font-weight: 500; color: var(--ap-ink-800); }

/* Card de validación (tier alto) */
.valid-card {
  background: #FFFFFF; border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 20px; padding: 18px;
}
.valid-eyebrow {
  font-size: 9.5px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--ap-ink-500);
}
.valid-facts { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; }
.valid-fact { display: flex; align-items: center; gap: 10px; }
.valid-fact-icon {
  width: 20px; height: 20px; flex: none; border-radius: 999px;
  background: rgba(234, 61, 1, 0.08); color: var(--sq-select-border);
  display: flex; align-items: center; justify-content: center;
}
.valid-fact span { font-size: 13.5px; color: var(--ap-ink-700); }
.valid-card .solution-panel { margin-top: 14px; }

/* CTA */
.cta-wrap { padding: 16px 18px 0; }
.cta-block {
  padding: 28px 24px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.cta-icon {
  width: 46px; height: 46px; border-radius: 13px;
  background: linear-gradient(160deg, var(--sq-tier-2), var(--ap-orange));
  display: flex; align-items: center; justify-content: center;
}
.cta-h { margin-top: 16px; font-size: 24px; font-weight: 700; letter-spacing: -0.6px; color: #FFFFFF; }
.cta-sub { margin-top: 8px; font-size: 13.5px; line-height: 1.55; color: #A8A8B8; text-wrap: pretty; }
/* Oferta hiper-específica (Fase 1.2) — reemplaza al sub en no-tier-alto */
.cta-offer { margin-top: 10px; font-size: 13.5px; line-height: 1.55; color: #C9C9D2; text-wrap: pretty; }
.btn-cta {
  margin-top: 18px; width: 100%; height: 52px;
  background: var(--ap-orange); border-radius: 13px;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  font-size: 15px; font-weight: 700; color: #FFFFFF; text-decoration: none;
  box-shadow: 0 0 24px rgba(244, 57, 0, 0.35);
  transition: background 150ms var(--sq-ease), transform 80ms var(--sq-ease);
}
.btn-cta:hover { background: var(--sq-tier-2); }
.btn-cta:active { transform: scale(0.985); }
/* Urgencia personalizada (Fase 2.4) */
.cta-urgency { margin-top: 12px; font-size: 12.5px; line-height: 1.5; color: #C9C9D2; }
.cta-objection { margin-top: 12px; font-size: 12px; line-height: 1.5; color: #A8A8B8; }

/* Share */
.share-wrap { padding: 16px 18px 0; }
.share-block { background: var(--sq-canvas-gate); border-radius: 20px; padding: 18px; }
.share-title { font-size: 15px; font-weight: 700; letter-spacing: -0.2px; color: var(--ap-ink-900); }
.share-row { display: flex; gap: 8px; margin-top: 12px; }
.share-btn {
  flex: 1; height: 46px;
  background: #FFFFFF; border: 1px solid var(--ap-border); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--ap-ink-800);
  transition: background 150ms var(--sq-ease);
}
.share-btn:hover { background: var(--ap-canvas-3); }
.share-btn-copy { width: 100%; margin-top: 8px; color: var(--ap-ink-800); }
.share-btn-copy svg { color: var(--ap-ink-700); }
.share-glyph {
  width: 20px; height: 20px; border-radius: 999px; color: #FFFFFF;
  display: flex; align-items: center; justify-content: center;
}
.share-glyph-wa { background: #25D366; }
.share-glyph-tg { background: #229ED9; }
.share-sub { margin-top: 10px; font-size: 12px; color: var(--ap-ink-500); text-align: center; }

.confirmation {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  padding: 18px 18px 0; font-size: 12px; color: var(--ap-ink-500);
}
.confirmation-check { color: var(--sq-tier-4); flex: none; }

.site-footer {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 14px 0 24px;
}
.site-footer-logo { height: 11px; opacity: 0.85; }
.site-footer-domain { font-size: 12px; color: var(--ap-ink-500); text-decoration: none; padding: 14px; }

/* ═══ Breakpoints ═══ */
@media (min-width: 768px) {
  /* P0 (export 1b): un solo layout responsive — escala con clamp(), sin overrides */
  .q-header { max-width: 720px; margin: 0 auto; width: 100%; padding-top: 22px; }
  .q-slide, .q-footer { max-width: 720px; margin-left: auto; margin-right: auto; width: 100%; }
  .q-title { font-size: 26px; letter-spacing: -0.8px; }

  .gate-scorecard, .gate-formcard { max-width: 560px; margin-left: auto; margin-right: auto; width: calc(100% - 36px); }
  .gate-scorecard { margin-top: 22px; }
  .gate-formcard { margin-top: 14px; padding: 24px; }

  .hero-wrap, .cards, .identity-wrap, .cta-wrap, .share-wrap { max-width: 660px; margin-left: auto; margin-right: auto; width: 100%; }
  .hero { padding: 26px; }
  .hero-score-num { font-size: 74px; }
  .hero-cat-label { width: 78px; }
  .bs-card, .valid-card { padding: 24px 26px; }
  .cta-block { padding: 32px 40px; }
  .btn-cta { max-width: 380px; }
}

@media (min-width: 1440px) {
  .hero-score-num { font-size: 84px; letter-spacing: -3.4px; }
  .hero-waste-value { font-size: 30px; }
}

/* ═══ prefers-reduced-motion: saltar al estado final ═══ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .an-ring { display: none; }
  .an-odometer .odometer-digits { filter: none; }
  .an-reframe { opacity: 1; transform: none; }
}

/* ═══ Gráficos intercalados info1/info2 (export a5_b5) ═══ */
.info-graphic { margin-top: 14px; padding: 0 22px; }
@keyframes apFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes apGhostIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@keyframes apMoneyIn { 0% { opacity: 0; transform: translateY(6px) scale(.95); } 100% { opacity: 1; transform: none; } }
@keyframes apPop { 0% { opacity: 0; transform: scale(.8); } 60% { opacity: 1; transform: scale(1.08); } 100% { opacity: 1; transform: scale(1); } }
@keyframes apFlipKnob { 0%, 42% { transform: translateX(13px); } 58%, 100% { transform: translateX(0); } }
@keyframes apFlipTrack { 0%, 42% { background: #2DB967; } 58%, 100% { background: #C7C7D0; } }
/* Bajo reduced-motion el bloque global ya frena la duración; acá anulamos los
   delays para que nada quede invisible esperando su turno. */
@media (prefers-reduced-motion: reduce) {
  .info-graphic *, .info-graphic *::before, .info-graphic *::after { animation-delay: 0s !important; }
}
