/* ============================================================
   InfoCapitals — Lead Magnet Platform · Design system v3
   Liquid glass blanco · Caslon display · neutros fríos (cero
   amarillos) · fondo con textura en movimiento constante.
   ============================================================ */

:root {
  --bg: #e9ebee;
  --ink: #16171b;
  --ink-2: #52545c;
  --ink-3: #94969e;
  --ink-4: #c3c5cb;
  --line: rgba(22, 23, 27, 0.08);
  --ok: #2f5d33;
  --ok-soft: rgba(74, 122, 80, 0.14);
  --bad: #9c3f3f;
  --bad-soft: rgba(156, 63, 63, 0.12);
  --r-s: 12px;
  --r: 18px;
  --r-l: 26px;

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Inter", -apple-system, BlinkMacSystemFont, sans-serif; /* display = Inter bold (Apple) */
  --mono: "IBM Plex Mono", "SF Mono", monospace;

  /* liquid glass blanco — v4: cristal con profundidad real
     (bisel superior, refracción lateral, sheen diagonal, doble sombra) */
  --glass: linear-gradient(115deg, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0.28) 42%, rgba(255, 255, 255, 0.5) 100%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.35));
  --glass-soft: linear-gradient(115deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.22) 50%, rgba(255, 255, 255, 0.42) 100%);
  --glass-line: rgba(255, 255, 255, 0.8);
  --glass-shadow:
    inset 0 1.5px 0 rgba(255, 255, 255, 1),
    inset 0 -14px 28px -18px rgba(28, 32, 40, 0.14),
    inset 1.5px 0 0 rgba(255, 255, 255, 0.55),
    inset -1.5px 0 0 rgba(255, 255, 255, 0.35),
    0 1.5px 4px rgba(28, 32, 40, 0.07),
    0 26px 60px -28px rgba(28, 32, 40, 0.5);
  --glass-blur: blur(22px) saturate(1.7);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 15.5px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}
::selection { background: rgba(22, 23, 27, 0.12); }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* ---------- fondo vivo (barato: solo transform, capas fijas) ---------- */

.bgfx { position: fixed; inset: 0; z-index: -2; overflow: hidden; pointer-events: none; }
.bgfx .mesh {
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(38% 34% at 26% 30%, #f8f9fa 0%, rgba(248, 249, 250, 0) 70%),
    radial-gradient(42% 38% at 74% 22%, #dde1e6 0%, rgba(221, 225, 230, 0) 72%),
    radial-gradient(46% 42% at 68% 78%, #f2f4f6 0%, rgba(242, 244, 246, 0) 70%),
    radial-gradient(36% 34% at 22% 76%, #d5dae0 0%, rgba(213, 218, 224, 0) 72%);
  animation: meshdrift 26s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes meshdrift {
  0%   { transform: translate(0, 0) rotate(0deg) scale(1); }
  50%  { transform: translate(2.5%, -2%) rotate(1.6deg) scale(1.05); }
  100% { transform: translate(-2.5%, 2%) rotate(-1.6deg) scale(1.02); }
}
.bgfx .sheen {
  position: absolute;
  inset: -60%;
  background: conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(255, 255, 255, 0.5) 40deg, transparent 90deg, transparent 360deg);
  animation: sheenspin 48s linear infinite;
  will-change: transform;
  opacity: 0.55;
}
@keyframes sheenspin { to { transform: rotate(360deg); } }
.bgfx .grain {
  position: absolute;
  inset: -12%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.1 0 0 0 0 0.12 0 0 0 0.55 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.055;
  animation: grainshift 1.4s steps(3) infinite;
  will-change: transform;
}
@keyframes grainshift {
  0% { transform: translate(0, 0); }
  33% { transform: translate(-2%, 1.5%); }
  66% { transform: translate(1.5%, -2%); }
  100% { transform: translate(0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .bgfx .mesh, .bgfx .sheen, .bgfx .grain { animation: none; }
}

/* ---------- tipografía ---------- */

h1, h2, h3 { font-family: var(--font); font-weight: 700; letter-spacing: -0.035em; line-height: 1.14; }
h4 { font-weight: 640; letter-spacing: -0.02em; }
.h-two .l2 { color: var(--ink-3); }

/* ---------- primitivas ---------- */

.mlabel {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  background: var(--glass-soft);
  border: 1px solid var(--glass-line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  padding: 6px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: none;
  border-radius: 999px;
  padding: 13px 26px;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: transform 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
}
.btn-dark { background: var(--ink); color: #fff; box-shadow: 0 14px 30px -14px rgba(22, 23, 27, 0.5); }
.btn-dark:hover { transform: translateY(-1px); background: #000; }
/* botón liquid glass (primitiva del sistema; sin uso activo tras quitar CTAs) */
.btn-glass {
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  border: 1.5px solid rgba(22, 23, 27, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 6px 18px -12px rgba(22, 23, 27, 0.4);
}
.btn-glass:hover { transform: translateY(-1px); background: var(--ink); color: #fff; border-color: var(--ink); }
.btn .dot { width: 7px; height: 7px; border-radius: 50%; background: #46d05f; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 5px 12px;
  background: var(--glass-soft);
  border: 1px solid var(--glass-line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
  color: var(--ink-2);
}
.chip.fill { background: rgba(255, 255, 255, 0.9); color: var(--ink); }
.chip.wa { background: var(--ink); border-color: var(--ink); box-shadow: none; color: #fff; }
.chip.wa::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #46d05f; }

/* panel liquid glass (con blur real) */
.glassp {
  background: var(--glass);
  border: 1px solid var(--glass-line);
  box-shadow: var(--glass-shadow);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

/* tarjeta interior (sin blur: rendimiento) */
.oc {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.2) 45%, rgba(255, 255, 255, 0.42) 100%),
    rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow:
    inset 0 1.5px 0 rgba(255, 255, 255, 0.98),
    inset 0 -10px 22px -16px rgba(28, 32, 40, 0.12),
    inset 1px 0 0 rgba(255, 255, 255, 0.45),
    0 1px 3px rgba(28, 32, 40, 0.06),
    0 16px 40px -26px rgba(28, 32, 40, 0.42);
  border-radius: var(--r);
  transition: background 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
}
.oc:hover { background: rgba(255, 255, 255, 0.82); }
.oc.hoverable:hover { transform: translateY(-2px); box-shadow: inset 0 1px 0 rgba(255,255,255,0.95), 0 20px 44px -24px rgba(28, 32, 40, 0.35); }

.arr {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(22, 23, 27, 0.16);
  font-size: 13px;
  transition: all 0.16s ease;
  background: rgba(255, 255, 255, 0.55);
}
.oc:hover .arr, a:hover .arr { background: var(--ink); color: #fff; border-color: var(--ink); }

.glyph { font-size: 20px; line-height: 1; font-weight: 400; }

@keyframes rev { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.rev > * { animation: rev 0.5s cubic-bezier(0.16, 1, 0.3, 1) both; }
.rev > *:nth-child(1) { animation-delay: 0.02s; }
.rev > *:nth-child(2) { animation-delay: 0.07s; }
.rev > *:nth-child(3) { animation-delay: 0.12s; }
.rev > *:nth-child(4) { animation-delay: 0.17s; }
.rev > *:nth-child(5) { animation-delay: 0.22s; }
.rev > *:nth-child(6) { animation-delay: 0.27s; }
.rev > *:nth-child(7) { animation-delay: 0.32s; }
.rev > *:nth-child(8) { animation-delay: 0.37s; }

/* ============================================================
   TOP BAR
   ============================================================ */

.top {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 12px clamp(18px, 4vw, 40px);
}
.top-brand { display: flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: -0.03em; font-size: 16px; }
.top-brand img { width: 26px; height: 26px; }

.top-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  border-radius: 999px;
  padding: 4px;
  background: var(--glass);
  border: 1px solid var(--glass-line);
  box-shadow: var(--glass-shadow);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}
.tn {
  border: none;
  background: transparent;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13.5px;
  font-weight: 550;
  color: var(--ink-2);
  white-space: nowrap;
  transition: all 0.15s ease;
}
.tn:hover { color: var(--ink); }
.tn.on { background: var(--ink); color: #fff; }

.top-right { display: flex; justify-content: flex-end; align-items: center; gap: 10px; }
.top-right .btn { padding: 10px 20px; font-size: 13.5px; }

/* ============================================================
   GATE
   ============================================================ */

.gate { min-height: 100vh; display: flex; flex-direction: column; }

.gate-top { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 18px clamp(18px, 4vw, 40px); }
.gate-top .pillinfo {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 6px 16px 6px 7px;
  font-size: 12.5px;
  font-weight: 550;
  background: var(--glass);
  border: 1px solid var(--glass-line);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.gate-top .pillinfo .seg { background: var(--ink); color: #fff; border-radius: 999px; padding: 5px 12px; font-weight: 600; }
.gate-top .right-chip { justify-self: end; }

.gate-hero { text-align: center; padding: clamp(36px, 6.5vh, 76px) 24px 0; }
.gate-hero h1 { font-size: clamp(42px, 6.6vw, 84px); max-width: 940px; margin: 24px auto 0; }
.gate-hero .sub { margin: 22px auto 0; color: var(--ink-2); max-width: 480px; font-size: 16px; }

.gate-form {
  margin: 32px auto 0;
  display: flex;
  gap: 8px;
  border-radius: 999px;
  padding: 6px;
  width: min(500px, calc(100% - 48px));
  background: var(--glass);
  border: 1px solid var(--glass-line);
  box-shadow: var(--glass-shadow);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition: box-shadow 0.15s ease;
}
.gate-form:focus-within { box-shadow: inset 0 1px 0 rgba(255,255,255,0.95), 0 24px 60px -26px rgba(28, 32, 40, 0.45); }
.code-input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  padding: 10px 18px;
  font-family: var(--mono);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  outline: none;
}
.code-input::placeholder { color: var(--ink-3); }
.gate-err { margin-top: 12px; font-size: 13.5px; color: var(--bad); min-height: 20px; text-align: center; }
.gate-wa { margin-top: 4px; font-size: 14px; color: var(--ink-2); text-align: center; }
.gate-wa a { font-weight: 600; color: var(--ink); text-underline-offset: 4px; }

/* franja glass */
.glass-strip { position: relative; margin-top: clamp(26px, 5vh, 54px); padding: 40px 24px 70px; overflow: hidden; flex: 1; }
.glass-strip .blob {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%) rotate(-8deg);
  width: min(660px, 90vw);
  height: 420px;
  border-radius: 42% 58% 52% 48% / 55% 45% 55% 45%;
  background:
    radial-gradient(60% 60% at 30% 30%, #ccd2d9, transparent 70%),
    radial-gradient(55% 55% at 70% 60%, #aeb6c0, transparent 70%),
    linear-gradient(160deg, #c9cfd6, #99a1ac);
  filter: blur(2px);
  animation: blobfloat 14s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes blobfloat {
  from { transform: translate(-50%, -50%) rotate(-8deg) scale(1); }
  to { transform: translate(-52%, -48%) rotate(-4deg) scale(1.04); }
}
.glass-cards { position: relative; display: flex; justify-content: center; gap: 22px; flex-wrap: wrap; }
.g-card {
  width: 232px;
  min-height: 250px;
  border-radius: 20px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.28));
  border: 1px solid rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 26px 60px -30px rgba(28, 32, 40, 0.45);
  padding: 18px 18px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.2s ease;
}
.g-card:hover { transform: translateY(-4px); }
.g-card .tag {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  padding: 4px 11px;
  color: var(--ink-2);
}
.g-card .glyph { margin: auto 0 18px; font-size: 25px; }
.g-card .name { font-weight: 650; letter-spacing: -0.02em; font-size: 15px; line-height: 1.3; }
.g-card:nth-child(2) { transform: translateY(-16px); }
.g-card:nth-child(2):hover { transform: translateY(-20px); }

.gate-foot { text-align: center; padding: 18px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-3); }

/* ============================================================
   SHELL
   ============================================================ */

.shell { display: none; min-height: 100vh; flex-direction: column; }
.shell.on { display: flex; }
.main { flex: 1; padding: clamp(24px, 4vh, 44px) clamp(18px, 4vw, 40px) 90px; }
.view { display: none; max-width: 1060px; margin: 0 auto; }
.view.on { display: block; }

/* cabecera de página: título grande sobre liquid glass */
.page-head {
  margin-bottom: 26px;
  border-radius: var(--r-l);
  padding: clamp(26px, 4vw, 44px);
  background: var(--glass);
  border: 1px solid var(--glass-line);
  box-shadow: var(--glass-shadow);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}
.page-head h2 { font-size: clamp(28px, 3.8vw, 44px); margin-top: 16px; line-height: 1.16; }
.page-head .lead { color: var(--ink-2); margin-top: 14px; max-width: 640px; font-size: 15.5px; }

/* ============================================================
   ROADMAP · deck
   ============================================================ */

.deck-stage { position: relative; }
.rm-flow { display: flex; flex-direction: column; gap: clamp(18px, 3vh, 30px); }
.rm-block { animation: rev 0.5s cubic-bezier(0.16, 1, 0.3, 1) both; }

.deck-nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 32px; }
.deck-nav .pg { font-family: var(--mono); font-size: 12px; color: var(--ink-2); min-width: 62px; text-align: center; }
.deck-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--glass-line);
  background: var(--glass);
  box-shadow: var(--glass-shadow);
  font-size: 15px;
  color: var(--ink);
  transition: all 0.15s ease;
}
.deck-btn:hover:not(:disabled) { background: var(--ink); color: #fff; border-color: var(--ink); }
.deck-btn:disabled { opacity: 0.35; cursor: default; }
.deck-dots { display: flex; gap: 5px; justify-content: center; margin-top: 16px; flex-wrap: wrap; }
.deck-dots i { width: 6px; height: 6px; border-radius: 50%; background: rgba(22,23,27,0.16); cursor: pointer; transition: all 0.15s ease; }
.deck-dots i.on { background: var(--ink); transform: scale(1.35); }

/* portada */
.sl-cover {
  position: relative;
  border-radius: var(--r-l);
  overflow: hidden;
  padding: clamp(44px, 6.4vw, 84px);
  text-align: center;
  background: var(--glass);
  border: 1px solid var(--glass-line);
  box-shadow: var(--glass-shadow);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}
.sl-cover .blob {
  position: absolute;
  right: -130px;
  bottom: -170px;
  width: 460px;
  height: 390px;
  border-radius: 48% 52% 56% 44% / 52% 48% 52% 48%;
  background:
    radial-gradient(60% 60% at 35% 30%, #d6dbe1, transparent 72%),
    linear-gradient(150deg, #ccd2d9, #a3abb6);
  filter: blur(3px);
  opacity: 0.65;
}
.sl-cover .inner { position: relative; }
.sl-cover h3 { font-size: clamp(28px, 4.4vw, 50px); margin-top: 24px; max-width: 820px; margin-left: auto; margin-right: auto; line-height: 1.16; }
.sl-cover .range { margin-top: 22px; }
.sl-cover .range { margin-top: 20px; }
.sl-cover .rol { margin: 26px auto 0; font-size: clamp(17px, 2vw, 21px); max-width: 520px; color: var(--ink-2); }
.sl-cover .vid-mini {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 9px 18px 9px 10px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  background: var(--glass);
  border: 1px solid var(--glass-line);
  box-shadow: var(--glass-shadow);
  transition: transform 0.15s ease;
}
.sl-cover .vid-mini:hover { transform: translateY(-1px); }
.sl-cover .vid-mini .pl { width: 26px; height: 26px; border-radius: 50%; background: var(--ink); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 10px; }

/* mapa de etapas */
.stage-row {
  display: flex;
  align-items: center;
  gap: 18px;
  border-radius: var(--r);
  padding: 17px 22px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 10px 30px -24px rgba(28, 32, 40, 0.3);
  transition: background 0.15s ease;
}
.stage-row:hover { background: rgba(255, 255, 255, 0.82); }
.stage-row .num { font-family: var(--mono); font-size: 15px; color: var(--ink-3); width: 34px; }
.stage-row .nm { font-weight: 650; font-size: 16px; flex: 1; letter-spacing: -0.02em; }
.stage-row .rg { font-family: var(--mono); font-size: 12px; color: var(--ink-3); white-space: nowrap; }
.stage-row.you { background: var(--ink); border-color: var(--ink); box-shadow: 0 18px 44px -18px rgba(22, 23, 27, 0.55); color: #fff; }
.stage-row.you .num, .stage-row.you .rg { color: #9a9ca4; }
.stage-row .tag {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  border-radius: 999px;
  padding: 4px 11px;
  font-weight: 600;
}
.stage-row.dim { opacity: 0.45; }

/* tarjeta de slide (liquid glass) */
.sl-card {
  border-radius: var(--r-l);
  padding: clamp(30px, 4.6vw, 56px);
  background: var(--glass);
  border: 1px solid var(--glass-line);
  box-shadow: var(--glass-shadow);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}
.sl-card h3 { font-size: clamp(26px, 3.4vw, 38px); margin-top: 16px; line-height: 1.16; }
.sl-card .body { margin-top: 16px; color: var(--ink-2); font-size: 15.5px; max-width: 640px; }

.kv { border-top: 1px solid var(--line); margin-top: 28px; }
.kv .row { display: grid; grid-template-columns: 200px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.kv .k { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); padding-top: 4px; }
.kv .v { font-size: 15.5px; }
.kv .v.big { font-size: 19px; font-weight: 680; letter-spacing: -0.025em; }

/* cuello */
.sl-cuello .quote { font-weight: 680; letter-spacing: -0.025em; font-size: clamp(21px, 3vw, 29px); line-height: 1.3; margin-top: 24px; max-width: 700px; }
.verdad {
  margin-top: 28px;
  border-radius: var(--r);
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.verdad .k { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 10px; }
.verdad p { font-size: 15px; }
.prio { margin-top: 22px; display: flex; gap: 14px; align-items: flex-start; }
.prio .ic { width: 30px; height: 30px; border-radius: 50%; background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }
.prio p { font-weight: 620; padding-top: 3px; letter-spacing: -0.01em; }

/* áreas */
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.area-card { padding: 22px; display: flex; flex-direction: column; min-height: 130px; }
.area-card .head { display: flex; justify-content: space-between; align-items: flex-start; }
.area-card .t { font-size: 18px; font-weight: 650; letter-spacing: -0.02em; max-width: 78%; }
.area-card p { margin-top: 10px; font-size: 13.5px; color: var(--ink-2); flex: 1; }
.area-card .foot { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; }
.area-card .idx { font-family: var(--mono); font-size: 10.5px; color: var(--ink-3); letter-spacing: 0.1em; }

/* slide de área */
.sl-area .por { margin-top: 16px; font-size: 15.5px; color: var(--ink-2); max-width: 640px; }
.need-list { margin-top: 26px; border-top: 1px solid var(--line); }
.need { display: flex; gap: 16px; align-items: flex-start; padding: 16px 2px; border-bottom: 1px solid var(--line); }
.need .dot { font-family: var(--mono); font-size: 11px; color: var(--ink-3); padding-top: 3px; }
.need p { font-size: 15px; }
.done { margin-top: 24px; display: flex; gap: 14px; align-items: flex-start; }
.done .k { font-family: var(--mono); font-size: 10px; letter-spacing: 0.13em; text-transform: uppercase; color: var(--ink-3); white-space: nowrap; padding-top: 4px; }
.done p { font-weight: 620; font-size: 15.5px; letter-spacing: -0.01em; }

/* orden */
.orden-wrap { margin-top: 18px; border-top: 1px solid var(--line); }
.fase { display: flex; gap: 22px; padding: 20px 2px; border-bottom: 1px solid var(--line); align-items: baseline; }
.fase .w { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); min-width: 118px; }
.fase p { font-size: 15.5px; font-weight: 550; }

/* errores */
.err-item { display: flex; gap: 16px; padding: 18px 2px; border-bottom: 1px solid var(--line); align-items: flex-start; }
.err-item:last-child { border-bottom: none; }
.err-item .x { font-family: var(--mono); font-size: 13px; color: var(--bad); padding-top: 2px; }
.err-item p { font-size: 15px; color: var(--ink-2); }

/* CTA final */
.sl-cta {
  border-radius: var(--r-l);
  background: var(--ink);
  color: #fff;
  padding: clamp(38px, 5.6vw, 70px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(22, 23, 27, 0.6);
}
.sl-cta .blob {
  position: absolute;
  right: -140px;
  top: -140px;
  width: 420px;
  height: 380px;
  border-radius: 48% 52% 56% 44% / 52% 48% 52% 48%;
  background: radial-gradient(60% 60% at 40% 40%, rgba(255, 255, 255, 0.14), transparent 75%);
  filter: blur(6px);
}
.sl-cta .mlabel { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.16); box-shadow: none; color: #c8cad0; }
.sl-cta h3 { font-size: clamp(30px, 4.4vw, 48px); margin-top: 20px; max-width: 680px; position: relative; }
.sl-cta h3 em { color: #b9bcc4; font-style: normal; }
em { font-style: normal; }
.sl-cta p { margin-top: 18px; color: #b3b5bd; max-width: 540px; font-size: 15.5px; position: relative; }
.sl-cta .btn { margin-top: 30px; background: #fff; color: var(--ink); position: relative; }
.sl-cta .btn:hover { background: #e9ebee; }

/* ---------- slides dramáticas ---------- */

/* texto grande del espejo */
.quote-xl {
  font-weight: 650;
  letter-spacing: -0.025em;
  font-size: clamp(19px, 2.6vw, 27px);
  line-height: 1.34;
  margin-top: 24px;
  max-width: 760px;
}
.kv .v.vred { color: var(--bad); }

/* villano: glass negro, ancho, con luz */
.sl-dark {
  border-radius: var(--r-l);
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 6vw, 76px);
  color: #f2f3f5;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.02) 45%, rgba(255, 255, 255, 0.06) 100%),
    linear-gradient(165deg, #1d1f24, #101114 55%, #17181d);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 1.5px 0 rgba(255, 255, 255, 0.22),
    inset 0 -16px 34px -20px rgba(0, 0, 0, 0.7),
    0 34px 80px -30px rgba(10, 12, 16, 0.75);
}
.sl-dark .glow {
  position: absolute;
  top: -180px;
  right: -120px;
  width: 520px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255, 255, 255, 0.1), transparent 72%);
  filter: blur(8px);
}
.mlabel.dark { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.16); box-shadow: none; color: #b9bbc2; }
.villain-name {
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: -0.035em;
  font-size: clamp(30px, 4.6vw, 52px);
  line-height: 1.14;
  margin-top: 22px;
  max-width: 780px;
  position: relative;
  color: #fff;
}
.villain-diag { margin-top: 24px; font-size: clamp(16px, 2vw, 19px); color: #c9cbd2; max-width: 680px; line-height: 1.6; position: relative; }
.coste {
  margin-top: 30px;
  padding: 20px 24px;
  max-width: 680px;
  position: relative;
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.coste .k { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: #8b8e97; }
.coste p { margin-top: 10px; font-size: clamp(15.5px, 1.9vw, 18px); color: #d8dade; line-height: 1.55; }

/* objetivo: luz, esperanza, verde */
.sl-light {
  border-radius: var(--r-l);
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 6vw, 76px);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.55) 50%, rgba(255, 255, 255, 0.8) 100%);
  border: 1px solid rgba(255, 255, 255, 0.98);
  box-shadow: var(--glass-shadow);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}
.sl-light .halo {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 640px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255, 255, 255, 0.55), transparent 70%);
  filter: blur(6px);
}
.goal-text {
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: -0.035em;
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.16;
  margin-top: 24px;
  max-width: 820px;
  position: relative;
  color: var(--ink);
}
.goal-sub { margin-top: 22px; font-size: 16px; color: var(--ink-2); max-width: 600px; position: relative; }

.cta-hurt { color: #8f929b; margin-top: 16px; font-size: 14.5px; }

/* selector discreto de VSL (no revelar los tres avatares) */
.vsl-switch { margin-top: 14px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.vsw-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); }
.vsw { border: none; background: transparent; padding: 0; font-size: 12.5px; font-weight: 550; color: var(--ink-3); text-decoration: underline; text-underline-offset: 3px; transition: color 0.14s ease; }
.vsw:hover { color: var(--ink); }
.vsw-sep { color: var(--ink-4); font-size: 12px; }

/* facade del VSL (carga diferida) */
.vsl-facade { position: absolute; inset: 0; cursor: pointer; }
.vsl-facade img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05) brightness(0.85); }
.vsl-facade .tplay.big {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55), 0 16px 40px -12px rgba(0, 0, 0, 0.6);
  transition: transform 0.16s ease, background 0.16s ease;
}
.vsl-facade:hover .tplay.big { transform: translate(-50%, -50%) scale(1.08); background: rgba(255, 255, 255, 0.3); }
.vsl-facade .vsl-hint {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

/* teasers de sistemas */
.res-card.sys {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.04) 45%, rgba(255, 255, 255, 0.1) 100%),
    linear-gradient(165deg, #1d1f24, #111216 60%, #181a1f);
  border-color: rgba(255, 255, 255, 0.16);
  color: #eceef1;
  box-shadow:
    inset 0 1.5px 0 rgba(255, 255, 255, 0.2),
    0 26px 60px -28px rgba(10, 12, 16, 0.7);
}
.res-card.sys p { color: #b9bbc2; }
.res-card.sys .lvl { color: #8b8e97; }
.res-card.sys a { color: #fff; }
.res-card.sys .arr { border-color: rgba(255, 255, 255, 0.3); background: rgba(255, 255, 255, 0.08); color: #fff; }
.sys-teaser {
  margin: 14px 0 4px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.pipe { display: flex; align-items: center; gap: 4px; }
.pnode { width: 11px; height: 11px; border-radius: 50%; border: 1.5px solid rgba(255, 255, 255, 0.35); flex-shrink: 0; }
.pnode.on { background: #6fae77; border-color: #6fae77; }
.pnode.pulse { background: #6fae77; border-color: #6fae77; animation: ppulse 1.6s ease-in-out infinite; }
@keyframes ppulse { 0%,100% { box-shadow: 0 0 0 0 rgba(111, 174, 119, 0.5); } 50% { box-shadow: 0 0 0 7px rgba(111, 174, 119, 0); } }
.pbar { height: 2px; flex: 1; background: rgba(255, 255, 255, 0.16); }
.pbar.on { background: #6fae77; }
.pipe-labels { display: flex; justify-content: space-between; margin-top: 10px; font-family: var(--mono); font-size: 8.5px; letter-spacing: 0.08em; text-transform: uppercase; color: #8b8e97; }
.kb { display: flex; gap: 8px; }
.kcol { flex: 1; background: rgba(255, 255, 255, 0.05); border-radius: 8px; padding: 8px 7px; display: flex; flex-direction: column; gap: 5px; }
.kcol i { display: block; height: 7px; border-radius: 3px; background: rgba(255, 255, 255, 0.22); }
.kcol.ok i { background: rgba(111, 174, 119, 0.65); }
.abars { display: flex; align-items: flex-end; gap: 7px; height: 62px; }
.abars i { flex: 1; border-radius: 4px 4px 0 0; background: rgba(255, 255, 255, 0.24); }
.abars i.hot { background: #6fae77; }
.abars i.cold { background: rgba(156, 63, 63, 0.6); }
.spark { width: 100%; height: 52px; }
.spark path { stroke: #6fae77; stroke-width: 2.2; }
.spark circle { fill: #6fae77; }

/* ============================================================
   CLASES
   ============================================================ */

.tabs {
  display: inline-flex;
  gap: 2px;
  border-radius: 999px;
  padding: 4px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  background: var(--glass);
  border: 1px solid var(--glass-line);
  box-shadow: var(--glass-shadow);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}
.tab { border: none; background: transparent; border-radius: 999px; padding: 8px 15px; font-size: 13px; font-weight: 550; color: var(--ink-2); white-space: nowrap; transition: all 0.15s ease; }
.tab:hover { color: var(--ink); }
.tab.on { background: var(--ink); color: #fff; }

.cl-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 12px; }
.cl-card { padding: 10px 10px 0; display: flex; flex-direction: column; overflow: hidden; }
.cl-card .cl-body { padding: 12px 10px 16px; display: flex; flex-direction: column; flex: 1; }
.cl-card .top-row { display: flex; justify-content: flex-start; align-items: center; min-height: 22px; }
.cl-card h4 { font-weight: 650; letter-spacing: -0.02em; font-size: 17px; margin-top: 10px; line-height: 1.16; }
.cl-card .meta { margin-top: auto; padding-top: 14px; font-family: var(--mono); font-size: 10px; color: var(--ink-3); letter-spacing: 0.06em; }

/* miniatura */
.thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1c20;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12), 0 10px 24px -16px rgba(16, 18, 22, 0.55);
  flex-shrink: 0;
}
.thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.04); }
.thumb.gen {
  background:
    radial-gradient(120% 90% at 18% 0%, rgba(255, 255, 255, 0.14), transparent 55%),
    linear-gradient(var(--ta, 135deg), #23262c 0%, #15171b 60%, #1d2025 100%);
}
.thumb.gen.green {
  background:
    radial-gradient(120% 90% at 18% 0%, rgba(120, 185, 130, 0.16), transparent 55%),
    linear-gradient(var(--ta, 135deg), #1d2a20 0%, #131a15 60%, #1a241d 100%);
}
.thumb .tini {
  position: absolute;
  right: 6%;
  bottom: -22%;
  font-family: var(--font);
  font-weight: 700;
  font-size: 88px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.07);
  user-select: none;
}
.thumb .tplay {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 8px 20px -8px rgba(0, 0, 0, 0.5);
  transition: transform 0.16s ease, background 0.16s ease;
}
.cl-card:hover .tplay { transform: translate(-50%, -50%) scale(1.1); background: rgba(255, 255, 255, 0.26); }
.thumb .tdur {
  position: absolute;
  right: 8px;
  bottom: 8px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.06em;
  color: #fff;
  background: rgba(10, 12, 14, 0.62);
  border-radius: 999px;
  padding: 3px 9px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* incluida: reflejo verde oscuro en el cristal */
.cl-card.open {
  border-color: rgba(150, 190, 158, 0.65);
  box-shadow:
    inset 0 1.5px 0 rgba(255, 255, 255, 0.98),
    inset 0 -14px 30px -18px rgba(47, 93, 51, 0.22),
    inset 1px 0 0 rgba(255, 255, 255, 0.45),
    0 1px 3px rgba(28, 32, 40, 0.06),
    0 18px 42px -26px rgba(38, 70, 44, 0.4);
}
.cl-card.open:hover {
  box-shadow:
    inset 0 1.5px 0 rgba(255, 255, 255, 1),
    inset 0 -16px 34px -18px rgba(47, 93, 51, 0.3),
    0 22px 48px -26px rgba(38, 70, 44, 0.48);
}
.chip.open-chip { background: rgba(233, 244, 235, 0.9); border-color: rgba(150, 190, 158, 0.7); color: var(--ok); }
.chip.open-chip::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--ok); }

/* bloqueada: mismo aspecto que abierta, solo la palabra */
.blk { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); }

.wa-banner {
  margin-top: 36px;
  border-radius: var(--r-l);
  background: var(--ink);
  color: #fff;
  padding: 30px 34px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
  box-shadow: 0 26px 60px -28px rgba(22, 23, 27, 0.55);
}
.wa-banner .t { font-weight: 680; letter-spacing: -0.025em; font-size: 21px; max-width: 480px; line-height: 1.2; }
.wa-banner .t em { color: #b9bcc4; font-style: normal; }
.wa-banner .btn { background: #fff; color: var(--ink); flex-shrink: 0; }

/* ============================================================
   RECURSOS
   ============================================================ */

.res-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 12px; }
.res-card { padding: 22px; display: flex; flex-direction: column; min-height: 200px; }
.res-card .head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.res-card h4 { font-weight: 650; letter-spacing: -0.02em; font-size: 19px; line-height: 1.2; }
.res-card p { font-size: 13.5px; color: var(--ink-2); margin-top: 10px; flex: 1; }
.res-card .foot { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; }
.res-card .lvl { font-family: var(--mono); font-size: 10.5px; color: var(--ink-3); letter-spacing: 0.08em; }
.res-card a { text-decoration: none; display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; }
.res-card.locked { background: rgba(255, 255, 255, 0.42); }

/* ============================================================
   CALCULADORA
   ============================================================ */

.calc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.calc-grid label { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; color: var(--ink-2); display: flex; flex-direction: column; gap: 8px; }
.calc-grid input {
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: var(--r-s);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  padding: 13px 15px;
  font-size: 17px;
  font-weight: 620;
  font-family: var(--font);
  color: var(--ink);
  outline: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.calc-grid input:focus { background: rgba(255, 255, 255, 0.92); border-color: rgba(22, 23, 27, 0.35); }

.calc-res { margin-top: 20px; }
.metric-row { display: flex; align-items: center; gap: 18px; padding: 17px 22px; margin-bottom: 8px; }
.metric-row .nm { flex: 1; font-weight: 620; font-size: 14.5px; letter-spacing: -0.01em; }
.metric-row .val { font-weight: 720; letter-spacing: -0.03em; font-size: 22px; min-width: 78px; text-align: right; }
.metric-row .bench { font-family: var(--mono); font-size: 10.5px; color: var(--ink-3); min-width: 160px; text-align: right; }
.metric-row .st { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.1em; text-transform: uppercase; border-radius: 999px; padding: 5px 11px; font-weight: 600; }
.metric-row .st.ok { background: var(--ok-soft); color: var(--ok); }
.metric-row .st.mid { background: rgba(22, 23, 27, 0.07); color: var(--ink-2); }
.metric-row .st.bad { background: var(--bad-soft); color: var(--bad); }

.calc-fuga { margin-top: 22px; border-radius: var(--r-l); background: var(--ink); color: #fff; padding: 32px 36px; box-shadow: 0 26px 60px -28px rgba(22, 23, 27, 0.55); }
.calc-fuga .k { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: #b9bcc4; }
.calc-fuga h4 { font-weight: 680; letter-spacing: -0.025em; font-size: clamp(23px, 3vw, 31px); margin-top: 12px; line-height: 1.18; }
.calc-fuga p { margin-top: 14px; color: #b3b5bd; font-size: 14.5px; max-width: 560px; }

/* ============================================================
   VSL / vídeo
   ============================================================ */

.vsl-frame {
  border-radius: var(--r-l);
  background: linear-gradient(160deg, #22242a, #16171b);
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  color: #85878f;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(22, 23, 27, 0.6);
}
.vsl-frame::before {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -180px;
  width: 480px;
  height: 420px;
  border-radius: 48% 52% 56% 44% / 52% 48% 52% 48%;
  background: radial-gradient(60% 60% at 40% 40%, rgba(255, 255, 255, 0.1), transparent 75%);
  filter: blur(6px);
}
.vsl-frame .play-big {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  position: relative;
  transition: transform 0.16s ease;
  box-shadow: 0 16px 40px -14px rgba(0, 0, 0, 0.5);
}
.vsl-frame:hover .play-big { transform: scale(1.06); }
.vsl-frame span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; position: relative; }
.vsl-points { margin-top: 30px; border-top: 1px solid var(--line); }

/* vsl embed inline */
.vsl-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-l);
  overflow: hidden;
  background: #16171b;
  box-shadow: 0 30px 70px -30px rgba(22, 23, 27, 0.6);
}

.cl-card { cursor: pointer; }
.cl-card.featured { grid-column: 1 / -1; flex-direction: row; align-items: stretch; }
.cl-card.featured .thumb { width: min(46%, 420px); aspect-ratio: 16 / 9; }
.cl-card.featured .cl-body { padding: 14px 18px; }
.cl-card.featured h4 { font-size: clamp(24px, 3.2vw, 36px); }
@media (max-width: 640px) {
  .cl-card.featured { flex-direction: column; }
  .cl-card.featured .thumb { width: 100%; }
}

/* modal vídeo */
.vmodal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(22, 23, 27, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 24px;
}
.vmodal.on { display: flex; }
.vmodal .box { width: min(860px, 100%); }
.vmodal .mhead { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 12px; }
.vmodal .mtitle { font-weight: 650; letter-spacing: -0.02em; font-size: 17px; color: #fff; text-shadow: 0 1px 12px rgba(0,0,0,0.4); }
.vmodal .close {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--glass-line);
  background: var(--glass);
  box-shadow: var(--glass-shadow);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}
.vmodal .mframe {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-l);
  overflow: hidden;
  background: #16171b;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.6);
}
.vmodal .box.tall .mframe { aspect-ratio: auto; height: min(78vh, 760px); background: #fff; }

/* ============================================================
   responsive
   ============================================================ */

@media (max-width: 900px) {
  .top { grid-template-columns: auto 1fr; padding: 10px 14px; }
  .top-nav { overflow-x: auto; max-width: 100%; justify-self: end; scrollbar-width: none; }
  .top-nav::-webkit-scrollbar { display: none; }
  .top-right { display: none; }
  .area-grid { grid-template-columns: 1fr; }
  .kv .row { grid-template-columns: 1fr; gap: 6px; padding: 16px 0; }
  .metric-row { flex-wrap: wrap; }
  .metric-row .bench { min-width: 0; text-align: left; order: 4; }
  .sl-cover .blob { width: 280px; height: 240px; right: -120px; bottom: -140px; opacity: 0.45; }
  .sl-cover { padding: 30px 20px; }
  .sl-cover h3 { font-size: 26px; }
  .quote-xl { font-size: 18px; line-height: 1.4; }
  .villain-name { font-size: 27px; }
  .villain-diag { font-size: 15px; }
  .goal-text { font-size: 24px; }
  .sl-card h3, .sl-dark h3, .sl-light h3 { font-size: 24px; }
  .sl-cta h3 { font-size: 25px; }
  .mlabel { font-size: 9.5px; letter-spacing: 0.1em; padding: 5px 11px; }
  .kv .v.big { font-size: 17px; }
  .sl-area .por { font-size: 14.5px; }
  .fase { flex-direction: column; gap: 6px; }
  .fase .w { min-width: 0; }
  .page-head { padding: 24px 20px; }
  .page-head h2 { font-size: clamp(30px, 8.4vw, 44px); }
  .sl-card { padding: 26px 20px; }
  .main { padding: 20px 14px 70px; }
  .tabs { max-width: 100%; overflow-x: auto; flex-wrap: nowrap; scrollbar-width: none; border-radius: 20px; }
  .tabs::-webkit-scrollbar { display: none; }

  /* ---- gate móvil ---- */
  .gate-top { grid-template-columns: 1fr auto; padding: 14px 16px; }
  .gate-top .right-chip { display: none; }
  .gate-top .pillinfo { font-size: 11.5px; padding: 5px 12px 5px 6px; }
  .gate-top .pillinfo .seg { padding: 4px 10px; }
  .gate-hero { padding-top: 28px; }
  .gate-hero h1 { font-size: clamp(31px, 9.6vw, 42px); margin-top: 18px; }
  .gate-hero .sub { font-size: 14.5px; margin-top: 16px; padding: 0 6px; }
  .gate-form {
    flex-direction: column;
    gap: 10px;
    border-radius: 22px;
    padding: 10px;
    width: calc(100% - 40px);
    margin-top: 26px;
  }
  .code-input { text-align: center; padding: 12px 10px; font-size: 14px; width: 100%; }
  .gate-form .btn { width: 100%; padding: 14px; }
  .gate-wa { padding: 0 20px; }
  .glass-strip { margin-top: 18px; padding: 26px 0 46px; }
  .glass-strip .blob { width: 120vw; height: 300px; top: 50%; }
  .glass-cards {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    gap: 12px;
    padding: 14px 20px 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .glass-cards::-webkit-scrollbar { display: none; }
  .g-card { width: 168px; min-height: 178px; flex-shrink: 0; scroll-snap-align: center; padding: 14px 12px 18px; }
  .g-card .name { font-size: 14.5px; }
  .g-card .glyph { font-size: 20px; margin: auto 0 12px; }
  .g-card:nth-child(2) { transform: none; }
  .g-card:nth-child(2):hover { transform: none; }

  /* clases móvil */
  .cl-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .cl-card h4 { font-size: 15.5px; }
  .cl-card .cl-body { padding: 10px 8px 12px; }
  .thumb .tplay { width: 30px; height: 30px; font-size: 10px; }
  .cl-card.featured { grid-column: 1 / -1; }
  .wa-banner { padding: 24px 20px; }
  .wa-banner .t { font-size: 19px; }
}
