/* ============================================================================
   Núcleo Expansivo — sistema de diseño (azul eléctrico / tech).
   Basado en el ref "v.01". Tipografía Space Grotesk + Inter.
   La LARGA es la definitiva; versiones = ocultar secciones (ver config VERSIONES).
   ============================================================================ */
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap");

:root {
  --bg: #05060d;
  --night: #07142b;
  --deep: #0c1b3a;
  --electric: #005bff;
  --glow: #2d6bff;
  --neon: #5ea2ff;
  --white: #ffffff;
  --cool: #aab4c5;
  --card: #101622;
  --border: rgba(45, 107, 255, 0.35);
  --border-soft: rgba(45, 107, 255, 0.16);
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
  --maxw: 1320px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
a {
  color: inherit;
  text-decoration: none;
}
.eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--neon);
}
.accent,
.hl {
  color: var(--neon);
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1580px;
  margin: 0 auto;
  padding: 16px 24px;
}
.nav.scrolled {
  background: rgba(5, 7, 13, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.5);
}
.logo-h {
  display: flex;
  align-items: center;
  gap: 13px;
}
/* ===== Isotipo animado: rotación lenta + glow que respira + barrido HUD =====
   El <img> va envuelto en .logo-symbol (los pseudo-elementos no aplican sobre img). */
.logo-symbol {
  position: relative;
  display: inline-block;
  flex: none;
  overflow: visible;
  width: 62px;
  height: 62px;
  margin-right: -4px;
}
.logo-symbol > img {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  width: auto;
  max-width: none;
  display: block;
  margin: 0;
  z-index: 1;
  animation: symRotate 36s linear infinite;
  will-change: transform;
}
.logo-symbol::before {
  content: "";
  position: absolute;
  inset: -14%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(94, 162, 255, 0.55),
    rgba(0, 91, 255, 0.18) 45%,
    transparent 70%
  );
  filter: blur(5px);
  opacity: 0.65;
  animation: symBreathe 4.2s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}
.logo-symbol::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(
    115deg,
    transparent 38%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 62%
  );
  mix-blend-mode: screen;
  opacity: 0;
  animation: symScan 5.5s ease-in-out infinite;
  z-index: 2;
  pointer-events: none;
}
@keyframes symRotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes symBreathe {
  0%,
  100% {
    opacity: 0.42;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.06);
  }
}
@keyframes symScan {
  0%,
  18% {
    opacity: 0;
    transform: translateX(-55%);
  }
  28% {
    opacity: 0.9;
  }
  42%,
  100% {
    opacity: 0;
    transform: translateX(55%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .logo-symbol > img {
    animation: none;
    transform: translate(-50%, -50%);
  }
  .logo-symbol::before {
    animation: none;
    opacity: 0.5;
  }
  .logo-symbol::after {
    animation: none;
    opacity: 0;
  }
}
/* logo dentro del hero (solo desktop) + el nav fijo aparece al hacer scroll (solo desktop) */
.hero-logo {
  display: none;
  text-decoration: none;
}
.hero-logo .logo-symbol {
  width: 64px;
  height: 64px;
  margin-right: -2px;
}
@media (min-width: 901px) {
  .hero-logo {
    display: inline-flex;
    margin-bottom: 18px;
  }
  .hero-logo .word .l1 {
    font-size: 1.32rem;
  }
  .hero-logo .word .l2 {
    font-size: 0.84rem;
  }
  .nav:not(.scrolled) {
    opacity: 0;
    transform: translateY(-16px);
    pointer-events: none;
  }
  .nav.scrolled {
    opacity: 1;
    transform: none;
  }
}
.logo-img {
  height: 40px;
  width: auto;
  display: block;
}
.footer .logo-img {
  height: 48px;
}
@media (max-width: 640px) {
  .logo-img {
    height: 34px;
  }
}
.logo-h .word {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-h .word .l1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.16rem;
  letter-spacing: 0.34em;
  color: var(--white);
  line-height: 1;
}
.logo-h .word .l2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.42em;
  color: var(--neon);
  margin-top: 4px;
  line-height: 1;
}
.nav-cta {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--white);
  transition: all 0.25s ease;
  background: rgba(45, 107, 255, 0.06);
  white-space: nowrap;
}
.nav-cta:hover {
  background: rgba(45, 107, 255, 0.18);
  box-shadow: 0 0 24px rgba(45, 107, 255, 0.25);
}

/* HERO */
.hero {
  position: relative;
  padding: 60px 0 70px;
  overflow: hidden;
}
.hero > .wrap {
  max-width: min(1700px, 94vw);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.radial {
  position: absolute;
  left: 14%;
  top: 12%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 1000px;
  background: radial-gradient(
    circle,
    rgba(0, 91, 255, 0.22) 0%,
    rgba(7, 20, 43, 0.4) 32%,
    transparent 62%
  );
}
.hero-grid-bg {
  display: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: start;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: rgba(0, 91, 255, 0.08);
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff4d4d;
  box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.6);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.6);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(255, 77, 77, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 77, 77, 0);
  }
}
.date-pill {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--cool);
  letter-spacing: 0.04em;
}
.hero h1 {
  font-size: clamp(1.2rem, 1.85vw, 1.7rem);
  font-weight: 600;
  line-height: 1.22;
  margin-bottom: 16px;
  color: #d7d7df;
  text-align: justify;
  hyphens: none;
  -webkit-hyphens: none;
}
.hero h1 strong {
  color: var(--neon);
  font-weight: 700;
}
.hero h1 .hl {
  color: var(--neon);
}
.hero .sub {
  font-size: 1.08rem;
  color: var(--cool);
  max-width: 540px;
  margin-bottom: 28px;
}

/* form */
.form-card {
  background:
    radial-gradient(72% 62% at 0% 0%, rgba(45, 107, 255, 0.3), transparent 60%),
    rgba(16, 22, 34, 0.82);
  backdrop-filter: blur(16px);
  border-radius: 18px;
  padding: 28px;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(45, 107, 255, 0.08);
  position: relative;
}
.form-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(94, 162, 255, 0.5),
    transparent 40%,
    transparent 60%,
    rgba(0, 91, 255, 0.3)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.form-card h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.form-card .form-intro {
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.32;
  color: var(--white);
  margin-bottom: 22px;
}
.form-card .fc-sub {
  font-size: 0.9rem;
  color: var(--cool);
  margin-bottom: 20px;
}
.field {
  position: relative;
  margin-bottom: 12px;
}
.field svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  stroke: var(--cool);
  pointer-events: none;
  transition: stroke 0.2s;
}
.field input {
  width: 100%;
  padding: 14px 14px 14px 44px;
  background: rgba(5, 7, 13, 0.6);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.96rem;
  transition: all 0.25s ease;
}
.field input::placeholder {
  color: #6b7689;
}
.field input:focus {
  outline: none;
  border-color: var(--glow);
  box-shadow:
    0 0 0 3px rgba(45, 107, 255, 0.18),
    0 0 24px rgba(45, 107, 255, 0.2);
}
.field input:focus ~ svg {
  stroke: var(--neon);
}
/* selector de país + teléfono */
.tel-row {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}
.tel-code {
  flex: 0 0 auto;
  padding: 14px 10px;
  background: rgba(5, 7, 13, 0.6);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  cursor: pointer;
}
.tel-code:focus {
  outline: none;
  border-color: var(--glow);
}
.tel-row .field {
  flex: 1;
  min-width: 0;
  margin-bottom: 0;
}
.btn-primary {
  width: 100%;
  padding: 16px;
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--white);
  background: linear-gradient(135deg, var(--electric), var(--glow));
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 8px 28px rgba(0, 91, 255, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 38px rgba(0, 91, 255, 0.55),
    0 0 0 1px rgba(94, 162, 255, 0.4);
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.btn-top {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
}
.btn-main {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
}
.secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--cool);
}
.secure svg {
  width: 14px;
  height: 14px;
  stroke: var(--neon);
}
.form-error {
  color: #ff7d7d;
  font-size: 0.82rem;
  margin-top: 10px;
  min-height: 1em;
}

/* hero visual (imagen / mentor) */
.hero-visual {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  align-self: start;
  margin-top: -34px;
  margin-right: -60px;
}
.core-glow {
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  z-index: 1;
  background: radial-gradient(
    circle,
    var(--neon),
    var(--electric) 50%,
    transparent 72%
  );
  box-shadow: 0 0 80px rgba(0, 91, 255, 0.6);
  animation: breathe 4s ease-in-out infinite;
}
@keyframes breathe {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.92;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}
.hero-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.mentor-photo {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mentor-photo picture {
  display: contents;
}
.mentor-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.hero-wordmark {
  position: relative;
  z-index: 3;
  width: 64%;
  max-width: 380px;
  height: auto;
  margin-top: -12%;
}

/* HERO DESKTOP — proporciones consistentes (vw) + Sebas como FONDO (glow/destellos), contenido a la izquierda. Mismas dimensiones a cualquier ancho (como Figma). Va DESPUÉS de las reglas base para ganar en especificidad. */
@media (min-width: 901px) {
  .hero {
    padding: 3vw 0 4vw;
    min-height: 50vw;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    background-color: var(--bg);
    background-image: url(/lan-nucleo-expansivo/_assets/img/hero-sebas-desktop.webp);
    background-repeat: no-repeat;
    background-position: right -1.5vw top -2.5vw;
    background-size: 63vw auto;
  }
  .hero-bg {
    display: none;
  }
  .hero-visual {
    display: none;
  }
  .hero > .wrap {
    max-width: none;
    width: 100%;
    padding: 0;
  }
  .hero-inner {
    display: block;
  }
  .hero-copy {
    width: 36vw;
    min-width: 370px;
    max-width: 680px;
    margin-left: 13vw;
  }
  .hero h1 {
    font-size: clamp(1.4rem, 1.78vw, 2rem);
  }
}
.mentor-ph {
  text-align: center;
  padding: 24px;
  color: var(--cool);
  font-size: 0.82rem;
}

/* cuenta regresiva (banda) */
/* divisor sutil: línea de 1px que se desvanece hacia los lados */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  max-width: var(--maxw);
  margin: 0 auto;
}
.countdown-band {
  border-bottom: 1px solid var(--border-soft);
  background: linear-gradient(90deg, #070813 0%, #0c1a42 50%, #122a67 100%);
  padding: 22px 0;
}
.countdown-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cd-label-big {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1rem, 2vw, 1.5rem);
}
.countdown {
  display: flex;
  gap: 12px;
}
.cd-box {
  text-align: center;
  background: rgba(16, 22, 34, 0.75);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 12px 8px;
  min-width: 64px;
}
.cd-box span {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: #fff;
  line-height: 1;
}
.cd-box small {
  display: block;
  margin-top: 6px;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cool);
}
.cd-live {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--neon);
}

/* SECTION BASE */
section {
  position: relative;
  z-index: 2;
}
.block {
  padding: 96px 0;
}
/* arcos decorativos: 4 anillos nitidos, 2 der + 2 izq, alternando (primero der en 'es para ti') */
.section-para-ti,
.section-descubriras,
.section-sebas,
.section-social {
  position: relative;
}
/* gradiente radial azul centrado de fondo (Figma) — solo 'es para ti' y 'descubrir' */
.section-para-ti::before,
.section-descubriras::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    58% 52% at 50% 40%,
    rgba(0, 91, 255, 0.18),
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}
.section-para-ti::after,
.section-descubriras::after,
.section-sebas::after,
.section-social::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 920px;
  max-height: 98%;
  background: url(/lan-nucleo-expansivo/_assets/img/arco-deco.webp)
    center/contain no-repeat;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}
.section-para-ti::after,
.section-sebas::after {
  right: 0;
}
.section-descubriras::after,
.section-social::after {
  left: 0;
  transform: translateY(-50%) scaleX(-1);
}
@media (max-width: 900px) {
  .section-para-ti::after,
  .section-descubriras::after,
  .section-sebas::after,
  .section-social::after {
    display: none;
  }
}
.sec-head {
  max-width: 780px;
  margin: 0 auto 50px;
  text-align: center;
}
.sec-head .eyebrow {
  display: block;
  margin-bottom: 16px;
}
.sec-head h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
}
.sec-head p {
  color: var(--cool);
  font-size: 1.06rem;
  margin-top: 18px;
}
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  max-width: var(--maxw);
  margin: 0 auto;
}

/* problem / callout */
.problem {
  text-align: center;
}
.problem p {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  line-height: 1.4;
  max-width: 34ch;
  margin: 0 auto;
}

/* "¿qué es?" — diagrama + texto */
.activation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.activation .viz {
  position: relative;
  aspect-ratio: 1;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.activation .viz img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* animación "núcleo" (activación interna): grid + anillos que se expanden + core que respira */
.activation .viz-core {
  background: radial-gradient(
    circle at 50% 50%,
    rgba(0, 91, 255, 0.18),
    transparent 65%
  );
  border: 1px solid var(--border-soft);
}
.activation .viz-core .grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-soft) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.4;
}
.activation .viz-core .core {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    var(--neon),
    var(--electric) 55%,
    transparent
  );
  box-shadow: 0 0 60px rgba(0, 91, 255, 0.5);
  animation: breathe 4s ease-in-out infinite;
  z-index: 2;
}
.activation .viz-core .pulse-ring {
  position: absolute;
  width: 90px;
  height: 90px;
  border: 1px solid var(--neon);
  border-radius: 50%;
  animation: expand 3.5s ease-out infinite;
}
.activation .viz-core .pulse-ring:nth-child(3) {
  animation-delay: 1.75s;
}
@keyframes expand {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(3.4);
    opacity: 0;
  }
}
.activation .eyebrow {
  display: block;
  margin-bottom: 14px;
}
.activation h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin-bottom: 20px;
}
.activation p {
  color: var(--cool);
  margin-bottom: 16px;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}
.activation p:last-child {
  margin-bottom: 0;
}
.activation strong {
  color: var(--white);
  font-weight: 600;
}

/* cards (4 niveles / descubrirás) */
.cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1060px;
  margin: 0 auto;
}
.card {
  position: relative;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
  align-items: stretch;
  min-height: 208px;
  background: rgba(16, 22, 34, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 18px;
  transition: all 0.35s ease;
  overflow: hidden;
}
.card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glow), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}
.card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(45, 107, 255, 0.1);
}
.card:hover::after {
  opacity: 1;
}
.card-img {
  border-radius: 12px;
  overflow: hidden;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 34px;
}
.card h3 {
  font-size: 1.16rem;
  margin-bottom: 10px;
}
.card p {
  color: var(--cool);
  font-size: 0.96rem;
}
.card .num {
  position: absolute;
  top: 22px;
  right: 26px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--electric);
  opacity: 0.55;
  font-weight: 500;
}

/* mentor bio */
.bio {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 52px;
  align-items: center;
}
.bio-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cool);
  font-size: 0.82rem;
  box-shadow:
    0 0 58px 8px rgba(0, 91, 255, 0.3),
    0 22px 60px rgba(0, 0, 0, 0.45);
}
.bio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bio h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin-bottom: 8px;
}
.bio .role {
  font-family: var(--font-display);
  color: var(--neon);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}
.bio p {
  color: var(--cool);
  margin-bottom: 14px;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}
.bio strong {
  color: var(--neon);
  font-weight: 600;
}
.bio .eyebrow {
  display: block;
  margin-bottom: 14px;
}
.bio-photo img.bio-iso {
  width: 58%;
  height: auto;
  object-fit: contain;
  opacity: 0.92;
}
.bio-photo .ph-tag {
  position: absolute;
  bottom: 18px;
  left: 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: #fff;
}
.bio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.bio-tags span {
  font-family: var(--font-display);
  font-size: 0.78rem;
  padding: 7px 14px;
  border: 1px solid var(--border-soft);
  border-radius: 100px;
  color: var(--cool);
  background: rgba(0, 91, 255, 0.05);
}
.problem strong {
  color: var(--neon);
  font-weight: 600;
}

/* "ES PARA TI SI" — checklist interactivo */
.foryou {
  max-width: 780px;
  margin: 0 auto;
}
.check-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(16, 22, 34, 0.55);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 20px 22px;
}
.check-box {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  margin-top: 1px;
  border: 1.6px solid var(--glow);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--electric), var(--glow));
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}
.check-box .mk {
  opacity: 1;
}
.check-item p {
  font-size: 1.02rem;
  color: var(--cool);
  line-height: 1.5;
}
.foryou-result {
  margin-top: 36px;
  text-align: center;
  padding: 40px 24px;
  border-radius: 18px;
  background: radial-gradient(
    ellipse 70% 120% at 50% 50%,
    rgba(0, 91, 255, 0.14),
    transparent 75%
  );
  box-shadow: 0 0 70px rgba(45, 107, 255, 0.22);
  position: relative;
  overflow: hidden;
}
.foryou-result .verdict {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  letter-spacing: 0.01em;
  line-height: 1.15;
  color: var(--white);
  text-shadow: 0 0 26px rgba(94, 162, 255, 0.5);
}
.foryou-result .verdict-sub {
  font-size: 0.95rem;
  color: var(--cool);
  margin-top: 14px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}
.foryou-cta {
  display: inline-block;
  margin-top: 24px;
  padding: 15px 36px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  background: linear-gradient(135deg, var(--electric), var(--glow));
  color: #fff;
  box-shadow: 0 8px 28px rgba(0, 91, 255, 0.35);
  transition: all 0.25s ease;
}
.foryou-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 38px rgba(0, 91, 255, 0.55);
}

/* prueba social */
.social {
  text-align: center;
}
.social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.social-strip {
  height: 52px;
  width: auto;
}
.avatars {
  display: flex;
}
.avatars .av {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  background: linear-gradient(135deg, var(--deep), var(--glow));
  margin-left: -12px;
}
.avatars .av:first-child {
  margin-left: 0;
}
.stars {
  color: #ffc24d;
  font-size: 24px;
  letter-spacing: 3px;
}
.social .eyebrow {
  display: block;
  margin-bottom: 14px;
}
.social-stat {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  line-height: 1.25;
  margin: 0 auto 12px;
  max-width: 26ch;
}
.social-sub {
  color: var(--cool);
  margin: 0 auto;
  max-width: 44ch;
}
.video-hint {
  margin: 34px 0 14px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  color: var(--neon);
  letter-spacing: 0.04em;
}
.video-row {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 6px 2px 18px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.video-row::-webkit-scrollbar {
  height: 8px;
}
.video-row::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 999px;
}
.video-card {
  flex: 0 0 auto;
  width: 230px;
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
  scroll-snap-align: center;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
  position: relative;
  cursor: pointer;
}
.video-card .vc-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.82;
  transition:
    opacity 0.25s,
    transform 0.35s;
}
.video-card:hover .vc-poster {
  opacity: 1;
  transform: scale(1.05);
}
.vc-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 91, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(0, 91, 255, 0.55);
  transition: transform 0.2s;
}
.video-card:hover .vc-play {
  transform: translate(-50%, -50%) scale(1.08);
}
.vc-play svg {
  width: 22px;
  height: 22px;
  margin-left: 3px;
  fill: #fff;
}
@media (max-width: 640px) {
  .video-card {
    width: 180px;
  }
}

/* popup de video */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.video-modal[hidden] {
  display: none;
}
.vm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 4, 8, 0.86);
  backdrop-filter: blur(6px);
}
.vm-box {
  position: relative;
  z-index: 1;
  width: min(880px, 92vw);
}
.vm-box.vertical {
  width: min(400px, 84vw);
}
.vm-close {
  position: absolute;
  top: -46px;
  right: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(16, 22, 34, 0.9);
  color: #fff;
  font-size: 17px;
  cursor: pointer;
}
.vm-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7);
}
.vm-box.vertical .vm-frame {
  aspect-ratio: 9/16;
}
.vm-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* CTA intermedio (Mentoría 33) */
.cta-mid {
  text-align: center;
}
.cta-nota {
  color: var(--cool);
  max-width: 48ch;
  margin: 0 auto 22px;
  font-size: 1.02rem;
}
.btn-inline {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  background: linear-gradient(135deg, var(--electric), var(--glow));
  color: #fff;
  box-shadow: 0 8px 28px rgba(0, 91, 255, 0.35);
  transition: all 0.25s ease;
}
.btn-inline:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 38px rgba(0, 91, 255, 0.55);
}

/* boton del hero (solo movil: reemplaza el form inline) */
.hero-form-btn {
  display: none;
  width: 100%;
  margin-top: 8px;
  padding: 17px 24px;
  border: none;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.06rem;
  color: #fff;
  background: linear-gradient(135deg, var(--electric), var(--glow));
  box-shadow: 0 10px 30px rgba(0, 91, 255, 0.4);
  cursor: pointer;
  transition: all 0.25s ease;
}
.hero-form-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(0, 91, 255, 0.55);
}

/* popup / modal del formulario */
body.modal-open {
  overflow: hidden;
}
.ne-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}
.ne-modal.open {
  display: flex;
}
.ne-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 4, 10, 0.8);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.ne-modal-box {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 440px;
  animation: modalIn 0.28s ease;
}
.ne-modal-box .form-card {
  margin: 0;
  max-width: none;
}
.ne-modal-close {
  position: absolute;
  top: -16px;
  right: -8px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(16, 22, 34, 0.96);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.ne-modal-close:hover {
  background: rgba(45, 107, 255, 0.25);
}
@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* FINAL (cierre) */
.final {
  position: relative;
  text-align: center;
  padding: 110px 0;
  overflow: hidden;
}
.final .radial {
  top: 50%;
  width: 900px;
  height: 900px;
}
.final .eyebrow {
  display: block;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}
.final h2 {
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  line-height: 1.3;
  max-width: 34ch;
  margin: 0 auto 16px;
  position: relative;
  z-index: 2;
  color: #d7d7df;
}
.final h2 strong {
  color: var(--neon);
  font-weight: 700;
}
.final .fdate {
  color: var(--cool);
  position: relative;
  z-index: 2;
  margin-bottom: 34px;
  font-family: var(--font-display);
}
.final .form-card {
  max-width: 440px;
  margin: 0 auto;
  text-align: left;
  position: relative;
  z-index: 2;
}

/* FOOTER */
.footer {
  padding: 46px 0;
  border-top: 1px solid var(--border-soft);
  text-align: center;
}
.footer .logo-h {
  justify-content: center;
  margin-bottom: 16px;
}
.footer p {
  font-size: 0.8rem;
  color: #5a6577;
}

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ===== Página de gracias (Último paso / WhatsApp) ===== */
.ty {
  max-width: 720px;
  margin: 0 auto;
  padding: 120px 24px 40px;
}
.ty-banner {
  background: linear-gradient(135deg, var(--electric), var(--glow));
  color: #fff;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.05rem, 3vw, 1.5rem);
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 22px;
}
.ty-box {
  background: rgba(16, 22, 34, 0.75);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 30px 26px;
  margin-bottom: 18px;
  text-align: center;
}
.ty-felic h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.ty-felic p,
.ty-step p {
  color: var(--cool);
  margin: 0 auto 14px;
  max-width: 52ch;
}
.ty-felic p:last-child,
.ty-step p:last-child {
  margin-bottom: 0;
}
.ty-step h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 18px;
}
.wa-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 18px;
  display: block;
}
.ty-step .lead {
  color: #fff;
  font-weight: 600;
  font-size: 1.06rem;
}
.btn-wa {
  display: inline-block;
  background: #25d366;
  color: #06351b;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  padding: 15px 36px;
  border-radius: 999px;
  margin: 20px 0;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.28);
  transition: all 0.2s ease;
}
.btn-wa:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}
.btn-team {
  display: inline-block;
  background: linear-gradient(135deg, var(--electric), var(--glow));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  padding: 12px 26px;
  border-radius: 999px;
  margin: 8px 0 18px;
}
.btn-team:hover {
  filter: brightness(1.08);
}
.ty-logo {
  color: var(--neon);
  font-weight: 600;
  letter-spacing: 0.16em;
  margin: 14px 0;
  font-family: var(--font-display);
}
.ty-logo img {
  height: 46px;
  width: auto;
  display: inline-block;
}
/* barra de progreso (incompleta) */
.ty-progress {
  max-width: 600px;
  margin: 0 auto 22px;
}
.ty-progress-track {
  height: 26px;
  border-radius: 999px;
  background: rgba(16, 22, 34, 0.85);
  border: 1px solid var(--border-soft);
  overflow: hidden;
}
.ty-progress-fill {
  position: relative;
  overflow: hidden;
  height: 100%;
  width: var(--pct, 87%);
  background: linear-gradient(90deg, var(--electric), var(--glow));
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.74rem;
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 0 24px rgba(45, 107, 255, 0.45);
  animation: fillGrow 1.4s ease-out both;
}
.ty-progress-fill .pf-label {
  position: relative;
  z-index: 2;
}
.ty-progress-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: translateX(-100%);
  animation: pShimmer 2.2s linear infinite;
}
@keyframes fillGrow {
  from {
    width: 0;
  }
  to {
    width: var(--pct, 87%);
  }
}
@keyframes pShimmer {
  0% {
    transform: translateX(-100%);
  }
  60%,
  100% {
    transform: translateX(120%);
  }
}
.ty-redirect {
  text-align: center;
  color: var(--cool);
  margin: 24px auto 0;
  font-size: 0.95rem;
  max-width: 520px;
}
.ty-redirect strong {
  color: var(--neon);
  font-family: var(--font-display);
}
/* paso descarga del regalo */
.ty-step-sub {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  color: var(--neon);
  margin-bottom: 22px;
}
.ty-book {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 26px;
  align-items: center;
  text-align: left;
  margin: 8px 0 24px;
  background: rgba(5, 7, 13, 0.4);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 22px;
}
.ty-book-img {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cool);
  font-size: 0.8rem;
  text-align: center;
  min-height: 120px;
}
.ty-book-img img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.55));
}
.ty-book-text h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.ty-book-text p {
  color: var(--cool);
  font-size: 0.96rem;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}
.btn-download {
  display: inline-block;
  background: linear-gradient(135deg, #16c47a, #23e08a);
  color: #06351b;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  padding: 16px 42px;
  border-radius: 999px;
  margin: 8px 0 16px;
  box-shadow: 0 12px 30px rgba(35, 224, 138, 0.3);
  transition: all 0.2s ease;
}
.btn-download:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}
@media (max-width: 640px) {
  .ty-book {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* replay / gracias simple / qa */
.replay-video {
  aspect-ratio: 16/9;
  width: 100%;
  background: rgba(16, 22, 34, 0.75);
  border: 1px dashed var(--border);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cool);
  margin: 24px 0;
}
.gracias {
  text-align: center;
  padding: 120px 0 60px;
}
.gracias .check {
  font-size: 56px;
}
.qa-list {
  list-style: none;
  padding: 0;
  max-width: 720px;
  margin: 0 auto;
}
.qa-list li {
  border-bottom: 1px solid var(--border-soft);
  padding: 10px 0;
}
.qa-list a {
  color: var(--neon);
  text-decoration: none;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 14px;
}
.qa-list small {
  color: var(--cool);
  display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-bg {
    display: none;
  }
  .hero {
    padding: 32px 0 48px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .hero-visual {
    order: -1;
    margin-top: 0;
    align-self: center;
    justify-content: center;
    width: 135vw;
    max-width: 135vw;
    margin-left: calc(50% - 72vw);
    margin-right: calc(50% - 63vw);
  }
  .hero .form-card {
    display: none;
  }
  .hero-form-btn {
    display: block;
  }
  .hero-meta {
    margin-bottom: 12px;
    justify-content: center;
  }
  .hero h1 {
    font-size: clamp(0.93rem, 2.8vw, 1.33rem);
    line-height: 1.3;
    margin-bottom: 14px;
    text-align: center;
  }
  .hero .sub {
    display: none;
  }
  .activation {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .activation .viz {
    order: -1;
    max-width: 360px;
    margin: 0 auto;
    width: 100%;
  }
  .bio {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .bio-photo {
    max-width: 340px;
    margin: 0 auto;
    width: 100%;
  }
}
@media (max-width: 640px) {
  body {
    font-size: 16px;
  }
  .wrap {
    padding: 0 20px;
  }
  .nav-inner {
    padding: 12px 16px;
  }
  .logo-symbol {
    width: 42px;
    height: 42px;
  }
  .logo-h .word .l1 {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
  }
  .logo-h .word .l2 {
    font-size: 0.6rem;
    letter-spacing: 0.28em;
  }
  .nav-cta {
    padding: 9px 14px;
    font-size: 0.72rem;
  }
  .hero {
    padding: 28px 0 44px;
  }
  .hero-meta {
    margin-bottom: 14px;
    gap: 8px;
  }
  .hero h1 {
    font-size: 0.975rem;
    line-height: 1.3;
    margin-bottom: 12px;
    text-align: center;
  }
  .block {
    padding: 60px 0;
  }
  .card {
    grid-template-columns: 118px 1fr;
    gap: 14px;
    padding: 14px;
    min-height: 150px;
  }
  .card-body {
    padding-right: 24px;
  }
  .card h3 {
    font-size: 1.04rem;
  }
  .card .num {
    top: 16px;
    right: 16px;
  }
  .form-card {
    padding: 20px;
  }
  .form-card h3 {
    font-size: 1.1rem;
  }
  .form-card .fc-sub {
    margin-bottom: 16px;
  }
  .countdown-in {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .countdown {
    width: 100%;
  }
  .cd-box {
    flex: 1;
    min-width: 0;
  }
  .final {
    padding: 80px 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ============================ PÁGINA REPLAY ============================ */
/* el replay no tiene logo en el contenido -> el nav fijo SIEMPRE visible (no se oculta arriba) */
.replay-page .nav {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
/* fondo de humo/glow azul (de Figma), centrado arriba detrás del contenido */
.replay-page {
  background: var(--bg) url(/lan-nucleo-expansivo/_assets/img/replay-smoke.webp)
    no-repeat top center;
  background-size: min(1700px, 165%) auto;
}
.replay-page .live-badge .lb-sep {
  opacity: 0.4;
  margin: 0 2px;
}
.replay-hero {
  position: relative;
  padding: 150px 0 30px;
  overflow: hidden;
  text-align: center;
}
.replay-hero .wrap {
  position: relative;
  z-index: 2;
  max-width: 1040px;
}
.replay-hero .radial {
  left: 50%;
  top: 0%;
  width: 1100px;
  height: 1100px;
}
.eyebrow-lines {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 22px;
}
.eyebrow-lines .el-line {
  height: 1px;
  width: 46px;
  background: linear-gradient(90deg, transparent, var(--neon));
}
.eyebrow-lines .el-line:last-child {
  background: linear-gradient(90deg, var(--neon), transparent);
}
.eyebrow-lines .eyebrow {
  margin: 0;
}
.replay-hero h1 {
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 16ch;
  margin: 0 auto;
}
.replay-hero h1 .hl {
  color: var(--neon);
}
.replay-sub {
  color: var(--cool);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.5;
  max-width: 62ch;
  margin: 20px auto 0;
}

.replay-main {
  padding: 34px 0 70px;
  position: relative;
}
.replay-main .wrap {
  max-width: 1180px;
  position: relative;
  z-index: 2;
}
.replay-card {
  position: relative;
  border-radius: 22px;
  padding: 18px;
  background: linear-gradient(
    180deg,
    rgba(10, 16, 30, 0.92),
    rgba(6, 9, 18, 0.96)
  );
  border: 1px solid rgba(94, 162, 255, 0.45);
  box-shadow:
    0 0 0 1px rgba(94, 162, 255, 0.12),
    0 0 90px rgba(0, 91, 255, 0.3),
    0 40px 90px rgba(0, 0, 0, 0.6),
    inset 0 0 70px rgba(0, 91, 255, 0.06);
}
.replay-card::before {
  content: "";
  position: absolute;
  inset: -60px;
  z-index: -1;
  border-radius: 40px;
  background: radial-gradient(
    ellipse 60% 60% at 50% 45%,
    rgba(0, 91, 255, 0.28),
    transparent 70%
  );
  filter: blur(20px);
  pointer-events: none;
}
.rc-head {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  padding: 6px 6px 16px;
}
.rc-head-ico {
  width: 13px;
  height: 13px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--electric), var(--glow));
  box-shadow: 0 0 12px rgba(45, 107, 255, 0.8);
  flex: none;
}
.rc-screen {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 14px;
  overflow: hidden;
  background: #05060d;
}
.rc-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rc-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 12, 22, 0.55);
  backdrop-filter: blur(4px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.25),
    0 0 40px rgba(0, 91, 255, 0.5);
  transition: all 0.2s ease;
}
.rc-play:hover {
  transform: translate(-50%, -50%) scale(1.06);
  background: rgba(45, 107, 255, 0.4);
}
.rc-play svg {
  width: 34px;
  height: 34px;
  color: #fff;
  margin-left: 4px;
}
.rc-controls {
  padding: 16px 8px 6px;
}
.rc-progress {
  height: 5px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
  margin-bottom: 14px;
}
.rc-progress-fill {
  height: 100%;
  width: 6%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--electric), var(--glow));
  box-shadow: 0 0 10px rgba(45, 107, 255, 0.7);
}
.rc-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.rc-left,
.rc-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.rc-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--cool);
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}
.rc-btn:hover {
  color: #fff;
}
.rc-btn svg {
  width: 21px;
  height: 21px;
}
.rc-time {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--cool);
  margin-left: 6px;
  white-space: nowrap;
}

.replay-foot {
  text-align: center;
  padding: 30px 24px 50px;
}
.replay-foot-logo {
  width: 200px;
  max-width: 60%;
  height: auto;
  opacity: 0.95;
  margin: 0 auto 14px;
  display: block;
}
.replay-foot p {
  color: var(--cool);
  font-size: 0.84rem;
}

.replay-hero-badge {
  display: none;
}
@media (max-width: 640px) {
  .replay-page .live-badge {
    font-size: 0.6rem;
    padding: 6px 9px;
    letter-spacing: 0.05em;
    gap: 6px;
  }
  .replay-page .nav .logo-symbol {
    width: 38px;
    height: 38px;
  }
  .replay-page .nav .live-badge {
    display: none;
  } /* badge fuera del nav en móvil */
  .replay-hero-badge {
    display: inline-flex;
    margin-bottom: 18px;
    font-size: 0.66rem;
    padding: 7px 14px;
  } /* arriba del eyebrow */
  .replay-hero {
    padding: 96px 0 18px;
  }
  .replay-main {
    padding: 20px 0 50px;
  }
  .replay-card {
    padding: 12px;
    border-radius: 18px;
  }
  .rc-head {
    font-size: 0.78rem;
    padding: 4px 4px 12px;
  }
  .rc-play {
    width: 64px;
    height: 64px;
  }
  .rc-play svg {
    width: 26px;
    height: 26px;
  }
  .rc-btn svg {
    width: 19px;
    height: 19px;
  }
  .rc-time {
    font-size: 0.8rem;
  }
  .rc-bar {
    gap: 8px;
  }
  .rc-left,
  .rc-right {
    gap: 4px;
  }
}
