/* ============================================================================
   Prizvo — landing pública. Mismos tokens que la app (mockup/styles.css).
   Gradiente verde→oro reservado: swash del H1, botón primario, anillo Premium
   (+ badges numerados de "Cómo funciona"). Todo lo demás: superficies quietas,
   bordes 1px, radios 12px.
   ========================================================================== */

:root {
  --bg-0: #08090c;
  --bg-1: #0e1014;
  --surface-1: #14161b;
  --surface-2: #1a1d23;
  --surface-3: #22252d;
  --border-1: #23262e;
  --text-1: #f2f3f5;
  --text-2: #9aa3b2;
  /* text-3 = nivel más tenue. Subido de #626a78 (fallaba AA: 2.8–3.6) a #7b8494
     para cumplir WCAG AA (≥4.5) sobre bg-0/bg-1/surface-1 en .micro, .price-period,
     footer, .legal-updated, etc., sin dejar de ser el tono más apagado (< text-2). */
  --text-3: #7b8494;
  /* PRIMARIO — verde "recompensa en vivo". Los tokens conservan su nombre
     histórico (--cyan-*) para no romper referencias; sólo cambia el VALOR.
     Roles: CTA principal, estado en vivo/conectado, éxito, foco, brand. */
  --cyan-300: #6fe7a6;   /* verde claro — texto/acentos sobre near-black (AA ok) */
  --cyan-400: #3ddc84;   /* verde PRIMARIO */
  --cyan-500: #2fb56a;   /* verde medio */
  --cyan-600: #219a57;   /* verde profundo */
  --cyan-dim: rgba(61, 220, 132, .10);
  --cyan-glow: rgba(61, 220, 132, .22);
  /* ACENTO — oro "recompensa" (regalos, puntos, ruleta, badges PRO/upsell).
     Nombre histórico (--pink-*) conservado; sólo cambia el VALOR a oro. */
  --pink-300: #f8c86b;   /* oro claro — texto de badges sobre dim (AA ok) */
  --pink-400: #f5b133;   /* oro ACENTO */
  --pink-500: #d6912a;   /* oro profundo */
  --pink-dim: rgba(245, 177, 51, .10);
  /* SECUNDARIO — azul info (links en prosa) */
  --blue-300: #86b2f6;   /* azul link sobre near-black (AA ok) */
  --blue-400: #4f8ff0;   /* azul info */
  /* ALERTA — rosa SÓLO para errores (reservado; la landing no muestra errores) */
  --error-300: #f08296;
  --error-400: #e5566e;
  --error-dim: rgba(229, 86, 110, .12);
  /* GRADIENTE de marca: verde → oro ("recompensa"). Disciplina: swash del H1,
     CTA primario, anillo Premium y badges numerados. No derramar más allá. */
  --grad-brand: linear-gradient(90deg, var(--cyan-400), var(--pink-400));
  --focus-ring: 0 0 0 3px rgba(61, 220, 132, .22);
  --r-sm: 8px;
  --r-md: 12px;
  --r-full: 999px;
  --font-ui: "Inter", "Segoe UI", system-ui, sans-serif;
  --font-display: "Montserrat", "Segoe UI", system-ui, sans-serif;
  --sh-1: 0 1px 2px rgba(0,0,0,.4), 0 2px 10px rgba(0,0,0,.22);
  --sh-2: 0 6px 16px rgba(0,0,0,.45), 0 14px 32px rgba(0,0,0,.32);
  --sh-3: 0 10px 28px rgba(0,0,0,.5), 0 28px 72px rgba(0,0,0,.6);
  --section-pad: clamp(96px, 11vw, 120px);
  /* movimiento: una sola curva y dos tiempos para toda la página */
  --ease: cubic-bezier(.22, 1, .36, 1);
  --t-fast: 150ms;
  --t-med: 260ms;
  --t-slow: 560ms;
}

/* ------------------------------------------------------------------- base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
html, body { margin: 0; }
/* Nada de overflow-x en html/body: clip/hidden aquí computa overflow-y:clip
   y mata el scroll vertical del viewport. El .hero (único con elementos que
   sobresalen) trae su propio overflow: clip. */
body {
  font-family: var(--font-ui);
  background: var(--bg-0);
  color: var(--text-1);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--blue-300); text-decoration: none; }
::selection { background: rgba(61, 220, 132, .32); color: #fff; }
:where(a, button, summary):focus-visible { outline: 2px solid var(--cyan-400); outline-offset: 2px; }

/* skip-link: oculto hasta recibir foco por teclado; salta la nav e ir al contenido */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--surface-2); color: var(--text-1);
  border: 1px solid var(--cyan-400); border-radius: var(--r-sm);
  padding: 10px 16px; font-weight: 700; font-size: 14px;
  transition: top var(--t-fast, 150ms) ease;
}
.skip-link:focus { top: 12px; box-shadow: var(--focus-ring); outline: none; }

.container { width: min(1120px, 100% - 48px); margin-inline: auto; }
.container-narrow { width: min(780px, 100% - 48px); }

/* --------------------------------------------------------------- botones */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-ui); font-weight: 700; font-size: 15px;
  padding: 12px 22px; border-radius: var(--r-md); border: 1px solid transparent;
  cursor: pointer; transition: transform 160ms cubic-bezier(.22,1,.36,1), box-shadow 160ms, background 160ms, border-color 160ms;
  white-space: nowrap;
}
.btn-lg { padding: 15px 28px; font-size: 16px; }
.btn-sm { padding: 8px 16px; font-size: 14px; }
.btn-block { width: 100%; }
.btn-primary {
  background: var(--grad-brand); color: #fff;
  box-shadow: 0 4px 18px rgba(61, 220, 132, .25), 0 4px 18px rgba(245, 177, 51, .18);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(61,220,132,.32), 0 8px 26px rgba(245,177,51,.24); }
.btn-ghost { background: var(--surface-2); color: var(--text-1); border-color: var(--border-1); }
.btn-ghost:hover { background: var(--surface-3); border-color: #333845; }
.btn-outline { background: transparent; color: var(--cyan-300); border-color: rgba(61,220,132,.4); }
.btn-outline:hover { background: var(--cyan-dim); border-color: var(--cyan-400); }

/* ------------------------------------------------------------------- nav */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8, 9, 12, .78);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-1);
}
.nav-inner { display: flex; align-items: center; gap: 28px; min-height: 64px; padding-block: 8px; }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-word { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--text-1); letter-spacing: .2px; }
/* wordmark degradado verde->oro (igual que la app; decisión de manager) */
.brand-word b {
  font-weight: 900;
  background: linear-gradient(100deg, var(--cyan-400) 0%, var(--cyan-400) 48%, var(--pink-400) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.nav-links { display: flex; gap: 4px; margin-inline: auto; }
.nav-links a {
  position: relative;
  color: var(--text-2); font-size: 14px; font-weight: 600;
  padding: 8px 12px; border-radius: var(--r-sm);
  transition: color var(--t-fast) var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 4px; height: 2px;
  background: var(--grad-brand); border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-med) var(--ease);
}
.nav-links a:hover { color: var(--text-1); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.is-active { color: var(--cyan-300); }
.nav-links a.is-active::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.lang-toggle {
  background: transparent; border: 1px solid var(--border-1); color: var(--text-3);
  font: 600 12px/1 var(--font-ui); letter-spacing: .6px;
  padding: 8px 10px; border-radius: var(--r-sm); cursor: pointer;
}
.is-hidden { display: none !important; }

/* ------------------------------------------------------------------ hero */
.hero { position: relative; padding: clamp(72px, 9vw, 110px) 0 var(--section-pad); overflow: clip; }
.hero-arc {
  position: absolute; inset-inline: 0; bottom: -40px; margin-inline: auto;
  width: min(1400px, 120vw); opacity: .14; pointer-events: none; z-index: 0;
  transform: translateY(var(--arcY, 0px));
  will-change: transform;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 6vw, 72px);
  align-items: center;
}
.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 2.2px; text-transform: uppercase;
  color: var(--cyan-400); margin: 0 0 14px;
}
.hero h1 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(34px, 4.6vw, 54px); line-height: 1.08; letter-spacing: -.5px;
  margin: 0 0 18px;
}
.swash { position: relative; display: inline-block; white-space: nowrap; }
.swash svg { position: absolute; left: 0; right: 0; bottom: -.18em; width: 100%; height: .22em; }
.hero-power {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(17px, 2vw, 21px);
  color: var(--text-1); margin: 0 0 14px;
}
.hero-sub { color: var(--text-2); font-size: 17px; max-width: 54ch; margin: 0 0 30px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 14px; }
.micro { color: var(--text-3); font-size: 13px; margin: 0; }

/* --------------------------------------------------- hero: mock de la app */
.hero-mock { position: relative; max-width: 520px; justify-self: end; width: 100%; }
.hero-mock::before {
  content: ""; position: absolute; inset: -12% -8%;
  background: radial-gradient(closest-side, var(--cyan-glow), transparent 72%);
  filter: blur(8px); z-index: 0; opacity: .5;
}
.mock-window {
  position: relative; z-index: 1;
  background: var(--surface-1); border: 1px solid var(--border-1);
  border-radius: var(--r-md); overflow: hidden; box-shadow: var(--sh-3);
  transform: perspective(1400px) rotateY(-7deg) rotateX(2.5deg);
}
.mock-nav {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; background: var(--bg-0); border-bottom: 1px solid var(--border-1);
}
.mock-word { font-family: var(--font-display); font-weight: 700; font-size: 13px; color: var(--text-1); }
.mock-word b { font-weight: 900; color: var(--cyan-300); }
.mock-live {
  margin-left: auto; display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 800; letter-spacing: 1px; color: var(--cyan-300);
  background: var(--cyan-dim); border: 1px solid rgba(61,220,132,.35);
  padding: 4px 9px; border-radius: var(--r-full);
}
.mock-live i { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan-400); animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
.mock-body { display: grid; grid-template-columns: 104px 1fr; }
.mock-side {
  background: var(--bg-1); border-right: 1px solid var(--border-1);
  padding: 12px 10px; display: flex; flex-direction: column; gap: 7px;
}
.mock-side-label { font-size: 9px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--text-3); margin-bottom: 2px; }
.chip {
  font-size: 10.5px; font-weight: 600; color: var(--text-2);
  background: var(--surface-2); border: 1px solid var(--border-1);
  border-radius: var(--r-full); padding: 5px 10px; white-space: nowrap;
}
.chip.is-on { color: var(--cyan-300); border-color: rgba(61,220,132,.4); background: var(--cyan-dim); }
.mock-main { padding: 14px; display: flex; flex-direction: column; gap: 11px; }
.mock-row {
  display: flex; align-items: center; gap: 11px;
  background: var(--surface-2); border: 1px solid var(--border-1);
  border-radius: var(--r-sm); padding: 11px 12px;
}
.mock-ava {
  width: 30px; height: 30px; flex: none; border-radius: var(--r-sm);
  background: var(--surface-3); display: grid; place-items: center; font-size: 14px;
}
.mock-lines { flex: 1; display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.skel {
  display: block; height: 8px; border-radius: 4px;
  background: linear-gradient(90deg, var(--surface-3) 25%, #2e323c 45%, var(--surface-3) 65%);
  background-size: 220% 100%;
  animation: shimmer 1.9s linear infinite;
}
.w35 { width: 35%; } .w40 { width: 40%; } .w45 { width: 45%; }
.w50 { width: 50%; } .w60 { width: 60%; } .w70 { width: 70%; } .w75 { width: 75%; }
@keyframes shimmer { to { background-position: -120% 0; } }
.mock-pill {
  flex: none; font-size: 10px; font-weight: 700; color: var(--cyan-300);
  background: var(--cyan-dim); border: 1px solid rgba(61,220,132,.3);
  padding: 3px 8px; border-radius: var(--r-full);
}

.toast {
  position: absolute; z-index: 2;
  display: flex; align-items: center; gap: 9px;
  background: var(--surface-2); border: 1px solid #333845;
  border-radius: var(--r-md); padding: 11px 15px;
  font-size: 13.5px; color: var(--text-1); box-shadow: var(--sh-2);
  animation: floaty 6s ease-in-out infinite;
}
.toast b { color: var(--cyan-300); }
.toast i {
  font-style: normal; font-size: 10px; font-weight: 800; letter-spacing: .8px;
  color: var(--pink-300); background: var(--pink-dim);
  border: 1px solid rgba(245,177,51,.3); padding: 2px 7px; border-radius: var(--r-full);
}
.toast-gift { top: -22px; right: -14px; }
.toast-tts { bottom: -20px; left: -20px; animation-delay: -3s; }
@keyframes floaty { 0%, 100% { transform: translateY(-6px); } 50% { transform: translateY(7px); } }

/* -------------------------------------------------------------- secciones */
.section { padding: var(--section-pad) 0; }
.section-alt { background: var(--bg-1); border-block: 1px solid var(--border-1); }
.section-head { text-align: center; margin-bottom: clamp(44px, 6vw, 64px); }
.section-head h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(26px, 3.4vw, 38px); line-height: 1.15; letter-spacing: -.4px; margin: 0;
}

/* ----------------------------------------------------------- cómo funciona */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
  background: var(--surface-1); border: 1px solid var(--border-1);
  border-radius: var(--r-md); padding: 30px 26px;
}
.step-badge {
  display: grid; place-items: center; width: 40px; height: 40px;
  border-radius: var(--r-full); background: var(--grad-brand);
  font-family: var(--font-display); font-weight: 900; font-size: 17px; color: #fff;
  margin-bottom: 18px;
}
.step h3 { font-family: var(--font-display); font-weight: 800; font-size: 19px; margin: 0 0 10px; }
.step p { color: var(--text-2); font-size: 15px; margin: 0; }

/* --------------------------------------------------------------- funciones */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.feature {
  position: relative;
  background: var(--surface-1); border: 1px solid var(--border-1);
  border-radius: var(--r-md); padding: 24px;
  transition: border-color 200ms, transform 200ms cubic-bezier(.22,1,.36,1);
}
.feature:hover { border-color: #333845; transform: translateY(-3px); }
.feature h3 { font-family: var(--font-display); font-weight: 800; font-size: 18px; margin: 18px 0 8px; }
.feature p { color: var(--text-2); font-size: 14.5px; margin: 0; }
.feature code {
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: .9em; color: var(--cyan-300); background: var(--cyan-dim);
  padding: 1px 6px; border-radius: 5px;
}
.pill-premium {
  position: absolute; top: 16px; right: 16px; z-index: 1;
  font-size: 10.5px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase;
  color: var(--pink-300); background: var(--pink-dim);
  border: 1px solid rgba(245,177,51,.35); padding: 4px 10px; border-radius: var(--r-full);
}

/* mini-mockups CSS de cada función — todos con el mismo chrome de ventana */
.mm {
  border-radius: var(--r-sm);
  background: var(--bg-1); border: 1px solid var(--border-1);
  overflow: hidden; display: flex; flex-direction: column;
}
.mm-top {
  display: flex; align-items: center; gap: 9px;
  padding: 7px 12px;
  background: var(--bg-0); border-bottom: 1px solid var(--border-1);
}
.mm-dots { display: inline-flex; gap: 5px; }
.mm-dots i { width: 7px; height: 7px; border-radius: 50%; background: var(--surface-3); }
.mm-cap {
  margin-left: auto; display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 700; letter-spacing: .9px; text-transform: uppercase;
  color: var(--text-3);
}
.ic-mm { width: 15px; height: 15px; stroke: var(--cyan-400); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.mm-stage {
  flex: 1; min-height: 118px; position: relative;
  display: grid; place-items: center; overflow: hidden;
}
.mm-toast-card {
  display: flex; align-items: center; gap: 10px;
  background: var(--surface-2); border: 1px solid #333845; border-radius: 10px;
  padding: 12px 16px; width: 74%; box-shadow: var(--sh-1);
}
.mm-toast-emo { font-size: 20px; }
.mm-lines { flex: 1; display: flex; flex-direction: column; gap: 7px; }
.mm-wave-bars { display: flex; gap: 5px; align-items: center; }
.mm-wave-bars i {
  width: 6px; height: 34px; border-radius: 3px; background: var(--cyan-400);
  animation: wave 1.1s ease-in-out infinite;
}
.mm-wave-bars i:nth-child(1) { animation-delay: 0s;    height: 16px; }
.mm-wave-bars i:nth-child(2) { animation-delay: .12s;  height: 30px; }
.mm-wave-bars i:nth-child(3) { animation-delay: .24s;  height: 44px; }
.mm-wave-bars i:nth-child(4) { animation-delay: .36s;  height: 52px; }
.mm-wave-bars i:nth-child(5) { animation-delay: .48s;  height: 44px; }
.mm-wave-bars i:nth-child(6) { animation-delay: .6s;   height: 30px; }
.mm-wave-bars i:nth-child(7) { animation-delay: .72s;  height: 16px; }
@keyframes wave { 0%, 100% { transform: scaleY(.55); } 50% { transform: scaleY(1); } }
.wheel-wrap { position: relative; display: grid; place-items: center; }
.wheel {
  width: 84px; height: 84px; border-radius: 50%;
  background: conic-gradient(
    var(--cyan-400) 0 60deg, var(--surface-3) 60deg 120deg,
    var(--pink-400) 120deg 180deg, var(--surface-3) 180deg 240deg,
    var(--cyan-600) 240deg 300deg, var(--pink-500) 300deg 360deg);
  border: 3px solid var(--surface-3); box-shadow: var(--sh-1);
  animation: spin 14s linear infinite;
}
.wheel-pin {
  position: absolute; top: -7px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0; border: 7px solid transparent; border-top: 11px solid var(--text-1);
}
@keyframes spin { to { transform: rotate(360deg); } }
.mm-progress-inner { display: flex; flex-direction: column; gap: 9px; width: 74%; }
.mm-progress-label { font-size: 11.5px; color: var(--text-2); }
.mm-bar {
  height: 9px; border-radius: var(--r-full);
  background: var(--surface-3); overflow: hidden;
}
.mm-bar i {
  display: block; height: 100%; width: 72%; border-radius: inherit;
  background: var(--cyan-500);
  animation: load 3.2s ease-in-out infinite alternate;
}
@keyframes load { from { width: 46%; } to { width: 84%; } }
.mm-pct { font-size: 11px; font-weight: 700; color: var(--cyan-300); align-self: flex-end; }
.mm-crop { position: relative; }
.crop-box {
  position: relative; width: 96px; height: 68px;
  border: 1.5px dashed var(--cyan-400); border-radius: 4px;
  display: grid; place-items: center; background: var(--surface-2);
}
.crop-emo { font-size: 26px; }
.crop-box .h {
  position: absolute; width: 9px; height: 9px;
  background: var(--cyan-400); border-radius: 2px;
}
.h.tl { top: -5px; left: -5px; } .h.tr { top: -5px; right: -5px; }
.h.bl { bottom: -5px; left: -5px; } .h.br { bottom: -5px; right: -5px; }

/* ----------------------------------------------------------------- precios */
.price-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
  max-width: 880px; margin-inline: auto; align-items: start;
}
.price-card {
  position: relative;
  background: var(--surface-1); border: 1px solid var(--border-1);
  border-radius: var(--r-md); padding: 34px 30px;
}
.price-card h3 { font-family: var(--font-display); font-weight: 800; font-size: 20px; margin: 0 0 10px; }
.price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 22px; }
.price-amount { font-family: var(--font-display); font-weight: 900; font-size: 42px; letter-spacing: -1px; }
.price-period { color: var(--text-3); font-size: 15px; }
.price-list { list-style: none; margin: 0 0 26px; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.price-list li { position: relative; padding-left: 26px; color: var(--text-2); font-size: 14.5px; }
.price-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--cyan-400); font-weight: 800; }
.price-list .lead-item { color: var(--text-1); font-weight: 600; }
.price-list .lead-item::before { content: "★"; color: var(--pink-400); }
.price-card--premium {
  border: 1.5px solid transparent;
  background: linear-gradient(var(--surface-1), var(--surface-1)) padding-box, var(--grad-brand) border-box;
  box-shadow: 0 10px 44px rgba(61,220,132,.10), 0 10px 44px rgba(245,177,51,.08);
}
.ribbon {
  position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
  font-size: 11px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase;
  color: #fff; background: var(--pink-400);
  padding: 6px 16px; border-radius: var(--r-full); box-shadow: var(--sh-1);
}
.price-note { text-align: center; color: var(--text-3); font-size: 13.5px; margin: 30px 0 0; }

/* -------------------------------------------------------------------- FAQ */
.faq-item {
  background: var(--surface-1); border: 1px solid var(--border-1);
  border-radius: var(--r-md); margin-bottom: 12px; overflow: hidden;
}
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer; list-style: none;
  font-weight: 700; font-size: 15.5px; padding: 19px 22px;
  transition: background 160ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--surface-2); }
.faq-ico {
  flex: none; width: 9px; height: 9px; margin-right: 4px;
  border-right: 2px solid var(--text-3); border-bottom: 2px solid var(--text-3);
  border-radius: 0 0 2px 0; transform: rotate(45deg);
  transition: transform var(--t-med) var(--ease), border-color var(--t-fast);
}
.faq-item summary:hover .faq-ico { border-color: var(--text-2); }
.faq-item[open] .faq-ico { transform: rotate(225deg); border-color: var(--cyan-400); }
.faq-item[open] summary { color: var(--cyan-300); }
.faq-body { padding: 0 22px 20px; color: var(--text-2); font-size: 14.5px; }
.faq-body p { margin: 0; }
.faq-body b { color: var(--text-1); }

/* ---------------------------------------------------------------- CTA band */
.cta-band {
  padding: var(--section-pad) 0;
  background: var(--bg-1); border-top: 1px solid var(--border-1);
  text-align: center;
}
.band-inner h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(28px, 4vw, 44px); letter-spacing: -.5px; margin: 0 0 14px;
}
.band-inner > p { color: var(--text-2); font-size: 17px; max-width: 52ch; margin: 0 auto 30px; }
.band-inner .micro { margin-top: 16px; }

/* ------------------------------------------------------------------ footer */
.footer { background: var(--bg-0); border-top: 1px solid var(--border-1); padding: 56px 0 34px; }
.footer-inner { display: flex; justify-content: space-between; gap: 48px; flex-wrap: wrap; margin-bottom: 44px; }
.footer-tag { color: var(--text-3); font-size: 13.5px; margin: 12px 0 0; }
.footer-cols { display: flex; gap: clamp(32px, 6vw, 80px); flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 10px; min-width: 130px; }
.footer-col h4 {
  font-size: 12px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--text-3); margin: 0 0 4px;
}
.footer-col a { color: var(--text-2); font-size: 14px; }
.footer-col a:hover { color: var(--cyan-300); }
.footer-muted { color: var(--text-3); font-size: 13px; }
.footer-base {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  border-top: 1px solid var(--border-1); padding-top: 22px;
}
.footer-base p { color: var(--text-3); font-size: 12.5px; margin: 0; }

/* ----------------------------------------------------------------- reveals */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 600ms cubic-bezier(.22,1,.36,1), transform 600ms cubic-bezier(.22,1,.36,1); }
.reveal.is-in { opacity: 1; transform: none; }

/* -------------------------------------------------------------- responsivo */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-mock { justify-self: center; margin-top: 26px; }
  .mock-window { transform: none; }
  .steps { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .price-grid { grid-template-columns: 1fr; max-width: 480px; }
  .price-card--premium { order: -1; }
}
@media (max-width: 760px) {
  .nav-inner { flex-wrap: wrap; gap: 10px 16px; padding-block: 12px; }
  .nav-links { order: 3; width: 100%; margin: 0; justify-content: center; flex-wrap: wrap; }
  .nav-actions { margin-left: auto; }
  html { scroll-padding-top: 118px; }
}
@media (max-width: 560px) {
  .container, .container-narrow { width: 100% ; padding-inline: 18px; }
  .hero-ctas .btn { flex: 1 1 100%; }
  .toast { font-size: 12px; padding: 9px 12px; }
  .toast-gift { top: -16px; right: 2px; }
  .toast-tts { bottom: -14px; left: 2px; }
  .footer-inner { flex-direction: column; gap: 32px; }
}

/* -------------------------------------------------- movimiento reducido */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .skel, .mm-wave-bars i, .mm-bar i, .wheel, .toast, .mock-live i { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .feature { transition: none; }
}

/* ------------------------------------------------------- páginas legales */
.legal-hero { padding: clamp(48px, 7vw, 76px) 0 8px; }
.legal-hero h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(28px, 4vw, 40px); letter-spacing: -.5px; margin: 0 0 8px;
}
.legal-updated { color: var(--text-3); font-size: 13.5px; margin: 0; }

.legal-article { width: min(720px, 100% - 48px); margin-inline: auto; padding: 8px 0 clamp(64px, 8vw, 96px); }
.legal-article h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 20px; letter-spacing: -.2px; color: var(--text-1); margin: 40px 0 12px;
}
.legal-article h2:first-of-type { margin-top: 28px; }
.legal-article h3 { font-size: 15.5px; color: var(--text-1); margin: 22px 0 8px; }
.legal-article p { color: var(--text-2); font-size: 15px; margin: 0 0 14px; }
.legal-article ul, .legal-article ol { color: var(--text-2); font-size: 15px; margin: 0 0 14px; padding-left: 22px; }
.legal-article li { margin-bottom: 6px; }
.legal-article a { text-decoration: underline; text-underline-offset: 2px; }
.legal-article strong { color: var(--text-1); }
.legal-article hr { border: none; border-top: 1px solid var(--border-1); margin: 32px 0; }

.legal-placeholder {
  display: inline-block; background: var(--pink-dim); border: 1px dashed var(--pink-400);
  color: var(--pink-300); padding: 1px 7px; border-radius: 5px; font-weight: 600; font-size: 14px;
}

.notice-draft {
  display: flex; gap: 10px; align-items: flex-start;
  background: rgba(245, 185, 66, .12); border: 1px solid rgba(245, 185, 66, .38);
  color: #f5c451; border-radius: var(--r-md); padding: 14px 16px; margin: 0 0 12px;
  font-size: 14px; font-weight: 600; line-height: 1.5;
}
.notice-draft b { font-weight: 800; }

@media (max-width: 560px) {
  .legal-article { width: 100%; padding-inline: 18px; }
}

/* ============================================================================
   CAPA FINAL — DIRECCIÓN DE ARTE
   Hero cinematográfico, iconografía, micro-interacciones, ritmo y detalles.
   Todo el movimiento usa --ease + --t-*. La sección de reduced-motion al
   final de este bloque apaga TODO lo que se mueve.
   ========================================================================== */

/* ---------------------------------- detalles finos ------------------------ */
html { scrollbar-width: thin; scrollbar-color: var(--surface-3) var(--bg-0); }
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb {
  background: var(--surface-3); border-radius: var(--r-full); border: 3px solid var(--bg-0);
}
::-webkit-scrollbar-thumb:hover { background: #383e4a; }
::selection { background: rgba(61, 220, 132, .30); color: #fff; text-shadow: none; }

:where(a, button, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--cyan-400); outline-offset: 3px;
  border-radius: 7px; box-shadow: var(--focus-ring);
}

h1, .section-head h2, .band-inner h2,
.step h3, .feature h3, .price-card h3, .faq-item summary { text-wrap: balance; }
.hero-sub, .band-inner > p, .feature p, .step p { text-wrap: pretty; }
.price-amount, .price-period, .mm-pct, .mock-pill { font-variant-numeric: tabular-nums; }
.eyebrow, .footer-col h4, .mm-cap, .mock-side-label { font-feature-settings: "case" 1; }

/* --------------------------- iconos en botones ---------------------------- */
.btn .ic-dl {
  width: 17px; height: 17px; flex: none;
  stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* --------------- botón primario: brillo que recorre el gradiente ---------- */
.btn-primary {
  position: relative;
  background:
    linear-gradient(110deg, transparent 34%, rgba(255,255,255,.5) 48%, transparent 62%) no-repeat,
    var(--grad-brand);
  background-size: 220% 100%, 100% 100%;
  background-position: 180% 0, 0 0;
  transition: transform var(--t-fast) var(--ease),
              box-shadow var(--t-med) var(--ease),
              background-position var(--t-slow) var(--ease);
}
.btn-primary:hover { background-position: -80% 0, 0 0; }

/* ------------------------ hero: profundidad ambiental ---------------------- */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(58% 55% at 20% 16%, rgba(61,220,132,.13), transparent 68%),
    radial-gradient(52% 58% at 84% 82%, rgba(245,177,51,.10), transparent 72%);
}

/* hero-mock: doble glow (cian arriba / rosa abajo) + sombra de color */
.hero-mock::after {
  content: ""; position: absolute; left: 6%; right: 6%; bottom: -7%; height: 24%;
  background: radial-gradient(closest-side, rgba(245,177,51,.20), transparent 76%);
  filter: blur(11px); z-index: 0; pointer-events: none;
}
.mock-window {
  transform:
    perspective(1400px)
    rotateY(calc(-7deg + var(--px, 0) * 3.2deg))
    rotateX(calc(2.5deg + var(--py, 0) * -2.4deg))
    translate3d(calc(var(--px, 0) * -5px), calc(var(--py, 0) * -4px), 0);
  box-shadow: var(--sh-3), 0 34px 90px rgba(61,220,132,.10), 0 20px 60px rgba(245,177,51,.06);
  will-change: transform;
}
/* toda la pieza (ventana + toasts) se desplaza con el puntero; la ventana
   contramueve un poco → los toasts leen como primer plano (parallax por capas) */
.hero-mock { transform: translate3d(calc(var(--px, 0) * 9px), calc(var(--py, 0) * 7px), 0); }
.toast { will-change: transform; }

/* ------------------ tarjetas: lift + glow de borde con intención ----------- */
.step { position: relative; }
.feature, .step {
  transition: border-color var(--t-med) var(--ease),
              transform var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease);
}
.feature:hover, .step:hover {
  transform: translateY(-4px); border-color: rgba(61,220,132,.42);
  box-shadow: 0 16px 36px rgba(0,0,0,.42), inset 0 0 0 1px rgba(61,220,132,.22),
              0 10px 40px rgba(61,220,132,.10);
}
.price-card {
  transition: border-color var(--t-med) var(--ease),
              transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.price-card:not(.price-card--premium):hover {
  transform: translateY(-3px); border-color: rgba(61,220,132,.38);
  box-shadow: 0 14px 32px rgba(0,0,0,.4);
}
.faq-item { transition: border-color var(--t-med) var(--ease); }
.faq-item:hover { border-color: #2d313b; }
.faq-item[open] { border-color: rgba(61,220,132,.32); }

/* ------------------ precios: la tarjeta Premium domina --------------------- */
.price-card--premium {
  transform: translateY(-8px) scale(1.025);
  box-shadow: 0 20px 60px rgba(61,220,132,.15), 0 20px 60px rgba(245,177,51,.10),
              0 12px 34px rgba(0,0,0,.42);
  z-index: 1;
}
.price-card--premium:hover {
  box-shadow: 0 26px 72px rgba(61,220,132,.20), 0 26px 72px rgba(245,177,51,.13),
              0 14px 38px rgba(0,0,0,.46);
}
.ribbon { box-shadow: 0 4px 14px rgba(245,177,51,.45); }

/* --------------- divisor de marca entre secciones (consistente) ----------- */
.section, .cta-band { position: relative; }
.section::before, .cta-band::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(1120px, 100% - 48px); height: 1px; pointer-events: none;
  background: linear-gradient(90deg,
    transparent, var(--border-1) 14%, rgba(61,220,132,.32) 50%, var(--border-1) 86%, transparent);
}
.section-alt { border-block: none; }
.cta-band { border-top: none; }

/* ============================ orquestación de carga ======================= */
@keyframes hRise   { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes hRiseH1 { from { transform: translateY(9px); } to { transform: none; } } /* sin opacidad → LCP intacto */
@keyframes hMock   { from { opacity: 0; transform: translateY(24px) scale(.975); } to { opacity: 1; transform: none; } }
@keyframes hToast  { from { opacity: 0; transform: translateY(12px) scale(.94); } to { opacity: 1; transform: none; } }
@keyframes faqIn   { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: no-preference) {
  .hero-copy > *          { animation: hRise .62s var(--ease) backwards; }
  .hero-copy .eyebrow     { animation-delay: .04s; }
  .hero-copy h1           { animation: hRiseH1 .6s var(--ease) backwards; animation-delay: .02s; }
  .hero-copy .hero-power  { animation-delay: .16s; }
  .hero-copy .hero-sub    { animation-delay: .24s; }
  .hero-copy .hero-ctas   { animation-delay: .34s; }
  .hero-copy .micro       { animation-delay: .42s; }
  .hero-mock              { animation: hMock .82s var(--ease) .2s backwards; }
  .toast-gift { animation: hToast .5s var(--ease) .82s backwards, floaty 6s ease-in-out 1.32s infinite; }
  .toast-tts  { animation: hToast .5s var(--ease) 1s   backwards, floaty 6s ease-in-out 1.5s  infinite; }
  .faq-item[open] .faq-body { animation: faqIn var(--t-med) var(--ease); }
}

/* móvil: la ventana se aplana (sin parallax ni perspectiva) y la tarjeta
   Premium deja de escalar para alinear con la de Gratis — gana al final */
@media (max-width: 980px) {
  .mock-window { transform: none; }
  .price-card--premium { transform: none; }
  .price-card--premium:hover { box-shadow: 0 20px 60px rgba(61,220,132,.15), 0 20px 60px rgba(245,177,51,.10), 0 12px 34px rgba(0,0,0,.42); }
}

/* ============================ reduced-motion: apaga TODO ================== */
@media (prefers-reduced-motion: reduce) {
  .btn-primary, .nav-links a, .nav-links a::after,
  .faq-ico, .faq-item, .feature, .step, .price-card { transition: none !important; }
  .feature:hover, .step:hover, .price-card:not(.price-card--premium):hover { transform: none !important; }
  .hero-arc, .hero-mock { transform: none !important; }
  .btn-primary { background-position: 0 0, 0 0 !important; }
}

/* ============================================================================
   CAMPANA DE MARCA — secciones nuevas (Batalla, Por que Prizvo, confianza).
   Reusa tokens existentes. Gradiente verde->oro solo para acentos de premio.
   ========================================================================== */

/* ---------------------------- confianza: paso 2 -------------------------- */
.step--trust { border-color: rgba(61,220,132,.28); }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  font-size: 12.5px; font-weight: 700; color: var(--cyan-300); line-height: 1.25;
  background: var(--cyan-dim); border: 1px solid rgba(61,220,132,.4);
  padding: 8px 13px; border-radius: var(--r-full);
}
.hero-badge svg {
  width: 15px; height: 15px; flex: none;
  stroke: var(--cyan-400); stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round;
}

/* -------------------------- franja de datos reales ----------------------- */
.factstrip {
  list-style: none; margin: clamp(30px, 4vw, 44px) 0 0; padding: 18px 8px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 34px;
  border-top: 1px solid var(--border-1); border-bottom: 1px solid var(--border-1);
}
.factstrip li { color: var(--text-2); font-size: 14.5px; display: inline-flex; align-items: baseline; gap: 7px; }
.factstrip b {
  color: var(--text-1); font-weight: 800; font-family: var(--font-display);
  font-variant-numeric: tabular-nums;
}

/* ============================ BATALLA (estrella) ========================== */
.battle {
  background:
    radial-gradient(46% 60% at 12% 8%, rgba(61,220,132,.12), transparent 70%),
    radial-gradient(48% 66% at 90% 94%, rgba(245,177,51,.12), transparent 72%),
    var(--bg-0);
}
.battle-inner {
  display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(36px, 5vw, 64px);
  align-items: center;
}
.eyebrow-star { color: var(--pink-400); }
.battle-copy h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(28px, 3.6vw, 40px); line-height: 1.12; letter-spacing: -.5px;
  margin: 0 0 16px; text-wrap: balance;
}
.battle-copy .amp { color: var(--pink-400); }
.battle-sub { color: var(--text-2); font-size: 16.5px; margin: 0 0 26px; max-width: 46ch; text-wrap: pretty; }
.battle-benefits { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.battle-benefits li { display: flex; gap: 13px; align-items: flex-start; }
.bnf-ic {
  flex: none; width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
  background: var(--cyan-dim); border: 1px solid rgba(61,220,132,.3);
}
.bnf-ic svg { width: 20px; height: 20px; stroke: var(--cyan-400); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.battle-benefits b { display: block; font-weight: 700; font-size: 15px; color: var(--text-1); margin-bottom: 3px; }
.battle-benefits span { color: var(--text-2); font-size: 14px; }

/* --- widget/tarjeta de la batalla --- */
.battle-viz { justify-self: center; width: 100%; max-width: 460px; }
.battle-card {
  position: relative;
  background: var(--surface-1); border: 1px solid var(--border-1);
  border-radius: var(--r-md); padding: 20px; box-shadow: var(--sh-2);
}
.battle-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.battle-live {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  color: var(--pink-300); background: var(--pink-dim);
  border: 1px solid rgba(245,177,51,.35); padding: 5px 11px; border-radius: var(--r-full);
}
.battle-live i { width: 7px; height: 7px; border-radius: 50%; background: var(--pink-400); animation: pulse 1.6s ease-in-out infinite; }
.battle-timer {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--text-1);
  font-variant-numeric: tabular-nums;
}
.battle-timer svg { width: 16px; height: 16px; stroke: var(--text-3); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.tug-heads { display: flex; justify-content: space-between; margin-bottom: 9px; font-size: 13px; font-weight: 700; }
.tug-head { display: inline-flex; align-items: center; gap: 7px; min-width: 0; }
.tug-head--a { color: var(--cyan-300); }
.tug-head--b { color: var(--pink-300); }
.tug-ava { width: 24px; height: 24px; flex: none; border-radius: 50%; display: grid; place-items: center; font-size: 13px; background: var(--surface-3); }
.tug-track { position: relative; height: 15px; border-radius: var(--r-full); background: var(--surface-3); overflow: hidden; }
.tug-fill { position: absolute; top: 0; bottom: 0; }
.tug-fill--a { left: 0; background: linear-gradient(90deg, var(--cyan-500), var(--cyan-400)); animation: tugA 4.6s var(--ease) infinite; }
.tug-fill--b { right: 0; background: linear-gradient(90deg, var(--pink-400), var(--pink-500)); animation: tugB 4.6s var(--ease) infinite; }
.tug-knob {
  position: absolute; top: 50%; z-index: 2; width: 15px; height: 15px; border-radius: 50%; background: #fff;
  transform: translate(-50%, -50%); box-shadow: 0 0 0 3px var(--surface-1), 0 2px 8px rgba(0,0,0,.5);
  animation: tugKnob 4.6s var(--ease) infinite;
}
.tug-scores {
  display: flex; align-items: center; justify-content: space-between; margin-top: 9px;
  font-family: var(--font-display); font-weight: 800; font-variant-numeric: tabular-nums;
}
.tug-score { font-size: 15px; }
.tug-score--a { color: var(--cyan-300); }
.tug-score--b { color: var(--pink-300); }
.tug-vs { font-size: 10px; letter-spacing: 1.5px; color: var(--text-3); }
.fame { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--border-1); }
.fame-title { display: block; font-size: 10px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; color: var(--text-3); margin-bottom: 12px; }
.fame-thrones { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.throne {
  position: relative; display: flex; flex-direction: column; align-items: center; gap: 5px;
  background: var(--surface-2); border: 1px solid var(--border-1); border-radius: var(--r-sm);
  padding: 13px 6px 10px; min-width: 0;
}
.throne-rank {
  position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  width: 18px; height: 18px; border-radius: 50%; display: grid; place-items: center;
  font-size: 10px; font-weight: 800; color: var(--bg-0); background: var(--text-3);
}
.throne-ava { font-size: 20px; }
.throne-name { max-width: 100%; font-size: 11px; color: var(--text-2); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.throne--gold { border-color: rgba(245,177,51,.5); background: var(--pink-dim); }
.throne--gold .throne-rank { background: var(--pink-400); }
.throne--silver { border-color: rgba(61,220,132,.4); }
.throne--silver .throne-rank { background: var(--cyan-400); }
.throne--risk { border-style: dashed; }
@keyframes tugA { 0%, 100% { width: 58%; } 50% { width: 41%; } }
@keyframes tugB { 0%, 100% { width: 42%; } 50% { width: 59%; } }
@keyframes tugKnob { 0%, 100% { left: 58%; } 50% { left: 41%; } }

/* ============================ POR QUE PRIZVO ============================== */
.why-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.why-item {
  display: flex; gap: 15px; align-items: flex-start;
  background: var(--surface-1); border: 1px solid var(--border-1); border-radius: var(--r-md);
  padding: 18px 20px;
  transition: border-color var(--t-med) var(--ease), transform var(--t-med) var(--ease);
}
.why-item:hover { border-color: rgba(61,220,132,.32); transform: translateX(3px); }
.why-ic {
  flex: none; width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center;
  background: var(--cyan-dim); border: 1px solid rgba(61,220,132,.3);
}
.why-ic svg { width: 22px; height: 22px; stroke: var(--cyan-400); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.why-ic--gold { background: var(--pink-dim); border-color: rgba(245,177,51,.4); }
.why-ic--gold svg { stroke: var(--pink-400); }
.why-txt b { display: block; font-family: var(--font-display); font-weight: 800; font-size: 16px; color: var(--text-1); margin-bottom: 4px; }
.why-txt span { color: var(--text-2); font-size: 14.5px; }
.why-item--star { border-color: rgba(245,177,51,.42); box-shadow: 0 8px 30px rgba(245,177,51,.08); }
.why-item--star:hover { border-color: rgba(245,177,51,.6); }

/* ------------------------ precios: fundador + notas ---------------------- */
.founder-flag {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  font-size: 9.5px; font-weight: 800; letter-spacing: .6px; text-transform: uppercase;
  color: var(--pink-300); background: var(--pink-dim);
  border: 1px solid rgba(245,177,51,.45); padding: 4px 10px; border-radius: var(--r-full);
}
.price-sub { color: var(--text-3); font-size: 13px; margin: -12px 0 20px; }
.card-note { text-align: center; color: var(--text-3); font-size: 12.5px; margin: 14px 0 0; }

/* -------------------------- fundador: CTA final -------------------------- */
.founder-line { color: var(--text-3); font-size: 13px; font-style: italic; margin: 22px 0 0; }

/* ------------------------------- responsivo ------------------------------ */
@media (max-width: 980px) {
  .battle-inner { grid-template-columns: 1fr; }
  .battle-viz { margin-top: 4px; }
}
@media (prefers-reduced-motion: reduce) {
  .tug-fill--a, .tug-fill--b, .tug-knob, .battle-live i { animation: none !important; }
  .tug-fill--a { width: 55%; }
  .tug-fill--b { width: 45%; }
  .tug-knob { left: 55%; }
  .why-item, .why-item:hover { transition: none !important; transform: none !important; }
}
