/* ============================================================
   90's RECORDS · PLAZAS ABIERTAS
   Diseño: dark mode + amarillo eléctrico, estética tracklist/mixtape
   ============================================================ */

:root {
  /* Marca oficial */
  --yellow:      #F6C610;
  --yellow-soft: #FADD75;
  --black:       #000000;
  --white:       #FFFFFF;
  --gray:        #8F8F8F;

  /* Derivados */
  --ink-dim:     #BFBFBF;
  --ink-faint:   #6A6A6A;
  --line:        #1F1F1F;
  --line-soft:   #141414;
  --surface-2:   #0A0A0A;
  --surface-3:   #141414;

  /* Tipografía */
  --display: 'Archivo Black', 'Impact', system-ui, sans-serif;
  --sans:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono:    'JetBrains Mono', 'SF Mono', Menlo, monospace;

  /* Escala fluida */
  --fs-eyebrow: clamp(0.7rem, 0.65rem + 0.2vw, 0.8rem);
  --fs-body:    clamp(0.95rem, 0.92rem + 0.15vw, 1.05rem);
  --fs-lead:    clamp(1.05rem, 0.95rem + 0.4vw, 1.25rem);
  --fs-h3:      clamp(1.3rem, 1.1rem + 0.7vw, 1.75rem);
  --fs-h2:      clamp(1.85rem, 1.3rem + 2.3vw, 3.4rem);
  --fs-h1:      clamp(2.4rem, 1.6rem + 3.8vw, 5rem);
  --fs-mega:    clamp(3.5rem, 2rem + 7vw, 8rem);

  /* Layout */
  --container:  72rem;
  --gutter:     clamp(1rem, 4vw, 2.5rem);
  --section-y:  clamp(4rem, 3rem + 4vw, 7rem);

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

::selection { background: var(--yellow); color: var(--black); }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem var(--gutter);
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--display);
  letter-spacing: 0.02em;
}
.topbar__brand-img {
  display: block;
  height: 28px;
  width: auto;
  object-fit: contain;
}
@media (max-width: 640px) {
  .topbar__brand-img { height: 22px; }
}
.topbar__brand-mark {
  color: var(--yellow);
  font-size: 1.1rem;
}
.topbar__brand-name {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
}
.topbar__status {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--ink-dim);
}
.topbar__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 8px var(--yellow);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.85); }
}
.topbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  border: 2px solid var(--black);
  box-shadow: 3px 3px 0 var(--yellow-soft);
  transition: transform .15s var(--ease), box-shadow .15s var(--ease);
}
.topbar__cta:hover {
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 var(--yellow-soft);
}
.topbar__cta:active {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 var(--yellow-soft);
}

@media (max-width: 640px) {
  .topbar__status { display: none; }
  .topbar { grid-template-columns: auto 1fr; }
  .topbar__cta { justify-self: end; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.5rem;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 2px solid var(--black);
  transition: transform .15s var(--ease), box-shadow .15s var(--ease), background .15s var(--ease);
  text-align: center;
  white-space: nowrap;
}
.btn--lg { padding: 1.1rem 1.85rem; font-size: 1rem; }
.btn--xl { padding: 1.35rem 2.25rem; font-size: 1.1rem; }

.btn--primary {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
  box-shadow: 5px 5px 0 rgba(255,255,255,0.12);
  position: relative;
}
.btn--primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 rgba(255,255,255,0.18);
  background: #FFD42C;
}
.btn--primary:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 rgba(255,255,255,0.12);
}

/* Idle pulse animation — llama la atención sin saturar */
@keyframes btn-glow {
  0%, 100% { box-shadow: 5px 5px 0 rgba(255,255,255,0.12), 0 0 0 0 rgba(246,198,16,0.55); }
  50%      { box-shadow: 5px 5px 0 rgba(255,255,255,0.12), 0 0 0 14px rgba(246,198,16,0); }
}
@keyframes btn-glow-dark {
  0%, 100% { box-shadow: 5px 5px 0 var(--white), 0 0 0 0 rgba(0,0,0,0.55); }
  50%      { box-shadow: 5px 5px 0 var(--white), 0 0 0 14px rgba(0,0,0,0); }
}
@keyframes btn-nudge {
  0%, 100% { transform: translate(0,0); }
  50%      { transform: translate(-1px,-1px); }
}
.btn--pulse {
  animation: btn-glow 2.4s ease-out infinite, btn-nudge 4s ease-in-out infinite;
}
.btn--pulse.btn--dark {
  animation: btn-glow-dark 2.4s ease-out infinite, btn-nudge 4s ease-in-out infinite;
}
.btn--pulse:hover { animation: none; }

@keyframes pulse-soft {
  0%, 100% { box-shadow: 3px 3px 0 var(--yellow-soft); }
  50%      { box-shadow: 3px 3px 0 var(--yellow-soft), 0 0 0 8px rgba(246,198,16,0.18); }
}
.btn--pulse-soft { animation: pulse-soft 2.6s ease-out infinite; }
.btn--pulse-soft:hover { animation: none; }

/* Inline CTA helper */
.section__cta-inline {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
.section__cta-inline--start { justify-content: flex-start; margin-top: 2rem; }
@media (max-width: 820px) { .section__cta-inline--start { justify-content: stretch; } .section__cta-inline--start .btn { width: 100%; } }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--ghost:hover {
  background: var(--white);
  color: var(--black);
}

.btn--dark {
  background: var(--black);
  color: var(--yellow);
  border-color: var(--black);
  box-shadow: 5px 5px 0 var(--white);
}
.btn--dark:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--white);
}
.btn--dark:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--white);
}

.btn--outline-dark {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn--outline-dark:hover { background: var(--black); color: var(--yellow); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 1.5rem var(--gutter) 3rem;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(246,198,16,0.08), transparent 60%),
    var(--black);
}
.hero__inner {
  max-width: var(--container);
  margin-inline: auto;
}
.hero__eyebrow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: var(--fs-eyebrow);
  color: var(--gray);
  letter-spacing: 0.18em;
  margin-bottom: 1rem;
}
.hero__eyebrow span:first-child { color: var(--yellow); }

/* Video frame */
.hero__video-wrap { margin: 0 auto 1.5rem; max-width: 60rem; }
.hero__video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--surface-2);
  overflow: hidden;
  border: 2px solid var(--yellow);
  box-shadow:
    0 0 0 1px var(--black),
    0 0 0 6px var(--yellow),
    12px 12px 0 var(--white);
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__video-frame::after {
  /* Scanlines sutiles */
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.02) 0,
    rgba(255,255,255,0.02) 1px,
    transparent 1px,
    transparent 3px
  );
  pointer-events: none;
  mix-blend-mode: overlay;
}
.hero__on-air {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.7rem;
  background: var(--black);
  color: var(--yellow);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  border: 1px solid var(--yellow);
}
.hero__on-air-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #FF3B30;
  box-shadow: 0 0 6px #FF3B30;
  animation: pulse 1.4s infinite;
}
.hero__unmute {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.3rem;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 2px solid var(--black);
  box-shadow: 5px 5px 0 var(--black);
  transition: transform .15s var(--ease), opacity .25s var(--ease);
  animation: btn-glow 2.4s ease-out infinite;
}
.hero__unmute:hover { transform: translate(calc(-50% - 1px), calc(-50% - 1px)); }
.hero__unmute[hidden] { display: none; }

.hero__title {
  font-family: var(--display);
  font-size: var(--fs-h1);
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-align: center;
  text-transform: uppercase;
  margin: 0.5rem auto 1rem;
  max-width: 28ch;
}
.hero__title em {
  font-style: normal;
  color: var(--yellow);
  display: inline-block;
  position: relative;
}
.hero__title em::after {
  /* subraya amarillo desplazado */
  content: '';
  position: absolute;
  left: -0.1em;
  right: -0.1em;
  bottom: 0.05em;
  height: 0.18em;
  background: var(--yellow);
  z-index: -1;
  opacity: 0.25;
}
.hero__sub {
  text-align: center;
  font-size: var(--fs-lead);
  color: var(--ink-dim);
  max-width: 42ch;
  margin: 0 auto 2rem;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 0.8rem;
}
.hero__microcopy {
  text-align: center;
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--ink-faint);
  letter-spacing: 0.08em;
}

/* ============================================================
   TAPE STRIP (cinta amarilla scroll infinito)
   ============================================================ */
.tape {
  background: var(--yellow);
  color: var(--black);
  border-block: 2px solid var(--black);
  overflow: hidden;
  padding: 0.85rem 0;
}
.tape--alt {
  background: var(--white);
  color: var(--black);
  border-color: var(--black);
}
.tape__track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  white-space: nowrap;
  font-family: var(--display);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: tape-scroll 28s linear infinite;
  will-change: transform;
}
.tape__track > span {
  flex: 0 0 auto;
  padding-right: 2rem;
}
@keyframes tape-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* ============================================================
   SECTION BASICS
   ============================================================ */
.section {
  padding: var(--section-y) 0;
  position: relative;
}
.section__title {
  font-family: var(--display);
  font-size: var(--fs-h2);
  line-height: 1.02;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  max-width: 22ch;
}
.section__title em {
  font-style: normal;
  color: var(--yellow);
}
.section__title--on-yellow { color: var(--black); }
.section__title--on-yellow em { color: var(--black); text-decoration: underline; text-decoration-thickness: 4px; text-underline-offset: 0.1em; }

.section__lead {
  font-size: var(--fs-lead);
  color: var(--ink-dim);
  max-width: 50ch;
  margin-bottom: 2rem;
}
.section__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.track-num {
  font-family: var(--mono);
  font-size: var(--fs-mega);
  font-weight: 700;
  line-height: 0.85;
  color: var(--yellow);
  letter-spacing: -0.05em;
  margin-bottom: 0.5rem;
}
.track-num--on-yellow { color: var(--black); }

/* ============================================================
   01. QUIÉN
   ============================================================ */
.who {
  background: var(--black);
  border-top: 2px solid var(--black);
}
.who__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.who__copy p { margin-bottom: 1rem; color: var(--ink-dim); }
.who__copy em { color: var(--white); font-style: italic; font-weight: 500; }
.who__copy strong { color: var(--white); font-weight: 700; }

.who__stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.who__stats li {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.who__stat-num {
  font-family: var(--display);
  font-size: clamp(1.3rem, 1rem + 1.2vw, 1.9rem);
  color: var(--yellow);
  line-height: 1;
}
.who__stat-lbl {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--gray);
}

.who__photo {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 2px solid var(--yellow);
  box-shadow: 14px 14px 0 var(--surface-3);
}
.who__photo picture { display: block; width: 100%; height: 100%; }
.who__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.who__photo figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.6rem 0.85rem;
  background: var(--black);
  color: var(--yellow);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  border-top: 1px solid var(--yellow);
}

@media (max-width: 820px) {
  .who__grid { grid-template-columns: 1fr; }
  .who__photo { aspect-ratio: 4 / 5; max-width: 24rem; }
  .who__stats { grid-template-columns: 1fr; gap: 0.85rem; }
}

/* ============================================================
   02. VILLANO (sobre amarillo, 2-col con foto)
   ============================================================ */
.villain {
  background: var(--yellow);
  color: var(--black);
}
.villain__grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.villain__photo {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 2px solid var(--black);
  box-shadow: -14px 14px 0 var(--black);
}
.villain__photo picture { display: block; width: 100%; height: 100%; }
.villain__photo img { width: 100%; height: 100%; object-fit: cover; }
.villain__photo figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.6rem 0.85rem;
  background: var(--black);
  color: var(--yellow);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}
.villain__copy { max-width: 36rem; }
.villain__copy p:not(.track-num) {
  font-size: var(--fs-lead);
  line-height: 1.55;
  margin-bottom: 1.4rem;
}
.villain__copy strong { font-weight: 700; }
.villain__quote {
  font-family: var(--display);
  font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.4rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  padding: 1.5rem 0;
  margin: 2rem 0;
  border-block: 2px solid var(--black);
}

@media (max-width: 820px) {
  .villain__grid { grid-template-columns: 1fr; }
  .villain__photo { aspect-ratio: 4 / 5; max-width: 22rem; margin-inline: auto; box-shadow: -8px 8px 0 var(--black); }
}

/* ============================================================
   03. PROCESO
   ============================================================ */
.process { background: var(--black); }
.process__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.process__step {
  position: relative;
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.6rem;
  background: var(--surface-2);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color .2s var(--ease), transform .2s var(--ease), background .2s var(--ease);
}
.process__step::before {
  /* Borde izquierdo amarillo que crece en hover */
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: var(--yellow);
  transition: width .25s var(--ease);
}
.process__step:hover {
  border-color: var(--yellow);
  transform: translateX(6px);
  background: #0F0F0F;
}
.process__step:hover::before { width: 6px; }
.process__num {
  font-family: var(--display);
  font-size: clamp(2.8rem, 1.5rem + 3.5vw, 4.6rem);
  color: var(--yellow);
  line-height: 0.9;
  letter-spacing: -0.04em;
  position: relative;
  text-align: center;
  padding: 0.4rem 0.6rem;
  border: 2px solid var(--yellow);
  background: rgba(246,198,16,0.04);
  transition: background .2s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
  animation: num-breathe 3.6s ease-in-out infinite;
}
@keyframes num-breathe {
  0%, 100% { box-shadow: inset 0 0 0 0 rgba(246,198,16,0); }
  50%      { box-shadow: inset 0 0 30px 0 rgba(246,198,16,0.18); }
}
.process__step:hover .process__num {
  background: var(--yellow);
  color: var(--black);
  transform: rotate(-2deg) scale(1.05);
  box-shadow: 6px 6px 0 var(--black);
}
.process__step h3 {
  font-family: var(--display);
  font-size: var(--fs-h3);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}
.process__step p { color: var(--ink-dim); }

@media (max-width: 640px) {
  .process__step {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1.25rem;
  }
}

/* ============================================================
   04. STUDIO
   ============================================================ */
.studio { background: var(--surface-2); border-block: 1px solid var(--line); }
.studio__meta {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--gray);
  letter-spacing: 0.12em;
}
/* Grid uniforme 5 columnas (20 fotos = 5×4 perfecto) */
.studio__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.65rem;
}
.studio__cell {
  position: relative;
  overflow: hidden;
  background: var(--surface-3);
  cursor: zoom-in;
  border: 2px solid var(--line);
  aspect-ratio: 1 / 1;
  transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.studio__cell::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 0 solid var(--yellow);
  transition: border-width .15s var(--ease);
  pointer-events: none;
}
.studio__cell:hover {
  border-color: var(--yellow);
  transform: translateY(-3px);
  z-index: 2;
  box-shadow: 0 8px 24px rgba(246,198,16,0.18);
}
.studio__cell:hover::after { border-width: 2px; }
.studio__cell picture { display: block; width: 100%; height: 100%; }
.studio__cell img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform .4s var(--ease), filter .3s var(--ease);
  filter: saturate(0.85);
}
.studio__cell:hover img { transform: scale(1.06); filter: saturate(1); }

@media (max-width: 1024px) {
  .studio__grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 640px) {
  .studio__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   05. TESTIMONIOS
   ============================================================ */
.testimonials { background: var(--black); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-top: 1.5rem;
}
@media (max-width: 900px) { .testimonials__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .testimonials__grid { grid-template-columns: 1fr; } }

.testimonial {
  display: flex;
  flex-direction: column;
  background: var(--surface-3);
  border: 2px solid var(--line);
  overflow: hidden;
  transition: border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.testimonial:hover {
  border-color: var(--yellow);
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(246,198,16,0.14);
}
.testimonial__head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.8rem;
  background: var(--black);
  border-bottom: 1px solid var(--line);
}
.testimonial__num {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--black);
  background: var(--yellow);
  padding: 0.15rem 0.45rem;
  border: 1px solid var(--yellow);
}
.testimonial__name {
  font-family: var(--display);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.testimonial video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
  background: var(--black);
}
.testimonial.is-hidden { display: none; }
.testimonials__more {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}
.testimonials__more.is-hidden { display: none; }

/* ============================================================
   06. TRABAJOS
   ============================================================ */
.works { background: var(--surface-2); border-block: 1px solid var(--line); }
.works__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (min-width: 1024px) { .works__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .works__grid { grid-template-columns: 1fr; } }
.work-card {
  position: relative;
  background: var(--black);
  border: 2px solid var(--line);
  padding: 0.75rem;
  transition: border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.work-card:hover {
  border-color: var(--yellow);
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(246,198,16,0.18);
}
.work-card iframe {
  width: 100%;
  height: 152px;
  display: block;
  border: 0;
  border-radius: 8px;
  background: #181818;
}

/* ============================================================
   07. POSICIONAMIENTO (sobre amarillo, 2-col con foto)
   ============================================================ */
.positioning {
  background: var(--yellow);
  color: var(--black);
}
.positioning__grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.positioning__copy { max-width: 36rem; }
.positioning__photo {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 2px solid var(--black);
  box-shadow: 14px 14px 0 var(--black);
}
.positioning__photo picture { display: block; width: 100%; height: 100%; }
.positioning__photo img { width: 100%; height: 100%; object-fit: cover; }
.positioning__photo figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.6rem 0.85rem;
  background: var(--black);
  color: var(--yellow);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}
.positioning__body { font-size: var(--fs-lead); }
.positioning__body p { margin-bottom: 1.2rem; }
.positioning__body strong { font-weight: 700; }
.positioning__check {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.5rem;
  font-family: var(--mono);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.positioning__check li {
  display: inline-flex;
  align-items: baseline;
  gap: 0.7rem;
}
.positioning__check span {
  background: var(--black);
  color: var(--yellow);
  width: 1.4rem; height: 1.4rem;
  display: inline-grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 700;
}
.positioning__copy .btn { margin-top: 2rem; }

@media (max-width: 820px) {
  .positioning__grid { grid-template-columns: 1fr; }
  .positioning__photo { aspect-ratio: 4 / 5; max-width: 22rem; margin-inline: auto; order: -1; box-shadow: 8px 8px 0 var(--black); }
}

/* ============================================================
   08. OUTCOME
   ============================================================ */
.outcome { background: var(--black); }
.outcome__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}
.outcome__card {
  padding: 1.6rem 1.4rem;
  background: var(--surface-2);
  border: 1px solid var(--line);
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.outcome__card:hover {
  border-color: var(--yellow);
  transform: translateY(-3px);
}
.outcome__icon {
  display: inline-grid;
  place-items: center;
  width: 3rem; height: 3rem;
  background: var(--yellow);
  color: var(--black);
  margin-bottom: 1rem;
}
.outcome__card h3 {
  font-family: var(--display);
  font-size: var(--fs-h3);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 0.5rem;
}
.outcome__card p { color: var(--ink-dim); }

.outcome__quote {
  font-family: var(--display);
  font-size: clamp(1.5rem, 1rem + 2vw, 2.4rem);
  line-height: 1.05;
  text-transform: uppercase;
  text-align: center;
  margin: 3rem auto 0;
  max-width: 38rem;
  padding: 2rem;
  border: 2px solid var(--yellow);
  position: relative;
}
.outcome__quote cite {
  display: block;
  font-family: var(--mono);
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--yellow);
  margin-top: 1.2rem;
  text-transform: uppercase;
}

/* ============================================================
   09. CTA FINAL
   ============================================================ */
.cta-final {
  background: var(--yellow);
  color: var(--black);
  text-align: center;
  border-block: 2px solid var(--black);
}
.cta-final__title {
  font-family: var(--display);
  font-size: clamp(2.5rem, 1.5rem + 5vw, 6rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 0.5rem auto 1rem;
}
.cta-final__sub {
  font-size: var(--fs-lead);
  max-width: 36ch;
  margin: 0 auto 2.5rem;
  font-weight: 500;
}
.cta-final__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.cta-final__micro {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--line);
}
.footer__inner {
  display: grid;
  gap: 2rem;
  text-align: center;
}
.footer__brand p:first-of-type {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 0.15em;
}
.footer__logo {
  display: inline-block;
  font-family: var(--display);
  font-size: 2.5rem;
  color: var(--yellow);
  line-height: 1;
}
.footer__logo-img {
  display: block;
  height: 110px;
  width: auto;
  margin: 0 auto 0.75rem;
  object-fit: contain;
}
.footer__loc {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--gray);
  letter-spacing: 0.1em;
  margin-top: 0.4rem;
}
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  font-size: 0.85rem;
  color: var(--ink-dim);
}
.footer__legal a:hover { color: var(--yellow); }
.footer__social a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink-dim);
  font-family: var(--mono);
  font-size: 0.85rem;
}
.footer__social a:hover { color: var(--yellow); }
.footer__copy {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--ink-faint);
  letter-spacing: 0.05em;
}

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translate(-50%, calc(100% + 1.5rem));
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.4rem;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid var(--black);
  box-shadow: 4px 4px 0 var(--black);
  transition: transform .35s var(--ease), opacity .25s var(--ease);
  opacity: 0;
  pointer-events: none;
}
.sticky-cta.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}
@media (min-width: 821px) {
  .sticky-cta { display: none; }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: var(--gutter);
}
.lightbox[hidden] { display: none; }
.lightbox__close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 2.6rem; height: 2.6rem;
  background: var(--yellow);
  color: var(--black);
  font-size: 1.6rem;
  font-weight: 700;
  border: 2px solid var(--black);
  display: grid;
  place-items: center;
}
.lightbox__stage {
  max-width: min(90vw, 56rem);
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__stage img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border: 2px solid var(--yellow);
}
.lightbox__stage iframe {
  width: min(90vw, 38rem);
  height: 152px;
  border: 0;
  border-radius: 12px;
}
.lightbox__caption {
  position: absolute;
  bottom: 1.5rem;
  left: 0; right: 0;
  text-align: center;
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--yellow);
  letter-spacing: 0.1em;
}

/* ============================================================
   MOBILE HERO TIGHTENING
   ============================================================ */
@media (max-width: 640px) {
  .hero { padding-top: 1rem; padding-bottom: 2rem; }
  .hero__video-frame { box-shadow: 0 0 0 1px var(--black), 0 0 0 4px var(--yellow), 8px 8px 0 var(--white); }
  .hero__unmute span { display: none; }
  .hero__unmute { right: auto; left: 0.5rem; bottom: 0.5rem; padding: 0.6rem; border-radius: 50%; border: 1px solid var(--yellow); width: 2.4rem; height: 2.4rem; inset: auto; position: absolute; }
  .hero__title { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { width: 100%; }
  .section__title { max-width: 100%; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .tape__track { animation: none; }
  .topbar__dot, .hero__on-air-dot { animation: none; }
}
