/* =====================================================================
   NOCTURNA — Hero "La Gaceta de la Noche" (Waitlist Viva)
   ---------------------------------------------------------------------
   Hero editorial: el drop semanal como portada de diario de época,
   impreso en la noche neón de Nocturna.

   ⚠️ EXCEPCIÓN DE MARCA DELIBERADA (decidida con Sebas+Mateo, 05/06/2026):
   El design system prohíbe serif e itálica ("sin serif, sin itálica").
   Esta pieza editorial es la ÚNICA excepción autorizada: usa una fuente
   de cabecera (blackletter) para el masthead y una serif para los textos
   del diario, porque el concepto ES un periódico de época. La excepción
   queda ACOTADA a la Gaceta — NO baja al resto de la marca/UI.
   Tokens base (--noc-*) heredados de styles.css.

   Fuentes SELF-HOSTED en assets/fonts/ (woff2, subset latin, licencia OFL),
   igual que el resto del sitio — el CSP estricto (font-src 'self') las cubre
   sin abrir el CDN de Google. Playfair es variable (1 archivo upright + 1
   italic cubren 400-900); Pirata One es peso único 400.
   ===================================================================== */

/* @font-face self-hosted (OFL) — subset latin cubre todo el español (á é í ó ú ñ ü ¿ ¡) */
@font-face {
  font-family: 'Pirata One';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(fonts/PirataOne-400.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url(fonts/PlayfairDisplay-normal.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400 900;
  font-display: swap;
  src: url(fonts/PlayfairDisplay-italic.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --gz-paper:   #0c0907;                     /* papel oscuro, cálido */
  --gz-ink:     #efe7d8;                      /* tinta clara, sepia suave */
  --gz-soft:    rgba(239, 231, 216, 0.6);
  --gz-rule:    rgba(239, 231, 216, 0.3);
  --gz-serif:   "Playfair Display", Georgia, serif;
  --gz-black:   "Pirata One", "Playfair Display", serif;
}

/* ------------------------------------------------------------------ */
/* Sección hero: fondo de marca + beams                                */
/* ------------------------------------------------------------------ */
.gz-hero {
  position: relative;
  padding: var(--sp-10) 0 var(--sp-16);   /* el ticker ya despejó el nav fijo */
  overflow: hidden;
  isolation: isolate;
}
.gz-hero > .container { position: relative; z-index: 2; }
.gz-hero__beam {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

/* slideshow de fondo: la noche real de BA latiendo detrás del papel.
   Tratado oscuro + duotono violeta + blur para que sea AMBIENTE, no
   un carrusel que compite con el contenido. Sólo se ve alrededor de
   la hoja (que es opaca), como marco vivo. */
.gz-bgshow { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.gz-bgshow__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  /* sin blur en runtime (costoso): el oscurecido + duotono ya dan el clima.
     brightness/saturate se rasterizan una vez y se cachean. */
  filter: brightness(0.46) saturate(0.7);
  transform: translateZ(0);          /* capa propia en GPU */
  animation: gz-bgfade 30s linear infinite;
  will-change: opacity;
}
.gz-bgshow__img:nth-child(1) { animation-delay:   0s; }
.gz-bgshow__img:nth-child(2) { animation-delay:  -6s; }
.gz-bgshow__img:nth-child(3) { animation-delay: -12s; }
.gz-bgshow__img:nth-child(4) { animation-delay: -18s; }
.gz-bgshow__img:nth-child(5) { animation-delay: -24s; }
@keyframes gz-bgfade {
  0%   { opacity: 0; }
  2%   { opacity: 1; }
  18%  { opacity: 1; }
  20%  { opacity: 0; }
  100% { opacity: 0; }
}
/* duotono violeta + viñeta encima de las fotos, para fundirlas con la marca */
.gz-bgshow__tint {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 74% 66% at 50% 40%, rgba(4,2,11,0.34), rgba(4,2,11,0.86) 100%),
    linear-gradient(150deg, rgba(88,33,138,0.40), rgba(34,211,238,0.08));
}
.gz-hero__beam--violet {
  top: -220px; left: -180px; width: 660px; height: 660px;
  background: radial-gradient(circle, rgba(147, 68, 209, 0.30), transparent 62%);
  animation: gz-breathe 9s ease-in-out infinite;
}
.gz-hero__beam--cyan {
  bottom: -260px; right: -160px; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.15), transparent 62%);
  animation: gz-breathe 11s ease-in-out infinite reverse;
}
@keyframes gz-breathe {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50%      { transform: scale(1.12); opacity: 1; }
}

/* ------------------------------------------------------------------ */
/* Ticker B2B — cinta de teletipo para organizadores (nav → diario)    */
/* ------------------------------------------------------------------ */
.gz-ticker {
  position: relative;
  z-index: 2;
  margin-top: 58px;                  /* despeja el nav fijo */
  overflow: hidden;
  border-top: 1px solid var(--noc-violet-line);
  border-bottom: 1px solid var(--noc-violet-line);
  background: #160a2b;               /* sólido: sin backdrop-filter (caro) */
}

/* Override de perf: el nav real usa backdrop-filter; sobre el slideshow en
   movimiento eso recalcula el desenfoque por frame. Lo dejamos sólido en
   esta página. (Para promover a prod: evaluar el mismo cambio en styles.css.) */
.nav.is-solid {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  background: rgba(4, 2, 11, 0.94);
}
.gz-ticker__run {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 9px 0;
  animation: gz-ticker 36s linear infinite;
}
.gz-ticker:hover .gz-ticker__run { animation-play-state: paused; }
.gz-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--noc-text-muted);
  padding: 0 26px;
}
.gz-ticker__item a {
  color: var(--noc-cyan);
  border-bottom: 1px solid rgba(34, 211, 238, 0.4);
}
.gz-ticker__item a:hover { color: #fff; border-bottom-color: #fff; }
.gz-ticker__star { color: var(--noc-violet); }
@keyframes gz-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ------------------------------------------------------------------ */
/* La hoja del diario                                                  */
/* ------------------------------------------------------------------ */
.gz-sheet {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  background: var(--gz-paper);
  border: 1px solid rgba(239, 231, 216, 0.14);
  border-radius: 6px;
  padding: clamp(32px, 5vw, 60px) clamp(20px, 4vw, 48px);
  box-shadow:
    0 40px 110px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(147, 68, 209, 0.12),
    0 0 80px rgba(147, 68, 209, 0.18);
  transform-style: preserve-3d;
  transition: transform 240ms cubic-bezier(.2, .8, .2, 1);
  will-change: transform;            /* tilt compositado en GPU, sin repintar el texto */
}
/* grano de papel */
.gz-sheet::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: screen;
  border-radius: inherit;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* spotlight: linterna que sigue el cursor.
   Es un círculo de tamaño fijo que JS TRANSLADA (translate3d = compositado en
   GPU, sin repaint) en vez de mover un gradiente por background-position. */
.gz-sheet__spot {
  position: absolute; top: 0; left: 0;
  width: 560px; height: 560px;
  margin: -280px 0 0 -280px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
  background: radial-gradient(circle,
    rgba(147, 68, 209, 0.22),
    rgba(34, 211, 238, 0.06) 42%,
    transparent 70%);
  opacity: 0;
  transition: opacity 300ms ease;
  will-change: transform, opacity;
}
.gz-sheet.is-lit .gz-sheet__spot { opacity: 1; }
.gz-sheet > *:not(.gz-sheet__spot) { position: relative; z-index: 2; }

/* ------------------------------------------------------------------ */
/* Cabecera del diario                                                 */
/* ------------------------------------------------------------------ */
.gz-toprule {
  display: flex;
  justify-content: space-between;
  gap: var(--sp-3);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gz-soft);
  border-bottom: 1px solid var(--gz-rule);
  padding-bottom: 6px;
}
.gz-toprule .gz-neon { color: var(--noc-cyan); }

.gz-masthead {
  text-align: center;
  padding: clamp(22px, 4vw, 38px) 0 clamp(16px, 2.5vw, 24px);
  border-bottom: 3px double var(--gz-rule);
}
.gz-masthead__pre {
  font-family: var(--gz-serif);
  font-style: italic;
  font-size: clamp(12px, 2.4vw, 15px);
  color: var(--gz-soft);
  min-height: 1.2em;
  margin-bottom: 8px;
}
.gz-masthead__caret { color: var(--noc-violet); animation: gz-blink 1s step-end infinite; }
@keyframes gz-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.gz-masthead__titlewrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 1.6vw, 12px);
}
.gz-masthead__owl {
  width: clamp(52px, 10vw, 78px);
  height: clamp(52px, 10vw, 78px);
  object-fit: contain;       /* preserva la proporción del isotipo (no lo estruja) */
  filter: drop-shadow(0 0 16px rgba(34, 211, 238, 0.7));
}
.gz-masthead__title {
  font-family: var(--gz-black);
  font-weight: 400;
  font-size: clamp(34px, 9vw, 64px);
  line-height: 0.95;
  letter-spacing: 0.5px;
  color: var(--gz-ink);
  text-shadow: 0 0 24px rgba(147, 68, 209, 0.55);
}
.gz-masthead__strap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gz-soft);
  margin-top: 16px;
}
.gz-masthead__strap b { color: var(--noc-violet); }

/* ------------------------------------------------------------------ */
/* Lede + formulario de suscripción                                    */
/* ------------------------------------------------------------------ */
.gz-lede {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  align-items: center;
  padding: var(--sp-8) 2px;
  border-bottom: 1px solid var(--gz-rule);
}
@media (min-width: 760px) {
  .gz-lede { grid-template-columns: 1fr auto; gap: var(--sp-10); }
}
.gz-lede__text {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(15px, 2.4vw, 17px);
  line-height: 1.55;
  color: var(--gz-ink);
  max-width: 560px;
}
.gz-lede__text .gz-dropcap {
  float: left;
  font-family: var(--gz-black);
  font-size: 3.4em;
  line-height: 0.74;
  padding: 6px 10px 0 0;
  color: var(--noc-violet);
}
.gz-sub {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  min-width: min(280px, 100%);
}
.gz-sub__lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--noc-cyan);
  text-align: center;
}
.gz-sub__row { display: flex; gap: var(--sp-2); }
.gz-sub__input {
  flex: 1;
  height: 48px;
  padding: 0 var(--sp-4);
  border-radius: var(--r-sm);
  background: rgba(239, 231, 216, 0.06);
  border: 1px solid var(--gz-rule);
  color: var(--gz-ink);
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.gz-sub__input::placeholder { color: var(--gz-soft); }
.gz-sub__input:focus { border-color: var(--noc-violet); box-shadow: 0 0 0 3px rgba(147, 68, 209, 0.2); }
.gz-sub__btn {
  height: 48px;
  padding: 0 var(--sp-5);
  border-radius: var(--r-sm);
  background: var(--noc-violet);
  color: #fff;
  font-weight: var(--fw-bold);
  font-size: 14px;
  white-space: nowrap;
  box-shadow: var(--shadow-glow-sm);
  transition: background var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
}
.gz-sub__btn:hover { background: #A352E3; box-shadow: var(--shadow-glow); }
.gz-sub__btn:active { transform: scale(0.97); }
.gz-sub__fine {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gz-soft);
  text-align: center;
}

/* ------------------------------------------------------------------ */
/* Avisos (columnas)                                                   */
/* ------------------------------------------------------------------ */
.gz-sectionhead {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin: var(--sp-10) 0 var(--sp-6);
}
.gz-sectionhead__line { flex: 1; height: 1px; background: var(--gz-rule); }
.gz-sectionhead__t {
  font-family: var(--gz-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--gz-soft);
}

.gz-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-7, 34px) var(--sp-6);
}
@media (min-width: 600px) { .gz-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 920px) {
  .gz-grid { grid-template-columns: 1fr 1fr 1fr; gap: 34px 26px; }
}

/* "Recorte nocturno": cada venue es un recorte de la gaceta pegado con cinta
   sobre la noche — caja oscura con doble raya de imprenta + cinta adhesiva. */
.gz-col {
  background: rgba(239, 231, 216, 0.05);
  border: 3px double rgba(239, 231, 216, 0.3);
  border-radius: 2px;
  padding: 24px;
  position: relative;
}
.gz-col::before {
  content: '';
  position: absolute;
  top: -11px;
  left: 50%;
  width: 112px;
  height: 22px;
  transform: translateX(-50%) rotate(-2deg);
  background: rgba(230, 221, 201, 0.28);
  border-left: 1px dashed rgba(12, 9, 7, 0.35);
  border-right: 1px dashed rgba(12, 9, 7, 0.35);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.gz-pick__kick {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--noc-cyan);
  margin-bottom: 4px;
}
.gz-pick__venue {
  font-family: var(--gz-serif);
  font-weight: 800;
  font-size: clamp(21px, 3vw, 24px);
  line-height: 1.05;
  color: var(--gz-ink);
  transition: color var(--t-fast), text-shadow var(--t-fast);
}
.gz-pick:hover .gz-pick__venue {
  color: #fff;
  text-shadow: 0 0 14px var(--noc-violet), 0 0 30px rgba(147, 68, 209, 0.6);
}
.gz-pick__where {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 12.5px;
  color: var(--gz-soft);
  margin: 3px 0 11px;
}

/* flyer con duotono violeta que se revela a color en hover */
.gz-flyer {
  position: relative;
  height: 158px;
  border-radius: var(--r-xs);
  overflow: hidden;
  border: 1px solid rgba(239, 231, 216, 0.18);
  margin-bottom: 12px;
}
.gz-flyer__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.55) brightness(0.7);
  transition: filter var(--t-slow), transform var(--t-slow);
}
.gz-flyer__duo {
  position: absolute; inset: 0;
  background: linear-gradient(150deg, rgba(88, 33, 138, 0.85), rgba(147, 68, 209, 0.55));
  mix-blend-mode: multiply;
  transition: opacity var(--t-slow);
}
.gz-pick:hover .gz-flyer__img { filter: saturate(1.05) brightness(1); transform: scale(1.04); }
.gz-pick:hover .gz-flyer__duo { opacity: 0; }
.gz-flyer__lbl {
  position: absolute; left: 8px; bottom: 7px; z-index: 2;
  font-family: var(--gz-black);
  font-size: 21px;
  color: #fff;
  text-shadow: 0 1px 6px #000;
}
.gz-flyer__stamp {
  position: absolute; top: 7px; right: 7px; z-index: 2;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 3px;
  padding: 2px 6px;
  transform: rotate(4deg);
  background: rgba(0, 0, 0, 0.25);
}

/* Cuerpo de card en serif de TEXTO (Georgia, la misma del mail): Playfair es
   display-face y a 13.5px justificada era ilegible sobre fondo oscuro. */
.gz-pick__why {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--gz-ink);
  text-align: left;
}
.gz-pick__why b { color: #fff; }
.gz-pick__foot {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gz-soft);
  margin-top: 9px;
  border-top: 1px solid var(--gz-rule);
  padding-top: 7px;
}

/* ---- card-link: toda la card lleva a la entrada (o Maps en fallback) ---- */
.gz-pick-link {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
  border-radius: var(--r-xs);
}
.gz-pick { transition: transform var(--t-fast); }
.gz-pick-link:hover .gz-pick { transform: translateY(-3px); }
.gz-pick-link:focus-visible { outline: 2px solid var(--noc-violet); outline-offset: 4px; }

.gz-pick__cta {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--noc-violet);
  margin-top: 10px;
}
.gz-pick__cta::after {
  content: "\2192";              /* flecha → */
  display: inline-block;
  margin-left: 6px;
  transition: transform var(--t-fast);
}
.gz-pick-link:hover .gz-pick__cta::after { transform: translateX(4px); }

@media (prefers-reduced-motion: reduce) {
  .gz-pick-link:hover .gz-pick { transform: none; }
  .gz-pick-link:hover .gz-pick__cta::after { transform: none; }
}

/* fila oculta + ver más */
.gz-grid--more { display: none; margin-top: var(--sp-6); }
.gz-grid--more.is-open { display: grid; }

/* Cabezal de día (ediciones multi-día, ej. especial finde largo): banda estilo
   sección de diario, ocupa todo el ancho del grid. */
.gz-dayhead {
  grid-column: 1 / -1;
  border-top: 3px solid var(--gz-ink);
  border-bottom: 1px solid var(--gz-ink);
  padding: 10px 0 9px;
  margin-top: var(--sp-4);
  text-align: center;
  font-family: var(--gz-serif);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gz-ink);
}
.gz-grid .gz-dayhead:first-child { margin-top: 0; }

.gz-moreband { text-align: center; margin-top: var(--sp-6); }
.gz-more {
  font-family: var(--gz-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--gz-ink);
  background: transparent;
  border: 1px solid var(--gz-rule);
  border-radius: var(--r-pill);
  padding: 12px 28px;
  transition: border-color var(--t-fast), color var(--t-fast), box-shadow var(--t-fast);
}
.gz-more:hover { border-color: var(--noc-violet); color: #fff; box-shadow: 0 0 18px rgba(147, 68, 209, 0.35); }

.gz-botrule {
  margin-top: var(--sp-6);
  border-top: 3px double var(--gz-rule);
  padding-top: 9px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gz-soft);
}

/* peek de la sección siguiente */
.gz-peek { text-align: center; padding: var(--sp-12) var(--sp-5) var(--sp-2); color: var(--noc-text-dim); }
.gz-peek__k { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--noc-cyan); }
.gz-peek__h { font-size: clamp(18px, 3vw, 22px); font-weight: var(--fw-bold); color: var(--noc-text-muted); margin-top: 6px; }
.gz-peek__chev { margin-top: 14px; font-size: 20px; opacity: 0.5; }

/* ================================================================== */
/* Secciones BAJO el hero — estilo Nocturna puro (sin diario, sin serif) */
/* El "diario de época" queda contenido al hero; acá vuelve la marca.   */
/* ================================================================== */

/* ③ Captura intermedia */
.gz-capture { position: relative; }
.gz-capture__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: var(--noc-ink-surface);
  border: 1px solid var(--noc-violet-line);
  border-radius: var(--r-lg);
  padding: clamp(28px, 5vw, 48px) clamp(20px, 4vw, 40px);
  box-shadow: var(--shadow-glow-lg);
}
.gz-capture__inner .h1 { margin: var(--sp-3) 0; }
.gz-capture__inner > p { color: var(--noc-text-muted); max-width: 460px; margin: 0 auto var(--sp-6); }
.gz-capture__form { display: flex; flex-direction: column; gap: var(--sp-3); max-width: 460px; margin: 0 auto; }
.gz-capture__row { display: flex; flex-direction: column; gap: var(--sp-3); }
@media (min-width: 520px) { .gz-capture__row { flex-direction: row; } }
.gz-capture__form input {
  flex: 1; height: 54px; padding: 0 var(--sp-5);
  border-radius: var(--r-md);
  background: rgba(4, 2, 11, 0.5);
  border: 1px solid var(--noc-violet-line);
  color: var(--noc-text); font-size: 15px;
}
.gz-capture__form input:focus { outline: none; border-color: var(--noc-violet); box-shadow: 0 0 0 3px rgba(147,68,209,.2); }
.gz-capture__form button {
  height: 54px; padding: 0 var(--sp-6);
  border-radius: var(--r-md);
  background: var(--noc-violet); color: #fff; font-weight: var(--fw-bold);
  box-shadow: var(--shadow-glow-sm); white-space: nowrap;
}
.gz-capture__micro { font-family: var(--font-mono); font-size: 11px; color: var(--noc-text-muted); margin-top: var(--sp-4); }

/* ④ Lo que se viene — app reducida */
.gz-appteaser { display: grid; grid-template-columns: 1fr; gap: var(--sp-8); align-items: center; }
@media (min-width: 860px) { .gz-appteaser { grid-template-columns: 1.05fr 0.95fr; } }
.gz-appteaser__copy > p { color: var(--noc-text-muted); margin-bottom: var(--sp-5); }
.gz-appteaser__points { display: flex; flex-direction: column; gap: var(--sp-3); }
.gz-appteaser__point { display: flex; gap: var(--sp-3); align-items: baseline; font-size: 15px; color: var(--noc-text); }
.gz-appteaser__point .b { color: var(--noc-cyan); font-weight: var(--fw-bold); }
.gz-appteaser__shots { display: flex; gap: var(--sp-4); justify-content: center; }
.gz-appteaser__shots img {
  width: clamp(120px, 36%, 160px); border-radius: var(--r-lg);
  border: 1px solid var(--noc-violet-line); box-shadow: var(--shadow-card);
}
.gz-appteaser__shots img:nth-child(2) { transform: translateY(18px); }

/* ⑥ Archivo de ediciones */
.gz-archive { display: grid; grid-template-columns: 1fr; gap: var(--sp-4); }
@media (min-width: 700px) { .gz-archive { grid-template-columns: repeat(3, 1fr); } }
.gz-edition {
  border: 1px solid var(--noc-violet-line); border-radius: var(--r-md);
  padding: var(--sp-5); background: var(--noc-ink-surface);
}
.gz-edition--current { border-color: var(--noc-violet); box-shadow: var(--shadow-glow-sm); }
.gz-edition__num { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--noc-cyan); }
.gz-edition__title { font-weight: var(--fw-bold); font-size: 18px; margin: var(--sp-2) 0; }
.gz-edition__meta { font-size: 13px; color: var(--noc-text-muted); line-height: 1.5; }
.gz-edition--soon {
  opacity: 0.5; border-style: dashed; display: flex; align-items: center; justify-content: center;
  min-height: 116px; text-align: center; font-family: var(--font-mono); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--noc-text-muted);
}

/* ⑦ CTA final */
.gz-final { text-align: center; }
.gz-final .h1 { margin-bottom: var(--sp-3); }
.gz-final > p { color: var(--noc-text-muted); margin-bottom: var(--sp-6); }
.gz-final__bullets {
  display: flex; flex-wrap: wrap; gap: var(--sp-4); justify-content: center;
  margin-top: var(--sp-6); font-family: var(--font-mono); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--noc-text-muted);
}
.gz-final__bullets li::before { content: "✦ "; color: var(--noc-violet); }

/* respeto a reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .gz-hero__beam { animation: none; }
  .gz-masthead__caret { animation: none; }
  .gz-sheet { transition: none; }
  /* slideshow en pausa: una sola foto fija, sin movimiento */
  .gz-bgshow__img { animation: none; opacity: 0; }
  .gz-bgshow__img:first-child { opacity: 1; }
  /* ticker quieto */
  .gz-ticker__run { animation: none; }
}
