/* =============================================================
   www.saycucontrol.es — "película dentro del reloj"
   v3 (mayo 2026):
   - viewBox compacto 900×800: el reloj ocupa más lienzo en desktop.
   - Detrás del reloj, siempre visible, un QR de fondo + un móvil
     fotografiándolo (con haz de flash).
   - Narración con kicker + título + cuerpo, alimentada por los 19
     slides literales del PPT.
   - Cursor del timeline con la hora actual visible y agarre claro.
   - En móvil/tablet (1 columna): copy compacto y pegado al reloj.
   ============================================================= */

:root {
  /* Paleta del logo + presentación */
  --sc-navy:        #1a2332;
  --sc-navy-2:      #2a3b73;
  --sc-navy-3:      #11192a;
  --sc-amber:       #f3a93f;
  --sc-amber-2:     #ffb74d;
  --sc-teal:        #3a8a8a;
  --sc-paper:       #f4f1ea;
  --sc-paper-2:     #ece7dc;
  --sc-ink:         #1a2332;
  --sc-ink-2:       #4a5566;
  --sc-ink-3:       #8b94a3;
  --sc-line:        rgba(26, 35, 50, 0.12);
  --sc-line-strong: rgba(26, 35, 50, 0.22);

  --ff-display: 'Playfair Display', 'Big Caslon', Georgia, serif;
  --ff-body:    'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --t-camera: 850ms;
  --t-slide:  400ms;
  --t-ease:   cubic-bezier(.22, .61, .36, 1);
}

/* ============================ RESET ============================ */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
  height: 100%;
  overflow: hidden;        /* nada de scroll en desktop */
}
body {
  font-family: var(--ff-body);
  color: var(--sc-ink);
  background: var(--sc-paper);
  line-height: 1.5;
  height: 100dvh;
  overflow: hidden;
}
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--sc-amber);
  outline-offset: 3px;
  border-radius: 4px;
}

body::before {
  content: "";
  position: fixed; inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(243, 169, 63, 0.10), transparent 55%),
    radial-gradient(ellipse at 25% 80%, rgba(42, 59, 115, 0.10), transparent 50%),
    var(--sc-paper);
}

/* =========================== TOPBAR ============================ */

.topbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 30;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px clamp(14px, 3vw, 32px);
  background: linear-gradient(to bottom, var(--sc-paper) 60%, transparent);
}
.topbar__brand { display: inline-flex; align-items: center; gap: 12px; }
.topbar__brand img {
  width: 44px; height: 44px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.10));
}
.topbar__name {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  color: var(--sc-navy);
}
.topbar__name strong { color: var(--sc-amber); font-weight: 800; }
.topbar__actions { display: inline-flex; gap: 10px; }

/* ============================ BOTONES ========================== */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600; font-size: 0.92rem;
  border: 1px solid transparent;
  transition: transform .12s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--sc-amber); color: var(--sc-navy);
  box-shadow: 0 6px 16px rgba(243, 169, 63, 0.35);
}
.btn--primary:hover { background: var(--sc-amber-2); }
.btn--ghost {
  background: transparent; color: var(--sc-navy);
  border-color: var(--sc-line);
}
.btn--ghost:hover { background: rgba(26, 35, 50, 0.05); }

/* ============================ STAGE ============================ */

.stage {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(420px, 1.3fr);
  align-items: stretch;
  gap: clamp(16px, 3vw, 56px);
  width: 100%;
  /* desde debajo del topbar hasta encima de la tira inferior (52 + 6 = 58) */
  height: calc(100dvh - 64px - 58px);
  padding: 12px clamp(20px, 3vw, 40px) 12px;
  margin-top: 64px;
  margin-bottom: 58px;
  box-sizing: border-box;
}
@media (min-width: 900px) {
  .stage {
    height: calc(100dvh - 64px - 62px); /* 56+6 */
    margin-bottom: 62px;
  }
}
@media (min-width: 1400px) {
  .stage {
    height: calc(100dvh - 64px - 70px); /* 64+6 */
    margin-bottom: 70px;
  }
}

/* ============================ COPY ============================= */

.copy {
  max-width: 480px;
  justify-self: end;
  height: 100%;
  min-height: 0;       /* permite que el grid stretch limite */
  overflow: hidden;    /* no permita crecer por contenido */
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

/* ============== PILA VERTICAL DE SLIDES ==============
   Todos los slides montados de una vez en una pista vertical.
   El actual lleva .is-cur: opacity 1 + sombra fuerte + escala 1.
   Los demás quedan en sombra (opacity baja). El rail se desplaza
   con translateY suave para centrar el actual en el viewport. */
.slidewheel {
  position: relative;
  padding-left: 64px;
  height: 100%;           /* llena la columna izquierda completa */
}
.slidewheel__viewport {
  position: relative;
  height: 100%;           /* hereda el alto del wheel, no del contenido */
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
}
.slidewheel__rail {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 230px 0;            /* permite "subir" más allá del primero / último */
  transition: transform 1100ms cubic-bezier(.34,.04,.27,1);
  will-change: transform;
}
.slidewheel__slot {
  background: white;
  border-radius: 14px;
  padding: 14px 18px;
  opacity: 0.22;
  filter: blur(0.4px);
  transform: scale(0.96);
  transition: opacity 900ms ease, filter 900ms ease, transform 900ms ease, box-shadow 900ms ease;
  box-shadow: 0 4px 10px rgba(26, 35, 50, 0.08);
}
.slidewheel__slot.is-cur {
  opacity: 1;
  filter: none;
  transform: scale(1);
  padding: 18px 22px;
  /* Sombra marcada del actual */
  box-shadow:
    0 22px 50px rgba(26, 35, 50, 0.22),
    0 6px 16px rgba(26, 35, 50, 0.14);
}
.slidewheel__slot .slide__title { font-size: clamp(1.2rem, 1.9vw, 1.6rem); line-height: 1.15; }
.slidewheel__slot .slide__body  { font-size: 0.92rem; }
.slidewheel__slot.is-cur .slide__title { font-size: clamp(1.5rem, 2.4vw, 2.1rem); }
.slidewheel__slot.is-cur .slide__body  { font-size: clamp(0.92rem, 1.05vw, 1.05rem); }

/* Flecha grande a la izquierda — animación left-right en bucle */
.slidewheel__arrow {
  position: absolute;
  left: 4px;
  top: 50%;
  width: 44px;
  height: 44px;
  margin-top: -22px;
  color: var(--sc-amber);
  filter: drop-shadow(0 6px 14px rgba(243, 169, 63, 0.50));
  animation: arrow-bob 1.6s ease-in-out infinite;
  pointer-events: none;
  z-index: 4;
}
@keyframes arrow-bob {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(10px); }
}

/* ============== TIRA DE FOTOGRAMAS + FRANJA HORARIA ==============
   Posicionada ABAJO, justo encima de la franja horaria de colores que
   ocupa los últimos 6 px del viewport. Cuadrados sin redondeo, anchos
   proporcionales al rango de cada escena. Altura compacta. Dos
   variantes: en pantallas grandes (≥900 px) se ve label + tiempo; en
   estrechas solo la miniatura. */
.scene-strip {
  position: fixed; bottom: 6px; left: 0; right: 0;  /* sobre la franja */
  z-index: 26;
  display: flex; gap: 0;
  padding: 0;
  background: var(--sc-paper);
  border-top: 1px solid var(--sc-line);
  height: 52px;          /* compacto por defecto */
}
.scene-strip__btn {
  min-width: 0;
  display: flex; flex-direction: row; align-items: center; justify-content: center;
  gap: 6px;
  padding: 4px 6px;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--sc-ink-2);
  cursor: pointer;
  overflow: hidden;
  border-right: 1px solid rgba(26, 35, 50, 0.06);
  transition: background 0.15s ease, color 0.15s ease;
}
.scene-strip__btn:last-child { border-right: 0; }
.scene-strip__btn:hover {
  background: rgba(243, 169, 63, 0.08);
  color: var(--sc-navy);
}
.scene-strip__btn.is-active {
  background: rgba(243, 169, 63, 0.18);
}
.scene-strip__thumb {
  display: block;
  flex: 0 0 auto;
  width: 56px;
  height: 32px;
  overflow: hidden;
  background: var(--sc-paper);
}
.scene-strip__thumb svg { display: block; width: 100%; height: 100%; }
.scene-strip__btn.is-active .scene-strip__thumb {
  outline: 2px solid var(--sc-amber);
  outline-offset: -2px;
}
.scene-strip__label, .scene-strip__time {
  display: none;        /* por defecto compacto */
}
/* Versión ANCHA: pantallas grandes muestran también la etiqueta */
@media (min-width: 900px) {
  .scene-strip { height: 56px; }
  .scene-strip__btn { gap: 8px; padding: 4px 8px; }
  .scene-strip__thumb { width: 72px; height: 40px; }
  .scene-strip__label {
    display: block;
    text-align: left;
    font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--sc-navy);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    min-width: 0;
  }
  .scene-strip__time {
    display: block;
    font-size: 0.6rem; font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--sc-ink-3);
    font-variant-numeric: tabular-nums;
  }
  .scene-strip__btn.is-active .scene-strip__time { color: var(--sc-amber); }
}
/* Versión MUY ANCHA: doble de información (label + tiempo) bien aireados */
@media (min-width: 1400px) {
  .scene-strip { height: 64px; }
  .scene-strip__thumb { width: 88px; height: 48px; }
  .scene-strip__label { font-size: 0.85rem; }
  .scene-strip__time  { font-size: 0.66rem; }
}

/* Franja horaria — los últimos 6 px del viewport */
.scene-strip-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 26;
  display: flex; gap: 0;
  height: 6px;
  background: var(--sc-paper);
}
.scene-strip-bar span { display: block; height: 100%; min-width: 0; }
.scene-strip-bar [data-scene="noche"]   { background: linear-gradient(90deg, #11192a, #2a3b73); }
.scene-strip-bar [data-scene="llegada"] { background: linear-gradient(90deg, var(--sc-amber), #ffd187); }
.scene-strip-bar [data-scene="manana"]  { background: linear-gradient(90deg, #ffd187, var(--sc-teal)); }
.scene-strip-bar [data-scene="pausa"]   { background: var(--sc-amber); }
.scene-strip-bar [data-scene="ruta"]    { background: linear-gradient(90deg, var(--sc-teal), var(--sc-navy-2)); }
.scene-strip-bar [data-scene="cierre"]  { background: linear-gradient(90deg, var(--sc-navy-2), #ffa05a); }
.scene-strip-bar [data-scene="sello"]   { background: linear-gradient(90deg, #ffa05a, #11192a); }

/* ============== QR + MÓVIL: BLOQUE GRANDE Y VISIBLE ============== */
.film__shoot {
  position: absolute;
  top: 8px;
  right: 0;
  width: 220px;
  height: 280px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.95;
  filter: drop-shadow(0 16px 30px rgba(26, 35, 50, 0.18));
}
.film__shoot svg { width: 100%; height: 100%; }
.film__phone { transform-box: fill-box; transform-origin: 90px 170px; animation: phone-hold 5s ease-in-out infinite; }
@keyframes phone-hold {
  0%, 100% { transform: translate(10px, 0)   rotate(-12deg); }
  50%      { transform: translate(10px, -4px) rotate(-10deg); }
}
#bgFlash {
  animation: bgflash 3.6s ease-out infinite;
  transform-origin: 180px 180px;
}
@keyframes bgflash {
  0%       { r: 0;  opacity: 0.55; }
  60%      { r: 90; opacity: 0; }
  100%     { r: 0;  opacity: 0; }
}
.slide__kicker {
  margin: 0 0 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--sc-teal);
}
.slide__title {
  margin: 0 0 10px;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--sc-navy);
}
.slide__body {
  margin: 0;
  font-size: clamp(0.92rem, 1.05vw, 1.05rem);
  color: var(--sc-ink-2);
}

/* ============================ FILM ============================= */

.film {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}
.film__svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* CÁMARA */
.camera {
  transition: transform var(--t-camera) var(--t-ease);
  transform-origin: 0 0;
}

/* ESCENAS — opacity manejada por JS con tween (atributo opacity) */
.scene { pointer-events: none; }
.scene.is-active { pointer-events: auto; }

/* RELOJ */
.clock__numerals text {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 40px;
  fill: var(--sc-navy);
}
.hand { stroke-linecap: round; }
.hand--hour { stroke: var(--sc-navy);   stroke-width: 13; }
.hand--min  { stroke: var(--sc-navy-2); stroke-width: 9; }
.hand--sec  { stroke: var(--sc-amber);  stroke-width: 3; }
.hand__pivot     { fill: var(--sc-navy); }
.hand__pivot-dot { fill: var(--sc-amber); }

/* QR de fondo + móvil fotografiando: SIEMPRE detrás, dejándose ver */
.bg-shoot { opacity: 0.55; }
.bg-phone { transform-origin: 60px 460px; animation: phoneBreathe 5.2s ease-in-out infinite; }
@keyframes phoneBreathe {
  0%, 100% { transform: translate(60px, 460px) rotate(-8deg); }
  50%      { transform: translate(60px, 458px) rotate(-7deg); }
}
#bgFlash {
  animation: flashShoot 4s ease-in-out infinite;
}
@keyframes flashShoot {
  0%, 90%, 100% { opacity: 0; }
  45%, 55%      { opacity: 0.45; }
}

/* Micro elementos animados de escenas */
.qr-timer { transition: width 1s linear, fill 1s linear; }
.fichaje-tique { animation: fichaje-drop 1.2s ease-out 0.3s both; }
@keyframes fichaje-drop {
  0%   { transform: translateY(-30px); opacity: 0; }
  60%  { transform: translateY(4px);   opacity: 1; }
  100% { transform: translateY(0);     opacity: 1; }
}
.badge-extra { animation: badge-tilt 3s ease-in-out infinite; transform-origin: 65px 21px; }
@keyframes badge-tilt {
  0%, 100% { transform: rotate(-2deg); }
  50%      { transform: rotate(2deg); }
}
.tsa-stamp { animation: stamp-drop 1.3s ease-out 0.2s both; transform-origin: 130px 110px; }
@keyframes stamp-drop {
  0%   { transform: translate(130px,110px) rotate(-12deg) scale(2);    opacity: 0; }
  60%  { transform: translate(130px,110px) rotate(-12deg) scale(1.05); opacity: 1; }
  100% { transform: translate(130px,110px) rotate(-12deg) scale(1);    opacity: 1; }
}

/* ============================ TIMELINE ========================= */
/* Eliminado del DOM en v8 (duplicaba la tira de fotogramas).
   El estilo permanece comentado por si volvemos a recuperarlo. */
.timeline { display: none; }
.timeline-DEPRECATED {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 25;
  display: flex; align-items: center; gap: 12px;
  padding: 14px clamp(14px, 3vw, 32px);
  background: linear-gradient(to top, var(--sc-paper) 80%, transparent);
}
.timeline__live {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  font-size: 0.8rem; font-weight: 600;
  color: var(--sc-ink-2);
  background: white;
  border: 1px solid var(--sc-line);
  border-radius: 999px;
  transition: all .15s ease;
  white-space: nowrap;
}
.timeline__live:hover { color: var(--sc-navy); border-color: var(--sc-navy); }
.timeline__live.is-active {
  background: var(--sc-amber);
  color: var(--sc-navy);
  border-color: var(--sc-amber);
}
.timeline__live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sc-amber);
  box-shadow: 0 0 0 3px rgba(243, 169, 63, 0.25);
  animation: pulse 2s ease-in-out infinite;
}
.timeline__live.is-active .timeline__live-dot { background: white; box-shadow: 0 0 0 3px rgba(255,255,255,0.4); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(243, 169, 63, 0.25); }
  50%      { box-shadow: 0 0 0 6px rgba(243, 169, 63, 0.08); }
}

.timeline__track {
  position: relative;
  flex: 1;
  height: 56px;
  cursor: ew-resize;
  touch-action: none;
}
.timeline__bands {
  position: absolute; left: 0; right: 0; top: 18px;
  height: 18px;
  border-radius: 9px;
  overflow: hidden;
  background: var(--sc-paper-2);
  pointer-events: none;
}
.timeline__bands span {
  position: absolute; top: 0; bottom: 0;
  display: block;
}
.timeline__bands [data-scene="noche"]   { background: linear-gradient(90deg, #11192a, #2a3b73); }
.timeline__bands [data-scene="llegada"] { background: linear-gradient(90deg, var(--sc-amber), #ffd187); }
.timeline__bands [data-scene="manana"]  { background: linear-gradient(90deg, #ffd187, var(--sc-teal)); }
.timeline__bands [data-scene="pausa"]   { background: var(--sc-amber); }
.timeline__bands [data-scene="ruta"]    { background: linear-gradient(90deg, var(--sc-teal), var(--sc-navy-2)); }
.timeline__bands [data-scene="cierre"]  { background: linear-gradient(90deg, var(--sc-navy-2), #ffa05a); }
.timeline__bands [data-scene="sello"]   { background: linear-gradient(90deg, #ffa05a, #11192a); }

.timeline__labels {
  position: absolute; left: 0; right: 0; top: 40px;
  display: flex; justify-content: space-between;
  font-size: 0.68rem; color: var(--sc-ink-3);
  font-variant-numeric: tabular-nums;
}

/* === CURSOR INTUITIVO: hora visible + agarre claro === */
.timeline__cursor {
  position: absolute; top: -8px;
  display: inline-flex; flex-direction: column; align-items: center;
  margin-left: -32px;            /* mitad del ancho — centra sobre la posición */
  padding: 0;
  background: transparent;
  cursor: grab;
  z-index: 3;
  transition: transform 0.12s ease;
}
.timeline__cursor:hover { transform: translateY(-1px); }
.timeline__cursor:active { cursor: grabbing; transform: scale(1.04); }
.timeline__cursor-hour {
  display: inline-block;
  padding: 5px 12px;
  background: var(--sc-navy);
  color: white;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  border-radius: 8px;
  box-shadow: 0 6px 14px rgba(26, 35, 50, 0.35);
  font-variant-numeric: tabular-nums;
  min-width: 64px;
  text-align: center;
}
.timeline__cursor-hour::after {
  /* puntita triangular que apunta hacia la barra de horas */
  content: "";
  position: absolute;
  left: 50%; bottom: -5px;
  transform: translateX(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: var(--sc-navy);
}
.timeline__cursor-handle {
  display: inline-flex;
  margin-top: 22px;            /* baja hasta tocar la barra */
  color: white;
  background: var(--sc-amber);
  border-radius: 6px;
  padding: 3px 6px;
  box-shadow: 0 4px 8px rgba(243, 169, 63, 0.40);
}

/* Cuando el auto-play está activo, marcamos el cursor con un leve pulso */
.timeline__cursor.is-autoplay .timeline__cursor-hour {
  box-shadow: 0 6px 14px rgba(26, 35, 50, 0.35), 0 0 0 0 rgba(243, 169, 63, 0.6);
  animation: cursorBeat 2.4s ease-in-out infinite;
}
@keyframes cursorBeat {
  0%, 100% { box-shadow: 0 6px 14px rgba(26, 35, 50, 0.35), 0 0 0 0 rgba(243, 169, 63, 0.45); }
  50%      { box-shadow: 0 6px 14px rgba(26, 35, 50, 0.35), 0 0 0 8px rgba(243, 169, 63, 0); }
}

/* ============================ FOOTER =========================== */

/* Footer minimalista — en desktop oculto (no caben dos cosas fijas
   abajo cuando el body no tiene scroll); en móvil aparece al final. */
.footer {
  display: none;
}
.footer__links { display: inline-flex; gap: 18px; }
.footer a {
  color: var(--sc-navy);
  border-bottom: 1px dotted var(--sc-line);
  padding-bottom: 1px;
}
.footer a:hover { color: var(--sc-amber); border-color: var(--sc-amber); }

/* ============================ RESPONSIVE ======================= */

/* 1 columna — en móvil/tablet PERMITIMOS scroll vertical (cabe poco). */
@media (max-width: 1024px) {
  html, body { height: auto; overflow-y: auto; overflow-x: hidden; }
  .stage {
    grid-template-columns: 1fr;
    gap: 10px;
    height: auto;
    padding: 12px clamp(12px, 3vw, 24px) 24px;
    margin-top: 150px;
  }
  .copy { justify-self: center; max-width: 620px; height: auto; }
  .slidewheel { padding-left: 50px; height: auto; }
  .slidewheel__viewport { height: 380px; flex: none; }
  .slidewheel__rail { padding: 170px 0; gap: 8px; }
  .slidewheel__slot.is-cur {
    box-shadow:
      0 18px 38px rgba(26, 35, 50, 0.22),
      0 4px 12px rgba(26, 35, 50, 0.12);
  }
  .slidewheel__arrow { left: 0; width: 38px; height: 38px; margin-top: -19px; }
  .slide__title { font-size: clamp(1.4rem, 4.4vw, 1.9rem); }
  .slide__body  { font-size: clamp(0.88rem, 3.2vw, 1rem); }
  .film { height: 420px; }
  .footer {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px clamp(14px, 3vw, 24px);
    font-size: 0.74rem; color: var(--sc-ink-3);
    border-top: 1px solid var(--sc-line);
  }
}

@media (max-width: 720px) {
  .scene-strip__label { display: none; }
  .scene-strip__time  { font-size: 0.58rem; }
  .scene-strip { padding-bottom: 4px; }
  .slidewheel__viewport { height: 280px; }
  .slidewheel__rail { padding: 130px 0; }
}

/* Móvil pequeño */
@media (max-width: 720px) {
  .topbar__actions .btn--ghost { display: none; }
  .topbar__name { font-size: 1.1rem; }
  .footer { display: none; }
  .stage { padding: 64px 12px 100px; gap: 4px; }
  .slide { padding: 12px 14px; }
  .slide__kicker { font-size: 0.66rem; }
  .clock__numerals text { font-size: 36px; }
  .timeline { padding: 10px 12px; gap: 8px; }
  .timeline__live { padding: 6px 10px; font-size: 0.72rem; }
  .timeline__cursor-hour { font-size: 0.82rem; padding: 4px 10px; min-width: 56px; }
  .film { min-height: 360px; }
}

@media (max-width: 420px) {
  .stage { padding-top: 60px; padding-bottom: 96px; }
  .timeline__cursor-hour { min-width: 50px; font-size: 0.78rem; }
}

/* Pantalla muy ancha — reloj a tope */
@media (min-width: 1400px) {
  .stage {
    grid-template-columns: minmax(320px, 440px) minmax(620px, 1.5fr);
    gap: 60px;
  }
  .film { min-height: 680px; }
}

@media (prefers-reduced-motion: reduce) {
  .camera, .slide { transition: none !important; }
  .bg-phone, #bgFlash, .timeline__live-dot, .badge-extra, .fichaje-tique, .tsa-stamp,
  .timeline__cursor.is-autoplay .timeline__cursor-hour { animation: none !important; }
}
