/* ==========================================================================
   ALEXIS VENEGAS · MIENTRAS QUE EL MUNDO…
   Lanzamiento 2026 · landing de sencillo
   Tipografía: Semplicita Pro (familia única, 4 pesos, local woff2)
   Superficies: noche (#0B0C10) · noche-2 (#111319) · acero (#191C23)
   Acentos:  crema/oro (#EFE3AC, el del logotipo y la carátula)
             cian (#58C6EA, el de las pantallas del vídeo)
   ========================================================================== */

@font-face {
  font-family: 'Semplicita Pro';
  src: url('/assets/fonts/SemplicitaPro-Light.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Semplicita Pro';
  src: url('/assets/fonts/SemplicitaPro-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Semplicita Pro';
  src: url('/assets/fonts/SemplicitaPro-Medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Semplicita Pro';
  src: url('/assets/fonts/SemplicitaPro-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}

:root {
  --night:    #0B0C10;
  --night-2:  #111319;
  --steel:    #191C23;

  --ink:      #F2F1EE;
  --ink-72:   rgba(242, 241, 238, 0.72);
  --ink-52:   rgba(242, 241, 238, 0.52);
  --ink-34:   rgba(242, 241, 238, 0.34);
  --line:     rgba(242, 241, 238, 0.13);
  --line-2:   rgba(242, 241, 238, 0.22);

  --gold:     #EFE3AC;   /* crema del logotipo · etiquetas y cifras */
  --cyan:     #58C6EA;   /* cian de las pantallas · enlaces y hover */

  --font: 'Semplicita Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  --wrap: 1240px;
  --pad: 40px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  background: var(--night);
  color: var(--ink);
  font-family: var(--font);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

::selection { background: var(--cyan); color: var(--night); }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad); }

.skip-link {
  position: absolute; top: -200px; left: 16px; z-index: 999;
  background: var(--ink); color: var(--night);
  padding: 12px 22px; text-decoration: none;
  font-size: 13px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
}
.skip-link:focus { top: 14px; }

/* ---------- escala tipográfica ---------- */

.eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold);
}
.eyebrow.muted { color: var(--ink-52); letter-spacing: 0.2em; }

h1, h2, h3 { font-weight: 400; line-height: 1.06; letter-spacing: -0.02em; }

.display {
  font-size: clamp(46px, 7.4vw, 108px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.h2 { font-size: clamp(32px, 4.2vw, 58px); font-weight: 300; letter-spacing: -0.03em; }
.h3 { font-size: clamp(21px, 2vw, 27px); font-weight: 400; letter-spacing: -0.02em; }

.lede {
  font-size: clamp(18px, 1.5vw, 21px);
  font-weight: 300;
  line-height: 1.62;
  color: var(--ink-72);
  max-width: 58ch;
}

.meta {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-52);
}

/* ---------- botones ---------- */

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  white-space: nowrap;
  flex: none;
  transition: background .22s ease, color .22s ease, border-color .22s ease, transform .22s ease;
}
.btn svg { width: 15px; height: 15px; flex: none; }
.btn:hover, .btn:focus-visible { transform: translateY(-2px); outline: none; }

.btn-solid { background: var(--ink); color: var(--night); border-color: var(--ink); }
.btn-solid:hover, .btn-solid:focus-visible { background: var(--cyan); border-color: var(--cyan); color: var(--night); }

.btn-line { color: var(--ink); border-color: var(--line-2); }
.btn-line:hover, .btn-line:focus-visible { border-color: var(--ink); background: rgba(242,241,238,.07); }

/* ---------- cabecera ---------- */

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11, 12, 16, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; height: 76px;
}
/* el logo y el botón van por encima del cajón de móvil, que es un hijo
   posicionado del propio header y si no los taparía */
.brand { display: block; flex: none; position: relative; z-index: 95; }
.brand img { height: 30px; width: auto; }

.nav { display: flex; align-items: center; gap: 30px; min-width: 0; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; }
.nav::-webkit-scrollbar { display: none; }
.nav a {
  text-decoration: none;
  font-size: 12.5px; font-weight: 400;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink-72);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.nav a:hover, .nav a:focus-visible { color: var(--ink); border-bottom-color: var(--gold); outline: none; }
.nav a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--gold); }
.nav a.btn { padding: 11px 20px; border-bottom-width: 1px; }
.nav a.btn-solid { color: var(--night); border-color: var(--ink); }
.nav a.btn-solid:hover, .nav a.btn-solid:focus-visible,
.nav a.btn-solid[aria-current="page"] { color: var(--night); background: var(--cyan); border-color: var(--cyan); }

/* botón de menú: solo existe en pantallas estrechas */
.nav-toggle {
  display: none;
  position: relative; z-index: 95;
  width: 44px; height: 44px; flex: none;
  align-items: center; justify-content: center;
  background: none; border: 1px solid var(--line-2); border-radius: 50%;
  color: var(--ink); cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle:hover, .nav-toggle:focus-visible { border-color: var(--ink); background: rgba(242,241,238,.06); outline: none; }
.nav-toggle svg { width: 19px; height: 19px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- secciones ---------- */

section { position: relative; }
.sec { padding: 112px 0; }
.sec-tight { padding: 78px 0; }
.on-2     { background: var(--night-2); }
.on-steel { background: var(--steel); }

.sec-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap; margin-bottom: 56px; }
.sec-head .h2 { margin-top: 16px; }
.sec-head p { margin-top: 18px; }

/* ---------- hero ---------- */

.hero { position: relative; min-height: 86vh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg video, .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to top, var(--night) 2%, rgba(11,12,16,.72) 34%, rgba(11,12,16,.38) 68%, rgba(11,12,16,.62) 100%),
    linear-gradient(to right, rgba(11,12,16,.78) 0%, rgba(11,12,16,.24) 62%, rgba(11,12,16,.42) 100%);
}
.hero-inner { position: relative; z-index: 1; width: 100%; padding: 168px 0 74px; }
.hero-text { max-width: 780px; }
.hero-text .eyebrow { margin-bottom: 24px; }
.hero-title { margin: 0; }
.hero-title .quiet { color: var(--ink-52); }
.hero-line {
  margin-top: 26px;
  font-size: clamp(20px, 1.9vw, 26px);
  font-weight: 300; font-style: italic;
  line-height: 1.4;
  color: var(--gold);
  max-width: 15em;
}
.hero-actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-strip {
  position: relative; z-index: 1;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
  padding: 20px 0 24px;
}

/* ---------- reproductor de audio ---------- */

.audio {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(242,241,238,.035);
  padding: 22px 24px;
  max-width: 560px;
}
.audio-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 14px; }
.audio-title { font-size: 17px; font-weight: 500; letter-spacing: -0.01em; }
.audio audio { width: 100%; height: 38px; }
.audio-note { margin-top: 12px; font-size: 12px; font-weight: 300; color: var(--ink-34); letter-spacing: .02em; }

/* ---------- embeds del estreno (Spotify / YouTube) ---------- */
.audio .embed-spotify { display: block; width: 100%; height: 152px; border: 0; border-radius: 12px; }
.listen-links { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 10px; }
.listen-links .btn { padding: 9px 15px; font-size: 14px; }
.videoframe iframe { display: block; width: 100%; aspect-ratio: 16/9; border: 0; }

/* ---------- la canción ---------- */

.single { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 72px; align-items: start; }
.single-media { position: sticky; top: 108px; }
.single-media img { border-radius: 10px; box-shadow: 0 26px 64px rgba(0,0,0,.55); }
.single-caption { margin-top: 16px; }
.single-body p { margin-top: 22px; font-weight: 300; color: var(--ink-72); max-width: 62ch; }
.single-body p.first { font-size: clamp(19px, 1.6vw, 22px); color: var(--ink); }

.creditlist { margin-top: 40px; border-top: 1px solid var(--line); }
.credit { display: grid; grid-template-columns: 190px 1fr; gap: 20px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.credit dt { font-size: 11px; font-weight: 500; letter-spacing: .17em; text-transform: uppercase; color: var(--ink-52); padding-top: 3px; }
.credit dd { font-size: 16px; font-weight: 400; }

/* ---------- letra ---------- */

/* columnas CSS, no grid: así la letra se lee de arriba abajo y luego salta
   a la segunda columna, en el orden real de la canción */
.lyrics { column-count: 2; column-gap: 72px; }
.stanza {
  padding: 26px 0 4px;
  border-top: 1px solid var(--line);
  break-inside: avoid; -webkit-column-break-inside: avoid; page-break-inside: avoid;
}
.stanza-label {
  font-size: 11px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-34); display: block; margin-bottom: 14px;
}
.stanza.chorus .stanza-label { color: var(--gold); }
.stanza p {
  font-size: clamp(18px, 1.55vw, 21px);
  font-weight: 300;
  line-height: 1.66;
  color: var(--ink-72);
}
.stanza.chorus p { color: var(--ink); font-style: italic; }
.lyrics-foot { margin-top: 46px; padding-top: 22px; border-top: 1px solid var(--line); }

/* ---------- concepto / vídeo ---------- */

.videoframe {
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
  box-shadow: 0 26px 70px rgba(0,0,0,.5);
}
.videoframe video { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

.concept-lines { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.concept-line { border-top: 1px solid var(--line-2); padding-top: 22px; }
.concept-line q {
  display: block; quotes: none;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 300; line-height: 1.24; letter-spacing: -0.02em;
}
.concept-line.accent q { color: var(--gold); }
.concept-line span { display: block; margin-top: 14px; font-size: 12px; letter-spacing: .17em; text-transform: uppercase; color: var(--ink-34); }

/* ---------- alexis ---------- */

.article { display: grid; grid-template-columns: 320px 1fr; gap: 76px; align-items: start; }
.factsheet { position: sticky; top: 108px; border-top: 1px solid var(--gold); padding-top: 22px; }
.fact { padding: 14px 0; border-bottom: 1px solid var(--line); }
.fact dt { font-size: 11px; font-weight: 500; letter-spacing: .17em; text-transform: uppercase; color: var(--ink-52); }
.fact dd { margin-top: 5px; font-size: 16px; font-weight: 400; }
.prose p { margin-bottom: 24px; font-weight: 300; font-size: 18px; line-height: 1.78; color: var(--ink-72); max-width: 66ch; }
.prose p.first { font-size: clamp(20px, 1.7vw, 23px); color: var(--ink); }
.prose-source { font-size: 12px; letter-spacing: .04em; color: var(--ink-34); }

.gallery { display: grid; grid-template-columns: 1.35fr 1fr; gap: 28px; align-items: stretch; margin-top: 64px; }
.gallery figure { margin: 0; }
.gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: 6px; }
.gallery figcaption { margin-top: 12px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-34); }

/* ---------- gira ---------- */

.tour { border-top: 1px solid var(--line-2); }
.show {
  display: grid;
  grid-template-columns: 118px 1fr 210px auto;
  gap: 28px; align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.show-date { display: flex; flex-direction: column; gap: 2px; }
.show-day { font-size: 30px; font-weight: 300; line-height: 1; letter-spacing: -0.03em; }
.show-month { font-size: 11px; font-weight: 500; letter-spacing: .19em; text-transform: uppercase; color: var(--gold); }
.show-city { font-size: clamp(21px, 2vw, 26px); font-weight: 400; letter-spacing: -0.02em; }
.show-venue { margin-top: 5px; font-size: 14px; font-weight: 300; color: var(--ink-52); }
.show-info { font-size: 14px; font-weight: 300; color: var(--ink-72); }
.show-info b { font-weight: 500; color: var(--ink); }
.tour-note { margin-top: 30px; font-size: 14px; font-weight: 300; color: var(--ink-52); max-width: 70ch; }

/* ---------- plataformas ---------- */

.platforms { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.platform {
  --brand: var(--cyan);
  position: relative;
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 18px; align-items: center;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  transition: border-color .24s ease, background .24s ease, transform .24s ease;
}
.platform:hover, .platform:focus-visible {
  border-color: var(--brand);
  background: rgba(242, 241, 238, 0.04);
  transform: translateY(-3px);
  outline: none;
}
.platform-icon {
  width: 46px; height: 46px; flex: none;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--ink-72);
  transition: color .24s ease, border-color .24s ease, background .24s ease;
}
.platform-icon svg { width: 21px; height: 21px; }
.platform:hover .platform-icon, .platform:focus-visible .platform-icon {
  color: var(--brand); border-color: var(--brand);
  background: rgba(242, 241, 238, 0.05);
}
.platform-text { min-width: 0; }
.platform-name { display: block; font-size: 17px; font-weight: 400; }
.platform-sub {
  display: block; margin-top: 3px;
  font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-34);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.platform-arrow {
  width: 15px; height: 15px; flex: none;
  color: var(--ink-34);
  transition: color .24s ease, transform .24s ease;
}
.platform:hover .platform-arrow, .platform:focus-visible .platform-arrow {
  color: var(--brand); transform: translate(3px, -3px);
}

/* fila compacta de iconos: pie de página */
.social { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.social a {
  --brand: var(--cyan);
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink-52);
  transition: color .22s ease, border-color .22s ease, transform .22s ease;
}
.social a svg { width: 18px; height: 18px; }
.social a:hover, .social a:focus-visible {
  color: var(--brand); border-color: var(--brand);
  transform: translateY(-2px); outline: none;
}

/* ---------- pie ---------- */

.site-footer { background: var(--night); border-top: 1px solid var(--line); padding: 72px 0 34px; }
.footer-top { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; padding-bottom: 44px; border-bottom: 1px solid var(--line); }
.footer-top p { color: var(--ink-52); font-weight: 300; margin-top: 16px; max-width: 46ch; }
.footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px 40px; align-content: start; }
.footer-links a {
  display: flex; justify-content: space-between; gap: 14px;
  text-decoration: none; padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  font-size: 14px; font-weight: 400;
  transition: color .2s ease, border-color .2s ease;
}
.footer-links a span:last-child { color: var(--ink-34); font-weight: 300; }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--cyan); border-color: var(--cyan); outline: none; }
.footer-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: 12px; letter-spacing: .11em; text-transform: uppercase;
  color: var(--ink-34);
}
.footer-logo img { height: 26px; width: auto; opacity: .85; }

/* ---------- entrada de secciones ----------
   La clase .reveal la pone el JS: sin JS todo se ve, no hay contenido
   atrapado en opacidad 0. */

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.75,.2,1); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */

/* portátiles y tabletas grandes */
@media (max-width: 1180px) {
  :root { --pad: 32px; }
  .sec { padding: 96px 0; }
  .single { gap: 52px; }
  .article { grid-template-columns: 260px 1fr; gap: 52px; }
  .show { grid-template-columns: 104px 1fr 190px auto; gap: 22px; }
}

/* tabletas */
@media (max-width: 1080px) {
  :root { --pad: 28px; }
  .single { grid-template-columns: 1fr; gap: 44px; }
  .single-media { position: static; max-width: 420px; }
  .article { grid-template-columns: 1fr; gap: 44px; }
  .factsheet { position: static; }
  .lyrics { column-count: 1; }
  .concept-lines { grid-template-columns: 1fr; gap: 0; }
  .concept-line { padding: 22px 0; border-top: 1px solid var(--line); }
  .concept-line:first-child { border-top-color: var(--line-2); }
  .platforms { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .show { grid-template-columns: 96px 1fr; gap: 8px 22px; }
  .show-info { grid-column: 2; }
  .show .btn { grid-column: 2; justify-self: start; margin-top: 10px; }
}

/* aquí el menú horizontal ya no cabe: pasa a cajón */
@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: 0 0 auto; top: 0;
    z-index: 90;
    flex-direction: column; align-items: stretch;
    gap: 0;
    overflow: visible;
    padding: 96px var(--pad) 34px;
    /* opaco a propósito: con alfa el titular del hero se leía por detrás */
    background: var(--night);
    box-shadow: 0 28px 60px rgba(0, 0, 0, .55);
    border-bottom: 1px solid var(--line);
    transform: translateY(-102%);
    /* visibility con retardo: aparece al instante al abrir y solo se oculta
       cuando el cajón ha terminado de subir */
    visibility: hidden;
    transition: transform .38s cubic-bezier(.3,.8,.2,1), visibility 0s .38s;
  }
  .nav[data-open="true"] {
    transform: none;
    visibility: visible;
    transition: transform .38s cubic-bezier(.3,.8,.2,1), visibility 0s 0s;
  }
  .nav a {
    font-size: 15px; letter-spacing: .1em;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    border-top: 0;
  }
  .nav a:hover, .nav a:focus-visible, .nav a[aria-current="page"] { border-bottom-color: var(--gold); }
  .nav a.btn { margin-top: 24px; align-self: flex-start; padding: 14px 26px; border-bottom-width: 1px; }
  .nav a.btn:hover { border-bottom-color: var(--cyan); }
}

/* móviles */
@media (max-width: 680px) {
  :root { --pad: 20px; }
  body { font-size: 16px; }
  .sec { padding: 68px 0; }
  .sec-tight { padding: 52px 0; }
  .sec-head { margin-bottom: 40px; gap: 6px; }
  .hero { min-height: 82vh; }
  .hero-inner { padding: 104px 0 46px; }
  .hero-text { max-width: none; }
  .hero-line { max-width: none; margin-top: 22px; }
  /* rejilla, no flex: los rótulos van en nowrap y en flex se desbordaban.
     «Escuchar» ocupa la fila entera por ser la acción principal. */
  .hero-actions { margin-top: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .hero-actions .btn {
    width: 100%; justify-content: center;
    padding: 15px 10px; font-size: 12px; letter-spacing: .12em;
  }
  .hero-actions .btn:first-child { grid-column: 1 / -1; }
  .hero-strip { flex-direction: column; align-items: flex-start; gap: 10px; }
  .header-inner { height: 66px; gap: 14px; }
  .brand img { height: 25px; }
  .single-media { max-width: none; }
  .credit { grid-template-columns: 1fr; gap: 2px; }
  .stanza { padding: 22px 0 2px; }
  .gallery { grid-template-columns: 1fr; gap: 20px; margin-top: 44px; }
  .gallery img { aspect-ratio: 4/3; }
  .platforms { grid-template-columns: 1fr; gap: 12px; }
  .platform { padding: 16px 18px; gap: 15px; border-radius: 12px; }
  .platform-icon { width: 42px; height: 42px; border-radius: 12px; }
  .platform-name { font-size: 16px; }
  .show { padding: 22px 0; }
  .show .btn { width: 100%; justify-content: center; }
  .footer-links { grid-template-columns: 1fr; gap: 18px; }
  .footer-bottom { flex-direction: column; gap: 14px; align-items: flex-start; }
}

/* móviles estrechos */
@media (max-width: 400px) {
  .display { font-size: 40px; }
  .hero-actions { grid-template-columns: 1fr; }
  .hero-actions .btn:first-child { grid-column: 1; }
  .show { grid-template-columns: 76px 1fr; }
  .show-day { font-size: 26px; }
  .platform-sub { font-size: 11px; letter-spacing: .08em; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
