/* ═══════════════════════════════════════════════════════════════
   THERMAL 2026 — Sistema visual "The Reason"
   Traducción web de las piezas promocionales: negro carbón con
   grano, energía térmica (rojo/naranja/blanco caliente) y línea
   cian eléctrica. Se carga DESPUÉS de components.css.

   Capas:
     1. Grano global          (body::after)
     2. Heat spots            (.heat-spot, .t-section)
     3. Texto térmico         (.t-glow, .t-split, .t-grad)
     4. Reglas y divisores    (.t-rule, .divider override)
     5. Re-skin componentes   (btn, nav, page-hero, cta, footer, forms)
     6. Motion                (t-breathe; guardas reduced-motion)
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. GRANO GLOBAL ─────────────────────────────────────────────
   Polvo/espeklado fino de las piezas. Fijo, sin animación, nunca
   intercepta eventos. Dos tramas superpuestas a opacidad baja.   */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(244,242,239,.30) .5px, transparent .6px),
    radial-gradient(rgba(244,242,239,.16) .5px, transparent .6px);
  background-size: 137px 139px, 61px 67px;
  background-position: 0 0, 31px 47px;
  opacity: .14;
  mix-blend-mode: soft-light;
}

.nav,
.nav__mobile,
.skip-link,
[role="dialog"] { z-index: var(--z-modal); }

/* ── 2. HEAT SPOTS ───────────────────────────────────────────────
   Focos térmicos asimétricos. Parametrizables por sección:
   --hs-x/--hs-y posición, --hs-w tamaño, --hs-a intensidad.      */
/* Sección con calor de serie (para páginas internas sin markup extra) */

/* ── 3. TEXTO TÉRMICO ────────────────────────────────────────── */

/* Wordmark de póster: núcleo nítido, aberración corta, bloom ambiental.
   Solo para display monumental (hero, cierres). */

/* Versión contenida para títulos de sección/página */

/* Aberración cromática roja/cian — núcleo nítido, offsets mínimos */

/* Gradiente de calor para datos clave (patrón exacto de las piezas:
   «LA RAZÓN DEL LLAMADO», «7, 8 Y 9 NOVIEMBRE»)                   */

/* Etiqueta espaciada de las piezas («TEMA», «CAMPAMENTO DE LIDERES») */
.t-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--text-muted-aa);
}

/* ── 4. REGLAS / DIVISORES ───────────────────────────────────── */
.divider { background: rgba(248,248,245,.09); opacity: 1; }

/* ── 5. RE-SKIN DE COMPONENTES ───────────────────────────────── */

/* Selección de texto */
::selection { background: rgba(255,101,0,.85); color: #050505; }

/* Foco visible térmico — el cian es el color de foco del sistema */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--thermal-cyan);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Campos de texto: el foco es térmico naranja (borde + anillo suave),
   sin duplicar con el outline cian */
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
}

/* Botones flat: temperatura y barrido 2D, nunca volumen. */
.btn,
.nav__cta {
  border-radius: 2px;
  box-shadow: none;
  transform: none;
}

.btn--primary {
  border: 1px solid var(--thermal-hot);
  background-color: var(--thermal-orange);
  background-image: linear-gradient(100deg, transparent 0 43%, rgba(248,248,245,.22) 49%, transparent 55%);
  background-size: 240% 100%;
  background-position: 120% 0;
  color: var(--thermal-black);
  box-shadow: none;
  transition: background-position .5s var(--ease), background-color var(--dur-sm) ease, color var(--dur-sm) ease, border-color var(--dur-sm) ease;
}

.btn--primary:hover {
  opacity: 1;
  background-color: var(--thermal-red);
  background-position: -35% 0;
  border-color: var(--thermal-white);
  box-shadow: none;
  transform: none;
}

.btn--secondary,
.btn--ghost {
  background: rgba(3,3,3,.38);
  border: 1px solid rgba(248,248,245,.34);
  color: var(--thermal-white);
  box-shadow: none;
}

.nav__cta:hover {
  background: var(--thermal-red);
  border-color: var(--thermal-white);
  box-shadow: none;
  opacity: 1;
  transform: none;
}

.btn--secondary:hover {
  border-color: var(--thermal-cyan);
  color: var(--thermal-white);
  box-shadow: none;
  transform: none;
}

.btn:active { transform: translateY(1px); }

/* Nav: subrayado térmico en hover/activo */
.nav__link { transition: color var(--dur-sm) ease, text-shadow var(--dur-sm) ease; }
.nav__link:hover {
  color: var(--thermal-white);
  text-shadow: 0 0 14px rgba(255,101,0,.55);
}

.nav__cta {
  background: var(--thermal-orange);
  border: 1px solid var(--thermal-hot);
  color: var(--thermal-black);
  box-shadow: none;
}

.nav__hamburger {
  width: 44px;
  min-width: 44px;
  min-height: 44px;
  margin: 0;
  padding: 11px 10px;
  justify-content: center;
}

@media (min-width: 961px) {
  .nav__inner > a:first-child { margin-right: 28px; flex-shrink: 0; }
  .nav__links { flex: 1; justify-content: space-evenly; gap: 14px; }
  .nav__links li:not(:last-child)::after { display: none; }
  .nav__cta { margin-left: 24px; }
}

/* Cards (ejes): número con split cromático, borde que arde en hover */
.card__num {
  text-shadow:
    -1.5px 0 rgba(255,36,0,.6),
    1.5px 0 rgba(0,217,255,.5);
}

.card:hover {
  border-color: rgba(255,101,0,.45);
  box-shadow: 0 0 34px rgba(255,36,0,.08);
}

/* Stats: cifras con calor */
.stat__num {
  text-shadow: 0 0 26px rgba(255,101,0,.25);
}

/* PAGE HERO — páginas internas heredan la identidad sin tocar markup */
.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse 640px 420px at 82% -10%,
      rgba(255,177,90,.11) 0%, rgba(255,101,0,.08) 30%, rgba(255,36,0,.05) 55%, transparent 75%),
    radial-gradient(ellipse 420px 320px at 8% 108%,
      rgba(0,217,255,.05) 0%, rgba(0,119,255,.035) 40%, transparent 70%),
    linear-gradient(135deg, #090909 0%, var(--bg) 62%);
}

.page-hero::after {
  content: "";
  position: absolute;
  width: min(42vw, 520px);
  aspect-ratio: 1;
  right: -12%;
  bottom: -58%;
  border: 1px solid rgba(0,217,255,.16);
  border-radius: 50%;
  box-shadow: -18px -8px 0 rgba(255,31,0,.08), 0 0 80px rgba(255,90,0,.08);
  pointer-events: none;
}

.page-hero h1 {
  text-shadow:
    0 0 26px rgba(255,101,0,.22),
    -1.5px 0 rgba(255,36,0,.30),
    1.5px 0 rgba(0,217,255,.24);
}

/* CTA final: foco térmico mayor */
.cta-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse 720px 480px at 50% 118%,
      rgba(255,177,90,.14) 0%, rgba(255,101,0,.10) 30%, rgba(255,36,0,.06) 55%, transparent 78%),
    radial-gradient(ellipse 300px 240px at 88% 6%,
      rgba(0,217,255,.05) 0%, transparent 70%),
    var(--bg);
}

.cta-section .section-title,
.cta-section h2 {
  text-shadow:
    0 0 28px rgba(255,101,0,.24),
    -1.5px 0 rgba(255,36,0,.26),
    1.5px 0 rgba(0,217,255,.20);
}

/* Footer: cierre con regla térmica y marca con brasa */
.footer {
  position: relative;
  border-top: 0;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--grad-rule);
}

.footer__brand img,
.footer img[src*="logo"] {
  filter: drop-shadow(0 0 18px rgba(255,101,0,.35));
}

/* Formularios: foco térmico coherente (inscripción, tienda, checkout) */
input:focus,
select:focus,
textarea:focus {
  border-color: rgba(255,101,0,.55) !important;
  box-shadow: 0 0 0 3px rgba(255,101,0,.14);
}

.bank-field {
  display: grid;
  gap: 7px;
  color: var(--dim-strong);
  font-family: var(--font-mono);
  font-size: var(--text-2xs);
  font-weight: 700;
  letter-spacing: .09em;
  line-height: 1.4;
  text-transform: uppercase;
}

/* Scrollbar (WebKit) — detalle de carcasa */
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: #060606; }
::-webkit-scrollbar-thumb {
  background: #1E1E1E;
  border-radius: 6px;
  border: 3px solid #060606;
}
::-webkit-scrollbar-thumb:hover { background: rgba(255,101,0,.5); }

/* Info grid (página Información): a 2 columnas antes de que el
   min-content de los valores desborde el contenedor (769–1024px) */
@media (max-width: 1024px) {
  .info-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Overlay móvil sobre negro térmico profundo */
.nav__mobile { background: rgba(5,5,5,.97); }

/* Nav: corrige solapamiento de links con el CTA entre 821–1180px
   (7 links + CTA min-width 184px no caben) */
@media (max-width: 1180px) {
  .nav__cta { min-width: 0; padding: 10px 16px; }
  .nav__links { gap: clamp(14px, 2vw, 26px); }
}

@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__cta.desktop-only { display: none; }
  .nav__hamburger { display: flex; }
}

/* ── MOBILE: bajar intensidad de efectos ─────────────────────── */
@media (max-width: 640px) {
  body::after { opacity: .09; }
}

/* ── 7. HOME: DIRECCIÓN EDITORIAL THERMAL ─────────────────────── */
.hero__theme-title {
  color: var(--thermal-white);
  -webkit-text-stroke: 0;
  text-shadow:
    -3px 0 rgba(255,31,0,.78),
    3px 0 rgba(0,217,255,.62),
    0 0 24px rgba(248,248,245,.18),
    0 0 54px rgba(255,90,0,.3),
    0 0 120px rgba(255,31,0,.17);
}

.hero__theme-title span {
  background: var(--grad-heat);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(-1px 0 rgba(255,31,0,.45)) drop-shadow(1px 0 rgba(0,217,255,.3));
}

.hero__theme-eyebrow {
  color: var(--thermal-white);
  letter-spacing: .31em;
}

.hero__theme-eyebrow strong { color: var(--thermal-white); }

.hero__theme-sub { color: var(--text-muted-aa); }

.hero__bottom-band {
  border-top-color: rgba(255,90,0,.28);
  background: linear-gradient(90deg, rgba(5,5,5,.96), rgba(12,6,4,.88) 48%, rgba(4,10,12,.92));
}

.hero__band-left h2 {
  color: var(--thermal-white);
  text-shadow: -1px 0 rgba(255,31,0,.7), 1px 0 rgba(0,217,255,.5);
}

.hero__band-left p,
.hero__micro { color: var(--text-muted-aa); }

.reason {
  isolation: isolate;
  background:
    radial-gradient(ellipse 40% 54% at 18% 42%, rgba(255,31,0,.09), transparent 72%),
    radial-gradient(ellipse 30% 34% at 82% 68%, rgba(0,217,255,.045), transparent 72%),
    var(--bg);
}

.reason__verse { color: var(--text-muted-aa); }
.reason__verse cite { color: var(--thermal-hot); }
.reason__statement { text-wrap: balance; }
.reason__statement .dim { color: var(--text-muted-aa); }
.reason__copy { color: var(--text-muted-aa); }

.event-story {
  position: relative;
  min-height: 82vh;
  overflow: hidden;
  isolation: isolate;
  border-block: 1px solid rgba(245,242,238,.07);
  background:
    radial-gradient(ellipse 56% 72% at 18% 44%, rgba(255,31,0,.16), rgba(255,90,0,.06) 40%, transparent 72%),
    radial-gradient(ellipse 42% 64% at 86% 56%, rgba(0,217,255,.09), rgba(0,59,255,.035) 44%, transparent 72%),
    linear-gradient(118deg, #070201 0 50%, #02080a 50% 100%);
}

.event-story::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .2;
  background-image:
    radial-gradient(rgba(248,248,245,.34) .55px, transparent .7px),
    linear-gradient(105deg, transparent 49.85%, rgba(248,248,245,.16) 50%, transparent 50.15%);
  background-size: 43px 47px, 100% 100%;
}

.event-story__grid {
  min-height: inherit;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: clamp(64px, 10vw, 160px);
  padding-block: clamp(72px, 10vw, 150px);
}

.event-story__days h2 {
  display: flex;
  align-items: baseline;
  gap: clamp(2px, 1vw, 14px);
  margin: clamp(20px, 3vw, 38px) 0 0;
  font-size: clamp(116px, 20vw, 300px);
  font-weight: 700;
  line-height: .72;
  letter-spacing: -.1em;
  color: var(--thermal-white);
  text-shadow: -4px 0 rgba(255,31,0,.72), 4px 0 rgba(0,217,255,.45), 0 0 54px rgba(255,90,0,.2);
}

.event-story__days h2 span:nth-child(2) { color: var(--thermal-hot); transform: translateY(.1em); }
.event-story__days h2 span:nth-child(3) { color: var(--thermal-white); }

.event-story__month {
  margin-top: clamp(28px, 5vw, 64px);
  font-size: clamp(26px, 5vw, 72px);
  font-weight: 700;
  line-height: .95;
  letter-spacing: -.045em;
  text-transform: uppercase;
  background: var(--grad-heat);
  -webkit-background-clip: text;
  background-clip: text;
  color: var(--thermal-hot);
  -webkit-text-fill-color: transparent;
}

.event-story__month strong {
  display: block;
  margin-top: .5em;
  font-family: var(--font-mono);
  font-size: .2em;
  letter-spacing: .4em;
  color: var(--thermal-white);
  -webkit-text-fill-color: var(--thermal-white);
}

.event-story__place { position: relative; max-width: 540px; }

.chromatic-pin {
  width: clamp(64px, 8vw, 112px);
  margin-bottom: clamp(28px, 4vw, 52px);
  color: var(--thermal-white);
  filter:
    drop-shadow(-3px 0 0 rgba(255,31,0,.92))
    drop-shadow(3px 0 0 rgba(0,217,255,.78))
    drop-shadow(0 0 24px rgba(255,90,0,.45));
}

.chromatic-pin svg { display: block; width: 100%; fill: currentColor; }

.event-story__place h3 {
  margin: 20px 0 24px;
  font-size: clamp(64px, 9vw, 136px);
  font-weight: 700;
  line-height: .72;
  letter-spacing: -.07em;
  text-transform: uppercase;
  color: var(--thermal-white);
}

.event-story__place h3 span {
  background: var(--grad-heat);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.event-story__place > p:not(.t-label) {
  color: var(--thermal-white);
  font-family: var(--font-mono);
  font-size: clamp(12px, 1.3vw, 16px);
  line-height: 1.6;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.event-story__place a {
  display: inline-flex;
  gap: 12px;
  margin-top: 34px;
  min-height: 44px;
  align-items: center;
  color: var(--thermal-cyan);
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,217,255,.42);
}

.event-story__place a:hover { color: var(--thermal-white); border-color: var(--thermal-orange); }

/* Las agrupaciones siguen existiendo, pero dejan de parecer tarjetas SaaS. */
.grid-2 > .card {
  background: transparent;
  border-inline: 0;
  border-bottom: 0;
  border-top-color: rgba(245,242,238,.14);
  border-radius: 0;
  padding-inline: 0;
}

.grid-2 > .card:hover {
  transform: translateY(-3px);
  background: linear-gradient(180deg, rgba(255,90,0,.035), transparent 64%);
  border-top-color: rgba(255,90,0,.55);
}

.steps { border-top-color: rgba(245,242,238,.12); }
.step { background: linear-gradient(180deg, rgba(255,255,255,.018), transparent 60%); }
.step:nth-child(even) { background: linear-gradient(180deg, rgba(0,217,255,.018), transparent 60%); }

.more-item,
.faq-item { border-color: rgba(245,242,238,.11); }

.cta-section::after {
  content: "THE REASON";
  position: absolute;
  left: 50%;
  bottom: -.17em;
  transform: translateX(-50%);
  z-index: -1;
  font-size: clamp(90px, 18vw, 300px);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,90,0,.09);
}

.footer {
  background:
    radial-gradient(ellipse 42% 80% at 12% 120%, rgba(255,31,0,.1), transparent 72%),
    radial-gradient(ellipse 30% 60% at 92% 0%, rgba(0,217,255,.04), transparent 74%),
    #040404;
}

@media (prefers-reduced-motion: no-preference) {
  .chromatic-pin { animation: thermal-float 6s ease-in-out infinite; }

  @keyframes thermal-float {
    0%, 100% { transform: translate3d(0,0,0); }
    50% { transform: translate3d(0,-7px,0); }
  }
}

@media (max-width: 1024px) {
  .event-story { min-height: auto; }
  .event-story__grid { gap: 72px; }
  .event-story__days h2 { font-size: clamp(104px, 21vw, 220px); }
}

@media (min-width: 721px) and (max-width: 1024px) {
  .hero__bottom-band {
    animation: none;
    opacity: 1;
    transform: none;
    filter: none;
    grid-template-columns: 1fr minmax(240px, .72fr);
    gap: 28px;
    margin: 0 24px 24px;
    padding: 22px 26px;
    text-align: left;
  }
  .hero__band-left { align-items: flex-start; text-align: left; }
  .hero__band-center { width: 100%; }
  .hero__band-center .btn { width: 100%; }
  .hero__band-right,
  .hero__band-divider { display: none; }
}

@media (max-width: 720px) {
  .hero {
    min-height: 100svh;
    padding-top: calc(64px + var(--sat));
  }

  .hero__video-bg {
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center 38%;
    transform: scale(1.02);
    filter: brightness(.62) contrast(1.2) saturate(1.05);
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero__center {
    min-height: calc(100svh - 206px - var(--sat));
    align-items: center;
    padding: 24px 18px 186px;
  }

  .hero__theme { gap: 14px; }
  .hero__theme,
  .hero__theme-eyebrow,
  .hero__theme-title,
  .hero__theme-sub,
  .hero__bottom-band {
    animation: none;
    opacity: 1;
    transform: none;
    filter: none;
  }
  .hero__theme-title {
    font-size: clamp(43px, 14.4vw, 68px);
    line-height: .82;
    letter-spacing: -.055em;
    text-shadow:
      -2px 0 rgba(255,31,0,.8),
      2px 0 rgba(0,217,255,.62),
      0 0 36px rgba(255,90,0,.32);
  }
  .hero__theme-title span {
    margin-top: 14px;
    font-size: clamp(15px, 4.8vw, 24px);
    letter-spacing: .08em;
  }
  .hero__theme-eyebrow { max-width: 28ch; font-size: 8px; line-height: 1.65; }
  .hero__theme-sub { max-width: 31ch; font-size: 13px; line-height: 1.55; }

  .hero__bottom-band {
    position: absolute;
    inset: auto 0 0;
    z-index: 4;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px max(16px, var(--sal)) calc(16px + var(--sab)) max(16px, var(--sar));
    text-align: center;
    backdrop-filter: blur(12px);
  }
  .hero__band-left { display: block; }
  .hero__band-left h2 { font-size: 15px; }
  .hero__band-left p { margin-top: 5px; font-size: 10px; }
  .hero__band-center { width: 100%; }
  .hero__band-center .btn--primary { width: 100%; min-height: 48px; }
  .hero__btn-ghost,
  .hero__band-right,
  .hero__band-divider { display: none; }

  .event-story__grid {
    grid-template-columns: 1fr;
    gap: 88px;
    padding-block: 86px;
  }
  .event-story__days h2 { justify-content: center; font-size: clamp(104px, 33vw, 150px); }
  .event-story__days .t-label,
  .event-story__month { text-align: center; }
  .event-story__place {
    padding-top: 72px;
    border-top: 1px solid rgba(245,242,238,.14);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .event-story__place h3 { font-size: clamp(72px, 24vw, 108px); text-align: center; }
  .event-story__place .chromatic-pin { margin-inline: auto; margin-bottom: var(--sp-4); }
  .event-story { background: radial-gradient(circle at 50% 22%, rgba(255,31,0,.14), transparent 34%), radial-gradient(circle at 80% 78%, rgba(0,217,255,.07), transparent 34%), #050505; }

}

@media (max-width: 360px) {
  .hero__theme-title { font-size: 41px; }
  .hero__theme-sub { font-size: 12px; }
  .hero__bottom-band { padding-top: 12px; gap: 9px; }
  .event-story__days h2 { font-size: 98px; }
}

@media (prefers-reduced-motion: reduce) {
  .chromatic-pin { animation: none; }
  .hero__video-bg { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   8. LIVING CALLING — campo térmico vivo
   Dirección dominante: atmósfera orgánica. Signal se limita al título.
   ═══════════════════════════════════════════════════════════════ */
.hero {
  height: 100svh;
  min-height: 100svh;
  background: var(--thermal-black);
}

.hero__video-bg {
  opacity: .78;
  object-position: center 48%;
  filter: brightness(.58) contrast(1.28) saturate(1.18);
  transform: scale(1.035);
  -webkit-mask-image: radial-gradient(ellipse 72% 62% at 61% 49%, #000 18%, rgba(0,0,0,.9) 52%, rgba(0,0,0,.24) 78%, transparent 96%);
  mask-image: radial-gradient(ellipse 72% 62% at 61% 49%, #000 18%, rgba(0,0,0,.9) 52%, rgba(0,0,0,.24) 78%, transparent 96%);
}

.hero::before {
  background:
    radial-gradient(ellipse 46% 54% at 68% 34%, rgba(255,33,0,.2), transparent 70%),
    radial-gradient(ellipse 34% 42% at 30% 66%, rgba(255,90,0,.12), transparent 72%),
    radial-gradient(ellipse 32% 32% at 92% 82%, rgba(0,217,255,.065), transparent 76%),
    linear-gradient(90deg, rgba(3,3,3,.92) 0%, rgba(3,3,3,.42) 38%, rgba(3,3,3,.28) 64%, rgba(3,3,3,.82) 100%),
    linear-gradient(180deg, rgba(3,3,3,.72), transparent 34%, rgba(3,3,3,.86) 90%);
  background-size: 100% 100%;
}

.hero::after {
  background:
    repeating-linear-gradient(to bottom, rgba(248,248,245,.045) 0 1px, transparent 1px 4px),
    radial-gradient(rgba(248,248,245,.16) .45px, transparent .7px);
  background-size: 100% 100%, 37px 41px;
  opacity: .2;
  mix-blend-mode: soft-light;
}

.hero__glow {
  opacity: var(--glow-o, 0);
  background:
    radial-gradient(circle 220px at var(--glow-x, 65%) var(--glow-y, 42%), rgba(255,157,50,.16), rgba(255,33,0,.07) 42%, transparent 72%),
    radial-gradient(circle 120px at calc(var(--glow-x, 65%) + 42px) calc(var(--glow-y, 42%) + 12px), rgba(0,217,255,.055), transparent 70%);
  mix-blend-mode: screen;
}

.hero__center {
  justify-content: flex-start;
  align-items: center;
  padding: clamp(118px, 12vh, 168px) max(var(--pad-page), 7vw) clamp(56px, 8vh, 96px);
}

.hero__theme {
  align-items: flex-start;
  text-align: left;
  width: min(1080px, 88vw);
  max-width: none;
  gap: clamp(14px, 2.3vh, 24px);
}

.hero__theme::before { display: none; }

.hero__theme-eyebrow {
  color: var(--thermal-white);
  letter-spacing: .34em;
  text-shadow: none;
}

.hero__theme-title {
  display: grid;
  justify-items: start;
  margin: 0;
  color: var(--thermal-white);
  font-size: clamp(84px, 12.5vw, 188px);
  font-weight: 700;
  line-height: .7;
  letter-spacing: -.075em;
  text-align: left;
  text-shadow: none;
  -webkit-text-stroke: 0;
}

.hero__theme-title > span {
  background: none;
  color: inherit;
  filter: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: currentColor;
}

.hero__theme-sub {
  max-width: 54ch;
  margin: 0;
  color: var(--thermal-muted);
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.65;
  text-align: left;
}

.hero__theme-sub strong { color: var(--thermal-white); }

.hero__bottom-band {
  position: relative;
  z-index: 4;
  grid-template-columns: 1fr auto 1.2fr auto 1fr;
  margin: 0;
  padding: 16px max(var(--pad-page), 5vw) calc(16px + var(--sab));
  border: 0;
  border-top: 1px solid rgba(248,248,245,.14);
  border-radius: 0;
  background: rgba(3,3,3,.76);
  box-shadow: none;
  backdrop-filter: blur(12px);
  animation: none;
  opacity: 1;
  transform: none;
  filter: none;
}

.hero__band-divider {
  background: rgba(248,248,245,.15);
}

.hero__band-left h2 {
  color: var(--thermal-white);
  text-shadow: none;
}

.hero__band-center {
  display: grid;
  place-content: center;
  gap: 6px;
  min-width: 180px;
  text-align: center;
}

/* Propósito: calma editorial, sin línea atravesando la lectura. */
.reason {
  background:
    radial-gradient(ellipse 52% 60% at -6% 44%, rgba(255,33,0,.12), transparent 72%),
    radial-gradient(ellipse 38% 42% at 104% 66%, rgba(0,217,255,.04), transparent 76%),
    var(--thermal-black);
}

.reason::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: min(52vw, 720px);
  aspect-ratio: 1;
  left: -28%;
  top: 12%;
  border-radius: 42% 58% 64% 36% / 52% 38% 62% 48%;
  background: radial-gradient(ellipse at center, rgba(255,90,0,.08), rgba(255,33,0,.035) 42%, transparent 72%);
  opacity: .4;
  transform: translate3d(-5%, 4%, 0) rotate(-8deg);
  transition: opacity 1.1s ease, transform 1.4s var(--ease);
}

.reason.is-active::before { opacity: 1; transform: translate3d(0, 0, 0) rotate(2deg); }

.reason__bg-word {
  left: auto;
  right: -8vw;
  top: 23%;
  width: auto;
  font-size: clamp(160px, 28vw, 430px);
  color: rgba(248,248,245,.025);
  -webkit-text-stroke: 1px rgba(255,90,0,.08);
  transform: rotate(-7deg);
  text-shadow: none;
}

.reason__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(420px, 1.25fr);
  column-gap: clamp(56px, 9vw, 140px);
  align-items: start;
  max-width: 1160px;
  text-align: left;
}

.reason .eyebrow { grid-column: 1; justify-content: flex-start !important; }
.reason__verse { grid-column: 1; max-width: 40ch; margin: 44px 0 0; text-align: left; color: var(--thermal-muted); }
.reason__statement { grid-column: 2; grid-row: 1 / span 2; margin: 0; color: var(--thermal-white); text-align: left; }
.reason__statement .dim { color: var(--thermal-muted); }
.reason__copy { grid-column: 2; margin: 38px 0 0; text-align: left; color: var(--thermal-muted); }
.reason__link { grid-column: 2; justify-self: start; }

/* Activación: masas térmicas, no una línea central. */
.event-story {
  background:
    radial-gradient(ellipse 58% 82% at 18% 48%, rgba(255,33,0,.19), rgba(255,90,0,.065) 42%, transparent 72%),
    radial-gradient(ellipse 44% 68% at 88% 54%, rgba(0,217,255,.075), rgba(0,61,255,.025) 46%, transparent 74%),
    radial-gradient(ellipse 18% 28% at 56% 38%, rgba(255,157,50,.095), transparent 75%),
    var(--thermal-black);
  border-block-color: rgba(248,248,245,.08);
}

.event-story::before {
  background-image:
    radial-gradient(rgba(248,248,245,.25) .45px, transparent .7px),
    radial-gradient(rgba(255,90,0,.28) .6px, transparent 1px);
  background-size: 41px 47px, 83px 89px;
  background-position: 0 0, 31px 38px;
  opacity: .18;
}

.event-story::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(48vw, 660px);
  aspect-ratio: 1.25;
  right: -18%;
  top: 8%;
  border-radius: 62% 38% 44% 56% / 48% 58% 42% 52%;
  background: radial-gradient(ellipse at center, rgba(0,217,255,.08), rgba(255,33,0,.045) 46%, transparent 73%);
  opacity: .35;
  transform: translate3d(12%, 8%, 0) rotate(12deg);
  transition: opacity 1.2s ease, transform 1.5s var(--ease);
}

.event-story.is-active::after { opacity: .9; transform: translate3d(0,0,0) rotate(-4deg); }
.event-story__days h2 {
  color: var(--thermal-white);
  text-shadow: none;
}

.event-story__days h2 span:nth-child(2) { color: var(--thermal-orange); }
.event-story__days h2 span:nth-child(3) { color: var(--thermal-white); }

.event-story__month {
  background: none;
  color: var(--thermal-white);
  -webkit-text-fill-color: var(--thermal-white);
}

.event-story__month::first-letter { color: var(--thermal-orange); }

.chromatic-pin {
  color: var(--thermal-white);
  filter: drop-shadow(-2px 0 0 rgba(255,33,0,.9)) drop-shadow(2px 0 0 rgba(0,217,255,.7));
}

.event-story__place h3 { color: var(--thermal-white); }
.event-story__place h3 span {
  background: none;
  color: var(--thermal-orange);
  -webkit-text-fill-color: var(--thermal-orange);
}

/* Escenas posteriores: el calor cambia de función, no repite el hero. */
.thermal-scene { position: relative; overflow: hidden; isolation: isolate; }
.thermal-scene--activation.section::before,
.thermal-scene--community::before,
.thermal-scene--action::before {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  opacity: .25;
  transform: scale(.9) translate3d(0, 6%, 0);
  transition: opacity 1s ease, transform 1.3s var(--ease);
}

.thermal-scene--activation.section::before {
  width: min(62vw, 900px);
  aspect-ratio: 1.5;
  right: -20%;
  top: 4%;
  background: radial-gradient(ellipse, rgba(255,90,0,.09), rgba(255,33,0,.035) 44%, transparent 72%);
}

.thermal-scene--community::before {
  width: min(54vw, 760px);
  aspect-ratio: 1.2;
  left: -16%;
  top: 16%;
  background: radial-gradient(ellipse, rgba(255,157,50,.08), rgba(0,217,255,.035) 52%, transparent 76%);
}

.thermal-scene--action::before {
  inset: auto 10% -45%;
  aspect-ratio: 2;
  background: radial-gradient(ellipse, rgba(255,157,50,.22), rgba(255,33,0,.12) 36%, transparent 72%);
}

.thermal-scene.is-active::before { opacity: 1; transform: scale(1) translate3d(0,0,0); }

.grid-2 > .card,
.step,
.more-item,
.faq-item {
  box-shadow: none;
}

.grid-2 > .card:hover {
  background: radial-gradient(ellipse at 18% 0%, rgba(255,90,0,.08), transparent 66%);
  box-shadow: none;
}

.circ-testimonials {
  position: relative;
  isolation: isolate;
}

.circ-testimonials::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 46%;
  aspect-ratio: 1;
  left: 2%;
  top: 4%;
  border-radius: 48% 52% 62% 38%;
  background: radial-gradient(ellipse, rgba(255,90,0,.12), rgba(255,33,0,.04) 48%, transparent 72%);
}

.cta-section {
  background:
    radial-gradient(ellipse 58% 88% at 50% 118%, rgba(255,157,50,.2), rgba(255,33,0,.11) 42%, transparent 76%),
    radial-gradient(ellipse 26% 42% at 88% 8%, rgba(0,217,255,.045), transparent 74%),
    var(--thermal-black);
}

.cta-section::after {
  color: rgba(248,248,245,.018);
  -webkit-text-stroke-color: rgba(255,90,0,.07);
}

.cta-section__title { color: var(--thermal-white); text-shadow: none; }

.footer {
  background:
    radial-gradient(ellipse 52% 100% at 6% 130%, rgba(255,33,0,.12), transparent 72%),
    radial-gradient(ellipse 34% 72% at 96% -8%, rgba(0,217,255,.045), transparent 76%),
    #020202;
}

.footer::before { background: rgba(248,248,245,.12); }
.footer__brand img,
.footer img[src*="logo"] { filter: none; }

@media (max-width: 1024px) {
  .hero__theme { width: min(92vw, 860px); }
  .hero__theme-title { font-size: clamp(78px, 14vw, 132px); }
  .hero__bottom-band { grid-template-columns: 1fr auto 1fr; }
  .hero__bottom-band .hero__band-divider,
  .hero__bottom-band .hero__band-center { display: none; }
  .reason__inner { grid-template-columns: .72fr 1.28fr; column-gap: 48px; padding-inline: 32px; }
}

@media (max-width: 720px) {
  .hero__video-bg {
    opacity: .7;
    object-position: 58% 40%;
    -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.72), #000 24%, rgba(0,0,0,.8) 72%, transparent 94%);
    mask-image: linear-gradient(180deg, rgba(0,0,0,.72), #000 24%, rgba(0,0,0,.8) 72%, transparent 94%);
  }
  .hero::before {
    background:
      radial-gradient(ellipse 80% 54% at 62% 31%, rgba(255,33,0,.18), transparent 72%),
      radial-gradient(ellipse 70% 48% at 22% 72%, rgba(255,90,0,.09), transparent 74%),
      linear-gradient(180deg, rgba(3,3,3,.78), rgba(3,3,3,.16) 38%, rgba(3,3,3,.9) 82%);
  }
  .hero__center {
    min-height: calc(100svh - 138px - var(--sat));
    padding: calc(88px + var(--sat)) 20px 158px;
    align-items: center;
  }
  .hero__theme {
    width: 100%;
    align-items: flex-start;
    text-align: left;
    gap: 13px;
  }
  .hero__theme-title {
    font-size: clamp(56px, 20.5vw, 88px);
    line-height: .72;
    letter-spacing: -.08em;
  }
  .hero__theme-eyebrow { max-width: 34ch; font-size: 8px; line-height: 1.6; }
  .hero__theme-sub { max-width: 31ch; font-size: 12px; line-height: 1.5; }

  .hero__bottom-band {
    position: absolute;
    inset: auto 0 0;
    display: grid;
    grid-template-columns: 1fr;
    padding: 13px 20px calc(13px + var(--sab));
    text-align: left;
    background: rgba(3,3,3,.88);
  }
  .hero__bottom-band .hero__band-left { display: grid; gap: 4px; text-align: left; }
  .hero__bottom-band .hero__band-left h2 { font-size: 13px; }
  .hero__bottom-band .hero__band-left p { margin: 0; font-size: 9px; }
  .hero__bottom-band .hero__band-right,
  .hero__bottom-band .hero__band-divider,
  .hero__bottom-band .hero__band-center { display: none; }

  .reason__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding-inline: 20px;
  }
  .reason .eyebrow,
  .reason__verse,
  .reason__statement,
  .reason__copy,
  .reason__link { grid-column: 1; grid-row: auto; }
  .reason__verse { margin-top: 32px; }
  .reason__statement { margin-top: 54px; }
  .reason__copy { margin-top: 28px; }
  .reason__bg-word { right: -34vw; top: 34%; font-size: 76vw; }
  .reason::before { width: 130vw; left: -80%; top: 16%; }

  .event-story {
    background:
      radial-gradient(ellipse 110% 48% at 24% 20%, rgba(255,33,0,.16), transparent 72%),
      radial-gradient(ellipse 90% 42% at 82% 78%, rgba(0,217,255,.055), transparent 74%),
      var(--thermal-black);
  }
  .event-story::after { display: none; }
  .event-story__days h2 { color: var(--thermal-white); }
  .event-story__month { color: var(--thermal-white); -webkit-text-fill-color: var(--thermal-white); }
}

@media (max-width: 360px) {
  .hero__center { padding-top: 82px; padding-bottom: 142px; }
  .hero__theme-title { font-size: 56px; }
  .hero__theme-sub { font-size: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  .reason::before,
  .event-story::after,
  .thermal-scene::before {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
  .hero__glow { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   SEÑAL DE ORIGEN · prólogo y feedback contextual
   Reimplementación nativa; no reutiliza código ni assets Agenio.
   ═══════════════════════════════════════════════════════════════ */
.signal-entry {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 48% at 50% 52%, rgba(255, 59, 0, .16), transparent 72%),
    #030303;
  animation: signal-entry-exit .48s var(--ease) .72s forwards;
}

.signal-entry::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(to bottom, rgba(248,248,245,.045) 0 1px, transparent 1px 5px),
    radial-gradient(circle, rgba(255,90,0,.45) 0 .6px, transparent .9px);
  background-size: 100% 100%, 47px 53px;
  opacity: .3;
}

.signal-entry__scan {
  position: absolute;
  inset: -30% 0 auto;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(255,90,0,.15) 62%, rgba(248,248,245,.36) 98%, transparent);
  mix-blend-mode: screen;
  animation: signal-entry-scan .78s cubic-bezier(.2,.7,.2,1) forwards;
}

.signal-entry__mark {
  position: relative;
  display: grid;
  gap: 10px;
  width: min(420px, calc(100vw - 48px));
  color: var(--thermal-white);
  transform: translateY(8px);
  animation: signal-entry-mark .45s var(--ease) .08s both;
}

.signal-entry__kicker {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .38em;
  color: var(--thermal-orange);
}

.signal-entry__mark strong {
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 96px);
  line-height: .78;
  letter-spacing: -.06em;
}

.signal-entry__meter {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
  width: min(260px, 72%);
  margin-top: 12px;
}

.signal-entry__meter i {
  height: 3px;
  background: rgba(248,248,245,.16);
  animation: signal-entry-meter .34s ease-out both;
}

.signal-entry__meter i:nth-child(2) { animation-delay: .08s; }
.signal-entry__meter i:nth-child(3) { animation-delay: .16s; }
.signal-entry__meter i:nth-child(4) { animation-delay: .24s; }
.signal-entry__meter i:nth-child(5) { animation-delay: .32s; }

@keyframes signal-entry-scan {
  from { transform: translate3d(0, -110%, 0); }
  to { transform: translate3d(0, 390%, 0); }
}

@keyframes signal-entry-mark {
  from { opacity: 0; transform: translate3d(-14px, 8px, 0); clip-path: inset(0 100% 0 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); clip-path: inset(0); }
}

@keyframes signal-entry-meter {
  from { background: rgba(248,248,245,.16); transform: scaleX(.15); transform-origin: left; }
  to { background: var(--thermal-orange); transform: scaleX(1); transform-origin: left; }
}

@keyframes signal-entry-exit {
  to { opacity: 0; visibility: hidden; clip-path: inset(0 0 100% 0); }
}

.thermal-probe {
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,157,50,.42);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  box-shadow: inset 0 0 12px rgba(255,33,0,.1), 0 0 18px rgba(255,90,0,.08);
  transition: width .2s var(--ease), height .2s var(--ease), opacity .18s ease, border-color .2s ease;
  will-change: transform;
}

.thermal-probe.is-visible { opacity: .72; }
.thermal-probe.is-hot {
  width: 52px;
  height: 52px;
  border-color: rgba(0,217,255,.58);
  box-shadow: inset 0 0 18px rgba(255,33,0,.18), 0 0 22px rgba(0,217,255,.1);
}

@media (max-width: 720px) {
  .hero__bottom-band .hero__band-left h2 { font-size: 14px; }
  .hero__bottom-band .hero__band-left p { font-size: 10px; line-height: 1.45; }
}

@media (max-width: 720px) and (max-height: 700px) {
  .hero__center { padding-top: 78px; padding-bottom: 138px; }
}

@media (hover: none), (pointer: coarse) {
  .thermal-probe { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .signal-entry,
  .thermal-probe { display: none !important; }
}

/* ═══════════════════════════════════════════════════════════════
   HERO CENTRADO · restauración solicitada
   THE REASON vuelve a ser una sola lectura sobre el vídeo 3.
   ═══════════════════════════════════════════════════════════════ */
.hero--centered {
  min-height: 100svh;
  height: 100svh;
  /* El poster mantiene el hero fotográfico si el vídeo no se muestra
     (reduced motion, save-data o carga lenta). */
  background: #050505 url('/assets/hero-reason-poster.jpg') center 48% / cover no-repeat;
}

.hero--centered .hero__video-bg {
  opacity: .92;
  object-position: center 48%;
  filter: brightness(.72) contrast(1.18) saturate(1.12);
  transform: scale(1.025);
  -webkit-mask-image: radial-gradient(ellipse 68% 64% at 50% 46%, #000 18%, rgba(0,0,0,.94) 56%, rgba(0,0,0,.36) 80%, transparent 98%);
  mask-image: radial-gradient(ellipse 68% 64% at 50% 46%, #000 18%, rgba(0,0,0,.94) 56%, rgba(0,0,0,.36) 80%, transparent 98%);
}

.hero--centered::before {
  background-image:
    linear-gradient(90deg, rgba(5,5,5,.78), rgba(5,5,5,.18) 30%, rgba(5,5,5,.12) 70%, rgba(5,5,5,.78)),
    linear-gradient(180deg, rgba(5,5,5,.7), transparent 32%, rgba(5,5,5,.82) 88%),
    radial-gradient(ellipse 64% 52% at 50% 42%, rgba(255,90,0,.12), transparent 72%);
  background-size: 100% 100%;
}

.hero--centered .hero__center {
  min-height: 0;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: clamp(112px, 13vh, 148px) 24px clamp(28px, 5vh, 56px);
}

.hero--centered .hero__theme {
  width: min(94vw, 980px);
  max-width: 980px;
  align-items: center;
  gap: clamp(14px, 2vh, 22px);
  text-align: center;
}

.hero--centered .hero__theme::before {
  display: block;
  inset: -34px -64px -28px;
  background: radial-gradient(ellipse at center, rgba(5,5,5,.54), rgba(5,5,5,.24) 52%, transparent 74%);
}

.hero--centered .hero__theme-eyebrow {
  max-width: none;
  color: rgba(248,248,245,.78);
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: .3em;
  text-align: center;
}

.hero--centered .hero__theme-title {
  display: block;
  margin: 0;
  color: var(--thermal-orange);
  font-family: var(--font-display);
  font-size: clamp(58px, 10vw, 148px);
  font-weight: 700;
  line-height: .84;
  letter-spacing: -.045em;
  text-align: center;
  text-transform: uppercase;
  -webkit-text-fill-color: currentColor;
  -webkit-text-stroke: 0;
  text-shadow: 0 0 26px rgba(255,90,0,.28), 0 5px 30px rgba(0,0,0,.74);
}

.hero--centered .hero__theme-title > span {
  display: block;
  width: 100%;
  margin-top: clamp(12px, 2vh, 22px);
  color: rgba(248,248,245,.9);
  font-family: var(--font-display);
  font-size: clamp(18px, 2.7vw, 38px);
  font-weight: 650;
  line-height: 1;
  letter-spacing: .18em;
  text-align: center;
  -webkit-text-fill-color: currentColor;
  -webkit-text-stroke: 0;
  background: none;
  filter: none;
  text-shadow: 0 2px 18px rgba(0,0,0,.8);
}

.hero--centered .hero__theme-sub {
  max-width: 580px;
  margin: 0 auto;
  color: rgba(248,248,245,.78);
  font-size: clamp(14px, 1.35vw, 19px);
  line-height: 1.6;
  text-align: center;
}

.hero--centered .hero__bottom-band {
  position: relative;
  inset: auto;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(280px,.85fr) 1px minmax(280px,320px) 1px minmax(440px,1.15fr);
  align-items: center;
  gap: clamp(18px, 2.4vw, 38px);
  margin: 0 32px 28px;
  padding: 20px clamp(24px, 3vw, 44px);
  border: 1px solid rgba(242,92,5,.28);
  border-radius: 18px;
  background: rgba(5,5,5,.76);
  box-shadow: 0 22px 70px rgba(0,0,0,.3);
  backdrop-filter: blur(14px);
}

.hero--centered .hero__band-left h2 {
  color: var(--thermal-white);
  font-size: clamp(17px, 1.6vw, 23px);
}

.hero--centered .hero__band-left p {
  margin-top: 6px;
  color: var(--thermal-muted);
  font-size: 11px;
  line-height: 1.5;
}

.hero--centered .hero__band-center {
  display: flex;
  min-width: min(320px, 26vw);
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.hero--centered .hero__band-center .btn {
  width: 100%;
  min-height: 42px;
  justify-content: center;
}

.hero--centered .hero__band-right { text-align: right; }
.hero--centered .hero__cd-horizontal {
  width: 100%;
  justify-content: flex-end;
  gap: clamp(8px, 1vw, 15px);
}
.hero--centered .hero__cd-unit { min-width: 0; }
.hero--centered .hero__cd-num { font-size: clamp(30px, 3vw, 42px); }
.hero--centered .hero__cd-lbl { font-size: 8px; letter-spacing: .08em; }

@media (max-width: 1024px) {
  .hero--centered .hero__center { padding-top: 112px; }
  /* Tablet: mensaje + contador arriba, CTA siempre visibles en su propia fila. */
  .hero--centered .hero__bottom-band {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
    row-gap: 16px;
  }
  .hero--centered .hero__bottom-band .hero__band-divider { display: none; }
  .hero--centered .hero__bottom-band .hero__band-left {
    grid-row: 1;
    grid-column: 1;
  }
  .hero--centered .hero__bottom-band .hero__band-right {
    grid-row: 1;
    grid-column: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .hero--centered .hero__bottom-band .hero__band-center {
    grid-row: 2;
    grid-column: 1 / -1;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    min-width: 0;
  }
  .hero--centered .hero__bottom-band .hero__band-center .btn {
    width: auto;
    min-width: 220px;
  }
}

@media (max-width: 720px) {
  .hero--centered {
    min-height: 100svh;
    height: 100svh;
    padding-top: 0;
    background: #050505;
  }
  .hero--centered .hero__video-bg {
    inset: 0;
    height: 100%;
    aspect-ratio: auto;
    object-position: center 42%;
    opacity: .92;
    transform: scale(1.04);
    filter: brightness(.78) contrast(1.15) saturate(1.1);
    -webkit-mask-image: none;
    mask-image: none;
  }
  .hero--centered .hero__center {
    min-height: 0;
    padding: 92px 20px 118px;
  }
  .hero--centered .hero__theme {
    width: 100%;
    align-items: center;
    gap: 8px;
    text-align: center;
  }
  .hero--centered .hero__theme::before {
    display: block;
    inset: -28px -20px -24px;
  }
  .hero--centered .hero__theme-eyebrow {
    max-width: none;
    font-size: 8px;
    line-height: 1.4;
    letter-spacing: .22em;
  }
  .hero--centered .hero__theme-title {
    font-size: clamp(43px, 14vw, 60px);
    line-height: .88;
    letter-spacing: -.045em;
  }
  .hero--centered .hero__theme-title > span {
    margin-top: 6px;
    font-size: clamp(15px, 5vw, 21px);
    letter-spacing: .14em;
  }
  .hero--centered .hero__theme-sub {
    max-width: 32ch;
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
  }
  .hero--centered .hero__bottom-band {
    position: absolute;
    inset: auto 0 0;
    display: grid;
    grid-template-columns: 1fr;
    margin: 0;
    padding: 10px 16px calc(10px + var(--sab));
    border-width: 1px 0 0;
    border-radius: 0;
    text-align: center;
    background: rgba(3,3,3,.9);
  }
  .hero--centered .hero__bottom-band .hero__band-left,
  .hero--centered .hero__bottom-band .hero__band-divider,
  .hero--centered .hero__bottom-band .hero__band-right { display: none; }
  .hero--centered .hero__bottom-band .hero__band-center {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    gap: 4px;
  }
  .hero--centered .hero__bottom-band .hero__band-center .btn {
    width: 100%;
    min-width: 0;
    min-height: 40px;
  }
  .hero--centered .hero__bottom-band .hero__band-center .btn--secondary {
    display: inline-flex;
    justify-content: center;
    min-height: 30px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--thermal-muted);
    font-size: 9px;
  }
}

@media (max-width: 720px) {
  .ejes-heading {
    justify-content: center !important;
    gap: var(--sp-5) !important;
    margin-bottom: var(--sp-8) !important;
    text-align: center;
  }
  .ejes-heading > div { width: 100%; }
  .ejes-heading .eyebrow { justify-content: center; }
  .ejes-heading .btn { margin-inline: auto; }
  .thermal-scene--activation .grid-2 { gap: var(--sp-4) !important; }
  .thermal-scene--activation .card {
    padding: var(--sp-6) var(--sp-5);
    text-align: center;
  }
  .thermal-scene--activation .card__num { margin-bottom: var(--sp-4); }
  .investment-copy { text-align: center; }
  .investment-copy .eyebrow { justify-content: center; }
  .investment-copy .incluye-price { justify-content: center; flex-wrap: wrap; }
  .investment-copy .btn { margin-inline: auto; }
}

@media (max-width: 360px), (max-height: 650px) and (max-width: 720px) {
  .hero--centered .hero__center { padding-top: 86px; padding-bottom: 96px; }
  .hero--centered .hero__theme-title { font-size: 42px; }
  .hero--centered .hero__theme-sub { font-size: 11px; }
  .hero--centered .hero__bottom-band .hero__band-center .btn--secondary { display: none; }
}

/* ── Glow térmico del cursor global ── */
.global-glow {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: var(--mouse-o, 0);
  transition: opacity 0.4s ease;
  background: radial-gradient(
    380px circle at var(--mouse-x, -999px) var(--mouse-y, -999px),
    rgba(242, 92, 5, 0.07),
    transparent 80%
  );
  will-change: background;
}

@media (hover: none), (pointer: coarse) {
  .global-glow { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  .global-glow { display: none !important; }
}
