/* ════════════════════════════════════════════════════════════
   DE 0 A 100 CON IA — Inteligencia facturable · sistema de diseño
   Vibra morada (rosa #FF3DAE + violeta #8B5CF6) sobre dark #0B0B10.
   El VERDE IA #3DDC84 queda como acento de dinero/marca:
   logo, "de verdad" del hero, checks y momentos de venta.
   ════════════════════════════════════════════════════════════ */
:root {
  --bg:      #0B0B10;
  --card:    #13131B;
  --card2:   #181822;
  --ink:     #FBFAF7;
  --muted:   rgba(251, 250, 247, .62);
  --faint:   rgba(251, 250, 247, .36);
  --line:    rgba(251, 250, 247, .09);
  --line2:   rgba(251, 250, 247, .16);
  --acc:     #FF3DAE;   /* rosa */
  --acc2:    #8B5CF6;   /* violeta */
  --acc-ink: #17020e;   /* texto sobre rosa */
  --green:   #3DDC84;   /* Verde IA — dinero/marca */
  --yellow:  #FFD84D;
  --r:      22px;
  --ease:   cubic-bezier(.22, 1, .36, 1);
  --display: 'Gabarito', sans-serif;
  --body:    'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: var(--display); font-weight: 900; line-height: 1.05; letter-spacing: -.01em; }
h2 { font-size: clamp(2rem, 5.5vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
em { font-style: normal; }

/* ───────── Botones ───────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--display); font-weight: 700; font-size: 1.05rem;
  padding: .95rem 2.2rem; border-radius: 999px; border: 0; cursor: pointer;
  min-height: 44px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
  will-change: transform;
}
.btn--primary {
  background: var(--acc); color: var(--acc-ink);
  box-shadow: 0 6px 32px rgba(255, 61, 174, .35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(255, 61, 174, .5); }
.btn--ghost {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--line2);
}
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--faint); }
.btn--sm { padding: .55rem 1.4rem; font-size: .95rem; }
.btn--lg { padding: 1.15rem 2.8rem; font-size: 1.2rem; }
.btn--block { width: 100%; }

/* ───────── Barra de anuncio ───────── */
.announce {
  background: linear-gradient(90deg, var(--acc), var(--acc2));
  text-align: center; padding: .55rem 1rem;
  font-size: .88rem; font-weight: 500; color: #fff;
}
.announce strong { font-weight: 700; }
.announce__dot { margin: 0 .55rem; opacity: .7; }

/* ───────── Nav ───────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .9rem clamp(1rem, 4vw, 2.5rem);
  background: rgba(11, 11, 16, .82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__brand { display: flex; align-items: center; gap: .65rem; }
.nav__logo { width: 52px; height: 52px; flex-shrink: 0; filter: drop-shadow(0 0 14px rgba(61, 220, 132, .35)); }
.nav__stack { display: flex; flex-direction: column; line-height: 1.15; }
.nav__word { font-family: var(--display); font-weight: 900; font-size: 1.22rem; white-space: nowrap; }
.nav__by {
  font-size: .68rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--green); white-space: nowrap;
}
.nav__links { display: none; gap: 1.6rem; font-size: .92rem; color: var(--muted); }
.nav__links a { transition: color .25s; }
.nav__links a:hover { color: var(--ink); }
@media (min-width: 900px) { .nav__links { display: flex; } }

/* ───────── Hero ───────── */
.hero {
  position: relative; text-align: center;
  padding: clamp(3.5rem, 9vw, 6.5rem) 1.25rem 0;
  overflow: hidden;
}
.hero__glow {
  position: absolute; inset: -20% -30% auto;  height: 70%;
  background:
    radial-gradient(38% 45% at 30% 20%, rgba(255, 61, 174, .16), transparent 70%),
    radial-gradient(40% 50% at 72% 12%, rgba(139, 92, 246, .18), transparent 70%);
  pointer-events: none;
}
.hero__title {
  position: relative;
  font-size: clamp(2.7rem, 9vw, 5.4rem);
  max-width: 900px; margin: 0 auto;
}
/* "de verdad" = acento VERDE (dinero real) sobre la vibra morada */
.hero__real {
  color: var(--green);
  text-shadow: 0 0 34px rgba(61, 220, 132, .35);
}
.hero__chip {
  display: inline-flex; align-items: center; gap: .1em;
  background: linear-gradient(135deg, var(--acc), var(--acc2));
  color: #fff; border-radius: .28em; padding: 0 .18em;
  transform: rotate(-2deg);
  box-shadow: 0 8px 40px rgba(139, 92, 246, .5);
  animation: chipFloat 4s ease-in-out infinite;
}
.hero__chip-spark { font-size: .38em; align-self: flex-start; margin-top: .35em; }
@keyframes chipFloat {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50%       { transform: rotate(-1deg) translateY(-5px); }
}
.hero__sub {
  position: relative; max-width: 640px; margin: 1.6rem auto 0;
  color: var(--muted); font-size: clamp(1rem, 2.4vw, 1.2rem);
}
.hero__sub strong { color: var(--ink); }
.hero__ctas {
  position: relative; display: flex; gap: .9rem; justify-content: center;
  flex-wrap: wrap; margin-top: 2.1rem;
}
.hero__proof { position: relative; margin-top: 1.7rem; color: var(--muted); font-size: .95rem; }
.hero__proof strong { color: var(--ink); }
.hero__perks {
  position: relative; margin-top: 1.1rem;
  color: var(--muted); font-size: .9rem; font-weight: 500;
}
.hero__perks b { color: var(--green); font-weight: 700; margin-right: .3rem; }
.hero__perks span { margin: 0 .7rem; color: var(--faint); }
.hero__fine { position: relative; margin-top: .8rem; color: var(--faint); font-size: .85rem; }

/* ───────── 3 reels del hero (patrón de la referencia) ───────── */
.hero__reels {
  position: relative;
  display: flex; gap: clamp(.7rem, 2vw, 1.3rem); justify-content: center;
  max-width: 880px; margin: 3rem auto 0;
}
.hero__reel { flex: 1 1 0; min-width: 0; max-width: 280px; }
.hero__reel video {
  width: 100%; aspect-ratio: 9 / 16; object-fit: cover;
  border-radius: clamp(14px, 2.5vw, var(--r));
  border: 1px solid var(--line2);
  background: var(--card);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .45);
}
.hero__reel:nth-child(1) { transform: translateY(14px) rotate(-1.2deg); }
.hero__reel:nth-child(3) { transform: translateY(14px) rotate(1.2deg); }

/* ───────── Slot de video principal (VSL) ───────── */
.vsl { position: relative; max-width: 880px; margin: clamp(3rem, 6vw, 4.5rem) auto 0; padding-bottom: clamp(3rem, 7vw, 5rem); }
.vsl__frame {
  position: relative; border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--line2);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .55), 0 0 60px rgba(139, 92, 246, .14);
  aspect-ratio: 16 / 9; background: #000;
}
.vsl__frame video { width: 100%; height: 100%; object-fit: cover; }
.vsl__play {
  position: absolute; inset: 0; margin: auto;
  width: 92px; height: 92px; border-radius: 50%;
  background: var(--acc); color: var(--acc-ink); border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s var(--ease);
}
.vsl__play:hover { transform: scale(1.08); }
.vsl__play-ring {
  position: absolute; inset: -8px; border-radius: 50%;
  border: 2px solid rgba(255, 61, 174, .55);
  animation: ringPulse 2s var(--ease) infinite;
}
@keyframes ringPulse {
  0%   { transform: scale(1);   opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}
.vsl__badge {
  position: absolute; left: 50%; bottom: 1rem; transform: translateX(-50%);
  background: rgba(11, 11, 16, .8); backdrop-filter: blur(8px);
  padding: .45rem 1.1rem; border-radius: 999px;
  font-size: .85rem; font-weight: 600; border: 1px solid var(--line2);
  white-space: nowrap;
}
.vsl.is-playing .vsl__play, .vsl.is-playing .vsl__badge { display: none; }

/* ───────── Marquee de plataformas ───────── */
.platforms { padding: 2.2rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.platforms__kicker {
  text-align: center; font-size: .78rem; letter-spacing: .18em;
  color: var(--faint); font-weight: 600; margin-bottom: 1.3rem; padding: 0 1rem;
}
.marquee { overflow: hidden; position: relative; }
.marquee__track {
  display: flex; align-items: center; gap: 2.4rem; width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--display); font-weight: 700; font-size: 1.15rem;
  color: var(--muted); white-space: nowrap;
}
.marquee__track i {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--acc); opacity: .55; flex-shrink: 0;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ───────── Dolor ───────── */
.pain { max-width: 720px; margin: 0 auto; padding: clamp(3.5rem, 7vw, 5.5rem) 1.25rem; text-align: center; }
.pain__title { font-size: clamp(2.2rem, 6vw, 3.6rem); margin-bottom: 1.8rem; }
.pain__body p { color: var(--muted); font-size: clamp(1.05rem, 2.4vw, 1.25rem); margin-bottom: 1.1rem; }
.pain__body em { color: var(--ink); }
.pain__body strong { color: var(--ink); }
.pain__punch { margin-top: 1.6rem; font-size: clamp(1.3rem, 3vw, 1.7rem) !important; font-family: var(--display); color: var(--ink) !important; }
.pain__punch strong { color: var(--acc); }

/* ───────── Section head genérico ───────── */
.section-head { text-align: center; max-width: 760px; margin: 0 auto 3rem; padding: 0 1.25rem; }
.kicker {
  display: inline-block; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--acc); font-weight: 700; margin-bottom: .9rem;
}
.section-sub { color: var(--muted); margin-top: 1.1rem; font-size: clamp(1rem, 2.2vw, 1.15rem); }

/* ───────── Fases (compactas) ───────── */
.phases { padding: clamp(3rem, 6vw, 4.5rem) 1.25rem; max-width: 1080px; margin: 0 auto; }
.steps { display: grid; gap: 1rem; }
@media (min-width: 760px) { .steps { grid-template-columns: 1fr 1fr 1fr; } }
.step {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.7rem 1.5rem; text-align: center;
}
.step__label {
  display: inline-block; font-family: var(--display); font-weight: 700;
  letter-spacing: .14em; color: var(--acc); font-size: .8rem; margin-bottom: .7rem;
}
.step h3 { font-size: 1.35rem; margin-bottom: .5rem; }
.step p { color: var(--muted); font-size: .95rem; }
.phases__paths {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}
.path-card {
  flex: 1 1 300px; max-width: 460px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.6rem 1.8rem;
}
.path-card__tag {
  display: inline-block; font-size: .7rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--acc); background: rgba(255, 61, 174, .1);
  border: 1px solid rgba(255, 61, 174, .3);
  border-radius: 999px; padding: .3rem .8rem;
}
.path-card__tag--pro {
  color: var(--acc2); background: rgba(139, 92, 246, .12);
  border-color: rgba(139, 92, 246, .35);
}
.path-card h3 { margin: .8rem 0 .4rem; font-size: 1.2rem; }
.path-card p { color: var(--muted); font-size: .97rem; }

.phase {
  display: grid; gap: 2rem; align-items: center;
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  border-top: 1px solid var(--line);
}
@media (min-width: 860px) {
  .phase { grid-template-columns: 1.1fr .9fr; gap: 4rem; }
  .phase--flip .phase__info { order: 2; }
  .phase--flip .phase__visual { order: 1; }
}
.phase__label {
  font-family: var(--display); font-weight: 700; letter-spacing: .14em;
  color: var(--acc); font-size: .85rem; margin-bottom: .7rem;
}
.phase__info h3 { font-size: clamp(1.7rem, 4vw, 2.4rem); margin-bottom: 1rem; }
.phase__info > p { color: var(--muted); margin-bottom: 1.3rem; }
.phase__list li {
  position: relative; padding-left: 1.7rem; margin-bottom: .65rem;
  color: var(--muted); font-size: .98rem;
}
.phase__list li::before {
  content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700;
}

/* Mockups de las fases */
.mock {
  background: var(--card2); border: 1px solid var(--line2); border-radius: var(--r);
  padding: 1.5rem; max-width: 420px; margin: 0 auto; width: 100%;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .4);
}
.mock__head { font-weight: 700; font-size: .95rem; margin-bottom: 1rem; font-family: var(--display); }
.mock__row {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  padding: .7rem 1rem; margin-bottom: .55rem; font-size: .92rem; color: var(--muted);
}
.mock__row b { color: var(--green); }
.mock__row--done { color: var(--ink); }
.mock__hint { text-align: center; color: var(--faint); font-size: .82rem; margin-top: .9rem; }
.mock__pills { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; }
.mock__pills span {
  background: var(--card); border: 1px solid var(--line2); border-radius: 999px;
  padding: .45rem .95rem; font-size: .84rem; color: var(--muted);
  transition: border-color .3s, color .3s;
}
.mock__pills span:hover { border-color: var(--acc); color: var(--ink); }
.mock__sale {
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(61, 220, 132, .1); border: 1px solid rgba(61, 220, 132, .35);
  color: var(--green); border-radius: 12px; padding: .8rem 1rem;
  font-weight: 700; margin-top: .9rem; font-size: .95rem;
}
.mock__sale span { font-weight: 500; font-size: .8rem; opacity: .8; }

/* ───────── Muro de reels ───────── */
.wall { padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(3rem, 6vw, 4.5rem); border-top: 1px solid var(--line); }
.wall__marquee { overflow: hidden; position: relative; }
.wall__marquee::before, .wall__marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: clamp(30px, 8vw, 120px); z-index: 2; pointer-events: none;
}
.wall__marquee::before { left: 0;  background: linear-gradient(90deg, var(--bg), transparent); }
.wall__marquee::after  { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.wall__track {
  display: flex; gap: 1.1rem; width: max-content;
  padding: .5rem 1rem;
}
.wall__track--left  { animation: wallScrollL 55s linear infinite; }
.wall__track--right { animation: wallScrollR 70s linear infinite; margin-top: .6rem; }
.wall__marquee.is-paused .wall__track { animation-play-state: paused; }
@keyframes wallScrollL { to { transform: translateX(calc(-50% - .55rem)); } }
@keyframes wallScrollR { from { transform: translateX(calc(-50% - .55rem)); } to { transform: translateX(0); } }
.wall__card { position: relative; width: clamp(180px, 22vw, 250px); flex-shrink: 0; }
.wall__card video {
  width: 100%; aspect-ratio: 9 / 16; object-fit: cover;
  border-radius: 18px; border: 1px solid var(--line2);
  background: var(--card);
}
.wall__card figcaption {
  position: absolute; left: .7rem; bottom: .7rem;
  background: rgba(11, 11, 16, .75); backdrop-filter: blur(6px);
  border-radius: 999px; padding: .3rem .8rem;
  font-size: .75rem; font-weight: 600;
}
.wall__cta { text-align: center; margin-top: 2.6rem; }


/* ───────── Cómo ganar dinero ───────── */
.txt-green { color: var(--green); text-shadow: 0 0 30px rgba(61, 220, 132, .3); }
.kicker--money { color: var(--green); }
.money { padding: clamp(3.5rem, 7vw, 5.5rem) 0; border-top: 1px solid var(--line); }
.money .section-head { padding-inline: 1.25rem; }
.money__grid {
  display: grid; gap: 1.2rem;
  max-width: 1080px; margin: 0 auto 1.2rem; padding: 0 1.25rem;
}
.money__grid:last-of-type { margin-bottom: 0; }
@media (min-width: 820px) {
  .money__grid { grid-template-columns: 1fr 1fr; }
  .money-card--wide { grid-column: span 2; }
}
.money-card {
  min-width: 0;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.8rem clamp(1.3rem, 3vw, 2rem);
  display: flex; flex-direction: column; gap: .6rem;
  transition: border-color .3s;
}
.money-card:hover { border-color: rgba(61, 220, 132, .35); }
.money-card__num {
  font-family: var(--display); font-weight: 900; font-size: .9rem;
  color: var(--green); letter-spacing: .1em;
}
.money-card h3 { font-size: clamp(1.35rem, 2.6vw, 1.7rem); }
.money-card p { color: var(--muted); font-size: .97rem; }
.money-card p strong { color: var(--ink); }
.money-card__media { display: flex; gap: .8rem; margin-top: 1rem; }
.money-card__media video {
  flex: 1 1 0; min-width: 0; aspect-ratio: 9 / 16; object-fit: cover;
  border-radius: 14px; border: 1px solid var(--line2); background: var(--card2);
  max-height: 300px;
}
.money__cta { text-align: center; margin-top: 2.4rem; }

/* Marcos de navegador para las webs */
.money-card__webs { display: grid; gap: 1rem; margin-top: 1rem; }
@media (min-width: 720px) { .money-card__webs { grid-template-columns: 1fr 1fr; } }
.webframe {
  border-radius: 14px; overflow: hidden; border: 1px solid var(--line2);
  background: var(--card2); box-shadow: 0 18px 44px rgba(0, 0, 0, .4);
}
.webframe__bar {
  display: flex; align-items: center; gap: .38rem;
  padding: .55rem .8rem; border-bottom: 1px solid var(--line);
}
.webframe__bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--line2); }
.webframe__bar i:nth-child(1) { background: #ff5f57; }
.webframe__bar i:nth-child(2) { background: #febc2e; }
.webframe__bar i:nth-child(3) { background: #28c840; }
.webframe__bar span {
  margin-left: .6rem; font-size: .74rem; color: var(--faint);
  background: var(--card); border-radius: 6px; padding: .12rem .7rem;
}
.webframe video { width: 100%; aspect-ratio: 4096 / 2346; object-fit: cover; display: block; }

/* Terminal mock (software con IA) */
.mock-terminal {
  margin-top: 1rem; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--line2); background: #0a0a0e;
}
.mock-terminal__bar { display: flex; gap: .38rem; padding: .55rem .8rem; border-bottom: 1px solid var(--line); }
.mock-terminal__bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--line2); }
.mock-terminal__bar i:nth-child(1) { background: #ff5f57; }
.mock-terminal__bar i:nth-child(2) { background: #febc2e; }
.mock-terminal__bar i:nth-child(3) { background: #28c840; }
.mock-terminal pre {
  padding: 1rem 1.1rem; font-size: .82rem; line-height: 1.75;
  color: var(--green); font-family: 'SF Mono', Menlo, Consolas, monospace;
  white-space: pre-wrap;
}

/* Mock de diseño gráfico */
.mock-brand {
  margin-top: 1rem; display: flex; align-items: center; gap: .6rem; flex-wrap: wrap;
  background: var(--card2); border: 1px solid var(--line2); border-radius: 14px;
  padding: 1rem 1.1rem;
}
.mock-brand__swatch { width: 34px; height: 34px; border-radius: 10px; display: inline-block; }
.mock-brand__label { color: var(--muted); font-size: .85rem; }

/* Comparador antes / después */
.money-card__ba { display: grid; gap: 1rem; margin-top: 1rem; }
@media (min-width: 820px) { .money-card__ba { grid-template-columns: 1fr 1fr 1fr; } }
.ba {
  --pos: 50%;
  position: relative; aspect-ratio: 4 / 3; overflow: hidden;
  border-radius: 14px; border: 1px solid var(--line2);
  touch-action: none;
}
.ba img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  pointer-events: none;
}
.ba__before { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba__divider {
  position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px;
  background: var(--ink); box-shadow: 0 0 12px rgba(0, 0, 0, .6);
  transform: translateX(-1px); pointer-events: none;
}
.ba__divider::after {
  content: "⇄"; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--ink); color: #0B0B10;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; font-weight: 700;
}
.ba__tag {
  position: absolute; top: .6rem; z-index: 2;
  font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .22rem .6rem; border-radius: 999px; pointer-events: none;
}
.ba__tag--a { left: .6rem; background: rgba(11, 11, 16, .75); color: var(--faint); }
.ba__tag--d { right: .6rem; background: rgba(11, 11, 16, .75); color: var(--green); }
.ba__range {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; cursor: ew-resize; margin: 0;
  -webkit-appearance: none; appearance: none;
}



/* ───────── Banda de webs (parallax, texto encima) ───────── */
.webband {
  position: relative; overflow: hidden;
  width: 100%; margin: 0 0 1.2rem;
  height: clamp(420px, 62vh, 620px);
}
.webband__panels { display: flex; height: 100%; }
.webband__panel { position: relative; flex: 1 1 0; min-width: 0; overflow: hidden; margin: 0; }
.webband__panel + .webband__panel { border-left: 2px solid var(--bg); }
.webband__panel video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transform: scale(1.18); will-change: transform;
}
.webband__panel::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,16,.62), rgba(11,11,16,.15) 45%, rgba(11,11,16,.75));
  pointer-events: none;
}
.webband__panel figcaption {
  position: absolute; left: 0; right: 0; bottom: 1.1rem; z-index: 2;
  text-align: center; font-family: var(--display); font-weight: 700;
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink); opacity: .9;
}
.webband__overlay {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 1.5rem; pointer-events: none;
}
.webband__overlay h3 {
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  text-shadow: 0 4px 30px rgba(0, 0, 0, .8);
}
.webband__overlay p {
  max-width: 520px; margin-top: .8rem; color: var(--ink);
  font-size: clamp(.95rem, 2.2vw, 1.05rem);
  text-shadow: 0 2px 16px rgba(0, 0, 0, .9);
}
.webband__overlay p strong { color: var(--green); }

/* ───────── Carrusel de logos de marcas ───────── */
.brandwheel { overflow: hidden; position: relative; margin-top: 1.2rem; padding: .8rem 0; min-width: 0; max-width: 100%; }
.brandwheel::before, .brandwheel::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 46px; z-index: 2; pointer-events: none;
}
.brandwheel::before { left: 0;  background: linear-gradient(90deg, var(--card), transparent); }
.brandwheel::after  { right: 0; background: linear-gradient(-90deg, var(--card), transparent); }
.brandwheel__track {
  display: flex; align-items: center; gap: 2.1rem; width: max-content;
  animation: wallScrollL 50s linear infinite;
}
.brandwheel__track img { width: auto; height: 26px; opacity: .8; }

/* ───────── Bolsa de trabajo ───────── */
.jobs { padding: clamp(3.5rem, 7vw, 5.5rem) 1.25rem; border-top: 1px solid var(--line); }
.jobs__board {
  max-width: 640px; margin: 0 auto;
  background: var(--card2); border: 1px solid var(--line2); border-radius: var(--r);
  padding: 1.4rem clamp(1rem, 3vw, 1.6rem);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .45), 0 0 60px rgba(61, 220, 132, .07);
}
.jobs__head {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-family: var(--display); font-weight: 700; font-size: .95rem;
  margin-bottom: 1rem;
}
.jobs__new { font-family: var(--body); font-weight: 600; font-size: .74rem; color: var(--green); }
.jobs__row {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  padding: .85rem 1rem; margin-bottom: .6rem;
}
.jobs__info b { display: block; font-size: .95rem; }
.jobs__info span { color: var(--muted); font-size: .8rem; }
.jobs__check { font-style: normal; color: var(--green); font-weight: 600; }
.jobs__state {
  flex-shrink: 0; display: inline-flex; align-items: center; gap: .45rem;
  font-size: .76rem; font-weight: 600; white-space: nowrap; color: var(--muted);
}
.jobs__state i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px rgba(61, 220, 132, .6); }
.jobs__state--done { color: var(--faint); }
.jobs__state--done i { background: var(--faint); box-shadow: none; }
.jobs__foot { text-align: center; color: var(--faint); font-size: .78rem; margin-top: .9rem; }
.jobs__cta { text-align: center; margin-top: 2.2rem; }

/* ───────── Comparativa ───────── */
.versus { padding: clamp(3.5rem, 7vw, 5.5rem) 1.25rem; max-width: 1000px; margin: 0 auto; }
.versus__table { display: grid; gap: 1.2rem; }
@media (min-width: 760px) { .versus__table { grid-template-columns: 1fr 1fr; } }
.versus__col { border-radius: var(--r); padding: 1.8rem; }
.versus__col h3 { margin-bottom: 1.2rem; font-size: 1.25rem; text-align: center; }
.versus__col li { padding: .55rem 0 .55rem 1.9rem; position: relative; font-size: .97rem; }
.versus__col--alone { background: var(--card); border: 1px solid var(--line); color: var(--muted); }
.versus__col--alone li::before { content: "✕"; position: absolute; left: 0; color: var(--faint); font-weight: 700; }
.versus__col--school {
  background: linear-gradient(160deg, rgba(255, 61, 174, .09), rgba(139, 92, 246, .07)), var(--card2);
  border: 1px solid rgba(255, 61, 174, .3);
}
.versus__col--school li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.versus__cta { text-align: center; margin-top: 2.4rem; }

/* ───────── En números ───────── */
.numbers { max-width: 900px; margin: 0 auto; padding: 0 1.25rem clamp(4rem, 8vw, 6rem); text-align: center; }
.numbers__grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem;
  margin-bottom: 2rem;
}
.numbers__item {
  flex: 1 1 160px; max-width: 210px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.4rem 1rem;
}
.numbers__item b {
  display: block; font-family: var(--display); font-weight: 900;
  font-size: 2.1rem; color: var(--acc);
}
.numbers__item span { color: var(--muted); font-size: .88rem; }
.numbers__perks { display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem 1.8rem; color: var(--muted); font-size: .95rem; }
.numbers__perks li { position: relative; padding-left: 1.4rem; }
.numbers__perks li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }

/* ───────── Quién enseña ───────── */
.santi { padding: clamp(3.5rem, 7vw, 5.5rem) 1.25rem; border-top: 1px solid var(--line); }
.santi__grid {
  max-width: 1000px; margin: 0 auto;
  display: grid; gap: 2.5rem; align-items: center;
}
@media (min-width: 860px) { .santi__grid { grid-template-columns: .85fr 1.15fr; gap: 4rem; } }
.santi__photo { position: relative; max-width: 420px; margin: 0 auto; width: 100%; }
.santi__photo img {
  position: relative; z-index: 1;
  width: 100%; height: auto; border-radius: var(--r);
  border: 1px solid var(--line2);
}
.santi__photo-glow {
  position: absolute; inset: -12%;
  background:
    radial-gradient(45% 45% at 30% 70%, rgba(255, 61, 174, .25), transparent 70%),
    radial-gradient(45% 45% at 75% 25%, rgba(139, 92, 246, .25), transparent 70%);
  filter: blur(10px); z-index: 0;
}
.santi__info h2 { font-size: clamp(2.2rem, 5vw, 3.2rem); margin-bottom: 1.1rem; }
.santi__lead { font-size: clamp(1.05rem, 2.4vw, 1.2rem); margin-bottom: 1rem; }
.santi__info p { color: var(--muted); }
.santi__info strong { color: var(--ink); }
.santi__socials { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.santi__socials a {
  flex: 1 1 130px; max-width: 165px;
  background: var(--card); border: 1px solid var(--line); border-radius: 16px;
  padding: .9rem 1rem; text-align: center;
  transition: border-color .3s, transform .3s var(--ease);
}
.santi__socials a:hover { border-color: var(--acc); transform: translateY(-3px); }
.santi__socials b { display: block; font-family: var(--display); font-size: 1.15rem; }
.santi__socials span { color: var(--muted); font-size: .8rem; }

/* ───────── Pricing ───────── */
.pricing { padding: clamp(3.5rem, 7vw, 5.5rem) 1.25rem; border-top: 1px solid var(--line); }
.pricing__toggle {
  display: flex; justify-content: center; gap: .4rem; margin-bottom: 2rem;
  background: var(--card); border: 1px solid var(--line2); border-radius: 999px;
  width: max-content; margin-inline: auto; padding: .3rem;
}
.pricing__opt {
  border: 0; background: transparent; color: var(--muted);
  font-family: var(--display); font-weight: 700; font-size: .95rem;
  padding: .55rem 1.5rem; border-radius: 999px; cursor: pointer;
  transition: background .3s, color .3s;
}
.pricing__opt em { color: var(--green); font-size: .8rem; margin-left: .3rem; }
.pricing__opt.is-active { background: var(--ink); color: #0B0B10; }
.pricing__opt.is-active em { color: #0a7a2f; }

.price-card {
  max-width: 480px; margin: 0 auto;
  background: linear-gradient(170deg, rgba(255, 61, 174, .08), transparent 40%), var(--card2);
  border: 1px solid rgba(255, 61, 174, .35); border-radius: calc(var(--r) + 6px);
  padding: 2.2rem clamp(1.4rem, 4vw, 2.4rem);
  text-align: center;
  box-shadow: 0 40px 90px rgba(0, 0, 0, .5), 0 0 70px rgba(255, 61, 174, .1);
}
.price-card__star { color: var(--yellow); font-size: .85rem; font-weight: 600; margin-bottom: 1rem; }
.price-card h3 { font-size: 1.7rem; }
.price-card__access { color: var(--muted); font-size: .95rem; margin: .3rem 0 1.4rem; }
.price-card__price { display: flex; align-items: baseline; justify-content: center; gap: .6rem; }
.price-card__old { color: var(--faint); text-decoration: line-through; font-size: 1.5rem; font-weight: 600; }
.price-card__now { font-family: var(--display); font-weight: 900; font-size: 4rem; letter-spacing: -.02em; }
.price-card__per { color: var(--muted); font-size: 1.2rem; }
.price-card__bill { color: var(--faint); font-size: .85rem; margin: .4rem 0 1.6rem; }
.price-card__list { text-align: left; margin-bottom: 1.8rem; }
.price-card__list li {
  padding: .5rem 0 .5rem 1.9rem; position: relative;
  color: var(--muted); font-size: .95rem; border-bottom: 1px solid var(--line);
}
.price-card__list li:last-child { border-bottom: 0; }
.price-card__list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.price-card__list li strong { color: var(--ink); }
.price-card__fine { color: var(--faint); font-size: .82rem; margin-top: .9rem; }
.pricing__freeze {
  text-align: center; max-width: 560px; margin: 2rem auto 0;
  color: var(--muted); font-size: .95rem;
  background: rgba(255, 216, 77, .06); border: 1px solid rgba(255, 216, 77, .25);
  border-radius: 14px; padding: .9rem 1.4rem;
}
.pricing__freeze strong { color: var(--yellow); }

/* ───────── CTA final ───────── */
.final {
  position: relative; overflow: hidden;
  text-align: center; padding: clamp(4.5rem, 9vw, 7.5rem) 1.25rem;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(50% 60% at 50% 100%, rgba(255, 61, 174, .12), transparent 70%);
}
.final__strip {
  position: absolute; inset: 0; opacity: .14; pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 35%, #000 65%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 35%, #000 65%, transparent);
  overflow: hidden; display: flex; align-items: center;
}
.final__strip-track {
  display: flex; gap: 1rem; width: max-content;
  animation: wallScrollL 80s linear infinite;
}
.final__strip img {
  width: 180px; height: 320px; object-fit: cover;
  border-radius: 14px; filter: saturate(1.1);
}
.final h2, .final p, .final .btn, .final .final__fine { position: relative; z-index: 1; }
.final h2 { font-size: clamp(2.4rem, 6.5vw, 4rem); margin-bottom: 1.2rem; }
.final p { color: var(--muted); max-width: 560px; margin: 0 auto 2.2rem; font-size: clamp(1rem, 2.3vw, 1.15rem); }
.final__fine { margin-top: 1.2rem !important; font-size: .88rem !important; color: var(--faint) !important; }

/* ───────── FAQ ───────── */
.faq { max-width: 760px; margin: 0 auto; padding: 0 1.25rem clamp(4rem, 8vw, 6.5rem); }
.faq .section-head { margin-bottom: 2rem; }
.faq__list details {
  background: var(--card); border: 1px solid var(--line); border-radius: 16px;
  margin-bottom: .8rem; overflow: hidden;
}
.faq__list summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 1.4rem; font-weight: 600; font-size: 1rem; gap: 1rem;
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::after {
  content: "+"; font-family: var(--display); font-size: 1.4rem; color: var(--acc);
  transition: transform .3s var(--ease); flex-shrink: 0; line-height: 1;
}
.faq__list details[open] summary::after { transform: rotate(45deg); }
.faq__list details p { padding: 0 1.4rem 1.2rem; color: var(--muted); font-size: .96rem; }

/* ───────── Footer ───────── */
.footer {
  border-top: 1px solid var(--line); text-align: center;
  padding: 3rem 1.25rem calc(3rem + env(safe-area-inset-bottom));
}
.footer__brand { display: flex; justify-content: center; align-items: center; gap: .65rem; margin-bottom: 1.4rem; }
.footer__socials { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.6rem; margin-bottom: 1.6rem; color: var(--muted); font-size: .92rem; }
.footer__socials a { transition: color .25s; }
.footer__socials a:hover { color: var(--acc); }
.footer__legal { color: var(--faint); font-size: .8rem; line-height: 1.7; }

/* ───────── CTA sticky móvil ───────── */
.sticky-cta {
  position: fixed; left: .8rem; right: .8rem; bottom: calc(.8rem + env(safe-area-inset-bottom));
  z-index: 60;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: rgba(19, 19, 27, .92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line2); border-radius: 18px;
  padding: .7rem 1rem;
  transform: translateY(130%); transition: transform .45s var(--ease);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__text b { font-family: var(--display); font-size: 1.05rem; display: block; line-height: 1.1; }
.sticky-cta__text span { color: var(--muted); font-size: .78rem; }
@media (min-width: 900px) { .sticky-cta { display: none; } }


/* ───────── Móvil: orden del hero, swipe y compactación ───────── */
@media (max-width: 899px) {
  .hero { display: flex; flex-direction: column; align-items: center; padding-top: 2.2rem; }
  .hero__title  { order: 1; }
  .hero__sub    { order: 2; margin-top: 1.1rem; }
  .hero__ctas   { order: 3; margin-top: 1.5rem; }
  .hero__reels  { order: 4; margin-top: 1.8rem; width: 100%; }
  .hero__proof  { order: 5; margin-top: 1.6rem; }
  .hero__perks  { order: 6; }
  .hero__fine   { order: 7; }
  .vsl          { order: 8; width: 100%; }
  .hero__perks span { display: block; height: 0; overflow: hidden; margin: 0; }

  /* Fotos que venden: swipe lateral */
  .money-card__ba {
    display: flex; align-items: flex-start;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; gap: .8rem;
    width: 100%; margin-inline: -.4rem; padding: 0 .4rem .5rem;
    scrollbar-width: none;
  }
  .money-card__ba::-webkit-scrollbar { display: none; }
  .money-card__ba .ba {
    flex: 0 0 86%; width: 86%; aspect-ratio: 4 / 3;
    scroll-snap-align: center;
  }

  /* Centrado y compactación */
  .money-card { text-align: center; align-items: center; }
  .money-card__media { justify-content: center; width: 100%; }
  .money-card .brandwheel, .money-card .mock-terminal { width: 100%; }
  .money-card__media video { max-height: 240px; }
  .webband { height: clamp(360px, 52vh, 480px); }
  .pain, .money, .jobs, .versus, .santi, .pricing, .faq { padding-top: 3rem; padding-bottom: 3rem; }
  .wall { padding: 2.6rem 0 2.4rem; }
  .phases { padding: 2.6rem 1.25rem; }
  .final { padding: 3.5rem 1.25rem; }
}

/* ───────── Reveals (IntersectionObserver + transición CSS) ───────── */
.reveal { opacity: 1; }
html.js .reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
html.js .reveal.is-in { opacity: 1; transform: none; }
html.js.reduced-motion .reveal { opacity: 1; transform: none; transition: none; }

/* ───────── Reduced motion ───────── */
@media (prefers-reduced-motion: reduce) {
  .marquee__track, .wall__track, .final__strip-track, .brandwheel__track, .hero__chip, .vsl__play-ring { animation: none !important; }
  .reveal, html.js .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}
