/* landing/assets/style.css — la web: oscuro con acentos naranja/teal coherentes con la app
   (docs/17 §9.1). Sin dependencias ni fuentes externas. Móvil primero en lo que importa; a
   400 px nada desborda salvo tablas y grafismos, cada uno en su contenedor. */

:root {
  --bg: #07070b;
  --bg-1: #0b0d13;
  --bg-2: #11141c;
  --bg-3: #171b25;
  --bg-4: #1f2430;
  --line: rgba(255, 255, 255, 0.07);
  --line-2: rgba(255, 255, 255, 0.13);
  --fg: #f2f3f7;
  --fg-2: #b4b9c6;
  --fg-3: #7c8395;
  --accent: #a66bff;
  --accent-2: #5fe3f5;
  --teal: #22d3ee;
  --teal-2: #5fe3f5;
  --green: #3ddc84;
  --amber: #ffc53d;
  --violet: #a66bff;
  --red: #ff5c6c;
  --magenta: #ff3ea5;
  --grad: linear-gradient(100deg, #ff3ea5 0%, #a66bff 50%, #22d3ee 100%);
  --radius: 14px;
  --radius-lg: 22px;
  --max: 1180px;
  --shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.8);
  --font: "Inter var", Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI Variable Display", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "Cascadia Code", "JetBrains Mono", Consolas, monospace;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font: 16px/1.6 var(--font);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; }
a { color: var(--teal-2); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: #fff; }
h1, h2, h3, h4 { line-height: 1.12; letter-spacing: -0.02em; margin: 0; font-weight: 750; }
h1 { font-size: clamp(2.35rem, 6vw, 4.3rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); letter-spacing: -0.03em; }
h3 { font-size: 1.2rem; }
p { margin: 0; }
code { font-family: var(--mono); background: var(--bg-3); border: 1px solid var(--line); padding: 1px 6px; border-radius: 6px; font-size: 0.92em; }
button { font: inherit; color: inherit; }
[hidden] { display: none !important; }
:focus-visible { outline: 2px solid var(--teal-2); outline-offset: 3px; border-radius: 6px; }
::selection { background: rgba(166, 107, 255, 0.35); }

.sr { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 16px; top: -60px; z-index: 100; background: var(--accent); color: #111; padding: 8px 14px; border-radius: 10px; font-weight: 700; }
.skip:focus { top: 12px; }
.wrap { max-width: var(--max); margin-inline: auto; padding-inline: 20px; position: relative; }
.wrap--narrow { max-width: 820px; }
.muted { color: var(--fg-2); }
.small { font-size: 0.88rem; }
.center { text-align: center; justify-content: center; }
.grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--fg-2); max-width: 62ch; line-height: 1.6; }
.kicker { color: var(--accent-2); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem; font-weight: 700; margin-bottom: 14px; }
.i { display: inline-flex; width: 1.15em; height: 1.15em; flex: none; }
.i svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ── botones ─────────────────────────────────────────────────────────────── */
.btn {
  --b: var(--line-2);
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 11px 20px; border-radius: 999px; border: 1px solid var(--b);
  background: var(--bg-3); color: var(--fg); text-decoration: none; font-weight: 650; font-size: 0.97rem;
  cursor: pointer; transition: transform 0.15s ease, background 0.2s, border-color 0.2s, box-shadow 0.2s; white-space: nowrap;
}
.btn:hover { color: #fff; border-color: rgba(255, 255, 255, 0.28); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn[disabled], .btn.is-busy { opacity: 0.55; cursor: default; transform: none; }
.btn--primary { background: linear-gradient(180deg, #b77dff, #a66bff); border-color: transparent; color: #120a24; box-shadow: 0 10px 30px -12px rgba(166, 107, 255, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.35); }
.btn--primary:hover { color: #120a24; box-shadow: 0 14px 36px -12px rgba(166, 107, 255, 0.95), inset 0 1px 0 rgba(255, 255, 255, 0.35); }
.btn--ghost { background: rgba(255, 255, 255, 0.03); }
.btn--danger { background: rgba(255, 92, 108, 0.12); border-color: rgba(255, 92, 108, 0.5); color: #ffb3bb; }
.btn--danger:hover { background: rgba(255, 92, 108, 0.22); color: #fff; }
.btn--google { background: #fff; color: #1f1f1f; border-color: #fff; font-weight: 650; }
.btn--google:hover { color: #000; background: #f3f5f8; }
.btn--sm { padding: 7px 14px; font-size: 0.9rem; }
.btn--lg { padding: 14px 26px; font-size: 1.05rem; }
.btn--block { width: 100%; }
.btn .i svg { stroke-width: 2.2; }
.g-logo { width: 20px; height: 20px; flex: none; }
.linkbtn { background: none; border: 0; padding: 6px 0; color: var(--fg-2); text-decoration: underline; text-underline-offset: 3px; cursor: pointer; font-size: 0.9rem; }
.linkbtn:hover { color: #fff; }

/* ── cabecera ────────────────────────────────────────────────────────────── */
.top { position: sticky; top: 0; z-index: 50; transition: background 0.25s, border-color 0.25s; border-bottom: 1px solid transparent; }
.top.is-scrolled, .pg-login .top, .pg-account .top, .pg-auth .top, .pg-legal .top, .pg-404 .top { background: rgba(7, 8, 12, 0.72); backdrop-filter: saturate(160%) blur(16px); -webkit-backdrop-filter: saturate(160%) blur(16px); border-color: var(--line); }
.top__in { max-width: var(--max); margin-inline: auto; padding: 14px 20px; display: flex; align-items: center; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--fg); text-decoration: none; font-weight: 800; font-size: 1.1rem; letter-spacing: -0.02em; }
.brand:hover { color: #fff; }
.brand .logo { width: 30px; height: 30px; }
.brand--big { font-size: 1.6rem; justify-content: center; margin-bottom: 10px; }
.brand--big .logo { width: 44px; height: 44px; }
.nav { margin-left: auto; display: flex; align-items: center; gap: 6px; }
.nav > a:not(.btn) { color: var(--fg-2); text-decoration: none; padding: 7px 11px; border-radius: 10px; font-size: 0.95rem; font-weight: 550; }
.nav > a:not(.btn):hover { color: #fff; background: rgba(255, 255, 255, 0.05); }
.nav__lang { border: 1px solid var(--line-2); border-radius: 999px !important; font-size: 0.85rem !important; padding: 4px 11px !important; }
.nav__sep { width: 1px; height: 22px; background: var(--line-2); margin-inline: 6px; }
.nav__account b { font-variant-numeric: tabular-nums; background: rgba(34, 211, 238, 0.16); color: var(--teal-2); padding: 1px 8px; border-radius: 999px; font-size: 0.82rem; }
.nav__account b:empty { display: none; }
.burger { display: none; margin-left: auto; width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--line-2); background: var(--bg-2); cursor: pointer; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.burger > span { width: 18px; height: 2px; background: var(--fg); border-radius: 2px; transition: transform 0.2s, opacity 0.2s; }
.burger[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .burger { display: inline-flex; }
  .nav {
    position: absolute; left: 12px; right: 12px; top: calc(100% + 6px); flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(17, 20, 28, 0.97); border: 1px solid var(--line-2); border-radius: 18px; padding: 10px; box-shadow: var(--shadow);
    opacity: 0; transform: translateY(-8px); pointer-events: none; transition: opacity 0.18s, transform 0.18s; margin-left: 0;
  }
  .nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav > a:not(.btn) { padding: 11px 12px; }
  .nav__lang { align-self: flex-start; margin: 4px 12px; }
  .nav__sep { width: auto; height: 1px; margin: 6px 0; }
  .nav .btn { width: 100%; padding-block: 11px; }
}

/* ── fondos ──────────────────────────────────────────────────────────────── */
.glow { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; z-index: 0; opacity: 0.55; }
.glow--a { width: 620px; height: 620px; background: radial-gradient(circle, rgba(166, 107, 255, 0.55), transparent 65%); top: -260px; left: -180px; }
.glow--b { width: 640px; height: 640px; background: radial-gradient(circle, rgba(34, 211, 238, 0.45), transparent 65%); top: -120px; right: -240px; }
.glow--c { width: 700px; height: 500px; background: radial-gradient(circle, rgba(166, 107, 255, 0.28), transparent 65%); top: 10%; left: 50%; transform: translateX(-50%); }
.glow--d { width: 520px; height: 520px; background: radial-gradient(circle, rgba(166, 107, 255, 0.4), transparent 65%); right: -160px; bottom: -260px; }
.grid-bg { position: absolute; inset: 0; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 56px 56px; mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 20%, transparent 75%); -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 20%, transparent 75%); pointer-events: none; }
main { position: relative; }
.page { position: relative; overflow: hidden; min-height: calc(100vh - 260px); padding-block: 40px 80px; }
.page--center { display: grid; align-items: center; }
.page > .wrap, .page > div:not(.glow) { position: relative; z-index: 1; }

/* ── hero ────────────────────────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; padding-block: 56px 36px; }
.hero__in { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr); gap: 56px; align-items: center; z-index: 1; }
.hero h1 { margin: 18px 0 20px; }
.hero h1 .grad { display: inline; }
.pill { display: inline-flex; align-items: center; gap: 9px; padding: 6px 14px 6px 10px; border-radius: 999px; background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line-2); color: var(--fg-2); font-size: 0.85rem; font-weight: 600; }
.pill__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(61, 220, 132, 0.18); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 7px rgba(61, 220, 132, 0.05); } }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero__note { color: var(--fg-3); font-size: 0.9rem; margin-top: 12px; }
.trust { list-style: none; padding: 0; margin: 26px 0 0; display: flex; flex-wrap: wrap; gap: 10px 20px; }
.trust li { display: inline-flex; align-items: center; gap: 8px; color: var(--fg-2); font-size: 0.9rem; }
.trust svg, .checks svg { width: 17px; height: 17px; flex: none; fill: none; stroke: var(--teal-2); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.hero__art { position: relative; }
.watch { position: relative; margin: 40px auto 0; width: fit-content; display: flex; align-items: center; gap: 10px; padding: 9px 18px 9px 10px; border-radius: 999px; border: 1px solid var(--line-2); background: rgba(17, 20, 28, 0.9); backdrop-filter: blur(10px); cursor: pointer; font-weight: 650; box-shadow: var(--shadow); z-index: 3; }
.watch svg { width: 30px; height: 30px; padding: 7px 6px 7px 8px; border-radius: 50%; background: var(--accent); fill: #120a24; }
.watch:hover { border-color: rgba(255, 255, 255, 0.3); }
.finish { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px 28px; margin-top: 64px; z-index: 1; }
.finish__label { color: var(--fg-3); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 650; }
.finish__item { color: var(--fg-2); font-weight: 750; font-size: 1.05rem; letter-spacing: -0.01em; opacity: 0.85; }

/* el tablero del hero */
.board-wrap { position: relative; }
.board { position: relative; border-radius: var(--radius-lg); border: 1px solid var(--line-2); background: linear-gradient(180deg, rgba(23, 27, 37, 0.92), rgba(11, 13, 19, 0.96)); box-shadow: var(--shadow), 0 0 0 1px rgba(255, 255, 255, 0.02) inset; overflow: hidden; font-size: 0.78rem; }
.bd-bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, 0.02); }
.bd-bar span { width: 10px; height: 10px; border-radius: 50%; background: var(--bg-4); }
.bd-bar span:nth-child(1) { background: #ff5f57; } .bd-bar span:nth-child(2) { background: #febc2e; } .bd-bar span:nth-child(3) { background: #28c840; }
.bd-bar em { font-style: normal; margin-left: 10px; color: var(--fg-3); font-weight: 600; }
.bd-body { display: grid; grid-template-columns: 1fr 1.25fr; gap: 0; }
.bd-col { padding: 14px; display: grid; gap: 9px; align-content: start; }
.bd-takes { border-left: 1px solid var(--line); }
.bd-label { color: var(--fg-3); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.66rem; font-weight: 700; margin-bottom: 2px; }
.bd-para { display: flex; gap: 8px; align-items: center; height: 36px; opacity: 0; animation: fadeUp 0.6s ease forwards; animation-delay: calc(0.15s + var(--i) * 0.12s); }
.bd-para b { flex: none; width: 20px; height: 20px; border-radius: 6px; display: grid; place-items: center; background: rgba(166, 107, 255, 0.14); color: var(--accent-2); font-size: 0.7rem; }
.bd-para span { flex: 1; display: grid; gap: 6px; }
.bd-para i { display: block; height: 6px; width: var(--w); border-radius: 4px; background: linear-gradient(90deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.1)); }
.bd-row { display: flex; gap: 6px; height: 36px; align-items: center; }
.bd-take { position: relative; flex: 1; height: 30px; border-radius: 8px; background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line); display: grid; place-items: center; overflow: hidden; opacity: 0; animation: fadeUp 0.5s ease forwards; animation-delay: calc(0.6s + var(--i) * 0.25s + var(--k) * 0.08s); }
.bd-wave, .imp-wave, .rev-wave, .bd-audio, .mini-balance__wave, .video__soonwave { fill: currentColor; }
.bd-take .bd-wave { width: 84%; height: 60%; color: rgba(255, 255, 255, 0.22); }
.bd-take.is-best { animation-name: fadeUp, pickBest; animation-duration: 0.5s, 0.6s; animation-delay: calc(0.6s + var(--i) * 0.25s + var(--k) * 0.08s), calc(1.5s + var(--i) * 0.35s); animation-fill-mode: forwards, forwards; }
.bd-take.is-best .bd-wave { color: rgba(61, 220, 132, 0.75); }
.bd-take em { position: absolute; top: -1px; right: -1px; font-style: normal; font-size: 0.58rem; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; background: var(--green); color: #04150b; padding: 1px 5px; border-radius: 0 8px 0 6px; opacity: 0; animation: fadeIn 0.3s ease forwards; animation-delay: calc(1.7s + var(--i) * 0.35s); }
@keyframes pickBest { to { background: rgba(61, 220, 132, 0.1); border-color: rgba(61, 220, 132, 0.6); box-shadow: 0 0 0 3px rgba(61, 220, 132, 0.1); } }
.bd-tl { position: relative; border-top: 1px solid var(--line); padding: 12px 14px 16px; display: grid; gap: 7px; }
.bd-track { position: relative; height: 30px; border-radius: 8px; background: rgba(255, 255, 255, 0.025); border: 1px solid var(--line); display: flex; gap: 3px; padding: 3px; overflow: hidden; }
.bd-clip { width: var(--w); border-radius: 5px; background: linear-gradient(180deg, rgba(34, 211, 238, 0.55), rgba(34, 211, 238, 0.32)); border: 1px solid rgba(95, 227, 245, 0.5); color: #dffaf6; font-weight: 700; font-size: 0.68rem; display: grid; place-items: center; transform-origin: left; transform: scaleX(0); animation: grow 0.55s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; animation-delay: calc(2.1s + var(--i) * 0.4s); }
.bd-clip:nth-child(3) { background: linear-gradient(180deg, rgba(166, 107, 255, 0.55), rgba(166, 107, 255, 0.3)); border-color: rgba(95, 227, 245, 0.55); color: #f0e9ff; }
.bd-a { padding: 2px 6px; }
.bd-audio { width: 100%; height: 100%; color: rgba(95, 227, 245, 0.5); }
.bd-playhead { position: absolute; top: 30px; bottom: 12px; left: 14px; width: 2px; background: #fff; box-shadow: 0 0 12px rgba(255, 255, 255, 0.8); border-radius: 2px; animation: sweep 7s linear infinite; animation-delay: 3.8s; opacity: 0; }
.bd-playhead::before { content: ""; position: absolute; top: -5px; left: -4px; border: 5px solid transparent; border-top-color: #fff; }
@keyframes sweep { 0% { left: 14px; opacity: 1; } 92% { opacity: 1; } 100% { left: calc(100% - 16px); opacity: 0; } }
.bd-float { position: absolute; display: inline-flex; align-items: center; gap: 7px; padding: 7px 12px; border-radius: 12px; background: rgba(17, 20, 28, 0.94); border: 1px solid var(--line-2); box-shadow: var(--shadow); font-weight: 650; color: var(--fg); font-size: 0.8rem; opacity: 0; animation: pop 0.5s cubic-bezier(0.2, 0.9, 0.3, 1.3) forwards; }
.bd-float svg { width: 16px; height: 16px; fill: none; stroke: var(--green); stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.bd-float--a { top: -16px; right: 24px; animation-delay: 1.1s; }
.bd-float--b { bottom: -18px; left: 24px; animation-delay: 3.4s; }
.bd-float--b span { background: var(--grad); color: #0b0d12; padding: 1px 6px; border-radius: 6px; font-size: 0.7rem; font-weight: 800; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes grow { to { transform: scaleX(1); } }
@keyframes pop { from { opacity: 0; transform: scale(0.9) translateY(6px); } to { opacity: 1; transform: none; } }

/* ── cifras ──────────────────────────────────────────────────────────────── */
.stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; margin-block: 24px 20px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; padding-inline: 0; }
.stat { background: var(--bg-1); padding: 26px 26px; display: grid; gap: 6px; }
.stat b { font-size: clamp(1.8rem, 3.4vw, 2.5rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1; width: fit-content; }
.stat span { color: var(--fg-2); font-size: 0.95rem; }

/* ── bloques ─────────────────────────────────────────────────────────────── */
.block { position: relative; padding-block: 96px; overflow: hidden; }
.block--alt { background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.018) 12%, rgba(255, 255, 255, 0.018) 88%, transparent); }
.block > .wrap { z-index: 1; }
.block__head { max-width: 760px; margin: 0 auto 52px; text-align: center; }
.block__head .lead { margin: 18px auto 0; }

.checks { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.checks li { display: flex; gap: 10px; align-items: flex-start; color: var(--fg-2); }
.checks li svg { margin-top: 4px; }
.checks--lg li { font-size: 1.05rem; }
.checks--sm li { font-size: 0.9rem; gap: 8px; }
.checks--sm li svg { width: 15px; height: 15px; margin-top: 4px; }
.plain { padding-left: 18px; margin: 0; color: var(--fg-2); display: grid; gap: 6px; }

/* vídeo */
.video { margin: 0; }
.video__frame { position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-2); background: radial-gradient(ellipse at 30% 20%, rgba(166, 107, 255, 0.18), transparent 60%), radial-gradient(ellipse at 80% 90%, rgba(34, 211, 238, 0.2), transparent 55%), var(--bg-2); box-shadow: var(--shadow); max-width: 100%; }
.video__frame iframe, .video__frame video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: #000; }
.video__poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.85; transition: opacity 0.2s, transform 0.4s; }
.video__play { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; border: 0; background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.45)); cursor: pointer; font-weight: 700; color: #fff; }
.video__play:hover + .video__poster, .video__frame:hover .video__poster { opacity: 1; transform: scale(1.015); }
.video__playicon { width: 74px; height: 74px; border-radius: 50%; background: rgba(166, 107, 255, 0.95); display: grid; place-items: center; box-shadow: 0 0 0 10px rgba(166, 107, 255, 0.2), 0 20px 50px -10px rgba(166, 107, 255, 0.7); transition: transform 0.2s; }
.video__playicon svg { width: 30px; height: 30px; fill: #120a24; margin-left: 4px; }
.video__play:hover .video__playicon { transform: scale(1.06); }
.video__soon { position: absolute; inset: 0; display: grid; place-items: center; }
.video__soonwave { position: absolute; left: 6%; right: 6%; width: 88%; height: 34%; top: 33%; color: rgba(255, 255, 255, 0.06); }
.video__sooncopy { position: relative; display: grid; justify-items: center; text-align: center; gap: 8px; padding: 20px; }
.video__sooncopy b { font-size: clamp(1.05rem, 2vw, 1.3rem); margin-top: 8px; }
.video__sooncopy > span:last-child { color: var(--fg-2); max-width: 40ch; font-size: 0.95rem; }
.video--soon .video__playicon { background: rgba(255, 255, 255, 0.08); box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.03); }
.video--soon .video__playicon svg { fill: var(--fg-2); }

.how-video { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr); gap: 44px; align-items: center; margin-bottom: 84px; }
.how-video__copy h3 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); margin-bottom: 12px; }
.how-video__copy p { color: var(--fg-2); margin-bottom: 20px; }

/* paso a paso */
.stepper { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.6fr); gap: 36px; align-items: start; }
.stepper__tabs { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; position: sticky; top: 100px; }
.stepper__tab { width: 100%; text-align: left; display: grid; grid-template-columns: auto 1fr; gap: 4px 14px; padding: 16px 18px; border-radius: var(--radius); border: 1px solid var(--line); background: rgba(255, 255, 255, 0.02); cursor: pointer; position: relative; overflow: hidden; transition: background 0.2s, border-color 0.2s; }
.stepper__tab:hover { background: rgba(255, 255, 255, 0.04); }
.stepper__tab.is-active { background: var(--bg-3); border-color: var(--line-2); }
.stepper__n { font-family: var(--mono); color: var(--fg-3); font-weight: 700; font-size: 0.85rem; padding-top: 2px; }
.stepper__tab.is-active .stepper__n { color: var(--accent-2); }
.stepper__t { display: grid; gap: 2px; }
.stepper__t b { font-size: 1.02rem; }
.stepper__t small { color: var(--fg-3); font-size: 0.86rem; }
.stepper__bar { position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: transparent; }
.stepper__bar i { display: block; height: 100%; width: 0; background: var(--grad); }
.stepper__tab.is-active .stepper__bar i { animation: bar var(--step-ms, 7000ms) linear forwards; }
.stepper.is-paused .stepper__tab.is-active .stepper__bar i { animation-play-state: paused; }
@keyframes bar { to { width: 100%; } }
.stepper__panels { display: grid; }
.stepper__panel { display: grid; gap: 26px; }
.js .stepper__panel { grid-area: 1 / 1; opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity 0.35s, transform 0.35s, visibility 0.35s; }
.js .stepper__panel.is-active { opacity: 1; visibility: visible; transform: none; }
html:not(.js) .stepper__panel + .stepper__panel { margin-top: 40px; }
.stepper__art { border-radius: var(--radius-lg); border: 1px solid var(--line-2); background: radial-gradient(ellipse at 20% 0%, rgba(166, 107, 255, 0.1), transparent 55%), radial-gradient(ellipse at 100% 100%, rgba(34, 211, 238, 0.12), transparent 55%), var(--bg-2); min-height: 320px; display: grid; place-items: center; padding: 28px; overflow: hidden; }
.stepper__copy { display: grid; gap: 12px; }
.stepper__step { color: var(--accent-2); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; }
.stepper__copy h3 { font-size: 1.6rem; }
.stepper__copy p { color: var(--fg-2); max-width: 64ch; }

/* ilustraciones de los pasos */
.art { width: 100%; max-width: 560px; font-size: 0.8rem; }
.art-import { display: grid; grid-template-columns: minmax(0, 0.8fr) auto minmax(0, 1.4fr); gap: 14px; align-items: center; }
.imp-files { display: grid; gap: 8px; }
.imp-file { display: flex; justify-content: space-between; gap: 6px; align-items: center; padding: 9px 11px; border-radius: 10px; background: var(--bg-3); border: 1px solid var(--line-2); font-weight: 650; }
.imp-file span { font-family: var(--mono); font-size: 0.68rem; color: var(--fg-3); }
.imp-file--cam { border-left: 3px solid var(--teal); } .imp-file--mic { border-left: 3px solid var(--accent); } .imp-file--scr { border-left: 3px solid var(--violet); }
.is-active .imp-file { animation: slideIn 0.5s ease both; animation-delay: calc(var(--j) * 0.1s); }
.imp-arrow svg { width: 26px; height: 26px; fill: none; stroke: var(--fg-3); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.imp-sync { position: relative; padding: 12px; border-radius: 14px; background: rgba(0, 0, 0, 0.25); border: 1px solid var(--line-2); display: grid; gap: 8px; }
.imp-sync__head { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--green); font-size: 0.78rem; }
.imp-sync__head .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }
.imp-track { display: grid; grid-template-columns: 62px 1fr; align-items: center; gap: 8px; }
.imp-track span { color: var(--fg-3); font-size: 0.7rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.imp-wave { width: 100%; height: 22px; color: rgba(95, 227, 245, 0.6); }
.imp-track:nth-of-type(4) .imp-wave { color: rgba(95, 227, 245, 0.7); }
.imp-track:nth-of-type(5) .imp-wave { color: rgba(166, 107, 255, 0.65); }
.is-active .imp-track .imp-wave { animation: align 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both; animation-delay: calc(0.35s + var(--j) * 0.12s); }
.imp-line { position: absolute; top: 34px; bottom: 10px; left: 58%; width: 2px; background: rgba(255, 255, 255, 0.7); box-shadow: 0 0 10px rgba(255, 255, 255, 0.5); }
@keyframes align { from { transform: translateX(calc((var(--j) - 1.5) * 14px)); opacity: 0.4; } to { transform: none; opacity: 1; } }
@keyframes slideIn { from { opacity: 0; transform: translateX(-12px); } to { opacity: 1; transform: none; } }

.art-script { display: grid; gap: 10px; }
.scr-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr); gap: 14px; color: var(--fg-3); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.66rem; font-weight: 700; }
.scr-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr); gap: 14px; align-items: center; }
.scr-para { padding: 10px 12px; border-radius: 10px; background: var(--bg-3); border: 1px solid var(--line-2); display: grid; gap: 6px; }
.scr-para b { color: var(--accent-2); font-size: 0.72rem; }
.scr-para i { display: block; height: 6px; width: var(--w); border-radius: 4px; background: rgba(255, 255, 255, 0.18); }
.scr-takes { display: flex; flex-wrap: wrap; gap: 6px; }
.scr-take { padding: 6px 9px; border-radius: 8px; border: 1px solid var(--line-2); background: rgba(255, 92, 108, 0.06); color: var(--fg-3); text-decoration: line-through; text-decoration-color: rgba(255, 92, 108, 0.6); font-weight: 600; font-size: 0.72rem; white-space: nowrap; }
.scr-take.is-best { text-decoration: none; background: rgba(61, 220, 132, 0.12); border-color: rgba(61, 220, 132, 0.6); color: #c9f7dc; }
.is-active .scr-take { animation: fadeUp 0.4s ease both; animation-delay: calc(0.2s + var(--p) * 0.25s + var(--k) * 0.08s); }
.is-active .scr-take.is-best { animation: fadeUp 0.4s ease both, glowGreen 1.2s ease 1; animation-delay: calc(0.2s + var(--p) * 0.25s + var(--k) * 0.08s), calc(0.9s + var(--p) * 0.25s); }
@keyframes glowGreen { 50% { box-shadow: 0 0 0 5px rgba(61, 220, 132, 0.2); } }
.scr-clap { display: flex; align-items: center; gap: 10px; margin-top: 6px; padding: 9px 12px; border-radius: 10px; border: 1px dashed rgba(255, 197, 61, 0.5); color: var(--amber); font-weight: 650; width: fit-content; }
.scr-clap svg { width: 64px; height: 20px; fill: none; stroke: var(--amber); stroke-width: 2; stroke-linejoin: round; }

.art-send { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr) minmax(0, 1fr); gap: 12px; align-items: center; position: relative; padding-bottom: 46px; }
.snd-box { padding: 14px; border-radius: 14px; background: var(--bg-3); border: 1px solid var(--line-2); display: grid; gap: 10px; min-height: 150px; align-content: start; }
.snd-title { font-weight: 750; font-size: 0.9rem; }
.snd-file { display: flex; gap: 8px; align-items: flex-start; padding: 9px; border-radius: 10px; background: rgba(0, 0, 0, 0.25); border: 1px solid var(--line); }
.snd-file svg { width: 20px; height: 20px; flex: none; fill: none; stroke: var(--green); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.snd-file span { display: grid; color: var(--fg-3); font-size: 0.72rem; }
.snd-file b { color: var(--fg); font-size: 0.8rem; }
.snd-pipe { position: relative; height: 130px; display: grid; align-content: center; gap: 10px; }
.snd-pipe i { position: absolute; left: 0; right: 0; top: 50%; height: 2px; background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.35) 0 8px, transparent 8px 16px); background-size: 32px 2px; animation: dash 1s linear infinite; z-index: 0; }
@keyframes dash { to { background-position: 32px 0; } }
.snd-packet { position: relative; z-index: 1; justify-self: center; padding: 5px 10px; border-radius: 999px; font-weight: 700; font-size: 0.7rem; white-space: nowrap; }
.snd-packet--a { background: rgba(166, 107, 255, 0.18); border: 1px solid rgba(95, 227, 245, 0.6); color: #e6dcff; }
.snd-packet--b { background: rgba(166, 107, 255, 0.16); border: 1px solid rgba(166, 107, 255, 0.55); color: #ddd3ff; }
.is-active .snd-packet { animation: travel 2.6s ease-in-out infinite; }
.is-active .snd-packet--b { animation-delay: 1.3s; }
@keyframes travel { 0% { transform: translateX(-38%); opacity: 0; } 20% { opacity: 1; } 80% { opacity: 1; } 100% { transform: translateX(38%); opacity: 0; } }
.snd-steps { display: grid; gap: 6px; }
.snd-steps span { padding: 6px 9px; border-radius: 8px; background: rgba(34, 211, 238, 0.1); border: 1px solid rgba(34, 211, 238, 0.35); color: #c8f1fb; font-weight: 600; font-size: 0.74rem; }
.is-active .snd-steps span { animation: fadeUp 0.4s ease both; }
.is-active .snd-steps span:nth-child(2) { animation-delay: 0.4s; } .is-active .snd-steps span:nth-child(3) { animation-delay: 0.8s; }
.snd-quote { position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); padding: 8px 14px; border-radius: 12px; background: rgba(17, 20, 28, 0.95); border: 1px solid var(--line-2); color: var(--fg-2); white-space: nowrap; font-size: 0.78rem; }
.snd-quote b { color: var(--accent-2); font-size: 1rem; font-variant-numeric: tabular-nums; }

.art-review { display: grid; gap: 18px; }
.rev-tl { position: relative; display: grid; gap: 8px; padding: 14px; border-radius: 14px; background: rgba(0, 0, 0, 0.25); border: 1px solid var(--line-2); }
.rev-track { display: grid; grid-template-columns: 26px 1fr; gap: 8px; align-items: center; }
.rev-track em { font-style: normal; font-family: var(--mono); color: var(--fg-3); font-size: 0.7rem; }
.rev-track > div { display: flex; gap: 3px; height: 32px; }
.rev-clip { width: var(--w); border-radius: 6px; background: rgba(61, 220, 132, 0.3); border: 1px solid rgba(61, 220, 132, 0.6); transform-origin: left; }
.rev-clip--rev { background: repeating-linear-gradient(135deg, rgba(255, 197, 61, 0.35) 0 6px, rgba(255, 197, 61, 0.18) 6px 12px); border-color: rgba(255, 197, 61, 0.7); }
.is-active .rev-clip { animation: grow 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) both; animation-delay: calc(var(--j) * 0.12s); }
.rev-wave { width: 100%; height: 24px; color: rgba(95, 227, 245, 0.55); }
.rev-alts { display: flex; align-items: center; gap: 4px; margin-left: 34px; }
.rev-alts span { width: 34px; height: 12px; border-radius: 4px; background: rgba(255, 255, 255, 0.07); border: 1px dashed var(--line-2); }
.rev-alts b { margin-left: 6px; color: var(--fg-3); font-weight: 600; font-size: 0.72rem; }
.rev-out { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; justify-content: center; }
.rev-xml { padding: 6px 10px; border-radius: 8px; background: var(--grad); color: #0b0d12; font-weight: 800; }
.rev-target { padding: 6px 12px; border-radius: 999px; border: 1px solid var(--line-2); background: var(--bg-3); font-weight: 650; }
.is-active .rev-target { animation: pop 0.45s cubic-bezier(0.2, 0.9, 0.3, 1.3) both; }
.is-active .rev-target:nth-child(3) { animation-delay: 0.15s; } .is-active .rev-target:nth-child(4) { animation-delay: 0.3s; }

/* beneficios */
.features { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.feature { position: relative; padding: 26px; border-radius: var(--radius-lg); background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)); border: 1px solid var(--line); transition: border-color 0.2s, transform 0.2s; }
.feature:hover { border-color: var(--line-2); transform: translateY(-2px); }
.feature__icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: rgba(166, 107, 255, 0.12); border: 1px solid rgba(95, 227, 245, 0.3); margin-bottom: 18px; }
.feature:nth-child(3n + 2) .feature__icon { background: rgba(34, 211, 238, 0.12); border-color: rgba(95, 227, 245, 0.3); }
.feature:nth-child(3n + 3) .feature__icon { background: rgba(166, 107, 255, 0.12); border-color: rgba(166, 107, 255, 0.3); }
.ico { width: 22px; height: 22px; fill: none; stroke: var(--accent-2); stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.feature:nth-child(3n + 2) .ico { stroke: var(--teal-2); }
.feature:nth-child(3n + 3) .ico { stroke: var(--violet); }
.feature h3 { margin-bottom: 8px; font-size: 1.1rem; }
.feature p { color: var(--fg-2); font-size: 0.96rem; }

/* para quién */
.who { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.who__card { padding: 32px; border-radius: var(--radius-lg); border: 1px solid var(--line-2); background: radial-gradient(ellipse at 0% 0%, rgba(166, 107, 255, 0.1), transparent 55%), var(--bg-2); display: grid; gap: 12px; align-content: start; }
.who__card + .who__card { background: radial-gradient(ellipse at 100% 0%, rgba(34, 211, 238, 0.12), transparent 55%), var(--bg-2); }
.who__n { font-family: var(--mono); color: var(--fg-3); font-weight: 700; }
.who__card h3 { font-size: 1.45rem; }
.who__card > p { color: var(--fg-2); margin-bottom: 6px; }

/* ── precios ─────────────────────────────────────────────────────────────── */
.gift { display: flex; align-items: center; gap: 14px; max-width: 820px; margin: -16px auto 34px; padding: 12px 14px 12px 12px; border-radius: 16px; border: 1px solid rgba(61, 220, 132, 0.35); background: linear-gradient(90deg, rgba(61, 220, 132, 0.1), rgba(34, 211, 238, 0.05)); }
.gift__icon { width: 40px; height: 40px; flex: none; border-radius: 12px; display: grid; place-items: center; background: rgba(61, 220, 132, 0.16); color: var(--green); }
.gift__icon .i { width: 22px; height: 22px; }
.gift p { flex: 1; color: var(--fg); font-size: 0.95rem; }
.packs { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; align-items: stretch; }
.pack { position: relative; display: flex; flex-direction: column; gap: 6px; padding: 26px 22px 22px; border-radius: var(--radius-lg); border: 1px solid var(--line-2); background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)); transition: transform 0.2s, border-color 0.2s; }
.pack:hover { transform: translateY(-3px); border-color: rgba(255, 255, 255, 0.22); }
.pack--rec { border-color: transparent; background: linear-gradient(var(--bg-2), var(--bg-2)) padding-box, var(--grad) border-box; border: 1.5px solid transparent; box-shadow: 0 30px 70px -40px rgba(166, 107, 255, 0.8); }
.pack__badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); padding: 3px 12px; border-radius: 999px; background: var(--grad); color: #0b0d12; font-weight: 800; font-size: 0.74rem; letter-spacing: 0.04em; text-transform: uppercase; white-space: nowrap; }
.pack__name { font-size: 1.2rem; }
.pack__tag { color: var(--fg-3); font-size: 0.88rem; min-height: 1.4em; }
.pack__price { margin-top: 14px; }
.pack__price b { font-size: 2.5rem; font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.pack__credits { color: var(--fg-2); }
.pack__credits b { color: var(--fg); font-size: 1.1rem; font-variant-numeric: tabular-nums; }
.pack__bonus { color: var(--fg-3); font-size: 0.85rem; font-weight: 650; margin-bottom: 10px; }
.pack__bonus.is-bonus { color: var(--green); }
.pack .checks { margin-bottom: 18px; flex: 1; align-content: start; }
.packs__secure { display: flex; gap: 10px; align-items: center; justify-content: center; color: var(--fg-3); font-size: 0.88rem; margin-top: 18px; text-align: center; }
.packs__secure .i { color: var(--teal-2); }
.packs--compact { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 26px; }
.packs--compact .pack { padding: 22px 18px 18px; }
.packs--compact .pack__price b { font-size: 2rem; }

.calc { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 0; margin-top: 56px; border-radius: var(--radius-lg); border: 1px solid var(--line-2); background: var(--bg-2); overflow: hidden; }
.calc__form { padding: 30px; display: grid; gap: 12px; align-content: start; }
.calc__form h3 { font-size: 1.5rem; }
.calc__label { display: flex; justify-content: space-between; align-items: baseline; margin-top: 12px; font-weight: 650; font-size: 0.95rem; }
.calc__label output { font-variant-numeric: tabular-nums; color: var(--accent-2); font-weight: 750; }
input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 6px; background: linear-gradient(90deg, var(--accent) var(--fill, 12%), var(--bg-4) var(--fill, 12%)); outline-offset: 6px; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 4px solid var(--accent); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5); cursor: pointer; }
input[type="range"]::-moz-range-thumb { width: 16px; height: 16px; border-radius: 50%; background: #fff; border: 4px solid var(--accent); cursor: pointer; }
.seg { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.seg label { cursor: pointer; }
.seg input { position: absolute; opacity: 0; pointer-events: none; }
.seg span { display: grid; gap: 3px; height: 100%; padding: 12px 14px; border-radius: 12px; border: 1px solid var(--line-2); background: rgba(255, 255, 255, 0.02); transition: border-color 0.2s, background 0.2s; }
.seg small { color: var(--fg-3); font-size: 0.8rem; line-height: 1.4; }
.seg input:checked + span { border-color: var(--accent); background: rgba(166, 107, 255, 0.08); box-shadow: 0 0 0 3px rgba(166, 107, 255, 0.12); }
.seg input:focus-visible + span { outline: 2px solid var(--teal-2); outline-offset: 2px; }
.toggle { display: flex; align-items: center; gap: 12px; cursor: pointer; color: var(--fg-2); font-size: 0.93rem; margin-top: 6px; }
.toggle input { position: absolute; opacity: 0; pointer-events: none; }
.toggle span { position: relative; width: 40px; height: 23px; flex: none; border-radius: 999px; background: var(--bg-4); border: 1px solid var(--line-2); transition: background 0.2s; }
.toggle span::after { content: ""; position: absolute; top: 2px; left: 2px; width: 17px; height: 17px; border-radius: 50%; background: #fff; transition: transform 0.2s; }
.toggle input:checked + span { background: var(--teal); }
.toggle input:checked + span::after { transform: translateX(17px); }
.toggle input:focus-visible + span { outline: 2px solid var(--teal-2); outline-offset: 2px; }
.calc__result { padding: 30px; background: radial-gradient(ellipse at 100% 0%, rgba(166, 107, 255, 0.14), transparent 60%), var(--bg-1); border-left: 1px solid var(--line); display: grid; gap: 10px; align-content: start; }
.calc__cap { color: var(--fg-3); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700; }
.calc__credits b { font-size: clamp(2.8rem, 6vw, 4rem); font-weight: 800; letter-spacing: -0.04em; font-variant-numeric: tabular-nums; line-height: 1; }
.calc__credits span { color: var(--fg-2); font-size: 1.1rem; }
.calc__eur { color: var(--fg-2); }
.calc__examples { margin: 10px 0 4px; font-size: 0.9rem; }
.calc__extras { margin-top: 12px; padding-top: 18px; border-top: 1px solid var(--line); display: grid; gap: 12px; }
.calc__extras h4 { font-size: 0.95rem; }
.calc__extras .checks li { font-size: 0.9rem; }
[data-prices-live] { margin-top: 18px; }

/* comparativa y FAQ */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table { border-collapse: collapse; width: 100%; }
.compare { min-width: 620px; border-radius: var(--radius-lg); overflow: hidden; }
.compare th, .compare td { text-align: left; padding: 18px 20px; border-bottom: 1px solid var(--line); vertical-align: top; }
.compare thead th { color: var(--fg-3); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; }
.compare tbody th { color: var(--fg); font-weight: 700; width: 20%; }
.compare td { color: var(--fg-2); }
.compare .compare__us { background: rgba(34, 211, 238, 0.05); color: var(--fg); }
.compare thead .compare__us { color: var(--teal-2); }
.compare__cell { display: flex; gap: 10px; }
.compare__cell svg { width: 17px; height: 17px; flex: none; margin-top: 4px; fill: none; stroke: var(--teal-2); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }

.faq { display: grid; gap: 10px; }
.faq__item { border-radius: var(--radius); border: 1px solid var(--line); background: rgba(255, 255, 255, 0.02); transition: border-color 0.2s, background 0.2s; }
.faq__item[open] { border-color: var(--line-2); background: var(--bg-2); }
.faq__item summary { list-style: none; cursor: pointer; display: flex; gap: 16px; justify-content: space-between; align-items: center; padding: 18px 20px; font-weight: 650; font-size: 1.02rem; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__plus { position: relative; width: 14px; height: 14px; flex: none; }
.faq__plus::before, .faq__plus::after { content: ""; position: absolute; left: 0; right: 0; top: 6px; height: 2px; background: var(--fg-2); border-radius: 2px; transition: transform 0.2s; }
.faq__plus::after { transform: rotate(90deg); }
.faq__item[open] .faq__plus::after { transform: rotate(0); }
.faq__a { padding: 0 20px 18px; color: var(--fg-2); }

/* descarga final */
.cta { position: relative; overflow: hidden; display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: 40px; align-items: center; padding: clamp(28px, 5vw, 56px); border-radius: 28px; border: 1px solid var(--line-2); background: radial-gradient(ellipse at 0% 0%, rgba(166, 107, 255, 0.16), transparent 50%), linear-gradient(180deg, var(--bg-3), var(--bg-1)); }
.cta__copy { position: relative; display: grid; gap: 14px; }
.cta__copy > p:first-of-type { color: var(--fg-2); font-size: 1.1rem; }
.cta__buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-block: 10px; }
.cta__steps { position: relative; list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.cta__steps li { display: flex; gap: 14px; align-items: flex-start; padding: 16px; border-radius: 16px; background: rgba(0, 0, 0, 0.25); border: 1px solid var(--line); }
.cta__steps div { display: grid; }
.cta__steps span:not(.cta__n) { color: var(--fg-2); font-size: 0.92rem; }
.cta__n { width: 30px; height: 30px; flex: none; border-radius: 50%; display: grid; place-items: center; background: var(--grad); color: #0b0d12; font-weight: 800; }

/* ── pie ─────────────────────────────────────────────────────────────────── */
.foot { border-top: 1px solid var(--line); background: var(--bg-1); position: relative; z-index: 1; }
.foot__in { max-width: var(--max); margin-inline: auto; padding: 56px 20px 32px; display: grid; grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr)); gap: 32px; }
.foot__brand p { color: var(--fg-3); margin-top: 14px; max-width: 34ch; font-size: 0.93rem; }
.foot__col { display: grid; gap: 8px; align-content: start; }
.foot__col h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--fg-3); margin-bottom: 6px; }
.foot__col a, .foot__contact a { color: var(--fg-2); text-decoration: none; font-size: 0.93rem; }
.foot__col a:hover, .foot__contact a:hover { color: #fff; }
.foot__bottom { max-width: var(--max); margin-inline: auto; padding: 18px 20px 30px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; color: var(--fg-3); font-size: 0.85rem; }

/* ── tarjetas, formularios y avisos ──────────────────────────────────────── */
.card { position: relative; border-radius: var(--radius-lg); border: 1px solid var(--line-2); background: linear-gradient(180deg, rgba(23, 27, 37, 0.9), rgba(13, 15, 22, 0.94)); box-shadow: var(--shadow); padding: 28px; }
.card--flush { padding: 0; }
.form { display: grid; gap: 10px; }
.form label, .modal label { font-weight: 650; font-size: 0.9rem; color: var(--fg-2); }
input[type="email"], input[type="text"], select {
  width: 100%; padding: 13px 15px; border-radius: 12px; border: 1px solid var(--line-2); background: rgba(0, 0, 0, 0.35); color: var(--fg); font: inherit; font-size: 1rem; transition: border-color 0.2s, box-shadow 0.2s;
}
input[type="email"]:focus, input[type="text"]:focus, select:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.15); }
select option { background: var(--bg-2); color: var(--fg); }
input.is-invalid { border-color: var(--red); box-shadow: 0 0 0 4px rgba(255, 92, 108, 0.12); }
.notice { padding: 12px 14px; border-radius: 12px; font-size: 0.93rem; border: 1px solid; margin-bottom: 14px; }
.notice--error { background: rgba(255, 92, 108, 0.1); border-color: rgba(255, 92, 108, 0.45); color: #ffc4ca; }
.notice--ok { background: rgba(61, 220, 132, 0.09); border-color: rgba(61, 220, 132, 0.4); color: #c9f7dc; }
.notice--warn { background: rgba(255, 197, 61, 0.09); border-color: rgba(255, 197, 61, 0.4); color: #ffe7ad; }
.notice--info { background: rgba(34, 211, 238, 0.08); border-color: rgba(34, 211, 238, 0.4); color: #c8f1fb; }
.draft { background: rgba(166, 107, 255, 0.12); border: 1px solid rgba(166, 107, 255, 0.5); color: var(--fg); border-radius: var(--radius); padding: 12px 16px; font-weight: 650; margin-bottom: 24px; }
.divider { display: flex; align-items: center; gap: 14px; color: var(--fg-3); font-size: 0.85rem; margin: 20px 0; }
.divider::before, .divider::after { content: ""; flex: 1; height: 1px; background: var(--line-2); }
.spinner { width: 44px; height: 44px; margin: 0 auto 18px; border-radius: 50%; border: 3px solid var(--bg-4); border-top-color: var(--accent); animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* entrar */
.auth { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 460px); gap: 64px; align-items: center; z-index: 1; }
.auth__aside { display: grid; gap: 22px; }
.auth__h { font-size: clamp(2rem, 4vw, 3rem); }
.auth__art { margin-top: 10px; }
.auth__card h2 { font-size: 1.6rem; margin-bottom: 8px; }
.auth__card .muted { margin-bottom: 4px; }
.auth__card .btn--google { margin-top: 20px; padding-block: 13px; }
.auth__card .form { margin-top: 2px; }
.auth__card .form .btn { margin-top: 4px; padding-block: 13px; }
.auth__gift { display: flex; gap: 10px; align-items: center; margin: 18px 0 12px; padding: 10px 12px; border-radius: 12px; background: rgba(61, 220, 132, 0.08); border: 1px solid rgba(61, 220, 132, 0.28); color: #c9f7dc; font-size: 0.9rem; }
.auth__gift .i { color: var(--green); }
.auth__card a:not(.btn) { color: var(--teal-2); }
.auth__aside .pill { justify-self: start; }
.sent-art { width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center; background: rgba(34, 211, 238, 0.12); border: 1px solid rgba(95, 227, 245, 0.35); color: var(--teal-2); margin-bottom: 18px; }
.sent-art .i { width: 30px; height: 30px; }
[data-step="sent"] p { margin-bottom: 10px; }
[data-sent-email] { color: #fff; word-break: break-all; }
.mail-shortcuts { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.sent-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 8px; }
.device-box { display: flex; gap: 14px; align-items: flex-start; padding: 14px; border-radius: 14px; background: rgba(166, 107, 255, 0.09); border: 1px solid rgba(166, 107, 255, 0.35); margin-bottom: 20px; }
.device-box__icon { width: 38px; height: 38px; flex: none; border-radius: 10px; display: grid; place-items: center; background: rgba(166, 107, 255, 0.18); color: #ddd3ff; }
.device-box p { color: var(--fg-2); font-size: 0.92rem; margin-top: 2px; }
.device-box--confirm { margin-block: 18px; }
[data-step="signed"] > .btn, [data-step="signed"] > .notice { margin-top: 12px; }
[data-step="signed"] .linkbtn { display: block; margin: 14px auto 0; }
.mini-balance { position: relative; display: grid; gap: 2px; width: min(340px, 100%); padding: 22px; border-radius: 20px; border: 1px solid var(--line-2); background: radial-gradient(ellipse at 100% 0%, rgba(61, 220, 132, 0.18), transparent 60%), var(--bg-2); box-shadow: var(--shadow); overflow: hidden; }
.mini-balance span { color: var(--fg-3); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }
.mini-balance b { font-size: 3rem; font-weight: 800; letter-spacing: -0.04em; line-height: 1.05; }
.mini-balance em { font-style: normal; color: var(--green); font-weight: 650; }
.mini-balance__wave { width: 100%; height: 34px; margin-top: 12px; color: rgba(61, 220, 132, 0.35); }

.auth-single { display: grid; place-items: center; z-index: 1; }
.auth-status, .notfound { width: min(480px, 100%); text-align: center; padding: 40px 32px; }
.auth-status h1, .notfound h1 { font-size: 1.7rem; margin-bottom: 10px; }
.auth-status p { color: var(--fg-2); margin-bottom: 14px; }
.auth-status .btn { margin-top: 10px; }
.big-check, .big-x { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 20px; display: grid; place-items: center; }
.big-check { background: rgba(61, 220, 132, 0.14); border: 1px solid rgba(61, 220, 132, 0.5); animation: pop 0.45s cubic-bezier(0.2, 0.9, 0.3, 1.3) both; }
.big-check svg { width: 36px; height: 36px; fill: none; stroke: var(--green); stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.big-x { background: rgba(255, 92, 108, 0.12); border: 1px solid rgba(255, 92, 108, 0.45); color: var(--red); font-size: 2.4rem; line-height: 1; }
.notfound__code { font-size: clamp(4rem, 12vw, 6.5rem); font-weight: 900; letter-spacing: -0.05em; line-height: 1; margin-bottom: 12px; }
.notfound .cta__buttons { margin-top: 22px; }

/* cuenta */
.acct { z-index: 1; }
.acct__loading { display: grid; place-items: center; min-height: 40vh; text-align: center; }
.acct__grid { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 40px; align-items: start; }
.acct__side { position: sticky; top: 96px; display: grid; gap: 18px; }
.acct__who { display: flex; gap: 12px; align-items: center; min-width: 0; }
.acct__who > div { display: grid; min-width: 0; }
.acct__who b, .acct__who span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.avatar { width: 44px; height: 44px; flex: none; border-radius: 14px; display: grid; place-items: center; background: var(--grad); color: #0b0d12; font-weight: 800; font-size: 1.15rem; text-transform: uppercase; }
.acct__nav { display: grid; gap: 2px; }
.acct__nav a { color: var(--fg-2); text-decoration: none; padding: 9px 12px; border-radius: 10px; font-weight: 550; font-size: 0.95rem; }
.acct__nav a:hover, .acct__nav a.is-current { background: rgba(255, 255, 255, 0.05); color: #fff; }
.acct__main { display: grid; gap: 56px; min-width: 0; }
.acct__sec { display: grid; gap: 18px; scroll-margin-top: 96px; min-width: 0; }
.acct__hello { font-size: clamp(1.9rem, 4vw, 2.6rem); }
.acct__head { display: grid; gap: 6px; }
.acct__head h2 { font-size: 1.6rem; }
.acct__sub { font-size: 1.15rem; margin-top: 18px; }
.acct__cards { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: 16px; }
.balance { display: grid; gap: 8px; align-content: start; background: radial-gradient(ellipse at 100% 0%, rgba(166, 107, 255, 0.18), transparent 55%), linear-gradient(180deg, rgba(23, 27, 37, 0.95), rgba(13, 15, 22, 0.95)); }
.balance__cap { color: var(--fg-3); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700; }
.balance__num b { font-size: clamp(2.8rem, 6vw, 3.8rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1; font-variant-numeric: tabular-nums; }
.balance__num span { color: var(--fg-2); font-size: 1.1rem; }
.balance__bar { height: 6px; border-radius: 6px; background: var(--bg-4); overflow: hidden; margin-top: 6px; }
.balance__bar i { display: block; height: 100%; width: 0; background: var(--grad); transition: width 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); }
.balance .btn { justify-self: start; margin-top: 8px; }
.appcard { display: grid; gap: 10px; align-content: start; }
.appcard__icon { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(34, 211, 238, 0.12); border: 1px solid rgba(95, 227, 245, 0.3); color: var(--teal-2); }
.appcard .btn { justify-self: start; }
.data { min-width: 520px; font-size: 0.93rem; }
.data th, .data td { text-align: left; padding: 13px 18px; border-bottom: 1px solid var(--line); white-space: nowrap; }
.data th { color: var(--fg-3); font-weight: 650; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; }
.data td { color: var(--fg-2); }
.data td:nth-child(2) { white-space: normal; color: var(--fg); }
.data tr:last-child td { border-bottom: 0; }
.data .num { text-align: right; font-variant-numeric: tabular-nums; }
.data .pos { color: var(--green); font-weight: 700; }
.data .neg { color: var(--fg); font-weight: 650; }
.tag { display: inline-block; padding: 2px 9px; border-radius: 999px; font-size: 0.78rem; font-weight: 700; background: rgba(255, 255, 255, 0.06); border: 1px solid var(--line-2); color: var(--fg-2); white-space: nowrap; }
.tag--ok { background: rgba(61, 220, 132, 0.1); border-color: rgba(61, 220, 132, 0.4); color: #bff3d4; }
.tag--run { background: rgba(34, 211, 238, 0.1); border-color: rgba(34, 211, 238, 0.4); color: #c8f1fb; }
.tag--warn { background: rgba(255, 197, 61, 0.1); border-color: rgba(255, 197, 61, 0.4); color: #ffe7ad; }
.tag--bad { background: rgba(255, 92, 108, 0.1); border-color: rgba(255, 92, 108, 0.4); color: #ffc4ca; }
.sessions { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.sessions li { display: flex; gap: 14px; align-items: center; padding: 14px 16px; border-radius: var(--radius); border: 1px solid var(--line-2); background: var(--bg-2); }
.sessions li > div { flex: 1; display: grid; min-width: 0; }
.sessions b { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sessions .ses-icon { width: 38px; height: 38px; flex: none; border-radius: 10px; display: grid; place-items: center; background: var(--bg-4); color: var(--fg-2); }
.sessions .ses-icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.form--row { grid-template-columns: minmax(0, 1fr) minmax(0, 220px) auto; align-items: end; gap: 16px; }
.form__actions { display: flex; gap: 12px; align-items: center; min-height: 48px; }
.acct__row { display: flex; gap: 20px; justify-content: space-between; align-items: center; padding: 22px 26px; }
.acct__row h3 { font-size: 1.05rem; margin-bottom: 4px; }
.acct__danger { border-color: rgba(255, 92, 108, 0.3); }
[data-banners] { display: grid; gap: 10px; }
[data-banners]:empty { display: none; }
[data-banners] .notice { margin: 0; display: flex; gap: 12px; align-items: center; justify-content: space-between; }

/* diálogos */
dialog { color: var(--fg); }
.modal, .lightbox { border: 0; padding: 0; background: transparent; max-width: calc(100vw - 32px); }
.modal::backdrop, .lightbox::backdrop { background: rgba(3, 4, 7, 0.78); backdrop-filter: blur(6px); }
.modal__body { width: min(460px, calc(100vw - 32px)); border-radius: var(--radius-lg); border: 1px solid var(--line-2); background: var(--bg-2); padding: 28px; display: grid; gap: 12px; box-shadow: var(--shadow); }
.modal__body h2 { font-size: 1.4rem; }
.modal__actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 10px; flex-wrap: wrap; }
.lightbox { width: min(1100px, calc(100vw - 32px)); overflow: visible; }
.lightbox__close { position: absolute; top: -48px; right: 0; }
.lightbox__close button { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-2); background: var(--bg-3); font-size: 1.5rem; line-height: 1; cursor: pointer; }

/* avisos flotantes */
.toasts { position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%); z-index: 200; display: grid; gap: 8px; width: min(460px, calc(100vw - 32px)); }
.toast { padding: 13px 16px; border-radius: 14px; border: 1px solid var(--line-2); background: rgba(17, 20, 28, 0.97); box-shadow: var(--shadow); font-size: 0.93rem; animation: pop 0.3s ease both; transition: opacity 0.3s, transform 0.3s; }
.toast--error { border-color: rgba(255, 92, 108, 0.5); color: #ffc4ca; }
.toast--ok { border-color: rgba(61, 220, 132, 0.45); color: #c9f7dc; }
.toast.is-out { opacity: 0; transform: translateY(8px); }
.balance__held { color: var(--teal-2); }

/* legales */
.legal { padding-block: 20px 40px; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 14px; }
.legal .lead { margin-bottom: 28px; }
.legal h2 { font-size: 1.3rem; margin: 2em 0 0.6em; }
.legal p { color: var(--fg-2); margin-bottom: 12px; }
.legal strong { color: var(--fg); }

/* ── responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .packs { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 26px; }
  .features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .foot__in { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .foot__brand { grid-column: 1 / -1; }
}
@media (max-width: 960px) {
  .hero__in, .how-video, .stepper, .calc, .cta, .auth, .acct__grid, .acct__cards { grid-template-columns: minmax(0, 1fr); }
  .hero { padding-top: 32px; }
  .hero__in { gap: 48px; }
  .stepper__tabs { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .how-video { gap: 24px; margin-bottom: 56px; }
  .calc__result { border-left: 0; border-top: 1px solid var(--line); }
  .auth { gap: 36px; }
  .auth__aside { order: 2; }
  .auth__art { display: none; }
  .acct__side { position: static; }
  .acct__nav { grid-auto-flow: column; overflow-x: auto; grid-auto-columns: max-content; padding-bottom: 4px; }
  .block { padding-block: 72px; }
  .form--row { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 640px) {
  body { font-size: 15.5px; }
  .wrap, .top__in { padding-inline: 16px; }
  .stats { grid-template-columns: minmax(0, 1fr); margin-inline: 16px; }
  .features, .who, .packs { grid-template-columns: minmax(0, 1fr); }
  .stepper__tabs { grid-template-columns: minmax(0, 1fr); }
  .stepper__tab small { display: none; }
  .stepper__art { padding: 16px; min-height: 0; }
  .art-import { grid-template-columns: minmax(0, 1fr); }
  .imp-arrow { justify-self: center; transform: rotate(90deg); }
  .art-send { grid-template-columns: minmax(0, 1fr); padding-bottom: 0; }
  .snd-pipe { height: 70px; }
  .snd-pipe i { top: 0; bottom: 0; left: 50%; right: auto; width: 2px; height: auto; background: repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0 8px, transparent 8px 16px); }
  .snd-box { min-height: 0; }
  .snd-quote { position: static; transform: none; justify-self: center; white-space: normal; text-align: center; }
  .scr-row, .scr-head { grid-template-columns: minmax(0, 1fr); gap: 6px; }
  .scr-head span:last-child { display: none; }
  .bd-body { grid-template-columns: minmax(0, 1fr); }
  .bd-takes { border-left: 0; border-top: 1px solid var(--line); }
  .bd-float--a { right: 12px; }
  .bd-float--b { left: 12px; }
  .stats.wrap { padding-inline: 0; }
  .gift { flex-wrap: wrap; }
  .card { padding: 22px; }
  .calc__form, .calc__result { padding: 22px; }
  .seg { grid-template-columns: minmax(0, 1fr); }
  .foot__in { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .acct__row { flex-direction: column; align-items: flex-start; }
  .hero__cta .btn { flex: 1 1 auto; }
  .finish { gap: 10px 18px; margin-top: 48px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-delay: 0ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .bd-playhead { display: none; }
}
