/* John Hertz · Producción Electrónica · Genesis Media · 2026-05-17
   Branding: Coolors https://coolors.co/232323-2cbab7-3f2e56-d4ff01-ffffff
   Aesthetic: dark mode + neon accents (vibe sello música electrónica)
   Base CSS heredada de Akademia v1 (2026-05-13) — solo se han re-mapeado tokens.
   Mantiene los nombres legacy (--burdeos/--teja/--marron/--oliva/--sand/--crema*) para no
   refactor de las 1300 líneas heredadas — solo cambian los valores. */

/* ===== TOKENS ===== */
:root {
  /* Paleta John Hertz */
  --jh-black:      #0A0A0A;
  --jh-black-2:    #141414;
  --jh-black-3:    #1A1A1A;
  --jh-graphite:   #232323;
  --jh-teal:       #2CBAB7;
  --jh-teal-deep:  #1F8987;
  --jh-teal-soft:  rgba(44, 186, 183, 0.18);
  --jh-purple:     #3F2E56;
  --jh-purple-2:   #2A1F3E;
  --jh-lime:       #D4FF01;
  --jh-lime-soft:  rgba(212, 255, 1, 0.15);
  --jh-white:      #FFFFFF;
  --jh-grey:       rgba(255, 255, 255, 0.72);
  --jh-grey-soft:  rgba(255, 255, 255, 0.55);
  --jh-rule:       rgba(255, 255, 255, 0.10);

  /* Mapping a tokens heredados (mismos nombres, valores John Hertz) */
  --burdeos:      var(--jh-teal);       /* accent main */
  --teja:         var(--jh-lime);       /* accent hover / highlight */
  --marron:       var(--jh-black);      /* anchor oscuro principal */
  --oliva:        var(--jh-purple);     /* secundario muted */
  --sand:         var(--jh-purple-2);   /* mid-tone oscuro */
  --crema:        var(--jh-lime);       /* highlight emocional */
  --crema-soft:   var(--jh-black);      /* bg principal */
  --crema-paper:  var(--jh-black-3);    /* bg alt (zebra) */
  --white:        var(--jh-white);

  /* Roles */
  --bg:           var(--jh-black);
  --bg-alt:       var(--jh-black-3);
  --bg-dark:      #000000;
  --ink:          var(--jh-white);
  --ink-soft:     var(--jh-grey);
  --accent:       var(--jh-teal);
  --accent-hover: var(--jh-lime);
  --rule:         var(--jh-rule);

  /* Tipos · stack música/tech */
  --f-display: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --f-afrah:   'Space Grotesk', 'Inter', sans-serif;
  --f-label:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --f-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --f-script:  'Caveat', 'Permanent Marker', cursive;
  --f-mono:    'JetBrains Mono', 'Space Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Layout */
  --max: 1140px;
  --max-narrow: 720px;
  --gutter: clamp(20px, 5vw, 40px);
  --section-pad: clamp(64px, 9vw, 120px);
  --radius: 6px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, video, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h1 { font-size: clamp(38px, 6.4vw, 78px); font-weight: 500; line-height: 1.05; letter-spacing: -0.015em; }
h2 { font-size: clamp(30px, 4.8vw, 52px); font-weight: 500; }
h3 { font-size: clamp(22px, 3vw, 32px); font-weight: 500; }
h4 { font-size: clamp(18px, 2.2vw, 22px); font-weight: 500; letter-spacing: 0.02em; }

.eyebrow {
  font-family: var(--f-label);
  font-weight: 700;
  font-size: clamp(14px, 1.8vw, 17px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burdeos);
  display: inline-block;
}
.label-serif {
  font-family: var(--f-label);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.lead {
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 400;
}
.script {
  font-family: var(--f-script);
  letter-spacing: 0.01em;
}
em, .emph { font-style: italic; color: var(--burdeos); }
/* Sobre fondos oscuros (hero immersive · bg-dark · bg-image) el em burdeos no se lee.
   Forzar crema para que el énfasis italic mantenga legibilidad. */
.hero--immersive em,
.hero--immersive .emph,
section.bg-dark em,
section.bg-dark .emph,
.bg-image em,
.bg-image .emph { color: var(--crema); }
p + p { margin-top: 1em; }

/* ===== LAYOUT ===== */
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-narrow { width: 100%; max-width: var(--max-narrow); margin: 0 auto; padding: 0 var(--gutter); }
section { padding: var(--section-pad) 0; }
/* Cada sección mantiene su top padding completo aunque siga a otra
   → respiro consistente en cada cambio de bloque (regla anterior era section+section { padding-top: 0 } y colapsaba "Los pilares" / "Lo que cuentan" contra el cambio de color). */
section.bg-paper { background: var(--bg-alt); padding-top: var(--section-pad); padding-bottom: var(--section-pad); }
section.bg-dark { background: var(--bg-dark); color: var(--crema-soft); padding-top: var(--section-pad); padding-bottom: var(--section-pad); }
section.bg-dark h1, section.bg-dark h2, section.bg-dark h3, section.bg-dark h4 { color: var(--crema-soft); }
section.bg-dark .eyebrow { color: var(--sand); }

.divider {
  width: 60px;
  height: 1px;
  background: var(--rule);
  margin: 32px auto;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0 clamp(64px, 8vw, 100px);
  text-align: center;
  overflow: hidden;
}
.hero .eyebrow { margin-bottom: 28px; }
.hero h1 { margin: 0 auto 24px; max-width: 14ch; }
.hero .sub {
  max-width: 38ch;
  margin: 0 auto;
  font-size: clamp(19px, 2.4vw, 25px);
  line-height: 1.45;
  color: var(--ink-soft);
  font-style: italic;
  font-family: var(--f-display);
  font-weight: 500;
}
.hero--immersive {
  padding-top: clamp(60px, 7vw, 90px);
  padding-bottom: clamp(80px, 10vw, 120px);
  color: var(--crema-soft);
  isolation: isolate;
}
.hero--immersive::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.hero--immersive::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center 60%, rgba(39, 22, 5, 0.35) 0%, rgba(39, 22, 5, 0.78) 80%),
    linear-gradient(180deg, rgba(39, 22, 5, 0.55) 0%, rgba(39, 22, 5, 0.45) 50%, rgba(39, 22, 5, 0.85) 100%);
  z-index: -1;
}
.hero--immersive h1,
.hero--immersive .eyebrow,
.hero--immersive .sub { color: #FFFFFF; }
.hero--immersive .eyebrow { color: var(--sand); }
.hero--immersive .sub { color: #FFFFFF; font-style: italic; }
.hero--immersive .form-card { background: rgba(255, 252, 245, 0.97); backdrop-filter: blur(6px); }

/* ===== HERO v2 — variantes diferenciadas por página ===== */

/* Pill date-badge con dot (sustituye al eyebrow cuando el contexto es evento/directo) */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: rgba(249, 219, 155, 0.14);
  border: 1px solid rgba(249, 219, 155, 0.45);
  color: var(--crema);
  font-family: var(--f-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 32px;
  backdrop-filter: blur(4px);
}
.hero-pill .dot {
  width: 8px;
  height: 8px;
  background: var(--crema);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(249, 219, 155, 0.7);
  animation: pulse 2.4s ease-out infinite;
}
.hero-pill--light {
  background: rgba(87, 34, 15, 0.06);
  border-color: rgba(87, 34, 15, 0.2);
  color: var(--burdeos);
}
.hero-pill--light .dot { background: var(--burdeos); animation-name: pulse-dark; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(249, 219, 155, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(249, 219, 155, 0); }
  100% { box-shadow: 0 0 0 0 rgba(249, 219, 155, 0); }
}
@keyframes pulse-dark {
  0% { box-shadow: 0 0 0 0 rgba(87, 34, 15, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(87, 34, 15, 0); }
  100% { box-shadow: 0 0 0 0 rgba(87, 34, 15, 0); }
}

/* Acento dentro de H1 — Cormorant Garamond italic, elegante y editorial */
.hero h1 .script-accent {
  font-family: 'Cormorant Garamond', 'Hatton', Georgia, serif;
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.012em;
  display: inline-block;
  color: var(--burdeos);   /* default sobre bg claro */
  padding: 0 0.02em;
  /* Cormorant ligeramente más ligera ópticamente que Hatton → boost discreto */
  font-size: 1.04em;
  line-height: 0.95;
  white-space: nowrap;
}
/* Sobre hero immersive (bg dark) el accent va en crema para contrastar */
.hero--immersive h1 .script-accent { color: var(--crema); }
/* Desactivar nowrap en mobile para evitar overflow horizontal */
@media (max-width: 600px) {
  .hero h1 .script-accent { white-space: normal; }
}
.hero--confirm h1 .script-accent { color: var(--burdeos); }
.hero--split h1 {
  max-width: none; /* override del 14ch genérico — el grid ya controla el ancho */
  font-size: clamp(44px, 6vw, 78px); /* un poco más grande, más presencia */
  line-height: 1.02;
}
.hero--split .wrap { grid-template-columns: 1.25fr 1fr; } /* más respiro al título y form más compacto */
/* Hero light sin banner arriba: padding-top más compacto que el default */
.hero--split:not(.hero--immersive) { padding-top: clamp(48px, 6vw, 96px); }

/* ===== HERO FORM-FLOW (registro): form columna 2 desktop, orden fuente mobile ===== */
/* HTML source order: pill → h1 → sub → form → qualifier → countdown
   Desktop: grid-template-areas posiciona el form a la columna 2 spanning all rows
   Mobile: grid-template-areas none → auto-placement respeta el orden de fuente */
.hero--form-flow {
  text-align: left;
  padding-top: clamp(48px, 6vw, 96px);
  padding-bottom: clamp(56px, 7vw, 96px);
}
.hero--form-flow .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  grid-template-areas:
    "pill form"
    "h1   form"
    "sub  form"
    "qual form"
    "cd   form";
  gap: clamp(20px, 3vw, 36px) clamp(40px, 5vw, 72px);
  align-items: start;
}
.hero--form-flow .hero-pill        { grid-area: pill; justify-self: start; }
.hero--form-flow > .wrap > h1      { grid-area: h1; margin: 0; max-width: 16ch; font-size: clamp(44px, 6vw, 78px); line-height: 1.02; }
.hero--form-flow > .wrap > .sub    { grid-area: sub; margin: 0; max-width: 48ch; }
.hero--form-flow .hero-qualifier   { grid-area: qual; }
.hero--form-flow > .wrap > .countdown { grid-area: cd; justify-self: start; margin: 0; }
.hero--form-flow > .wrap > .form-card {
  grid-area: form;
  align-self: center;
  margin: 0;
  max-width: 100%;
  width: 100%;
}
.hero-qualifier {
  max-width: 52ch;
  font-size: 14px;
  font-style: italic;
  color: var(--ink-soft);
  margin: 0;
}

@media (max-width: 880px) {
  .hero--form-flow {
    text-align: center;
    padding-top: clamp(40px, 7vw, 64px);
  }
  .hero--form-flow .wrap {
    grid-template-columns: 1fr;
    grid-template-areas: none;   /* desactivar áreas → auto-placement por orden de fuente */
    gap: 22px;
  }
  /* En mobile cada elemento ocupa su propia fila auto */
  .hero--form-flow .hero-pill,
  .hero--form-flow > .wrap > h1,
  .hero--form-flow > .wrap > .sub,
  .hero--form-flow .hero-qualifier,
  .hero--form-flow > .wrap > .countdown,
  .hero--form-flow > .wrap > .form-card {
    grid-area: auto;
    justify-self: stretch;
    align-self: auto;
  }
  .hero--form-flow .hero-pill        { justify-self: center; }
  .hero--form-flow > .wrap > h1      { margin-left: auto; margin-right: auto; max-width: 100%; }
  .hero--form-flow > .wrap > .sub    { margin-left: auto; margin-right: auto; }
  .hero--form-flow .hero-qualifier   { margin-left: auto; margin-right: auto; }
}

/* countdown mobile override movido al final del archivo (cascada) */

/* Línea meta debajo del sub (fecha + hora + plataforma · separadores ·) */
.hero-meta {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 28px;
  margin-top: 28px;
  font-family: var(--f-label);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burdeos);   /* default sobre bg claro */
}
.hero-meta .meta-item { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta .meta-item svg { width: 14px; height: 14px; opacity: 0.85; }
.hero-meta .meta-sep { opacity: 0.5; }
.hero--immersive .hero-meta { color: var(--sand); }
.hero--confirm .hero-meta { color: var(--burdeos); }

/* Group de CTAs */
.hero-cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* SPLIT hero: copy + form/visual side by side (registro · venta) */
.hero--split .wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
  text-align: left;
}
.hero--split .hero-text,
.hero--split .hero-aside { min-width: 0; }   /* permite encogerse en grid */
.hero--split h1 { margin-left: 0; max-width: 16ch; }
.hero--split .sub { margin-left: 0; margin-right: 0; max-width: 44ch; }
.hero--split .hero-cta-row { justify-content: flex-start; margin-top: 36px; }
.hero--split .hero-meta { justify-content: flex-start; }
.hero--split .form-card { margin: 0; max-width: 100%; }
.hero--split .countdown { margin-top: 28px; }
.hero--split .countdown-row { justify-content: flex-start; }

/* Aside frame para imagen lateral con vibe polaroid / sello */
.hero-aside {
  position: relative;
  isolation: isolate;
}
.hero-aside .frame {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 40px 100px -30px rgba(0, 0, 0, 0.55), 0 8px 24px -8px rgba(0, 0, 0, 0.25);
  transform: rotate(-1.2deg);
  transition: transform 600ms ease;
}
.hero-aside .frame:hover { transform: rotate(0); }
.hero-aside .frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}
.hero-aside .frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(39, 22, 5, 0) 60%, rgba(39, 22, 5, 0.35) 100%);
  pointer-events: none;
}
.hero-aside .frame-caption {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  color: var(--crema-soft);
  font-family: var(--f-script);
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.15;
  z-index: 2;
}

/* HERO confirmación (gracias) — luminoso, sello centrado */
.hero--confirm {
  position: relative;
  padding: clamp(90px, 11vw, 150px) 0 clamp(48px, 6vw, 80px);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, var(--crema-paper) 0%, var(--crema-soft) 60%, var(--crema-soft) 100%);
  overflow: hidden;
}
.hero--confirm::before {
  /* Halo cálido sutil */
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(249, 219, 155, 0.35) 0%, rgba(249, 219, 155, 0) 65%);
  z-index: 0;
  pointer-events: none;
}
.hero--confirm .wrap-narrow { position: relative; z-index: 1; }
.hero--confirm h1 { color: var(--burdeos); }
.hero--confirm .sub { color: var(--ink); font-style: normal; }

/* Sello circular con checkmark — gracias */
.seal {
  width: 110px;
  height: 110px;
  margin: 0 auto 36px;
  border-radius: 50%;
  background: var(--burdeos);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow:
    0 0 0 1px var(--burdeos),
    0 0 0 10px rgba(87, 34, 15, 0.08),
    0 0 0 18px rgba(87, 34, 15, 0.04),
    0 18px 40px -12px rgba(87, 34, 15, 0.45);
}
.seal::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1.5px solid rgba(249, 219, 155, 0.4);
  border-radius: 50%;
}
.seal svg {
  width: 48px;
  height: 48px;
  stroke: var(--crema);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Banner emitido (replay) — refinado */
.aired-banner {
  display: block;
  text-align: center;
  background: var(--marron);
  color: var(--crema);
  font-family: var(--f-label);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(249, 219, 155, 0.15);
}

/* Capsule callout (replay → "90 min · Sin acortar · Sigue tu ritmo") */
.hero-capsule {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
  padding: 14px 24px;
  background: rgba(249, 219, 155, 0.08);
  border: 1px solid rgba(249, 219, 155, 0.25);
  border-radius: 999px;
  color: var(--crema);
  font-family: var(--f-label);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-capsule .play-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--crema);
  color: var(--marron);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

/* CTAs pill (siguiendo el patrón de Akademiademagos.com — 30px) */
.btn--pill { border-radius: 999px; padding: 20px 40px; }
.btn--lg.btn--pill { padding: 22px 48px; }
.btn--lg { border-radius: 999px; } /* default LG = pill */

/* Override overlay para heroes con landscape — más respiro a la foto */
.hero--avalon::after {
  background:
    linear-gradient(110deg, rgba(39, 22, 5, 0.78) 0%, rgba(39, 22, 5, 0.55) 50%, rgba(39, 22, 5, 0.35) 100%),
    linear-gradient(180deg, rgba(39, 22, 5, 0.3) 0%, rgba(39, 22, 5, 0.6) 100%) !important;
}
.hero--library::after {
  background:
    linear-gradient(180deg, rgba(39, 22, 5, 0.55) 0%, rgba(39, 22, 5, 0.75) 60%, rgba(39, 22, 5, 0.88) 100%) !important;
}
.hero--maestria::after {
  background:
    linear-gradient(95deg, rgba(39, 22, 5, 0.85) 0%, rgba(39, 22, 5, 0.65) 55%, rgba(39, 22, 5, 0.3) 100%) !important;
}

@media (max-width: 880px) {
  .hero--split .wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero--split h1 { margin-left: auto; margin-right: auto; }
  .hero--split .sub { margin-left: auto; margin-right: auto; }
  .hero--split .hero-cta-row { justify-content: center; }
  .hero--split .hero-meta { justify-content: center; }
  .hero--split .countdown-row { justify-content: center; }
  /* Form-card SIEMPRE visible en mobile (esto es el CTA principal). Antes lo escondía por defecto, era un bug. */
  .hero-aside { display: block; margin-top: 32px; }
  /* Solo ocultamos la foto polaroid en venta (es decorativa, no funcional, y el bg ya muestra la misma imagen) */
  .hero--venta .hero-aside { max-width: 320px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 560px) {
  .hero-pill {
    font-size: 10px;
    padding: 8px 14px;
    letter-spacing: 0.12em;
    max-width: 100%;
    text-align: center;
    line-height: 1.3;
  }
  .seal { width: 84px; height: 84px; margin-bottom: 28px; }
  .seal svg { width: 36px; height: 36px; }
  .hero-meta { font-size: 10px; letter-spacing: 0.12em; gap: 10px 14px; max-width: 100%; }
  .hero h1 { font-size: clamp(38px, 10vw, 52px); }
  .hero--split h1 { font-size: clamp(38px, 10vw, 52px); max-width: 100%; }
  .hero .sub { font-size: clamp(16px, 4.4vw, 19px); max-width: 100%; }
  .hero-meta .meta-sep { display: none; }
  .hero, .hero--immersive, .hero--split, .hero--confirm { overflow-x: clip; }
  .hero--split .hero-text > * { max-width: 100%; }
  /* Padding-top reducido al quitar el banner — todo sube */
  .hero { padding-top: clamp(56px, 8vw, 80px); }
}

/* Section background image (subtle, with overlay) */
.bg-image {
  position: relative;
  isolation: isolate;
  color: var(--crema-soft);
}
.bg-image::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--section-bg);
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.bg-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(39, 22, 5, 0.78), rgba(39, 22, 5, 0.92));
  z-index: -1;
}
.bg-image h2, .bg-image h3, .bg-image .eyebrow { color: var(--crema-soft); }
.bg-image .eyebrow { color: var(--sand); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 36px;
  background: var(--accent);
  color: var(--crema-soft);
  font-family: var(--f-body);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 240ms ease;
  text-align: center;
  border: 1.5px solid var(--accent);
  min-height: 56px;
  cursor: pointer;
  text-decoration: none;
}
.btn:hover { background: var(--teja); border-color: var(--teja); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--block { display: flex; width: 100%; }
.btn--ghost { background: transparent; color: var(--marron); border-color: var(--marron); }
.btn--ghost:hover { background: var(--marron); color: var(--crema-soft); }
.btn--lg { padding: 22px 48px; font-size: 16px; min-height: 64px; }
.btn .arrow { font-family: var(--f-display); font-weight: 400; letter-spacing: 0; transform: translateY(-1px); }

/* ===== FORM ===== */
.form-card {
  background: var(--white);
  padding: clamp(28px, 4vw, 40px);
  border-radius: 8px;
  box-shadow: 0 30px 80px -40px rgba(39, 22, 5, 0.35), 0 2px 4px rgba(39, 22, 5, 0.04);
  max-width: 480px;
  margin: 40px auto 0;
  border: 1px solid var(--rule);
}
.form-card .form-title {
  font-family: var(--f-label);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  color: var(--burdeos);
  margin-bottom: 20px;
}
.field { margin-bottom: 14px; }
.field input {
  width: 100%;
  padding: 16px 18px;
  background: var(--bg);
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  font-size: 16px;
  color: var(--ink);
  transition: all 200ms ease;
}
.field input::placeholder { color: rgba(39, 22, 5, 0.45); }
.field input:focus { outline: none; border-color: var(--burdeos); background: var(--white); }
.form-meta {
  text-align: center;
  margin-top: 14px;
  font-size: 13px;
  color: var(--ink-soft);
  font-style: italic;
  letter-spacing: 0.02em;
}
.form-error {
  display: none;
  margin-top: 12px;
  padding: 12px 14px;
  background: rgba(87, 34, 15, 0.08);
  border-left: 3px solid var(--burdeos);
  color: var(--burdeos);
  font-size: 14px;
  border-radius: 4px;
}
.form-error.show { display: block; }

/* ===== TEXT BLOCKS ===== */
.prose p { margin-bottom: 1.2em; max-width: 60ch; }
.prose-narrow { max-width: 640px; margin: 0 auto; }
.prose-narrow p { margin-bottom: 1.2em; }
.section-title { text-align: center; margin-bottom: 72px; max-width: 18ch; margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }

/* ===== LISTS ===== */
.checklist { list-style: none; margin: 0 auto; max-width: 640px; }
.checklist li {
  position: relative;
  padding: 14px 0 14px 38px;
  border-bottom: 1px solid var(--rule);
  font-size: 17px;
  line-height: 1.55;
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 22px;
  width: 22px;
  height: 22px;
  background: var(--burdeos);
  border-radius: 50%;
  display: flex;
}
.checklist li::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 28px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--crema-soft);
  border-bottom: 2px solid var(--crema-soft);
  transform: rotate(-45deg);
}

.crosslist { list-style: none; margin: 0 auto; max-width: 640px; }
.crosslist li {
  position: relative;
  padding: 14px 0 14px 38px;
  border-bottom: 1px solid var(--rule);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.crosslist li:last-child { border-bottom: none; }
.crosslist li::before, .crosslist li::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 26px;
  width: 18px;
  height: 1.5px;
  background: var(--teja);
}
.crosslist li::before { transform: rotate(45deg); }
.crosslist li::after { transform: rotate(-45deg); }

/* ===== CARD GRID ===== */
.card-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  margin-top: 48px;
}
@media (min-width: 800px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: 8px;
  border: 1px solid var(--rule);
  position: relative;
}
.card .num {
  font-family: var(--f-display);
  font-size: 56px;
  font-weight: 200;
  color: var(--teja);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.card h3 { font-size: clamp(20px, 2.4vw, 26px); margin-bottom: 14px; line-height: 1.2; }
.card p { font-size: 15.5px; line-height: 1.6; color: var(--ink-soft); }

/* ===== AUTHOR BLOCK ===== */
.author {
  display: grid;
  gap: 56px;
  align-items: center;
  grid-template-columns: 1fr;
  max-width: 980px;
  margin: 0 auto;
}
@media (min-width: 800px) { .author { grid-template-columns: 0.85fr 1fr; gap: 88px; } }
.author p { margin-bottom: 1.4em; line-height: 1.75; }
.author .pull { margin: 36px 0; padding: 28px 0; }
.author .photo {
  aspect-ratio: 4/5;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  background: var(--sand);
  box-shadow: 0 30px 60px -30px rgba(39, 22, 5, 0.45);
}
.author .photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.author .photo::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 60%, rgba(39, 22, 5, 0.4) 100%);
}
.author .photo .signature {
  position: absolute;
  bottom: 20px;
  left: 24px;
  font-family: var(--f-script);
  color: var(--crema-soft);
  font-size: 22px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  z-index: 1;
}
.author p { margin-bottom: 1em; }
.author .pull {
  display: block;
  padding: 24px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin: 32px 0;
  font-style: italic;
  font-family: var(--f-display);
  font-size: clamp(22px, 2.8vw, 30px);
  line-height: 1.35;
  color: var(--marron);
  font-weight: 600;
}

/* ===== TESTIMONIAL ===== */
.testimonial-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  margin-top: 56px;
}
@media (min-width: 800px) { .testimonial-grid { grid-template-columns: repeat(2, 1fr); } }
.testimonial {
  background: var(--white);
  padding: 32px 28px;
  border-radius: 8px;
  border-left: 3px solid var(--burdeos);
  font-size: 16px;
  line-height: 1.6;
}
.testimonial blockquote { font-style: italic; color: var(--ink); margin-bottom: 16px; font-size: 16.5px; line-height: 1.55; }
.testimonial .who { font-family: var(--f-body); font-size: 12.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--burdeos); }
.testimonial .who span { display: block; font-family: var(--f-body); text-transform: none; letter-spacing: 0; font-size: 13.5px; color: var(--ink-soft); margin-top: 4px; }

/* ===== HEADER LOGO ===== */
.site-header {
  position: relative;
  padding: 32px var(--gutter) 12px;
  z-index: 10;
  text-align: center;
  background: transparent;
}
.site-header img { height: 56px; width: auto; margin: 0 auto; }
@media (max-width: 600px) {
  .site-header { padding: 24px var(--gutter) 8px; }
  .site-header img { height: 44px; }
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--marron);
  color: rgba(249, 219, 155, 0.7);
  padding: 56px var(--gutter) 40px;
  text-align: center;
  font-size: 13.5px;
  line-height: 1.7;
  letter-spacing: 0.02em;
}
.site-footer img { height: 48px; margin: 0 auto 24px; opacity: 0.85; }
.site-footer .legal-links { margin-top: 18px; font-size: 12.5px; }
.site-footer .legal-links a { color: rgba(249, 219, 155, 0.55); margin: 0 10px; text-decoration: underline; text-decoration-color: rgba(249, 219, 155, 0.25); }
.site-footer .legal-links a:hover { color: var(--crema); }

/* ===== COUNTDOWN ===== */
.countdown {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 32px auto 0;
  flex-wrap: wrap;
}
.countdown .unit {
  background: var(--marron);
  color: var(--crema);
  padding: 14px 18px;
  border-radius: 6px;
  min-width: 76px;
  text-align: center;
}
.countdown .unit .num {
  font-family: var(--f-display);
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  display: block;
}
.countdown .unit .lbl {
  font-family: var(--f-label);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 6px;
  display: block;
  opacity: 0.75;
}

/* ===== VIDEO ===== */
.video-frame {
  max-width: 880px;
  margin: 0 auto;
  background: var(--marron);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 40px 100px -50px rgba(39, 22, 5, 0.6);
  aspect-ratio: 16/9;
  position: relative;
}
.video-frame video, .video-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--marron) 0%, var(--burdeos) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
  color: var(--crema-soft);
}
.video-placeholder svg { width: 64px; height: 64px; opacity: 0.92; }
.video-placeholder span { font-family: var(--f-label); letter-spacing: 0.2em; font-size: 14px; opacity: 0.85; }

/* ===== BANNER ===== */
.banner {
  background: var(--burdeos);
  color: var(--crema-soft);
  text-align: center;
  padding: 14px var(--gutter);
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.banner strong { font-weight: 700; }

/* ===== UTILS ===== */
.mb-0 { margin-bottom: 0 !important; }
.mt-lg { margin-top: 56px; }
.text-burdeos { color: var(--burdeos); }
.hide-mobile { display: none; }
@media (min-width: 800px) { .hide-mobile { display: block; } .hide-desktop { display: none; } }

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  max-width: 800px;
  margin: 56px auto 0;
}
@media (min-width: 800px) { .pricing-grid { grid-template-columns: 1fr 1fr; } }
.price-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 10px;
  border: 1px solid var(--rule);
  text-align: center;
  position: relative;
}
.price-card.featured { border: 2px solid var(--burdeos); transform: scale(1.02); box-shadow: 0 30px 60px -30px rgba(39, 22, 5, 0.3); }
.price-card .tag { font-family: var(--f-label); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teja); margin-bottom: 12px; }
.price-card .amount { font-family: var(--f-display); font-size: 48px; font-weight: 500; color: var(--marron); margin: 8px 0 4px; line-height: 1; }
.price-card .amount .cents { font-size: 22px; vertical-align: super; opacity: 0.7; }
.price-card .pp { font-family: var(--f-body); font-size: 13px; color: var(--ink-soft); margin-bottom: 24px; }
.price-card ul { list-style: none; text-align: left; margin: 24px 0; }
.price-card ul li { padding: 8px 0 8px 26px; position: relative; font-size: 14.5px; }
.price-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--burdeos);
  font-weight: 600;
  font-size: 14px;
}

/* ===== FAQ ===== */
.faq { max-width: 800px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--rule);
  padding: 22px 0;
}
.faq summary {
  cursor: pointer;
  font-family: var(--f-display);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding-right: 36px;
  list-style: none;
  line-height: 1.35;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: -2px;
  font-size: 28px;
  font-weight: 200;
  color: var(--burdeos);
  transition: transform 240ms ease;
}
.faq details[open] summary::after { content: '−'; }
.faq details p { margin-top: 16px; color: var(--ink-soft); font-size: 16px; line-height: 1.65; }

/* ===== UI for replay ===== */
.aired-banner {
  background: var(--marron);
  color: var(--sand);
  text-align: center;
  padding: 12px;
  font-family: var(--f-label);
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* ===== IMAGE BREAK (full-width banner photo entre secciones) ===== */
.image-break {
  position: relative;
  width: 100%;
  height: clamp(280px, 38vw, 520px);
  background-size: cover;
  background-position: center;
  isolation: isolate;
  overflow: hidden;
}
.image-break::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(39, 22, 5, 0.55), rgba(39, 22, 5, 0.25));
  z-index: 0;
}
.image-break .ib-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: var(--gutter);
  z-index: 1;
  text-align: center;
  color: var(--crema-soft);
}
.image-break .ib-overlay h3 {
  font-family: var(--f-display);
  font-weight: 500;
  color: #FFFFFF;
  font-size: clamp(24px, 3.6vw, 38px);
  line-height: 1.15;
  max-width: 22ch;
  margin: 0 auto;
}
.image-break .ib-overlay .eyebrow {
  color: var(--sand);
  margin-bottom: 16px;
}

/* ===== GALLERY STRIP (3-4 fotos del evento) ===== */
.gallery-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
@media (min-width: 700px) {
  .gallery-strip { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
.gallery-strip figure {
  margin: 0;
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 24px 60px -28px rgba(39, 22, 5, 0.4);
  transition: transform 400ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.gallery-strip figure:nth-child(odd) { transform: rotate(-0.6deg); }
.gallery-strip figure:nth-child(even) { transform: rotate(0.6deg) translateY(-12px); }
.gallery-strip figure:hover { transform: rotate(0deg) translateY(-6px); }
.gallery-strip img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-caption {
  text-align: center;
  margin-top: 36px;
  font-family: var(--f-label);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--burdeos);
}

/* ===== CARD ORNAMENT (sutiles motivos para los pilares) ===== */
.card-grid .card {
  transition: transform 400ms cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 400ms ease;
}
.card-grid .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -25px rgba(39, 22, 5, 0.25);
}
.card-grid .card::before {
  content: '';
  position: absolute;
  top: 22px; right: 22px;
  width: 36px; height: 36px;
  background: url('/shared/images/isotipo-burdeos.png') center/contain no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

/* ===== ORNAMENT DIVIDER (mini ornamento entre bloques densos) ===== */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: clamp(56px, 8vw, 88px) auto;
  gap: 18px;
  opacity: 0.6;
}
.ornament::before, .ornament::after {
  content: '';
  display: block;
  height: 1px;
  width: clamp(80px, 14vw, 160px);
  background: var(--rule);
}
.ornament img { height: 32px; width: auto; opacity: 0.7; }

/* ===== ANIMATIONS ===== */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(20px); transition: all 700ms cubic-bezier(0.2, 0.7, 0.2, 1); }
  .reveal.in { opacity: 1; transform: translateY(0); }
}

/* ===== MOBILE TWEAKS ===== */
@media (max-width: 600px) {
  body { font-size: 16px; }
  .form-card { margin-top: 32px; padding: 24px 20px; }
  .checklist li, .crosslist li { font-size: 16px; }
  section { padding: 64px 0; }
}

/* ===== COUNTDOWN compacto en mobile (los 4 cubos en 1 línea) — AL FINAL para ganar cascada ===== */
@media (max-width: 560px) {
  .countdown {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 6px !important;
    width: 100%;
    max-width: 100%;
    justify-content: stretch;
  }
  .countdown .unit {
    padding: 10px 4px !important;
    min-width: 0 !important;
    width: 0 !important;
    flex: 1 1 0 !important;
    box-sizing: border-box !important;
  }
  .countdown .unit .num { font-size: 22px !important; }
  .countdown .unit .lbl {
    font-size: 9px !important;
    letter-spacing: 0.08em !important;
    margin-top: 4px !important;
    white-space: nowrap !important;
  }
}
@media (max-width: 400px) {
  .countdown { gap: 5px !important; }
  .countdown .unit { padding: 9px 3px !important; }
  .countdown .unit .num { font-size: 20px !important; }
  .countdown .unit .lbl { font-size: 8.5px !important; letter-spacing: 0.06em !important; }
}

/* ===== ALERT / BURDEOS VARIANTES (urgencia con color de marca) ===== */
.hero-pill--alert {
  background: var(--burdeos);
  border-color: var(--burdeos);
  color: #FFFFFF;
  box-shadow: 0 14px 36px -16px rgba(87, 34, 15, 0.45);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.2em;
  padding: 12px 26px;
}
.hero-pill--alert .dot {
  background: #FFFFFF;
  animation: pulse-white 2.4s ease-out infinite;
}
@keyframes pulse-white {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.75); }
  70% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}
.alert-caption {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 20px;
  background: rgba(87, 34, 15, 0.08);
  border: 1.5px solid var(--burdeos);
  color: var(--burdeos);
  font-family: var(--f-label);
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 999px;
  font-weight: 700;
}
.alert-caption strong { color: var(--burdeos); font-weight: 800; }
/* Sobre fondo oscuro (CTA final) la caption se rellena en burdeos sólido */
section.bg-dark .alert-caption {
  background: var(--burdeos);
  border-color: var(--burdeos);
  color: #FFFFFF;
}
section.bg-dark .alert-caption strong { color: #FFFFFF; }

/* ===== TÍTULO ancho + más peso (sale más legible) ===== */
.section-title--wide { max-width: 40ch; }
.section-title { font-weight: 600; }
section.bg-dark .section-title { color: #FFFFFF; font-weight: 600; }
section.bg-dark .eyebrow { color: var(--crema); font-weight: 700; }

/* Las cards interiores tienen bg crema — sus títulos deben recuperar color oscuro
   aunque la sección padre sea bg-dark (la regla global section.bg-dark h3 los pisaba) */
section.bg-dark .card h3,
section.bg-dark .card-grid .card h3 { color: var(--ink); }

/* ===== SUBTÍTULO de sección (debajo del .section-title) ===== */
.section-subtitle {
  text-align: center;
  max-width: 44ch;
  margin: 0 auto 88px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.45;
  color: var(--ink-soft);
  font-weight: 500;
}
section.bg-dark .section-subtitle { color: var(--sand); }

/* ===== AIRE consistente entre eyebrow / title / content (toda la landing) ===== */
.eyebrow + h2,
.eyebrow + .section-title { margin-top: 14px; }
.eyebrow.text-center { margin-bottom: 4px; }

/* ===== SECCIÓN con respiro arriba (tras cambio de color de fondo) ===== */
.section--gap-top { padding-top: clamp(80px, 10vw, 120px) !important; }

/* ===== GALLERY STRIP (polaroids con un poco de movimiento) ===== */
.gallery-strip {
  display: grid;
  gap: clamp(20px, 3vw, 36px);
  grid-template-columns: 1fr;
  margin: 0 auto;
  max-width: 1080px;
}
@media (min-width: 720px) { .gallery-strip { grid-template-columns: repeat(3, 1fr); } }
.gallery-strip .polaroid {
  position: relative;
  background: var(--white);
  padding: 12px 12px 38px;
  border-radius: 6px;
  box-shadow: 0 28px 56px -28px rgba(39, 22, 5, 0.45), 0 6px 18px -8px rgba(39, 22, 5, 0.18);
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.gallery-strip .polaroid:nth-child(1) { transform: rotate(-1.4deg); }
.gallery-strip .polaroid:nth-child(2) { transform: rotate(0.8deg); }
.gallery-strip .polaroid:nth-child(3) { transform: rotate(-0.6deg); }
.gallery-strip .polaroid:hover { transform: rotate(0) translateY(-4px); }
.gallery-strip .polaroid img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 3px;
}
.gallery-strip .polaroid .cap {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--f-script);
  font-size: 16px;
  color: var(--marron);
  opacity: 0.78;
}

/* ===== BANDA DE IMAGEN FULL-WIDTH (encuentros presenciales / mood) ===== */
.image-band {
  position: relative;
  width: 100%;
  height: clamp(280px, 38vw, 460px);
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.image-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(39, 22, 5, 0.35) 0%, rgba(39, 22, 5, 0.55) 100%);
  z-index: 0;
}
.image-band .caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: clamp(28px, 4vw, 56px);
  color: var(--crema-soft);
  font-family: var(--f-script);
  font-size: clamp(22px, 3vw, 34px);
  z-index: 1;
  line-height: 1.15;
  max-width: 720px;
}

/* ===== TESTIMONIAL CON FOTO / VÍDEO ===== */
.testimonial--card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-left: none;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 24px 50px -28px rgba(39, 22, 5, 0.2);
}
.testimonial--card .t-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--bg-alt);
  overflow: hidden;
}
.testimonial--card .t-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.testimonial--card .t-media .play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(39, 22, 5, 0.18);
  color: #fff;
  transition: background 240ms ease;
}
.testimonial--card .t-media .play svg { width: 56px; height: 56px; filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5)); }
.testimonial--card .t-media:hover .play { background: rgba(39, 22, 5, 0.05); }
.testimonial--card .t-body { padding: 28px; }
.testimonial--card .t-body blockquote {
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 16px;
}
.testimonial--card .t-body .who {
  font-family: var(--f-label);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burdeos);
}
.testimonial--card .t-body .who span {
  display: block;
  font-family: var(--f-body);
  text-transform: none;
  letter-spacing: 0;
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* ===== PROCESO ENTREVISTA (3 pasos hasta la llamada) ===== */
.steps-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  max-width: 980px;
  margin: 56px auto 0;
}
@media (min-width: 800px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
.step-card {
  position: relative;
  padding: 36px 28px 32px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--rule);
  text-align: left;
}
.step-card .step-num {
  font-family: var(--f-label);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teja);
  margin-bottom: 16px;
  display: block;
}
.step-card h3 { font-size: clamp(20px, 2.2vw, 24px); margin-bottom: 12px; }
.step-card p { font-size: 15.5px; line-height: 1.55; color: var(--ink-soft); }

/* ===== TESTIMONIAL GRID en 2 cols min 720px (override para que las cards quepan) ===== */
@media (min-width: 720px) {
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

/* ===== PILLARS (6 cards con ilustración custom Nano Banana) ===== */
.card-grid--pillars {
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .card-grid--pillars { grid-template-columns: repeat(2, 1fr); }
}
.card--pillar {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  align-items: center;
  padding: 24px;
}
.card--pillar::before { display: none !important; } /* sin watermark isotipo, ya hay illu */
@media (max-width: 560px) {
  .card--pillar { grid-template-columns: 1fr; padding: 18px; }
}
.pillar-illu {
  background: var(--crema-paper);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(87, 34, 15, 0.1);
}
.pillar-illu img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.pillar-body .pillar-num {
  display: inline-block;
  font-family: var(--f-label);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teja);
  margin-bottom: 12px;
  font-weight: 700;
}
.pillar-body h3 { font-size: clamp(20px, 2.2vw, 24px); margin-bottom: 10px; line-height: 1.2; }
.pillar-body p { font-size: 15px; line-height: 1.6; color: var(--ink-soft); }

/* ===== CYCLE CARDS (Cómo funciona — Cada semana / Entre sesiones / Al cierre) ===== */
.card-grid--cycle { gap: 28px; }
.card--cycle {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card--cycle::before { display: none !important; } /* sin watermark isotipo, hay illu */
.cycle-illu {
  background: var(--crema-paper);
  border-bottom: 1px solid rgba(87, 34, 15, 0.1);
}
.cycle-illu img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.cycle-body { padding: 28px 26px 30px; }
.cycle-body .cycle-num {
  display: inline-block;
  font-family: var(--f-label);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teja);
  margin-bottom: 12px;
  font-weight: 700;
}
.cycle-body h3 { font-size: clamp(22px, 2.4vw, 26px); margin-bottom: 12px; line-height: 1.2; }
.cycle-body p { font-size: 15.5px; line-height: 1.6; color: var(--ink-soft); }

/* ===== AIRE en TESTIMONIOS (cards más cómodas) ===== */
.testimonial-grid { gap: 32px; margin-top: 72px; }
.testimonial { padding: 40px 36px; }
.testimonial blockquote { font-size: 17.5px; line-height: 1.65; margin-bottom: 24px; }
.testimonial .who { margin-top: 20px; }
@media (min-width: 720px) {
  .testimonial-grid { gap: 40px; }
}

/* ===== MURO TESTIMONIOS (capturas reales · masonry estilo Elena Devis) ===== */
.testi-wall {
  max-width: 960px;
  margin: 0 auto;
  columns: 3;
  column-gap: 16px;
}
.testi-wall figure {
  break-inside: avoid;
  margin: 0 0 16px;
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--rule);
  box-shadow: 0 2px 12px rgba(39, 22, 5, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testi-wall figure:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(39, 22, 5, 0.12);
}
.testi-wall img {
  width: 100%;
  display: block;
  height: auto;
}
@media (max-width: 760px) {
  .testi-wall { columns: 2; column-gap: 12px; }
  .testi-wall figure { margin-bottom: 12px; }
}

/* ===== CIERRE REFLEXIVO (registro/) ===== */
.closing-reflection {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.55;
  color: var(--ink);
  text-align: center;
}
.closing-reflection p { margin-bottom: 1.2em; }
.closing-reflection p:last-child { margin-bottom: 0; }
.closing-reflection__sign {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  font-style: normal;
  font-family: var(--f-display);
  font-weight: 600;
  color: var(--burdeos);
  font-size: clamp(18px, 2.2vw, 22px);
}

/* Watermark decorativo de sección — solo desktop, en mobile distrae del texto */
@media (max-width: 880px) {
  .section-watermark { display: none !important; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   JOHN HERTZ · DARK MODE OVERRIDES (al final para ganar cascada)
   ═══════════════════════════════════════════════════════════════════════════ */

/* Body: la fuente body principal Inter, fondo dark, smoothing */
body {
  background: var(--jh-black);
  color: var(--jh-white);
  letter-spacing: -0.005em;
}

/* Headings: Space Grotesk con weight 600 (más presencia tech) y tracking apretado */
h1, h2, h3, h4 {
  color: var(--jh-white);
  font-weight: 600;
  letter-spacing: -0.025em;
}
h1 { font-weight: 700; letter-spacing: -0.035em; }
h2 { letter-spacing: -0.025em; }

/* En cards (que sobre fondo dark suelen tener bg blanco — pero aquí flipamos a teal/purple) */
.card h3 { color: var(--jh-white); }

/* Eyebrow: teal saturado, tracking amplio (estilo "label de track") */
.eyebrow {
  color: var(--jh-teal);
  font-weight: 700;
  letter-spacing: 0.24em;
}
section.bg-dark .eyebrow { color: var(--jh-teal); }

/* Body p en dark: blanco semi-transparente para suavizar */
p, li { color: var(--jh-grey); }
p strong, li strong, p b, li b { color: var(--jh-white); }

/* Links inline → teal con underline */
.prose-narrow a,
.wrap-narrow a,
section a:not(.btn):not(.hero-pill) {
  color: var(--jh-teal);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* ────────────── BUTTONS ──────────────
   CTA principal: pill de LIME con texto NEGRO (alta legibilidad + acento neon).
   Mantenemos .btn base; aquí solo redefinimos colores. */
.btn {
  background: var(--jh-lime);
  color: var(--jh-black);
  border: 2px solid var(--jh-lime);
  font-family: var(--f-label);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 100px;
  box-shadow: 0 14px 36px -16px rgba(212, 255, 1, 0.5);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}
.btn:hover {
  background: var(--jh-white);
  border-color: var(--jh-white);
  color: var(--jh-black);
  transform: translateY(-2px);
  box-shadow: 0 18px 44px -18px rgba(255, 255, 255, 0.4);
}
.btn--ghost {
  background: transparent;
  color: var(--jh-teal);
  border: 2px solid var(--jh-teal);
  box-shadow: none;
}
.btn--ghost:hover {
  background: var(--jh-teal);
  color: var(--jh-black);
  border-color: var(--jh-teal);
}
.btn--block { width: 100%; }

/* ────────────── FORM CARD ──────────────
   Sobre fondo dark, la card del form va con bg #141414 + borde teal sutil + glow lime al focus. */
.form-card {
  background: var(--jh-black-2);
  border: 1px solid rgba(44, 186, 183, 0.25);
  border-radius: 14px;
  padding: 32px 28px;
  box-shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.8);
}
.form-card .form-title {
  color: var(--jh-white);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(20px, 2.4vw, 24px);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  text-align: center;
}
.form-card .field input,
.form-card input[type="text"],
.form-card input[type="email"],
.form-card input[type="tel"] {
  width: 100%;
  background: var(--jh-black);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--jh-white);
  font-family: var(--f-body);
  font-size: 16px;
  padding: 14px 16px;
  border-radius: 8px;
  margin-bottom: 12px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.form-card input::placeholder { color: rgba(255, 255, 255, 0.42); }
.form-card input:focus {
  outline: none;
  border-color: var(--jh-teal);
  box-shadow: 0 0 0 3px rgba(44, 186, 183, 0.18);
}
.form-card .form-meta {
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
  color: var(--jh-grey-soft);
  letter-spacing: 0.04em;
}
.form-card .form-error {
  margin-top: 12px;
  color: #ff6b6b;
  font-size: 14px;
  text-align: center;
  min-height: 18px;
}

/* ────────────── HERO PILL ──────────────
   Banda superior con "MASTERCLASS GRATUITA · 3 JUNIO". */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(44, 186, 183, 0.12);
  border: 1px solid rgba(44, 186, 183, 0.42);
  color: var(--jh-teal);
  font-family: var(--f-label);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 100px;
}
.hero-pill .dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--jh-teal);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--jh-teal);
  animation: jh-pulse 2.4s ease-out infinite;
}
.hero-pill--alert {
  background: var(--jh-lime-soft);
  border-color: var(--jh-lime);
  color: var(--jh-lime);
  box-shadow: 0 0 24px rgba(212, 255, 1, 0.18);
}
.hero-pill--alert .dot { background: var(--jh-lime); box-shadow: 0 0 12px var(--jh-lime); }
@keyframes jh-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.55; transform: scale(1.18); }
}

/* ────────────── COUNTDOWN ──────────────
   Cubos negros con borde teal + número en lime mono. */
.countdown {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 28px auto 0;
}
.countdown .unit {
  background: var(--jh-black-2);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 10px;
  padding: 14px 18px;
  min-width: 78px;
  text-align: center;
}
.countdown .unit .num {
  display: block;
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 36px);
  color: var(--jh-lime);
  line-height: 1;
  letter-spacing: -0.02em;
}
.countdown .unit .lbl {
  display: block;
  font-family: var(--f-label);
  font-weight: 600;
  font-size: 10.5px;
  color: var(--jh-grey-soft);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ────────────── SECTIONS BG variantes (dark) ──────────────
   Sobre fondo dark, las "secciones alternas" son tonalmente distintas pero no claras. */
.bg-paper { background: var(--jh-black-3); }
section.bg-dark { background: #000000; }
.bg-dark, .bg-image { color: var(--jh-white); }

/* ────────────── CARDS ──────────────
   Cards sobre bg dark: fondo más oscuro + borde teal sutil + hover glow lime. */
.card {
  background: var(--jh-black-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}
.card .num {
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: 12px;
  color: var(--jh-teal);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
.card h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(19px, 2.4vw, 24px);
  color: var(--jh-white);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.card p { color: var(--jh-grey); }
.card-grid .card:hover {
  border-color: rgba(44, 186, 183, 0.45);
  box-shadow: 0 20px 48px -22px rgba(44, 186, 183, 0.35);
  transform: translateY(-4px);
}
/* Quitar isotipo de Akademia en cards JH (no aplica) */
.card-grid .card::before { display: none !important; }

/* ────────────── STATS (proof bar) ──────────────
   Números grandes en lime mono · etiqueta gris. */
.stat-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 40px auto 0;
  max-width: 980px;
  text-align: center;
}
@media (min-width: 720px) { .stat-row { grid-template-columns: repeat(3, 1fr); } }
.stat-row.stat-row--4 { grid-template-columns: 1fr; }
@media (min-width: 720px) { .stat-row.stat-row--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .stat-row.stat-row--4 { grid-template-columns: repeat(4, 1fr); } }
.stat {
  background: var(--jh-black-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 26px 20px;
}
.stat .stat-num {
  display: block;
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 44px);
  color: var(--jh-lime);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat .stat-lbl {
  display: block;
  margin-top: 10px;
  font-family: var(--f-label);
  font-weight: 500;
  font-size: 13.5px;
  color: var(--jh-grey);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

/* ────────────── TESTI ──────────────
   Cita italic + autor en teal */
.testi {
  background: var(--jh-black-2);
  border-left: 3px solid var(--jh-teal);
  border-radius: 0 12px 12px 0;
  padding: 24px 28px;
}
.testi p {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--jh-white);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.55;
}
.testi .author {
  display: block;
  margin-top: 14px;
  font-family: var(--f-label);
  font-weight: 700;
  font-size: 14px;
  color: var(--jh-teal);
  letter-spacing: 0.04em;
}

/* ────────────── SCRIPT ACCENT (manuscrito lima) ──────────────
   Reemplaza el "burdeos italic" de Akademia por un script lime stand-out. */
.script-accent {
  font-family: var(--f-script);
  font-weight: 400;
  color: var(--jh-lime);
  font-style: normal;
  display: inline-block;
  line-height: 1;
  letter-spacing: -0.01em;
}

/* ────────────── PRICE TAG ──────────────
   Para la venta: precio grande en lime mono, anchor tachado en gris. */
.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 16px;
  margin: 18px 0;
}
.price-tag .anchor {
  font-family: var(--f-mono);
  font-size: clamp(18px, 2.4vw, 22px);
  color: var(--jh-grey-soft);
  text-decoration: line-through;
}
.price-tag .now {
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: clamp(38px, 5vw, 58px);
  color: var(--jh-lime);
  letter-spacing: -0.02em;
  line-height: 1;
}
.price-tag .currency { font-size: 0.6em; vertical-align: 0.18em; }

/* ────────────── DIVIDER neon thin ────────────── */
.divider-neon {
  height: 1px;
  width: 64px;
  background: var(--jh-teal);
  margin: 28px auto;
  box-shadow: 0 0 8px var(--jh-teal);
}

/* ────────────── STICKY BAR top (urgencia carrito) ────────────── */
.sticky-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--jh-lime);
  color: var(--jh-black);
  text-align: center;
  padding: 10px 16px;
  font-family: var(--f-label);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.sticky-bar a { color: var(--jh-black); text-decoration: underline; }

/* ────────────── VIDEO FRAMES ────────────── */
.video-frame {
  position: relative;
  width: 100%;
  max-width: 920px;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  background: var(--jh-black-2);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(44, 186, 183, 0.18);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.8);
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  color: var(--jh-grey-soft);
  text-align: center;
  padding: 24px;
}
.video-placeholder .play-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(44, 186, 183, 0.18);
  border: 1.5px solid var(--jh-teal);
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-placeholder .play-icon::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 16px solid var(--jh-teal);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 4px;
}
.video-placeholder .lbl {
  font-family: var(--f-label);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--jh-grey-soft);
}

/* ────────────── EP CARDS (preparacion hub) ────────────── */
.ep-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
@media (min-width: 780px) { .ep-grid { grid-template-columns: repeat(2, 1fr); } }
.ep-card {
  background: var(--jh-black-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.ep-card:hover {
  transform: translateY(-4px);
  border-color: rgba(44, 186, 183, 0.45);
  box-shadow: 0 22px 50px -22px rgba(44, 186, 183, 0.32);
}
.ep-card .ep-video {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}
.ep-card .ep-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.ep-card .ep-body { padding: 22px 22px 26px; }
.ep-card .ep-num {
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: 12px;
  color: var(--jh-teal);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.ep-card h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(18px, 2.2vw, 21px);
  color: var(--jh-white);
  margin-top: 10px;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

/* ────────────── BOX-SHADOW overrides (negro-based, no marron-based) ────────────── */
.gallery-strip figure { box-shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.6); }
.testi-wall figure { box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5); border-color: var(--jh-rule); }
.testi-wall figure:hover { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7); }
.testi-wall figure { background: var(--jh-black-2); }

/* ────────────── Cierre reflexivo: firma en teal ────────────── */
.closing-reflection { color: var(--jh-white); }
.closing-reflection__sign {
  border-top-color: var(--jh-rule);
  color: var(--jh-teal);
}

/* ────────────── ALERTS over dark sections ────────────── */
.alert-caption {
  background: rgba(44, 186, 183, 0.10);
  border-color: var(--jh-teal);
  color: var(--jh-teal);
}
.alert-caption strong { color: var(--jh-lime); }
section.bg-dark .alert-caption {
  background: var(--jh-teal);
  border-color: var(--jh-teal);
  color: var(--jh-black);
}
section.bg-dark .alert-caption strong { color: var(--jh-black); }

/* ────────────── Quitar imgs decorativas de Akademia que apuntan a paths inexistentes ────────────── */
.section-watermark { display: none !important; }
section[style*="watermark"] { /* if inlined, no rompemos pero el img 404 no afecta nada */ }

/* ═══════════════════════════════════════════════════════════════════════════
   JOHN HERTZ · DECORATIVE LAYERS V2 (imagen + svg + glow effects)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ────────────── HERO CINEMATIC (con AI bg + overlays) ──────────────
   Stack: imagen AI de fondo → overlay vignette → grain noise → contenido. */
.hero-cinematic {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.78) 55%, rgba(10,10,10,0.96) 100%),
    url('/assets/ai-hero-bg.webp') center/cover no-repeat;
  background-attachment: scroll;
  padding: clamp(80px, 12vw, 140px) 0 clamp(60px, 9vw, 100px);
  overflow: hidden;
  min-height: 100vh;
}
.hero-cinematic::before {
  /* radial vignette */
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.6) 100%);
  z-index: 0;
  pointer-events: none;
}
.hero-cinematic::after {
  /* grain noise overlay */
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' /%3E%3CfeColorMatrix values='0 0 0 0 0.2 0 0 0 0 0.95 0 0 0 0 0.95 0 0 0 0.15 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.hero-cinematic > * { position: relative; z-index: 1; }

/* ────────────── HEADER LOGO BAR (top de cada página) ────────────── */
.site-header {
  position: relative;
  z-index: 10;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, transparent 100%);
}
.site-header .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.site-header .logo img {
  height: 32px;
  width: auto;
}
.site-header .logo-text {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--jh-white);
}
.site-header .logo-text small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.28em;
  font-weight: 500;
  color: var(--jh-teal);
  margin-top: 2px;
}
.site-header .head-cta {
  font-family: var(--f-label);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--jh-grey);
}
.site-header .head-cta strong { color: var(--jh-lime); margin-left: 6px; }
@media (max-width: 600px) {
  .site-header .head-cta { display: none; }
}

/* ────────────── EQUALIZER ANIMATION (small bars que pulsan) ──────────────
   Decorativo, sirve como "audio playing" indicator. */
.eq-bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 4px;
  height: 24px;
  margin: 0 8px;
  vertical-align: middle;
}
.eq-bars span {
  display: block;
  width: 3px;
  background: var(--jh-lime);
  border-radius: 2px;
  animation: eq-bar 1.2s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(212, 255, 1, 0.5);
}
.eq-bars span:nth-child(1) { height: 30%; animation-delay: 0s; }
.eq-bars span:nth-child(2) { height: 80%; animation-delay: 0.15s; }
.eq-bars span:nth-child(3) { height: 50%; animation-delay: 0.3s; }
.eq-bars span:nth-child(4) { height: 90%; animation-delay: 0.45s; }
.eq-bars span:nth-child(5) { height: 60%; animation-delay: 0.6s; }
@keyframes eq-bar {
  0%, 100% { transform: scaleY(0.4); transform-origin: bottom; }
  50%      { transform: scaleY(1.2); transform-origin: bottom; }
}

/* ────────────── WAVEFORM SVG DIVIDER ────────────── */
.waveform-divider {
  display: block;
  width: 100%;
  max-width: 1080px;
  height: 60px;
  margin: 32px auto;
  opacity: 0.6;
}

/* ────────────── NEON GRID (DAW-style background) ────────────── */
.neon-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(44, 186, 183, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44, 186, 183, 0.07) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

/* ────────────── GLOWING ORBS (background lights) ────────────── */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.5;
  z-index: 0;
}
.glow-orb--teal {
  background: var(--jh-teal);
  width: 380px;
  height: 380px;
  top: -120px;
  left: -120px;
}
.glow-orb--lime {
  background: var(--jh-lime);
  width: 280px;
  height: 280px;
  bottom: -80px;
  right: -80px;
  opacity: 0.18;
}
.glow-orb--purple {
  background: var(--jh-purple);
  width: 440px;
  height: 440px;
  top: 30%;
  right: -180px;
  opacity: 0.4;
}

/* ────────────── PORTRAIT CARD (John en "Quién está detrás") ────────────── */
.portrait-card {
  position: relative;
  display: inline-block;
  background: var(--jh-black-2);
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  transform: rotate(-1.5deg);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(44, 186, 183, 0.15);
  max-width: 320px;
}
.portrait-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
  filter: contrast(1.05) saturate(0.95);
}
.portrait-card .tape {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 80px; height: 22px;
  background: rgba(212, 255, 1, 0.7);
  border: 1px dashed rgba(0,0,0,0.3);
}
.portrait-card .caption {
  font-family: var(--f-label);
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 12px;
  color: var(--jh-grey-soft);
}

/* ────────────── FLOATING POLAROIDS (decorativos hero) ────────────── */
.polaroid {
  position: absolute;
  background: var(--jh-black-2);
  padding: 8px 8px 32px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 36px -16px rgba(0, 0, 0, 0.8);
  z-index: 1;
  width: 140px;
}
.polaroid img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}
.polaroid .label {
  position: absolute;
  bottom: 8px; left: 0; right: 0;
  text-align: center;
  font-family: var(--f-script);
  font-size: 14px;
  color: var(--jh-teal);
}
@media (max-width: 880px) {
  .polaroid { display: none; }
}

/* ────────────── BEATPORT BADGES (chips de credibilidad) ────────────── */
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 32px 0;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--jh-black-3);
  border: 1px solid rgba(44, 186, 183, 0.3);
  color: var(--jh-grey);
  padding: 8px 14px;
  border-radius: 6px;
  font-family: var(--f-mono);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.badge svg, .badge .dot { color: var(--jh-lime); }
.badge strong { color: var(--jh-white); font-weight: 700; }

/* ────────────── SECTION CINEMATIC (con AI bg) ────────────── */
.bg-cinematic {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.9) 0%, rgba(0,0,0,0.92) 100%),
    url('/assets/ai-section-bg.webp') center/cover no-repeat;
  overflow: hidden;
}
.bg-cinematic::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.5) 80%);
  z-index: 0;
}
.bg-cinematic > * { position: relative; z-index: 1; }

/* ────────────── PILL "EN VIVO" with red dot pulse ────────────── */
.pill-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-label);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--jh-lime);
  padding: 8px 14px;
  background: var(--jh-lime-soft);
  border: 1px solid var(--jh-lime);
  border-radius: 6px;
}
.pill-live::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--jh-lime);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--jh-lime);
  animation: jh-pulse 1.8s ease-out infinite;
}
