/* Yvivo landing — the product's own world: the violet-black of a live feed,
   coin GOLD as the one action color, TikTok pink/cyan reserved for the live
   artifacts (phone + feature cards), never sprayed on the UI. Type: Archivo
   variable (self-hosted, 88KB) — expanded-black for display, normal for body,
   tabular numerals for every counter because counters ARE the subject. */

@font-face {
  font-family: 'Archivo';
  src: url('/landing/archivo.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-display: swap;
}

:root {
  --noche: #0b0714;
  --carbon: #150e22;
  --vidrio: rgba(255, 255, 255, 0.055);
  --linea: rgba(237, 233, 247, 0.14);
  --texto: #ede9f7;
  --texto-2: #9a92b4;
  --oro: #f7c948;
  --oro-hondo: #c9940f;
  --oro-tinta: #241a02;
  --rosa: #fe2c55;
  --cian: #25f4ee;
  --radio: 18px;
  --ancho: 1120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--noche);
  color: var(--texto);
  font-family: 'Archivo', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--oro); color: var(--oro-tinta); }

b, strong { font-weight: 700; }

/* ---- Type roles ---- */

h1, h2 {
  font-stretch: 118%;
  font-weight: 860;
  text-transform: uppercase;
  line-height: 0.98;
  letter-spacing: 0.005em;
  text-wrap: balance;
}

/* Capped so "ESPECTADORES" (the longest word) never runs under the phone. */
h1 { font-size: clamp(2.4rem, 5vw, 3.9rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }

h3 { font-weight: 750; font-size: 1.12rem; letter-spacing: 0.01em; }

.eyebrow {
  font-stretch: 110%;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--oro);
  margin-bottom: 14px;
}

/* Every number on this page is a counter. */
b, .ph-diamonds, .a-count, .ph-qm-count { font-variant-numeric: tabular-nums; }

/* ---- Header ---- */

.top {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: var(--ancho);
  margin: 0 auto;
  padding: 16px 24px;
  background: linear-gradient(180deg, rgba(11, 7, 20, 0.92), rgba(11, 7, 20, 0.75));
  backdrop-filter: blur(10px);
}

.logo {
  font-stretch: 122%;
  font-weight: 880;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  color: var(--texto);
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
}

.logo.small { font-size: 1.05rem; }

/* The EN VIVO dot: the whole brand in 8 pixels. */
.logo-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--rosa);
  box-shadow: 0 0 10px rgba(254, 44, 85, 0.9);
  animation: dotVivo 2.2s ease-in-out infinite;
}

@keyframes dotVivo {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.top-nav { display: flex; gap: 22px; margin-left: auto; }

.top-nav a {
  color: var(--texto-2);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.15s ease;
}

.top-nav a:hover { color: var(--texto); }

/* ---- Buttons ---- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 750;
  font-size: 0.98rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:active { transform: scale(0.97); }

.btn.gold {
  background: linear-gradient(180deg, #ffd964, var(--oro) 55%, var(--oro-hondo));
  color: var(--oro-tinta);
  box-shadow: 0 6px 24px rgba(247, 201, 72, 0.28), inset 0 1px 0 rgba(255, 245, 210, 0.8);
}

.btn.gold:hover { box-shadow: 0 8px 32px rgba(247, 201, 72, 0.45), inset 0 1px 0 rgba(255, 245, 210, 0.8); }

.btn.ghost {
  background: var(--vidrio);
  border-color: var(--linea);
  color: var(--texto);
}

.btn.ghost:hover { background: rgba(255, 255, 255, 0.1); }

:where(a, button, input, textarea):focus-visible {
  outline: 2px solid var(--cian);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ---- Hero ---- */

.hero {
  max-width: var(--ancho);
  margin: 0 auto;
  padding: 56px 24px 40px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 40px;
  align-items: center;
}

h1 em {
  font-style: normal;
  color: var(--oro);
  text-shadow: 0 0 34px rgba(247, 201, 72, 0.35);
}

.sub {
  margin-top: 20px;
  max-width: 52ch;
  color: var(--texto-2);
  font-size: 1.06rem;
}

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.hero-note {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--texto-2);
  letter-spacing: 0.02em;
}

/* ---- The living phone ---- */

.hero-stage { position: relative; display: grid; place-items: center; }

.hero-glow {
  position: absolute;
  inset: -8% -20%;
  background:
    radial-gradient(45% 40% at 60% 30%, rgba(254, 44, 85, 0.16), transparent 70%),
    radial-gradient(40% 40% at 35% 75%, rgba(37, 244, 238, 0.1), transparent 70%),
    radial-gradient(50% 45% at 55% 60%, rgba(247, 201, 72, 0.1), transparent 70%);
  filter: blur(10px);
  z-index: 0;
}

.phone {
  position: relative;
  z-index: 1;
  width: min(300px, 78vw);
  aspect-ratio: 740 / 1500;
  border-radius: 34px;
  background: #060409;
  outline: 7px solid #16121f;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65);
  overflow: hidden;
  font-size: 12px;
}

.ph-haze {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(90% 60% at 30% 30%, rgba(214, 189, 224, 0.85), transparent 70%),
    radial-gradient(80% 55% at 75% 55%, rgba(226, 196, 205, 0.8), transparent 72%),
    linear-gradient(175deg, #c9b6d6 0%, #cfb9c6 45%, #a99bc0 100%);
}

.ph-top {
  position: absolute;
  top: 14px;
  left: 10px;
  right: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ph-profile {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(20, 20, 24, 0.55);
  border-radius: 999px;
  padding: 4px 10px 4px 4px;
  color: #fff;
}

.ph-ava {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #7b5ce0, #b8589d);
  font-weight: 800;
}

.ph-who { display: flex; flex-direction: column; line-height: 1.15; }
.ph-who b { font-size: 11px; }
.ph-who i { font-style: normal; font-size: 9.5px; opacity: 0.85; }

.ph-watch {
  background: rgba(20, 20, 24, 0.45);
  border-radius: 999px;
  padding: 4px 9px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

.ph-diamonds {
  position: absolute;
  top: 52px;
  right: 10px;
  background: rgba(20, 20, 24, 0.5);
  color: #fff;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 10.5px;
  font-weight: 800;
}

/* Quiéreme tile (gold, the product's own) */
.ph-qm {
  position: absolute;
  left: 10px;
  top: 26%;
  width: 74px;
  border-radius: 12px;
  background: linear-gradient(160deg, #ffedb0 0%, #ffd558 26%, #f7a928 60%, #e18a10 100%);
  box-shadow: 0 4px 14px rgba(140, 74, 6, 0.5), 0 0 12px rgba(255, 186, 46, 0.4), inset 0 0 0 1px rgba(255, 246, 208, 0.95);
  text-align: center;
  padding: 20px 6px 8px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.ph-qm-art {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fffdf4, #ffe9b8 70%);
  border: 2px solid #fff;
  display: grid;
  place-items: center;
  font-size: 17px;
  box-shadow: 0 2px 8px rgba(140, 74, 6, 0.45);
}

.ph-qm-count {
  display: block;
  margin: 2px auto 4px;
  background: #2b1a04;
  color: #ffe9ad;
  border-radius: 999px;
  padding: 2px 10px;
  width: max-content;
  font-size: 12px;
  font-weight: 800;
}

.ph-qm-cta { font-size: 7.5px; font-weight: 800; color: #3a2405; letter-spacing: 0.01em; }

/* Quiéreme gracias banner */
.ph-gracias {
  position: absolute;
  left: 10px;
  top: 27.5%;
  display: flex;
  align-items: center;
  gap: 7px;
  width: 78%;
  border-radius: 999px;
  background: linear-gradient(90deg, #2a1535 0%, rgba(38, 19, 50, 0.82) 55%, rgba(38, 19, 50, 0.25) 100%);
  padding: 6px 12px 6px 6px;
  color: #fff;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.ph-gracias.on { opacity: 1; transform: none; }
.ph-qm.off { opacity: 0; transform: scale(0.92); }

.ph-g-ava {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #7b5ce0, #e0447c);
  box-shadow: 0 0 0 2px #ffd75e;
  font-weight: 800;
}

.ph-g-txt { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.ph-g-txt b { font-size: 10.5px; }
.ph-g-txt i { font-style: normal; font-size: 8.5px; opacity: 0.9; white-space: nowrap; }

.ph-g-x {
  margin-left: auto;
  color: #ffd75e;
  font-style: italic;
  font-weight: 900;
  font-size: 13px;
  text-shadow: 0 0 6px rgba(255, 196, 0, 0.6);
}

/* PK bar */
.ph-pk {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 27%;
  border-radius: 10px;
  background: rgba(10, 8, 16, 0.55);
  padding: 6px 8px 8px;
  color: #fff;
}

.ph-pk-names {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  margin-bottom: 5px;
}

.ph-pk-timer {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 1px 8px;
  font-size: 9px;
  font-weight: 800;
}

.ph-pk-bar {
  display: flex;
  height: 16px;
  border-radius: 999px;
  overflow: hidden;
  font-size: 9px;
  font-weight: 800;
}

.ph-pk-a {
  flex-basis: 53%;
  background: linear-gradient(90deg, #fe2c55, #ff5c7f);
  display: flex;
  align-items: center;
  padding-left: 8px;
  transition: flex-basis 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.ph-pk-b {
  flex: 1;
  background: linear-gradient(90deg, #1fb6cd, #25f4ee);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 8px;
  color: #04333a;
}

/* chat + hearts */
.ph-chat {
  position: absolute;
  left: 10px;
  bottom: 12%;
  color: #fff;
  font-size: 9.5px;
  line-height: 1.5;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  opacity: 0.9;
}

.ph-chat b { opacity: 0.8; font-weight: 700; }

.ph-hearts { position: absolute; right: 12px; bottom: 8%; width: 40px; height: 45%; pointer-events: none; }

.ph-hearts i {
  position: absolute;
  bottom: 0;
  right: 8px;
  font-style: normal;
  font-size: 14px;
  animation: heartUp 3.2s linear forwards;
}

@keyframes heartUp {
  0% { transform: translate(0, 0) scale(0.6); opacity: 0; }
  12% { opacity: 0.95; }
  100% { transform: translate(var(--hx, -10px), -320px) scale(1.15) rotate(var(--hr, -12deg)); opacity: 0; }
}

/* ---- Ticker ---- */

.ticker {
  border-top: 1px solid var(--linea);
  border-bottom: 1px solid var(--linea);
  background: var(--carbon);
  overflow: hidden;
  padding: 12px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.ticker-track {
  display: flex;
  gap: 44px;
  width: max-content;
  animation: tick 36s linear infinite;
}

.ticker-track span {
  font-stretch: 116%;
  font-weight: 820;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  color: var(--texto-2);
  white-space: nowrap;
}

.ticker-track span::after {
  content: '✦';
  color: var(--oro);
  margin-left: 44px;
  font-size: 0.75rem;
}

@keyframes tick {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---- Sections ---- */

.section {
  max-width: var(--ancho);
  margin: 0 auto;
  padding: 72px 24px 8px;
}

.sec-head { max-width: 60ch; margin-bottom: 36px; }

.sec-head p { color: var(--texto-2); margin-top: 12px; }

/* ---- Feature grid: each card illustrated by its own overlay ---- */

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  background: var(--vidrio);
  border: 1px solid var(--linea);
  border-radius: var(--radio);
  padding: 18px;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(247, 201, 72, 0.45);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
}

.card h3 { margin-top: 14px; }

.card > p { color: var(--texto-2); font-size: 0.92rem; margin-top: 6px; line-height: 1.55; }

/* The artifact zone: a real-looking piece of each overlay, in miniature. */
.art {
  position: relative;
  height: 92px;
  border-radius: 12px;
  background:
    radial-gradient(80% 90% at 30% 20%, rgba(214, 189, 224, 0.22), transparent 70%),
    linear-gradient(175deg, #241a33, #191227);
  display: grid;
  place-items: center;
  overflow: hidden;
  font-size: 11px;
}

/* PK */
.a-pk-bar { display: flex; width: 82%; height: 20px; border-radius: 999px; overflow: hidden; font-weight: 800; font-size: 10px; }
.a-pk-a { flex-basis: 54%; background: linear-gradient(90deg, #fe2c55, #ff5c7f); color: #fff; display: flex; align-items: center; padding-left: 9px; }
.a-pk-b { flex: 1; background: linear-gradient(90deg, #1fb6cd, #25f4ee); color: #04333a; display: flex; align-items: center; justify-content: flex-end; padding-right: 9px; }
.a-pk-win { position: absolute; top: 12px; right: 14px; background: #f7c948; color: #241a02; font-size: 9px; font-weight: 900; border-radius: 999px; padding: 2px 8px; }

/* Torneo */
.a-tn { width: 82%; }
.a-tn-timer { display: block; width: max-content; margin: 0 auto 6px; background: rgba(247, 201, 72, 0.14); border: 1px solid rgba(247, 201, 72, 0.5); color: #ffd964; font-weight: 900; border-radius: 8px; padding: 2px 10px; font-size: 13px; }
.a-tn-bar { height: 10px; border-radius: 999px; background: rgba(255, 255, 255, 0.12); overflow: hidden; }
.a-tn-bar i { display: block; height: 100%; background: linear-gradient(90deg, #25f4ee, #7df3ff); border-radius: 999px; }
.a-tn-meta { display: block; text-align: right; font-size: 8.5px; color: #9a92b4; margin-top: 4px; font-weight: 800; letter-spacing: 0.06em; }

/* Quiéreme mini */
.a-qm { position: relative; width: 64px; border-radius: 10px; background: linear-gradient(160deg, #ffedb0, #ffd558 30%, #f7a928 65%, #e18a10); text-align: center; padding: 14px 6px 7px; box-shadow: inset 0 0 0 1px rgba(255, 246, 208, 0.95); }
.a-qm span { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); width: 24px; height: 24px; border-radius: 50%; background: #fffdf4; border: 2px solid #fff; display: grid; place-items: center; font-size: 12px; box-shadow: 0 2px 6px rgba(140, 74, 6, 0.4); }
.a-qm b { display: block; width: max-content; margin: 0 auto 3px; background: #2b1a04; color: #ffe9ad; border-radius: 999px; padding: 1px 8px; font-size: 10px; }
.a-qm i { font-style: normal; font-size: 6.5px; font-weight: 800; color: #3a2405; }

/* Top likes / evento rows */
.a-top, .a-ev { width: 78%; display: flex; flex-direction: column; gap: 5px; }
.a-top p, .a-ev p { display: flex; align-items: center; gap: 7px; background: rgba(12, 13, 20, 0.6); border-radius: 999px; padding: 3px 10px; color: #ede9f7; font-size: 9.5px; font-weight: 700; }
.a-top i, .a-ev i { width: 10px; height: 10px; border-radius: 50%; }
.r1 { background: #f2b32c; box-shadow: 0 0 6px rgba(242, 179, 44, 0.8); }
.r2 { background: #c9d0da; }
.r3 { background: #cd7f3f; }

/* Votación tiles */
.a-vote { display: flex; gap: 8px; }
.a-tile { position: relative; width: 44px; border-radius: 9px; background: #f2eff6; text-align: center; padding: 8px 4px 5px; font-size: 14px; }
.a-tile b { display: block; width: max-content; margin: 3px auto 0; background: #211c29; color: #fff; border-radius: 999px; padding: 0 7px; font-size: 9px; }
.a-tile.lead { outline: 2px solid #f2b32c; box-shadow: 0 0 10px rgba(242, 179, 44, 0.5); }

/* Alerta banner */
.a-alert { display: flex; align-items: center; gap: 7px; width: 80%; border-radius: 999px; background: linear-gradient(90deg, #2a1535, rgba(38, 19, 50, 0.4)); padding: 6px 12px 6px 6px; color: #fff; }
.a-al-ava { flex: none; width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, #e0a25c, #b8589d); font-weight: 800; font-size: 11px; }
.a-alert span { display: flex; flex-direction: column; line-height: 1.2; }
.a-alert span b { font-size: 10px; }
.a-alert span i { font-style: normal; font-size: 8.5px; opacity: 0.85; }
.a-al-x { margin-left: auto; color: #ffd75e; font-style: italic; font-weight: 900; font-size: 12px; }

/* Orgánica */
.a-og { width: 82%; }
.a-og-bar { position: relative; height: 12px; border-radius: 999px; background: rgba(255, 255, 255, 0.12); }
.a-og-bar i { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, #f7c948, #ffd964); box-shadow: 0 0 10px rgba(247, 201, 72, 0.5); }
.a-og-bar em { position: absolute; top: -7px; font-style: normal; font-size: 7.5px; font-weight: 900; background: #241a33; border: 1px solid rgba(247, 201, 72, 0.6); color: #ffd964; border-radius: 999px; padding: 1px 5px; }
.a-og-bar em.n1 { left: 26%; }
.a-og-bar em.n2 { left: 56%; }
.a-og-bar em.n3 { left: 86%; }
.a-og-tease { display: block; margin-top: 9px; font-size: 8.5px; color: #d9d3ea; background: rgba(12, 13, 20, 0.6); border-radius: 999px; width: max-content; max-width: 100%; padding: 3px 9px; }

/* Contadores */
.a-count { display: flex; gap: 10px; }
.a-count span { background: rgba(12, 13, 20, 0.65); border-radius: 999px; padding: 5px 12px; font-weight: 800; font-size: 12px; color: #ede9f7; }

/* ---- Steps ---- */

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  counter-reset: paso;
}

.steps li {
  background: var(--vidrio);
  border: 1px solid var(--linea);
  border-radius: var(--radio);
  padding: 18px;
}

.steps b {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffd964, var(--oro-hondo));
  color: var(--oro-tinta);
  font-weight: 900;
  margin-bottom: 12px;
}

.steps h3 { font-size: 1.02rem; }

.steps p { color: var(--texto-2); font-size: 0.9rem; margin-top: 4px; }

/* ---- Para quién ---- */

.who { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }

.who-card {
  background: var(--vidrio);
  border: 1px solid var(--linea);
  border-radius: var(--radio);
  padding: 24px;
}

.who-card h3 { font-stretch: 112%; font-weight: 820; text-transform: uppercase; letter-spacing: 0.04em; }

.who-card ul { list-style: none; margin-top: 14px; display: grid; gap: 9px; }

.who-card li {
  color: var(--texto-2);
  font-size: 0.94rem;
  padding-left: 22px;
  position: relative;
}

.who-card li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--oro);
  font-size: 0.8rem;
}

/* ---- Precios ---- */

.prices {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--vidrio);
  border: 1px solid var(--linea);
  border-radius: var(--radio);
  padding: 26px 22px 22px;
}

.price-card.destacado {
  border-color: rgba(247, 201, 72, 0.55);
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(247, 201, 72, 0.1), transparent 70%),
    var(--vidrio);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.35);
}

.price-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #ffd964, var(--oro-hondo));
  color: var(--oro-tinta);
  font-size: 0.72rem;
  font-weight: 850;
  font-stretch: 112%;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 999px;
  padding: 5px 14px;
}

.price-card h3 {
  font-stretch: 112%;
  font-weight: 820;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.price {
  margin-top: 10px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price b {
  font-size: 2.6rem;
  font-weight: 880;
  font-stretch: 114%;
  color: var(--oro);
  font-variant-numeric: tabular-nums;
}

.price span { color: var(--texto-2); font-weight: 600; }

.price-card ul {
  list-style: none;
  margin: 16px 0 22px;
  display: grid;
  gap: 9px;
  flex: 1;
  align-content: start;
}

.price-card li {
  color: var(--texto-2);
  font-size: 0.92rem;
  padding-left: 22px;
  position: relative;
}

.price-card li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--oro);
  font-size: 0.8rem;
}

.prices-note {
  margin-top: 22px;
  color: var(--texto-2);
  font-size: 0.95rem;
}

.prices-note a { color: var(--oro); font-weight: 700; }

/* Plan elegido en el formulario */
.lf-plan {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(247, 201, 72, 0.1);
  border: 1px solid rgba(247, 201, 72, 0.45);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.9rem;
  color: var(--texto);
}

.lf-plan.hidden { display: none; }

.lf-plan b { color: var(--oro); }

.lf-plan button {
  margin-left: auto;
  background: none;
  border: 0;
  color: var(--texto-2);
  font-size: 0.95rem;
  cursor: pointer;
}

.lf-plan button:hover { color: var(--texto); }

/* ---- CTA / form ---- */

#cuenta { padding-bottom: 72px; }

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
  background:
    radial-gradient(70% 90% at 85% 10%, rgba(247, 201, 72, 0.12), transparent 60%),
    var(--carbon);
  border: 1px solid rgba(247, 201, 72, 0.3);
  border-radius: 24px;
  padding: 36px;
}

.cta-copy p { color: var(--texto-2); margin-top: 12px; max-width: 38ch; }

.lead-form { display: grid; gap: 14px; }

.lead-form label {
  display: grid;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--texto-2);
}

.lead-form .opt { font-weight: 500; opacity: 0.7; }

.lead-form input,
.lead-form textarea {
  font: inherit;
  color: var(--texto);
  background: rgba(11, 7, 20, 0.7);
  border: 1px solid var(--linea);
  border-radius: 12px;
  padding: 12px 14px;
  transition: border-color 0.15s ease;
}

.lead-form input:focus,
.lead-form textarea:focus { border-color: var(--oro); outline: none; }

.lead-form textarea { resize: vertical; min-height: 74px; }

.lf-web { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.lf-legal { font-size: 0.82rem; color: var(--texto-2); }
.lf-legal a { color: var(--oro); text-decoration: none; }
.lf-legal a:hover { text-decoration: underline; }

.lf-msg { min-height: 1.4em; font-weight: 700; font-size: 0.92rem; }
.lf-msg.ok { color: #47e08a; }
.lf-msg.bad { color: #ff6a6a; }

/* ---- Footer ---- */

.foot {
  border-top: 1px solid var(--linea);
  padding: 32px 24px 44px;
  max-width: var(--ancho);
  margin: 0 auto;
  display: grid;
  gap: 8px;
  color: var(--texto-2);
  font-size: 0.88rem;
}

.foot a { color: var(--texto-2); }
.foot a:hover { color: var(--texto); }

/* ---- Reveal on scroll (one quiet move, no circus) ----
   Hidden ONLY when JS is running (html.js): without scripts the page must
   simply be visible — a landing that requires JS to read is broken. */

.js .card, .js .steps li, .js .who-card, .js .cta-panel, .js .price-card {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.vis { opacity: 1 !important; transform: none !important; }

/* No-JS or reduced motion: everything simply visible. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .card, .steps li, .who-card, .cta-panel, .price-card { opacity: 1; transform: none; }
  .ticker-track, .logo-dot, .ph-hearts i { animation: none; }
  .ph-pk-a { transition: none; }
}

/* ---- Responsive ---- */

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; padding-top: 36px; }
  .hero-stage { order: 2; margin-top: 8px; }
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .prices { grid-template-columns: 1fr; max-width: 460px; }
  .cta-panel { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  /* "ESPECTADORES" must fit 375px minus padding: smaller and less expanded. */
  h1 { font-size: clamp(1.8rem, 8vw, 2.3rem); font-stretch: 106%; }
  .top { gap: 14px; }
  .top-nav { display: none; }
  .grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .who { grid-template-columns: 1fr; }
  .cta-panel { padding: 24px 18px; }
}

/* ---- WhatsApp country code picker (2026-08-12) ---- */
.lf-wa-row { display: flex; gap: 8px; }
.lf-wa-row input { flex: 1; min-width: 0; }
.lf-cc {
  background: var(--vidrio);
  border: 1px solid var(--linea);
  border-radius: 10px;
  color: var(--texto);
  font: inherit;
  padding: 0 8px;
  max-width: 128px;
}
.lf-cc option { background: var(--carbon); color: var(--texto); }

/* ---- Billing toggle + annual savings (2026-08-12) ---- */
.bill-toggle {
  display: inline-flex;
  gap: 4px;
  margin-top: 18px;
  padding: 4px;
  border: 1px solid var(--linea);
  border-radius: 999px;
  background: var(--vidrio);
}
.bill-toggle button {
  border: 0;
  background: none;
  color: var(--texto-2);
  font: inherit;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 8px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.bill-toggle button[aria-pressed='true'] {
  background: linear-gradient(180deg, #ffd964, var(--oro) 55%, var(--oro-hondo));
  color: var(--oro-tinta);
}
.price-save {
  display: block;
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--oro);
  margin-top: 4px;
}
