:root {
  color-scheme: dark;
  --ink: #f8f3f9;
  --muted: #bdb5d2;
  --hot: #f12930;
  --pink: #e72bd5;
  --cyan: #46ecff;
  --gold: #ffd760;
  --panel: rgba(20, 17, 54, 0.53);
}
* {
  box-sizing: border-box;
}
.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;
}
html {
  min-height: 100%;
  overflow-x: clip;
  background: #07081a;
}
body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  font-family: Outfit, Arial, sans-serif;
  background: radial-gradient(
      ellipse 60% 65% at 83% 35%,
      rgba(130, 29, 116, 0.27),
      transparent 66%
    ),
    radial-gradient(
      ellipse 46% 49% at 21% 53%,
      rgba(25, 55, 171, 0.27),
      transparent 74%
    ),
    linear-gradient(120deg, #050614 0%, #0c0a25 51%, #080919 100%);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
      90deg,
      transparent 0 42px,
      rgba(160, 114, 255, 0.035) 42px 43px
    ),
    linear-gradient(180deg, transparent 75%, rgba(11, 8, 23, 0.92));
}
.noise {
  position: fixed;
  z-index: 6;
  inset: 0;
  opacity: 0.055;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
.city {
  position: fixed;
  display: flex;
  align-items: end;
  gap: clamp(8px, 1.6vw, 28px);
  width: 100%;
  height: 28vh;
  min-height: 150px;
  bottom: 0;
  padding: 0 3vw;
  opacity: 0.26;
  filter: blur(1px);
  overflow: hidden;
  pointer-events: none;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 12%,
    #000 90%,
    transparent
  );
}
.city span {
  flex: 1;
  min-width: 21px;
  background: repeating-linear-gradient(
      90deg,
      transparent 0 5px,
      rgba(120, 192, 255, 0.45) 5px 7px,
      transparent 7px 16px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0 8px,
      rgba(180, 228, 255, 0.3) 8px 10px,
      transparent 10px 21px
    ),
    linear-gradient(180deg, rgba(53, 50, 105, 0.28), #020310);
  box-shadow: 0 0 40px rgba(69, 174, 255, 0.24);
}
.city span:nth-child(1) {
  height: 30%;
}
.city span:nth-child(2) {
  height: 58%;
}
.city span:nth-child(3) {
  height: 41%;
}
.city span:nth-child(4) {
  height: 82%;
}
.city span:nth-child(5) {
  height: 65%;
}
.city span:nth-child(6) {
  height: 46%;
}
.city span:nth-child(7) {
  height: 93%;
}
.city span:nth-child(8) {
  height: 52%;
}
.city span:nth-child(9) {
  height: 72%;
}
.city span:nth-child(10) {
  height: 38%;
}
.city span:nth-child(11) {
  height: 59%;
}
.city span:nth-child(12) {
  height: 31%;
}
main {
  position: relative;
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
}
.topbar {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  padding: 30px 0;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
}
.brand-mini {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
}
.mini-crown {
  color: var(--gold);
  font-size: 18px;
  line-height: 0;
  transform: translateY(-1px);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(169, 151, 230, 0.24);
  border-radius: 5px;
  background: rgba(17, 15, 48, 0.48);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
}
.site-nav a {
  padding: 7px 10px;
  color: #a59dbb;
  border-radius: 3px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
}
.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
  background: rgba(81, 229, 247, 0.13);
}
.site-nav a.is-active {
  color: #081224;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(70, 236, 255, 0.25);
}
.site-nav a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
.live-pill {
  justify-self: end;
  color: #d5cce1;
}
.live-pill i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--hot);
  box-shadow: 0 0 0 0 rgba(241, 41, 48, 0.55);
  margin-right: 8px;
  animation: live 1.4s infinite;
}
.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(350px, 0.97fr) minmax(355px, 1fr);
  align-items: center;
  gap: clamp(20px, 5vw, 105px);
  width: min(1240px, calc(100% - 80px));
  margin: auto;
  padding: 18px 20px 70px;
}
.atmosphere {
  position: absolute;
  z-index: -1;
  inset: -23% -18%;
  overflow: hidden;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}
.orb-one {
  width: 650px;
  height: 650px;
  left: -6%;
  top: 1%;
  border: 1px solid rgba(125, 111, 255, 0.16);
  box-shadow:
    inset 0 0 90px rgba(60, 166, 255, 0.08),
    0 0 100px rgba(107, 39, 180, 0.12);
  animation: float 11s ease-in-out infinite;
}
.orb-two {
  width: 330px;
  height: 330px;
  left: 27%;
  top: 45%;
  background: rgba(251, 39, 128, 0.06);
  filter: blur(38px);
}
.orb-three {
  width: 280px;
  height: 280px;
  right: 0;
  top: 6%;
  background: rgba(158, 43, 223, 0.15);
  filter: blur(55px);
  animation: float 9s -3s ease-in-out infinite reverse;
}
.spark {
  position: absolute;
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px 3px rgba(74, 235, 255, 0.75);
  animation: blink 2.5s infinite alternate;
}
.spark-one {
  left: 30%;
  top: 17%;
}
.spark-two {
  left: 68%;
  top: 13%;
  background: #f262e9;
  box-shadow: 0 0 12px 3px rgba(242, 98, 233, 0.75);
  animation-delay: -0.9s;
}
.spark-three {
  left: 78%;
  top: 66%;
  animation-delay: -1.6s;
}
.spark-four {
  left: 5%;
  top: 70%;
}
.spark-five {
  left: 48%;
  top: 4%;
  background: var(--gold);
  box-shadow: 0 0 12px 3px rgba(255, 215, 96, 0.75);
  animation-delay: -0.6s;
}
.identity-wrap {
  position: relative;
  width: min(100%, 570px);
  justify-self: center;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.logo-halo {
  position: absolute;
  width: 78%;
  height: 78%;
  border-radius: 50%;
  background: #b625b2;
  filter: blur(55px);
  opacity: 0.33;
}
.jefa-logo {
  position: relative;
  width: 100%;
  overflow: visible;
  filter: drop-shadow(0 29px 30px rgba(0, 0, 0, 0.55));
  animation: logo-breathe 4.8s ease-in-out infinite;
}
.radio-echo {
  position: absolute;
  width: 54%;
  height: 54%;
  border-radius: 50%;
  border: 1px solid rgba(93, 241, 255, 0.35);
  opacity: 0;
  animation: echo 3.6s ease-out infinite;
}
.echo-b {
  animation-delay: 1.8s;
}
.copy {
  max-width: 530px;
  padding-bottom: 6px;
}
.eyebrow {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0 0 17px;
  color: var(--cyan);
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
}
.eyebrow span {
  width: 37px;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 10px 1px var(--cyan);
}
h1 {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(65px, 6.4vw, 105px);
  line-height: 0.82;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  font-weight: 900;
  text-shadow:
    0 5px 0 #1a0f35,
    0 10px 40px rgba(198, 41, 179, 0.2);
}
h1 em {
  color: transparent;
  font-style: italic;
  -webkit-text-stroke: 1.5px #ff4ce8;
  text-shadow: 0 0 26px rgba(252, 51, 219, 0.42);
}
.intro {
  max-width: 440px;
  margin: 28px 0 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}
.intro strong {
  color: #fff0ba;
  font-weight: 600;
}
.tuner {
  width: min(100%, 420px);
  padding: 13px 17px 10px;
  background: linear-gradient(
    125deg,
    rgba(63, 52, 105, 0.57),
    rgba(18, 17, 47, 0.6)
  );
  border: 1px solid rgba(161, 145, 225, 0.25);
  box-shadow:
    0 10px 35px rgba(0, 0, 0, 0.16),
    inset 0 1px rgba(255, 255, 255, 0.08);
  border-radius: 9px;
  backdrop-filter: blur(12px);
}
.tuner-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
  font-family: "DM Mono", monospace;
  letter-spacing: 0.12em;
  font-size: 9px;
  color: #bab4d8;
}
.tuner-label b {
  color: var(--cyan);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 29px;
  line-height: 0.8;
  letter-spacing: 0.02em;
}
.tuner input {
  --fill: 77%;
  display: block;
  width: 100%;
  appearance: none;
  height: 5px;
  margin: 0;
  border-radius: 5px;
  cursor: ew-resize;
  background: linear-gradient(
    90deg,
    var(--cyan) 0 var(--fill),
    #544a7b var(--fill) 100%
  );
  box-shadow: 0 0 9px rgba(72, 232, 255, 0.42);
}
.tuner input::-webkit-slider-thumb {
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid #eaffff;
  background: var(--hot);
  box-shadow:
    0 0 0 4px rgba(241, 41, 48, 0.16),
    0 0 12px var(--hot);
}
.tuner input::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 3px solid #eaffff;
  background: var(--hot);
}
.tuner-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 7px;
  color: #a39cba;
  font:
    9px "DM Mono",
    monospace;
}
.signal-button {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 14px 17px;
  color: #160b1e;
  border: 0;
  border-radius: 5px;
  font:
    800 13px "DM Mono",
    monospace;
  letter-spacing: 0.08em;
  background: linear-gradient(100deg, #ffdc5c, #ff9b49);
  box-shadow: 0 8px 24px rgba(255, 142, 60, 0.23);
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.signal-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 13px 30px rgba(255, 142, 60, 0.38);
}
.signal-button:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}
.button-icon {
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  color: #fff;
  font-size: 9px;
  background: #bb2430;
}
.button-wave {
  margin-left: 3px;
  color: #bb2430;
  letter-spacing: -2px;
}
.microcopy {
  min-height: 16px;
  margin: 12px 0 0;
  color: #9189aa;
  font:
    10px "DM Mono",
    monospace;
  letter-spacing: 0.03em;
}
.puma-feature {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(280px, 0.83fr) minmax(310px, 1fr);
  align-items: center;
  gap: clamp(30px, 7vw, 104px);
  width: min(1120px, calc(100% - 80px));
  margin: 0 auto;
  padding: 45px 20px 58px;
}
.puma-feature::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 13% -9% 0;
  border: 1px solid rgba(81, 229, 247, 0.15);
  background: linear-gradient(
    116deg,
    rgba(20, 23, 62, 0.74),
    rgba(79, 13, 85, 0.22)
  );
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.16);
  transform: skewY(-1.2deg);
}
.puma-photo-frame {
  position: relative;
  justify-self: center;
  width: min(100%, 386px);
  overflow: hidden;
  border: 1px solid rgba(255, 215, 96, 0.6);
  background: #0c0d21;
  box-shadow:
    13px 13px 0 rgba(39, 218, 244, 0.13),
    -1px -1px 0 rgba(255, 255, 255, 0.12),
    0 24px 42px rgba(0, 0, 0, 0.42);
}
.puma-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 55%,
    rgba(4, 5, 20, 0.66) 100%
  );
}
.puma-photo-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.07) contrast(1.03);
  transition: transform 0.6s ease;
}
.puma-photo-frame:hover img {
  transform: scale(1.035);
}
.puma-photo-label {
  position: absolute;
  z-index: 1;
  top: 12px;
  left: 12px;
  padding: 7px 9px;
  color: #111127;
  background: var(--gold);
  font:
    700 8px "DM Mono",
    monospace;
  letter-spacing: 0.09em;
}
.puma-copy {
  max-width: 560px;
}
.puma-copy .eyebrow {
  margin-bottom: 13px;
}
.puma-presenta {
  margin: 0 0 5px;
  color: #a39ab7;
  font:
    10px "DM Mono",
    monospace;
  letter-spacing: 0.34em;
}
.puma-copy h1,
.puma-copy h2 {
  margin: 0;
  color: #fff;
  font:
    900 clamp(60px, 7vw, 96px) / 0.77 "Barlow Condensed",
    Impact,
    sans-serif;
  letter-spacing: -0.052em;
  text-transform: uppercase;
  text-shadow:
    0 5px 0 #1a0f35,
    0 16px 34px rgba(234, 43, 210, 0.15);
}
.puma-copy h1 em,
.puma-copy h2 em {
  color: transparent;
  font-style: italic;
  -webkit-text-stroke: 1px var(--gold);
  text-shadow: 0 0 24px rgba(255, 215, 96, 0.3);
}
.puma-description {
  max-width: 490px;
  margin: 25px 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}
.puma-slogan {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin: 0;
  padding: 12px 0 12px 16px;
  border-left: 2px solid var(--hot);
  color: #f6eefb;
  font:
    800 16px "Barlow Condensed",
    sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.puma-slogan strong {
  color: var(--cyan);
  font-weight: 900;
}
.puma-slogan span {
  color: var(--gold);
}
.content-page .puma-feature {
  flex: 1;
  min-height: calc(100vh - 145px);
  padding-top: 30px;
  padding-bottom: 86px;
}
.content-page .bridges-section {
  flex: 1;
  padding-top: 38px;
}
.puma-program-logo {
  display: block;
  width: min(100%, 440px);
  margin: 2px 0 8px -4px;
  border: 1px solid rgba(255, 215, 96, 0.24);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
  filter: drop-shadow(0 8px 13px rgba(0, 0, 0, 0.2));
}
.programming-page {
  --ink: #fbf6ea;
  --muted: #d3c5aa;
  --cyan: #e0a24b;
  --gold: #efb55b;
  --hot: #aa3731;
  --panel: rgba(8, 34, 58, 0.64);
  background: radial-gradient(
      ellipse 60% 60% at 84% 28%,
      rgba(184, 111, 36, 0.17),
      transparent 66%
    ),
    radial-gradient(
      ellipse 46% 58% at 17% 62%,
      rgba(19, 93, 139, 0.28),
      transparent 72%
    ),
    linear-gradient(120deg, #041525 0%, #082641 52%, #051525 100%);
}
.programming-page::before {
  background: repeating-linear-gradient(
      90deg,
      transparent 0 42px,
      rgba(236, 178, 82, 0.045) 42px 43px
    ),
    linear-gradient(180deg, transparent 75%, rgba(3, 17, 31, 0.9));
}
.programming-page .city span {
  background: repeating-linear-gradient(
      90deg,
      transparent 0 5px,
      rgba(228, 169, 70, 0.35) 5px 7px,
      transparent 7px 16px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0 8px,
      rgba(189, 223, 236, 0.24) 8px 10px,
      transparent 10px 21px
    ),
    linear-gradient(180deg, rgba(24, 81, 116, 0.35), #031321);
  box-shadow: 0 0 40px rgba(56, 152, 204, 0.22);
}
.programming-page .site-nav {
  border-color: rgba(229, 173, 80, 0.3);
  background: rgba(5, 28, 48, 0.55);
}
.programming-page .site-nav a {
  color: #cdbb9f;
}
.programming-page .site-nav a:hover,
.programming-page .site-nav a:focus-visible {
  background: rgba(234, 180, 84, 0.15);
}
.programming-page .site-nav a.is-active {
  color: #06192b;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(224, 162, 75, 0.3);
}
.programming-page.content-page .puma-feature {
  display: grid;
  grid-template-columns: minmax(290px, 0.78fr) minmax(370px, 1fr);
  gap: clamp(34px, 4.5vw, 72px);
  width: min(1180px, calc(100% - 80px));
  min-height: 0;
  margin: 26px auto 54px;
  padding: clamp(26px, 3.4vw, 52px);
  border: 1px solid rgba(239, 181, 91, 0.27);
  background: linear-gradient(
    118deg,
    rgba(4, 24, 42, 0.96),
    rgba(9, 44, 70, 0.84) 52%,
    rgba(28, 40, 61, 0.86)
  );
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.28),
    inset 0 1px rgba(255, 238, 194, 0.08);
}
.programming-page .puma-feature::before {
  display: none;
}
.programming-page .puma-photo-frame {
  width: min(100%, 395px);
  border-color: rgba(239, 181, 91, 0.68);
  box-shadow:
    12px 12px 0 rgba(47, 171, 201, 0.18),
    0 24px 42px rgba(0, 0, 0, 0.36);
}
.programming-page .puma-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 500px;
}
.programming-page .puma-copy .eyebrow {
  margin: 0 0 12px;
  color: #f2ba62;
}
.programming-page .puma-copy .eyebrow span {
  background: #f2ba62;
  box-shadow: 0 0 10px rgba(242, 186, 98, 0.6);
}
.programming-page .puma-presenta {
  margin-bottom: 12px;
  color: #d7b06f;
}
.programming-page .puma-program-logo {
  width: min(100%, 480px);
  margin: 0;
  border: 1px solid rgba(239, 181, 91, 0.38);
  box-shadow:
    0 20px 38px rgba(0, 0, 0, 0.32),
    0 0 34px rgba(210, 139, 56, 0.1);
}
.programming-page .puma-description {
  max-width: 470px;
  margin: 21px 0 0;
  padding: 2px 0 2px 17px;
  color: #e1d4ba;
  border-left: 2px solid #b93932;
  font-size: 16px;
  line-height: 1.64;
}
.programming-page footer {
  border-color: rgba(229, 173, 80, 0.19);
  color: #c8b998;
}
.programming-page {
  --ink: #f8f3f9;
  --muted: #bdb5d2;
  --hot: #f12930;
  --pink: #e72bd5;
  --cyan: #46ecff;
  --gold: #ffd760;
  --panel: rgba(20, 17, 54, 0.53);
  background: radial-gradient(
      ellipse 60% 65% at 83% 35%,
      rgba(130, 29, 116, 0.27),
      transparent 66%
    ),
    radial-gradient(
      ellipse 46% 49% at 21% 53%,
      rgba(25, 55, 171, 0.27),
      transparent 74%
    ),
    linear-gradient(120deg, #050614 0%, #0c0a25 51%, #080919 100%);
}
.programming-page::before {
  background: repeating-linear-gradient(
      90deg,
      transparent 0 42px,
      rgba(160, 114, 255, 0.035) 42px 43px
    ),
    linear-gradient(180deg, transparent 75%, rgba(11, 8, 23, 0.92));
}
.programming-page .city span {
  background: repeating-linear-gradient(
      90deg,
      transparent 0 5px,
      rgba(120, 192, 255, 0.45) 5px 7px,
      transparent 7px 16px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0 8px,
      rgba(180, 228, 255, 0.3) 8px 10px,
      transparent 10px 21px
    ),
    linear-gradient(180deg, rgba(53, 50, 105, 0.28), #020310);
  box-shadow: 0 0 40px rgba(69, 174, 255, 0.24);
}
.programming-page .site-nav {
  border-color: rgba(169, 151, 230, 0.24);
  background: rgba(17, 15, 48, 0.48);
}
.programming-page .site-nav a {
  color: #a59dbb;
}
.programming-page .site-nav a:hover,
.programming-page .site-nav a:focus-visible {
  background: rgba(81, 229, 247, 0.13);
}
.programming-page .site-nav a.is-active {
  color: #081224;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(70, 236, 255, 0.25);
}
.programming-page.content-page .puma-feature {
  border-color: rgba(81, 229, 247, 0.15);
  background: linear-gradient(
    116deg,
    rgba(20, 23, 62, 0.74),
    rgba(79, 13, 85, 0.22)
  );
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.24),
    inset 0 1px rgba(255, 255, 255, 0.06);
}
.programming-page .puma-photo-frame {
  border-color: rgba(255, 215, 96, 0.6);
  box-shadow:
    13px 13px 0 rgba(39, 218, 244, 0.13),
    -1px -1px 0 rgba(255, 255, 255, 0.12),
    0 24px 42px rgba(0, 0, 0, 0.42);
}
.programming-page .puma-copy .eyebrow {
  color: var(--cyan);
}
.programming-page .puma-copy .eyebrow span {
  background: var(--cyan);
  box-shadow: 0 0 10px 1px var(--cyan);
}
.programming-page .puma-presenta {
  color: #a39ab7;
}
.programming-page .puma-program-logo {
  border: 0;
  box-shadow: none;
  filter: drop-shadow(0 14px 20px rgba(0, 0, 0, 0.26));
  clip-path: inset(0 0 0 1%);
}
.programming-page .puma-description {
  color: var(--muted);
  border-left-color: var(--hot);
}
.programming-page footer {
  border-color: rgba(169, 151, 230, 0.16);
  color: #837a9c;
}
.events-hero {
  position: relative;
  z-index: 3;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  width: min(1040px, calc(100% - 80px));
  min-height: calc(100vh - 190px);
  margin: 0 auto;
  padding: 34px 20px 82px;
}
.events-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(720px, 85vw);
  height: min(720px, 85vw);
  right: -8%;
  top: 4%;
  border: 1px solid rgba(255, 215, 96, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 100px rgba(217, 54, 211, 0.2),
    inset 0 0 90px rgba(65, 209, 255, 0.06);
}
.events-hero .eyebrow {
  margin-bottom: 22px;
}
.events-hero h1 {
  max-width: 720px;
  font-size: clamp(75px, 10vw, 150px);
}
.events-hero h1 em {
  -webkit-text-stroke-color: var(--gold);
  text-shadow: 0 0 26px rgba(255, 215, 96, 0.4);
}
.events-hero > p:not(.eyebrow) {
  max-width: 510px;
  margin: 30px 0 25px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}
.events-stamp {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  padding: 13px 16px;
  border: 1px solid rgba(70, 236, 255, 0.38);
  background: rgba(17, 49, 80, 0.29);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  color: #c9faff;
  font:
    700 10px "DM Mono",
    monospace;
  letter-spacing: 0.12em;
}
.events-stamp i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hot);
  box-shadow: 0 0 13px var(--hot);
}
.events-stamp strong {
  color: var(--gold);
  font:
    900 21px/0.7 "Barlow Condensed",
    sans-serif;
  letter-spacing: 0.02em;
}
.team-hero {
  position: relative;
  z-index: 3;
  flex: 1;
  width: min(1040px, calc(100% - 80px));
  min-height: calc(100vh - 190px);
  margin: 0 auto;
  padding: 57px 20px 82px;
}
.team-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 5% -4% 8%;
  border: 1px solid rgba(231, 43, 213, 0.16);
  background: linear-gradient(
    115deg,
    rgba(35, 21, 77, 0.35),
    rgba(15, 60, 94, 0.16)
  );
  transform: skewY(-1deg);
}
.team-hero h1 {
  margin: 0;
  font-size: clamp(82px, 10vw, 146px);
}
.team-hero h1 em {
  -webkit-text-stroke-color: var(--cyan);
  text-shadow: 0 0 26px rgba(70, 236, 255, 0.4);
}
.team-hero > p:not(.eyebrow) {
  max-width: 570px;
  margin: 22px 0 34px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 780px;
}
.team-card {
  position: relative;
  min-height: 180px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(169, 151, 230, 0.27);
  background: linear-gradient(
    145deg,
    rgba(36, 27, 78, 0.72),
    rgba(10, 24, 52, 0.58)
  );
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.07);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}
.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(70, 236, 255, 0.85);
  background: linear-gradient(
    145deg,
    rgba(51, 35, 103, 0.9),
    rgba(9, 50, 78, 0.78)
  );
  box-shadow:
    0 18px 37px rgba(0, 0, 0, 0.35),
    0 0 24px rgba(70, 236, 255, 0.2),
    inset 0 1px rgba(255, 255, 255, 0.16);
}
.team-card span {
  display: block;
  margin-bottom: 45px;
  color: var(--cyan);
  font:
    10px "DM Mono",
    monospace;
  letter-spacing: 0.12em;
  transition:
    color 0.28s ease,
    text-shadow 0.28s ease;
}
.team-card strong {
  display: block;
  color: #fff;
  font:
    800 26px/0.85 "Barlow Condensed",
    sans-serif;
  letter-spacing: 0.04em;
  transition:
    color 0.28s ease,
    text-shadow 0.28s ease;
}
.team-card:hover span,
.team-card:hover strong {
  color: #eaffff;
  text-shadow: 0 0 15px rgba(70, 236, 255, 0.6);
}
.team-card small {
  display: block;
  margin-top: 9px;
  color: var(--gold);
  font:
    8px "DM Mono",
    monospace;
  letter-spacing: 0.1em;
}
.team-profile {
  min-height: 330px;
  padding: 0;
  background: #111432;
}
.team-profile img {
  display: block;
  width: 100%;
  height: 182px;
  object-fit: cover;
  object-position: center 28%;
  filter: saturate(1.05) contrast(1.03);
  transition:
    transform 0.42s ease,
    filter 0.42s ease;
}
.team-profile--pelon img,
.team-profile--meche img,
.team-profile--yuridiana img {
  object-position: center top;
}
.team-profile:hover img {
  transform: scale(1.085);
  filter: saturate(1.18) contrast(1.08) brightness(1.08);
}
.team-card-content {
  padding: 13px 15px 16px;
}
.team-card-content span {
  margin-bottom: 9px;
}
.team-card-content p {
  margin: 9px 0 0;
  color: #bbb3d1;
  font-size: 12px;
  line-height: 1.35;
}
.bridges-section {
  position: relative;
  z-index: 3;
  width: min(1240px, calc(100% - 80px));
  margin: 0 auto;
  padding: 30px 20px 86px;
}
.bridges-heading-wrap {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  padding-bottom: 23px;
  border-bottom: 1px solid rgba(169, 151, 230, 0.2);
}
.bridges-heading-wrap .eyebrow {
  margin-bottom: 13px;
}
.bridges-heading-wrap h1,
.bridges-heading-wrap h2 {
  margin: 0;
  font:
    900 clamp(48px, 5.5vw, 78px) / 0.84 "Barlow Condensed",
    Impact,
    sans-serif;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}
.bridges-heading-wrap h1 em,
.bridges-heading-wrap h2 em {
  color: transparent;
  font-style: italic;
  -webkit-text-stroke: 1px #ff4ce8;
  text-shadow: 0 0 24px rgba(252, 51, 219, 0.36);
}
.bridges-intro {
  max-width: 480px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.bridge-source {
  flex: 0 0 auto;
  padding: 11px 0 11px 20px;
  color: #837a9c;
  border-left: 1px solid rgba(81, 229, 247, 0.5);
  font:
    9px/1.6 "DM Mono",
    monospace;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: color 0.2s;
}
.bridge-source strong {
  color: var(--cyan);
  font-weight: 500;
}
.bridge-source:hover,
.bridge-source:focus-visible {
  color: #fff;
}
.bridge-source:focus-visible {
  outline: 1px solid var(--cyan);
  outline-offset: 5px;
}
.bridge-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 16px 0 17px;
}
.bridge-update {
  margin: 0;
  color: #8f87a7;
  font:
    9px "DM Mono",
    monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.bridge-update::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}
.bridge-refresh {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  color: #cbfaff;
  border: 1px solid rgba(81, 229, 247, 0.42);
  border-radius: 3px;
  background: rgba(20, 64, 98, 0.25);
  font:
    700 9px "DM Mono",
    monospace;
  letter-spacing: 0.09em;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}
.bridge-refresh:hover {
  color: #06142a;
  background: var(--cyan);
}
.bridge-refresh:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
.bridge-refresh span {
  display: inline-block;
  font-size: 14px;
  line-height: 0.7;
}
.bridge-refresh.is-refreshing span {
  animation: spin 0.65s linear;
}
.bridge-control-panel {
  overflow: hidden;
  border: 1px solid rgba(164, 145, 224, 0.25);
  background: rgba(21, 18, 54, 0.7);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.06),
    0 18px 40px rgba(0, 0, 0, 0.17);
}
.bridge-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(164, 145, 224, 0.22);
}
.bridge-tab,
.direction-button {
  color: #ada5c3;
  border: 0;
  background: transparent;
  font:
    700 10px "DM Mono",
    monospace;
  letter-spacing: 0.09em;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}
.bridge-tab {
  min-height: 48px;
  border-right: 1px solid rgba(164, 145, 224, 0.18);
}
.bridge-tab:last-child {
  border-right: 0;
}
.bridge-tab:hover,
.bridge-tab.is-active {
  color: #f9ffff;
  background: rgba(50, 205, 234, 0.13);
  box-shadow: inset 0 -2px var(--cyan);
}
.bridge-tab:focus-visible,
.direction-button:focus-visible {
  position: relative;
  z-index: 1;
  outline: 2px solid var(--cyan);
  outline-offset: -2px;
}
.bridge-image-wrap {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #111635, #2c1b52);
}
.bridge-stage {
  aspect-ratio: 16 / 7.25;
}
.bridge-stage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  color: transparent;
}
.camera-live {
  position: absolute;
  top: 13px;
  left: 13px;
  padding: 6px 8px;
  color: #e5fdff;
  background: rgba(4, 7, 25, 0.77);
  border: 1px solid rgba(128, 246, 255, 0.37);
  border-radius: 3px;
  backdrop-filter: blur(6px);
  font:
    8px "DM Mono",
    monospace;
  letter-spacing: 0.1em;
}
.camera-live i {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 5px 1px 0;
  border-radius: 50%;
  background: #33e0f5;
  box-shadow: 0 0 7px #33e0f5;
  animation: blink 1.5s infinite alternate;
}
.bridge-viewer-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 17px 20px;
}
.bridge-number {
  margin: 0 0 5px;
  color: #8f87a7;
  font:
    9px "DM Mono",
    monospace;
  letter-spacing: 0.13em;
}
.bridge-viewer-info h2,
.bridge-viewer-info h3 {
  margin: 0;
  color: #fff;
  font:
    800 27px/0.9 "Barlow Condensed",
    sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.direction-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-width: 292px;
  border: 1px solid rgba(164, 145, 224, 0.32);
  border-radius: 4px;
  overflow: hidden;
}
.direction-button {
  min-height: 38px;
  padding: 0 12px;
  border-right: 1px solid rgba(164, 145, 224, 0.22);
  font-size: 8px;
}
.direction-button:last-child {
  border-right: 0;
}
.direction-button:hover,
.direction-button.is-active {
  color: #0d1028;
  background: linear-gradient(100deg, #54edff, #8de7ff);
}
footer {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(1320px, calc(100% - 80px));
  margin: 0 auto;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(169, 151, 230, 0.16);
  color: #837a9c;
  font:
    10px "DM Mono",
    monospace;
  letter-spacing: 0.12em;
}
.footer-right span {
  color: #4f4967;
}
.footer-right b {
  padding-left: 8px;
  color: var(--gold);
  font-size: 13px;
}
.footer-right a {
  display: inline-block;
  margin-left: 14px;
  color: #9189aa;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-right a strong {
  color: var(--cyan);
  font-weight: 500;
}
.footer-right a:hover,
.footer-right a:focus-visible {
  color: #fff;
}
.footer-right a:focus-visible {
  outline: 1px solid var(--cyan);
  outline-offset: 3px;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin: 0;
}

.footer-social > span {
  color: #4f4967;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #b8f7ff;
  text-decoration: none;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-social a i {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font:
    700 14px/1 Arial,
    sans-serif;
  font-style: normal;
}

.footer-social a b {
  color: var(--gold);
  font-weight: 500;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: #fff;
  transform: translateY(-2px);
}

.footer-social a:focus-visible {
  outline: 1px solid var(--cyan);
  outline-offset: 4px;
}
@keyframes live {
  70% {
    box-shadow: 0 0 0 7px rgba(241, 41, 48, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(241, 41, 48, 0);
  }
}
@keyframes logo-breathe {
  50% {
    transform: translateY(-9px) scale(1.012);
    filter: drop-shadow(0 35px 34px rgba(0, 0, 0, 0.62)) brightness(1.06);
  }
}
@keyframes echo {
  0% {
    transform: scale(0.54);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}
@keyframes blink {
  to {
    opacity: 0.2;
    transform: scale(0.5);
  }
}
@keyframes float {
  50% {
    transform: translate(20px, -15px) scale(1.06);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 0;
    text-align: center;
  }
  .identity-wrap {
    width: min(500px, 82vw);
  }
  .copy {
    justify-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 0 34px;
  }
  .eyebrow {
    margin-top: -4px;
  }
  .intro {
    margin-top: 21px;
  }
  .topbar,
  footer,
  .hero,
  .puma-feature,
  .bridges-section {
    width: min(100% - 40px, 620px);
  }
  .city {
    height: 20vh;
  }
  .atmosphere {
    inset: -10% -30%;
  }
  .puma-feature {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 34px 0 49px;
  }
  .puma-feature::before {
    inset: 8% -4% 0;
  }
  .puma-photo-frame {
    width: min(100%, 410px);
  }
  .puma-copy {
    text-align: center;
  }
  .puma-copy .eyebrow {
    justify-content: center;
  }
  .puma-slogan {
    justify-content: center;
    border-left: 0;
    border-bottom: 2px solid var(--hot);
    padding: 0 0 12px;
  }
  .bridges-section {
    padding: 26px 0 66px;
  }
  .bridges-heading-wrap {
    align-items: start;
    flex-direction: column;
    gap: 16px;
  }
  .bridge-source {
    padding: 0 0 0 13px;
  }
  .bridge-toolbar {
    align-items: start;
    flex-direction: column;
    gap: 9px;
  }
  .bridge-viewer-info {
    align-items: start;
    flex-direction: column;
  }
  .direction-controls {
    min-width: 0;
    width: 100%;
  }
}
@media (max-width: 860px) {
  .topbar {
    grid-template-columns: auto 1fr;
    gap: 13px;
  }
  .live-pill {
    justify-self: end;
  }
  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
  }
  .content-page .puma-feature {
    min-height: auto;
  }
  .bridges-heading-wrap h1,
  .bridges-heading-wrap h2 {
    font-size: 58px;
  }
}
@media (max-width: 500px) {
  .topbar {
    padding: 19px 0;
    font-size: 8px;
  }
  .brand-mini {
    font-size: 9px;
  }
  .hero {
    padding: 6px 0 38px;
  }
  .identity-wrap {
    width: min(390px, 100%);
  }
  .eyebrow {
    font-size: 9px;
  }
  .intro {
    font-size: 14px;
  }
  .tuner {
    width: 100%;
  }
  .signal-button {
    margin-top: 19px;
    font-size: 11px;
  }
  .bridges-heading-wrap h2 {
    font-size: 50px;
  }
  .bridges-intro {
    font-size: 13px;
  }
  .bridge-tabs {
    grid-template-columns: repeat(2, 1fr);
  }
  .bridge-tab:nth-child(2) {
    border-right: 0;
  }
  .bridge-tab:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(164, 145, 224, 0.18);
  }
  .bridge-stage {
    aspect-ratio: 4 / 3;
  }
  .bridge-viewer-info h3 {
    font-size: 24px;
  }
  .direction-button {
    padding: 0 7px;
    font-size: 7px;
  }
  footer {
    flex-direction: column;
    gap: 8px;
    padding: 15px 0 18px;
    font-size: 8px;
  }
  .city {
    opacity: 0.15;
  }
}
@media (max-width: 500px) {
  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2px;
  }
  .site-nav a {
    padding: 7px 7px;
    font-size: 7px;
  }
  .bridges-heading-wrap h1,
  .bridges-heading-wrap h2 {
    font-size: 50px;
  }
  .bridge-viewer-info h2,
  .bridge-viewer-info h3 {
    font-size: 24px;
  }
  .team-hero {
    width: min(100% - 40px, 620px);
    padding: 34px 0 58px;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .team-card:not(.team-profile) {
    min-height: 104px;
  }
  .team-card span {
    margin-bottom: 15px;
  }
  .team-profile {
    min-height: 0;
  }
  .team-profile img {
    height: 215px;
  }
  .team-card-content span {
    margin-bottom: 9px;
  }
}
@media (max-width: 860px) {
  .programming-page.content-page .puma-feature {
    grid-template-columns: 1fr;
    gap: 29px;
    width: min(100% - 40px, 620px);
    margin-top: 18px;
    padding: 24px;
  }
  .programming-page .puma-photo-frame {
    width: min(100%, 410px);
  }
  .programming-page .puma-copy {
    align-items: center;
    text-align: center;
  }
  .programming-page .puma-copy .eyebrow {
    justify-content: center;
  }
  .programming-page .puma-program-logo {
    width: min(100%, 470px);
  }
  .programming-page .puma-description {
    padding: 12px 0 0;
    border-top: 2px solid #b93932;
    border-left: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
.programming-page .puma-program-logo {
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}
.puma-schedule {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 13px;
  width: fit-content;
  margin-top: 17px;
  padding: 10px 13px;
  color: #f5f1ff;
  border: 1px solid rgba(81, 229, 247, 0.35);
  border-radius: 4px;
  background: rgba(22, 19, 62, 0.43);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
  font-family: "DM Mono", monospace;
  letter-spacing: 0.06em;
}
.puma-schedule span {
  color: var(--cyan);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.11em;
}
.puma-schedule strong {
  color: #fff0ba;
  font-size: 12px;
  font-weight: 500;
}
.puma-schedule i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--hot);
  box-shadow: 0 0 8px var(--hot);
}
.puma-photo-schedule {
  position: relative;
  z-index: 2;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: 12px 10px;
  border: 0;
  border-top: 1px solid rgba(81, 229, 247, 0.28);
  border-radius: 0;
  background: rgba(8, 8, 28, 0.9);
}
.program-carousel {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  padding: 10px 20px 52px;
}
.program-carousel-heading {
  margin: 0 0 16px;
}
.program-carousel-heading .eyebrow {
  margin-bottom: 10px;
}
.program-carousel-heading > p:last-child {
  margin: 0;
  color: #a79fc1;
  font:
    10px "DM Mono",
    monospace;
  letter-spacing: 0.28em;
}
.program-carousel-window {
  position: relative;
}
.program-slide {
  display: none;
  grid-template-columns: minmax(285px, 0.78fr) minmax(370px, 1fr);
  align-items: center;
  gap: clamp(34px, 5vw, 76px);
  min-height: 590px;
  padding: clamp(24px, 4vw, 52px);
  border: 1px solid rgba(81, 229, 247, 0.18);
  background: linear-gradient(
    118deg,
    rgba(19, 23, 62, 0.78),
    rgba(60, 14, 79, 0.25)
  );
  box-shadow:
    0 28px 65px rgba(0, 0, 0, 0.26),
    inset 0 1px rgba(255, 255, 255, 0.06);
}
.program-slide.is-active {
  display: grid;
  animation: program-slide-in 0.6s cubic-bezier(0.2, 0.75, 0.25, 1) both;
}
.program-slide.is-entering-back {
  animation-name: program-slide-back;
}
.program-photo-card {
  position: relative;
  justify-self: center;
  width: min(100%, 395px);
  overflow: hidden;
  border: 1px solid rgba(255, 215, 96, 0.62);
  background: #0c0d21;
  box-shadow:
    13px 13px 0 rgba(39, 218, 244, 0.13),
    0 24px 42px rgba(0, 0, 0, 0.42);
}
.program-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.06) contrast(1.03);
}
.program-photo-label {
  position: absolute;
  z-index: 1;
  top: 12px;
  left: 12px;
  padding: 7px 9px;
  color: #111127;
  background: var(--gold);
  font:
    700 8px "DM Mono",
    monospace;
  letter-spacing: 0.09em;
}
.program-schedule {
  display: flex;
  position: relative;
  z-index: 2;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 13px;
  width: 100%;
  padding: 12px 10px;
  color: #f5f1ff;
  border-top: 1px solid rgba(81, 229, 247, 0.28);
  background: rgba(8, 8, 28, 0.92);
  font-family: "DM Mono", monospace;
  letter-spacing: 0.06em;
}
.program-schedule span {
  color: var(--cyan);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.program-schedule strong {
  color: #fff0ba;
  font-size: 12px;
  font-weight: 500;
}
.program-schedule i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--hot);
  box-shadow: 0 0 8px var(--hot);
}
.program-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 510px;
}
.program-logo {
  display: block;
  width: min(100%, 500px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.28));
}
.program-logo--puma {
  max-width: 470px;
  aspect-ratio: 1 / 1;
}
.program-logo--voladora {
  max-width: 520px;
  margin: 12px 0 22px;
}
.program-copy > p {
  max-width: 470px;
  margin: 16px 0 0;
  padding: 2px 0 2px 17px;
  color: var(--muted);
  border-left: 2px solid var(--hot);
  font-size: 16px;
  line-height: 1.65;
}
.program-copy small {
  margin-top: 13px;
  color: #8f87a7;
  font:
    9px "DM Mono",
    monospace;
  letter-spacing: 0.16em;
}
.program-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 16px;
}
.program-nav,
.program-dots button {
  border: 0;
  cursor: pointer;
  font-family: "DM Mono", monospace;
  letter-spacing: 0.09em;
}
.program-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  color: #b8f7ff;
  background: transparent;
  font-size: 9px;
  transition:
    color 0.2s,
    transform 0.2s;
}
.program-nav:hover,
.program-nav:focus-visible {
  color: #fff;
  transform: translateX(-2px);
}
.program-nav:last-child:hover,
.program-nav:last-child:focus-visible {
  transform: translateX(2px);
}
.program-nav:focus-visible,
.program-dots button:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}
.program-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.program-dots button {
  padding: 9px 12px;
  color: #9d94b5;
  border: 1px solid rgba(169, 151, 230, 0.22);
  border-radius: 3px;
  background: rgba(20, 17, 54, 0.42);
  font-size: 8px;
  transition:
    color 0.2s,
    background 0.2s,
    border-color 0.2s;
}
.program-dots button:hover,
.program-dots button.is-active {
  color: #071327;
  border-color: var(--cyan);
  background: var(--cyan);
}
.program-dots button.is-active {
  box-shadow: 0 0 16px rgba(70, 236, 255, 0.18);
}
@keyframes program-slide-in {
  from {
    opacity: 0;
    transform: translateX(34px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes program-slide-back {
  from {
    opacity: 0;
    transform: translateX(-34px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (max-width: 860px) {
  .program-carousel {
    width: min(100% - 40px, 620px);
    padding: 8px 0 48px;
  }
  .program-slide {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: 0;
    padding: 24px;
  }
  .program-photo-card {
    width: min(100%, 410px);
  }
  .program-copy {
    align-items: center;
    text-align: center;
  }
  .program-copy > p {
    padding: 12px 0 0;
    border-top: 2px solid var(--hot);
    border-left: 0;
  }
  .program-carousel-controls {
    gap: 5px;
  }
  .program-dots {
    flex-wrap: wrap;
  }
  .program-nav span {
    display: none;
  }
}
.programming-page .program-carousel-heading .eyebrow {
  color: var(--cyan);
}

/* Continuous staff carousel — pauses on hover */
.team-carousel-shell {
  position: relative;
  width: min(980px, calc(100vw - 40px));
  margin: 0 calc((min(980px, calc(100vw - 40px)) - 780px) / -2) 0 0;
}

.team-carousel {
  --team-gap: 18px;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 4px 0 12px;
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 3%,
    #000 97%,
    transparent
  );
}

.team-carousel::before,
.team-carousel::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 40px;
  pointer-events: none;
}

.team-carousel::before {
  left: 0;
  background: linear-gradient(90deg, rgba(8, 8, 28, 0.68), transparent);
}

.team-carousel::after {
  right: 0;
  background: linear-gradient(270deg, rgba(21, 9, 41, 0.68), transparent);
}

.team-carousel-track {
  display: flex;
  width: max-content;
  gap: var(--team-gap);
  animation: team-card-marquee 46s linear infinite;
  will-change: transform;
}

.team-carousel:hover .team-carousel-track,
.team-carousel:focus-within .team-carousel-track {
  animation-play-state: paused;
}

.team-carousel-arrow {
  position: absolute;
  z-index: 6;
  top: 50%;
  display: grid;
  width: 44px;
  height: 64px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(70, 236, 255, 0.72);
  border-radius: 7px;
  color: var(--cyan);
  background: rgba(8, 8, 30, 0.86);
  box-shadow:
    0 0 20px rgba(70, 236, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  cursor: pointer;
  font:
    500 29px/1 "DM Mono",
    monospace;
  transform: translateY(-50%);
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.team-carousel-arrow--previous {
  left: -62px;
}

.team-carousel-arrow--next {
  right: -62px;
}

.team-carousel-arrow:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(28, 13, 46, 0.96);
  box-shadow:
    0 0 26px rgba(255, 196, 72, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.team-carousel-arrow--previous:hover {
  transform: translate(-3px, -50%);
}

.team-carousel-arrow--next:hover {
  transform: translate(3px, -50%);
}

.team-carousel-arrow:focus-visible {
  outline: 3px solid var(--hot);
  outline-offset: 3px;
}

.team-carousel .team-profile {
  width: 315px;
  min-height: 396px;
  flex: 0 0 auto;
  border-radius: 8px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
}

.team-carousel .team-profile img {
  height: 210px;
}

.team-carousel-hint {
  display: none;
}

@keyframes team-card-marquee {
  to {
    transform: translateX(calc(-50% - 9px));
  }
}

@media (max-width: 860px) {
  .team-carousel-shell {
    width: 100%;
    margin: 0;
  }

  .team-carousel {
    width: 100%;
    margin: 0;
    mask-image: linear-gradient(
      90deg,
      transparent,
      #000 3%,
      #000 97%,
      transparent
    );
  }

  .team-carousel::before,
  .team-carousel::after {
    width: 44px;
  }

  .team-carousel-arrow {
    width: 38px;
    height: 56px;
    font-size: 25px;
  }

  .team-carousel-arrow--previous {
    left: 7px;
  }

  .team-carousel-arrow--next {
    right: 7px;
  }

  .team-carousel .team-profile {
    width: min(78vw, 315px);
    min-height: 390px;
  }

  .team-carousel .team-profile img {
    height: 210px;
  }
  .team-carousel-hint {
    line-height: 1.8;
  }
}

/* Programming carousel — matches the continuous motion in Los Jefes */
.program-marquee-section {
  position: relative;
  z-index: 3;
  width: min(1320px, calc(100% - 80px));
  margin: 0 auto;
  padding: 28px 0 58px;
}

.program-page-heading {
  width: min(920px, 100%);
  margin: 12px auto 30px;
}

.program-page-heading h1 {
  margin: 0;
  color: #fff;
  font:
    900 clamp(62px, 8vw, 112px) / 0.78 "Barlow Condensed",
    Impact,
    sans-serif;
  letter-spacing: -0.052em;
  text-transform: uppercase;
  text-shadow:
    0 5px 0 #1a0f35,
    0 16px 34px rgba(234, 43, 210, 0.15);
}

.program-page-heading h1 em {
  color: transparent;
  font-style: italic;
  -webkit-text-stroke: 1px var(--cyan);
  text-shadow: 0 0 26px rgba(70, 236, 255, 0.4);
}

.program-page-heading h1 span {
  display: block;
  margin-top: 8px;
  font-size: 0.56em;
  line-height: 0.78;
  letter-spacing: -0.035em;
}

.program-page-heading > p {
  max-width: 630px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.program-carousel-shell {
  position: relative;
  width: min(920px, 100%);
  margin: 0 auto;
}

.program-marquee {
  --program-gap: 22px;
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  padding: 8px 0 14px;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 2%,
    #000 98%,
    transparent
  );
}

.program-marquee::before,
.program-marquee::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  width: 42px;
  pointer-events: none;
}

.program-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(6, 7, 24, 0.72), transparent);
}

.program-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(23, 10, 44, 0.72), transparent);
}

.program-marquee-track {
  display: flex;
  width: max-content;
  gap: var(--program-gap);
  animation: program-card-marquee 44s linear infinite;
  will-change: transform;
}

.program-marquee:hover .program-marquee-track,
.program-marquee:focus-within .program-marquee-track {
  animation-play-state: paused;
}

.program-carousel-arrow {
  position: absolute;
  z-index: 6;
  top: 50%;
  display: grid;
  width: 44px;
  height: 64px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(70, 236, 255, 0.72);
  border-radius: 7px;
  color: var(--cyan);
  background: rgba(8, 8, 30, 0.86);
  box-shadow:
    0 0 20px rgba(70, 236, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  cursor: pointer;
  font:
    500 29px/1 "DM Mono",
    monospace;
  transform: translateY(-50%);
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.program-carousel-arrow--previous {
  left: -62px;
}

.program-carousel-arrow--next {
  right: -62px;
}

.program-carousel-arrow:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(28, 13, 46, 0.96);
  box-shadow:
    0 0 26px rgba(255, 196, 72, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.program-carousel-arrow--previous:hover {
  transform: translate(-3px, -50%);
}

.program-carousel-arrow--next:hover {
  transform: translate(3px, -50%);
}

.program-carousel-arrow:focus-visible {
  outline: 3px solid var(--hot);
  outline-offset: 3px;
}

.program-scroll-card {
  display: flex;
  width: min(440px, 78vw);
  min-height: 540px;
  flex: 0 0 auto;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(70, 236, 255, 0.42);
  border-radius: 8px;
  background: linear-gradient(
    180deg,
    rgba(22, 19, 53, 0.99),
    rgba(43, 14, 62, 0.98)
  );
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.program-scroll-card:hover {
  z-index: 4;
  transform: translateY(-4px);
  border-color: var(--cyan);
  box-shadow:
    0 24px 42px rgba(0, 0, 0, 0.42),
    0 0 18px rgba(70, 236, 255, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.program-card-photo {
  position: relative;
  height: 270px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 215, 96, 0.38);
  background: #090b22;
}

.program-card-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(70, 236, 255, 0.08),
    transparent 43%,
    rgba(231, 43, 213, 0.1)
  );
  mix-blend-mode: screen;
}

.program-card-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition:
    transform 0.42s ease,
    filter 0.42s ease;
}

.program-card-photo--pelon-meche {
  background: radial-gradient(
      circle at 50% 28%,
      rgba(255, 169, 38, 0.36),
      transparent 44%
    ),
    linear-gradient(135deg, #091c3a 0%, #25164a 52%, #571037 100%);
}

.program-card-photo--pelon-meche img {
  padding: 8px 6px 0;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 12px 12px rgba(0, 0, 0, 0.36));
}

.program-scroll-card:hover .program-card-photo img {
  transform: scale(1.055);
  filter: saturate(1.13) contrast(1.05);
}

.program-card-photo span {
  position: absolute;
  z-index: 2;
  bottom: 14px;
  left: 14px;
  padding: 8px 10px;
  color: #171326;
  background: var(--gold);
  box-shadow: 4px 4px 0 rgba(241, 41, 48, 0.62);
  font:
    600 8px "DM Mono",
    monospace;
  letter-spacing: 0.07em;
}

.program-card-panel {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 24px 24px;
  text-align: center;
}

.program-card-logo {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.program-card-logo--puma {
  width: min(100%, 365px);
}
.program-card-logo--voladora {
  width: min(100%, 400px);
  max-height: 225px;
}
.program-card-logo--pelon-meche {
  width: min(100%, 404px);
  max-height: 162px;
}

.program-card-title--preciosas {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  color: #fff;
  font-family: "Barlow Condensed", Impact, sans-serif;
  line-height: 0.78;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.program-card-title--preciosas > span {
  margin: 0 0 2px;
  color: var(--cyan);
  font:
    500 15px/1 "DM Mono",
    monospace;
  letter-spacing: 0.42em;
}

.program-card-title--preciosas strong {
  display: block;
  color: transparent;
  background: linear-gradient(100deg, #fff 2%, #ff8eea 44%, #ff3dcf 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(46px, 8vw, 72px);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.06em;
  text-shadow: 0 0 25px rgba(255, 61, 207, 0.28);
}

.program-card-title--preciosas small {
  margin-top: 10px;
  color: var(--gold);
  font:
    500 8px/1 "DM Mono",
    monospace;
  letter-spacing: 0.2em;
}

.program-card-title--recuerdo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  color: #fff;
  font-family: "Barlow Condensed", Impact, sans-serif;
  line-height: 0.78;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.program-card-title--recuerdo > span {
  margin: 0 0 3px;
  color: var(--gold);
  font:
    500 15px/1 "DM Mono",
    monospace;
  letter-spacing: 0.32em;
}

.program-card-title--recuerdo strong {
  display: block;
  color: transparent;
  background: linear-gradient(100deg, #fff9de 4%, #ffd15b 48%, #ff8744 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(47px, 8vw, 72px);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.05em;
  text-shadow: 0 0 25px rgba(255, 167, 54, 0.26);
}

.program-card-title--recuerdo small {
  margin-top: 10px;
  color: var(--cyan);
  font:
    500 8px/1 "DM Mono",
    monospace;
  letter-spacing: 0.16em;
}

.program-card-description {
  max-width: 280px;
  margin: 14px 0 0;
  color: #d3c8df;
  font-size: 13px;
  line-height: 1.35;
}

.program-card-hosts {
  margin: 13px 0 0;
  color: #fff5db;
  font:
    500 8px/1.7 "DM Mono",
    monospace;
  letter-spacing: 0.045em;
}

.program-card-hosts span {
  color: var(--cyan);
  font-size: 7px;
  letter-spacing: 0.14em;
}

.program-card-schedule {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px 10px;
  margin: 17px 0 0;
  color: #fff0ba;
  font:
    500 12px "DM Mono",
    monospace;
  letter-spacing: 0.04em;
}

.program-card-schedule span {
  color: var(--cyan);
  font-size: 8px;
  letter-spacing: 0.11em;
}

.program-card-schedule i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--hot);
  box-shadow: 0 0 8px var(--hot);
}

.program-marquee-hint {
  display: none;
}

@keyframes program-card-marquee {
  to {
    transform: translateX(calc(-50% - 11px));
  }
}

@media (max-width: 860px) {
  .program-marquee-section {
    width: min(100% - 40px, 620px);
    padding: 24px 0 52px;
  }

  .program-page-heading {
    margin: 6px auto 24px;
  }

  .program-page-heading h1 {
    font-size: clamp(54px, 15vw, 78px);
  }

  .program-page-heading > p {
    margin-top: 18px;
    font-size: 15px;
  }

  .program-marquee {
    mask-image: linear-gradient(
      90deg,
      transparent,
      #000 3%,
      #000 97%,
      transparent
    );
  }

  .program-carousel-arrow {
    width: 38px;
    height: 56px;
    font-size: 25px;
  }

  .program-carousel-arrow--previous {
    left: 7px;
  }

  .program-carousel-arrow--next {
    right: 7px;
  }

  .program-marquee::before,
  .program-marquee::after {
    width: 44px;
  }

  .program-scroll-card {
    width: min(82vw, 360px);
    min-height: 505px;
  }

  .program-card-photo {
    height: 238px;
  }
  .program-card-panel {
    padding: 18px 18px 22px;
  }
  .program-card-logo--puma {
    width: min(100%, 300px);
  }
  .program-card-logo--voladora {
    width: min(100%, 330px);
    max-height: 205px;
  }
  .program-card-logo--pelon-meche {
    width: min(100%, 330px);
    max-height: 142px;
  }
  .program-marquee-hint {
    line-height: 1.8;
  }
}

/* CSS-only three-sided programming carousel */
.program-prism-section {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  padding: 12px 20px 46px;
  overflow: hidden;
}

.program-prism-scene {
  --prism-card-width: min(76vw, 500px);
  --prism-card-height: 620px;
  --prism-depth: 270px;
  position: relative;
  display: grid;
  place-items: center;
  min-height: 690px;
  perspective: 1500px;
  perspective-origin: 50% 45%;
}

.program-prism {
  position: relative;
  width: var(--prism-card-width);
  height: var(--prism-card-height);
  transform-style: preserve-3d;
  animation: program-prism-rotate 21s cubic-bezier(0.45, 0.05, 0.55, 0.95)
    infinite;
}

.program-prism:hover {
  animation-play-state: paused;
}

.program-prism-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--ink);
  border: 1px solid rgba(70, 236, 255, 0.38);
  border-radius: 12px;
  background: linear-gradient(
    145deg,
    rgba(21, 19, 60, 0.98),
    rgba(61, 15, 81, 0.95)
  );
  box-shadow:
    0 26px 54px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.program-prism-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    rgba(70, 236, 255, 0.08),
    transparent 30%,
    transparent 67%,
    rgba(231, 43, 213, 0.1)
  );
  mix-blend-mode: screen;
}

.program-prism-card--puma {
  transform: rotateY(0deg) translateZ(var(--prism-depth));
}
.program-prism-card--voladora {
  transform: rotateY(120deg) translateZ(var(--prism-depth));
}

.program-prism-card--next {
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotateY(240deg) translateZ(var(--prism-depth));
  background: radial-gradient(
      circle at 50% 27%,
      rgba(231, 43, 213, 0.29),
      transparent 28%
    ),
    linear-gradient(145deg, rgba(16, 18, 55, 0.99), rgba(42, 11, 68, 0.99));
}

.prism-card-photo {
  position: relative;
  z-index: 1;
  height: 290px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 215, 96, 0.38);
  background: #090b22;
}

.prism-card-photo::before {
  content: "EN VIVO · NUEVO LAREDO / LAREDO";
  position: absolute;
  z-index: 2;
  bottom: 14px;
  left: 14px;
  padding: 8px 10px;
  color: #171326;
  background: var(--gold);
  box-shadow: 4px 4px 0 rgba(241, 41, 48, 0.62);
  font:
    600 8px "DM Mono",
    monospace;
  letter-spacing: 0.07em;
}

.prism-card-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.program-prism-card--voladora .prism-card-photo img {
  object-position: 47% 42%;
}

.prism-card-body {
  position: relative;
  z-index: 3;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px 20px 19px;
  text-align: center;
}

.prism-card-logo {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.prism-card-logo--puma {
  width: min(100%, 340px);
  aspect-ratio: 9 / 4;
  margin: 0 0 4px;
}

.prism-card-logo--voladora {
  width: 310px;
  max-height: 165px;
}

.prism-card-schedule {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px 10px;
  margin: 9px 0 0;
  color: #fff0ba;
  font:
    500 11px "DM Mono",
    monospace;
  letter-spacing: 0.04em;
}

.prism-card-schedule span {
  color: var(--cyan);
  font-size: 8px;
  letter-spacing: 0.11em;
}

.prism-card-schedule i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--hot);
  box-shadow: 0 0 8px var(--hot);
}

.prism-station-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 190px;
  height: 104px;
  margin-top: 5px;
  border-top: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 24px rgba(70, 236, 255, 0.18);
}

.prism-station-mark::before,
.prism-station-mark::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--hot);
  box-shadow: 0 0 12px var(--hot);
}

.prism-station-mark::before {
  top: -7px;
  left: -7px;
}
.prism-station-mark::after {
  right: -7px;
  bottom: -7px;
}
.prism-station-mark b {
  font:
    900 56px/1 "Barlow Condensed",
    sans-serif;
  letter-spacing: -0.04em;
  text-shadow: 0 0 22px rgba(70, 236, 255, 0.52);
}

.prism-station-mark i {
  position: absolute;
  right: 28px;
  left: 28px;
  height: 2px;
  background: var(--pink);
}

.prism-station-mark i:nth-of-type(1) {
  top: 23px;
}
.prism-station-mark i:nth-of-type(2) {
  top: 50%;
}
.prism-station-mark i:nth-of-type(3) {
  bottom: 23px;
}
.prism-kicker {
  margin: 16px 0 6px;
  color: var(--gold);
  font:
    500 10px "DM Mono",
    monospace;
  letter-spacing: 0.24em;
}

.program-prism-card--next h1 {
  margin: 0;
  color: #fff;
  font:
    900 clamp(42px, 5vw, 62px) / 0.78 "Barlow Condensed",
    sans-serif;
  letter-spacing: -0.035em;
  text-shadow: 0 8px 0 rgba(35, 6, 48, 0.58);
}

.program-prism-card--next h1 em {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--pink);
  font-style: normal;
}
.program-prism-note {
  margin: -4px 0 0;
  color: #9e95b9;
  text-align: center;
  font:
    8px "DM Mono",
    monospace;
  letter-spacing: 0.17em;
}

@keyframes program-prism-rotate {
  0%,
  27% {
    transform: rotateY(0deg);
  }
  33%,
  60% {
    transform: rotateY(-120deg);
  }
  66%,
  93% {
    transform: rotateY(-240deg);
  }
  100% {
    transform: rotateY(-360deg);
  }
}

@media (max-width: 860px) {
  .program-prism-section {
    width: min(100% - 40px, 620px);
    padding: 8px 0 44px;
  }
  .program-prism-scene {
    --prism-card-width: min(82vw, 360px);
    --prism-card-height: 475px;
    --prism-depth: 195px;
    min-height: 540px;
    perspective: 1050px;
  }
  .prism-card-photo {
    height: 210px;
  }
  .prism-card-logo--puma {
    width: min(100%, 300px);
    margin: 0 0 2px;
  }
  .prism-card-logo--voladora {
    width: 275px;
  }
  .program-prism-note {
    line-height: 1.8;
  }
}

@media (prefers-reduced-motion: reduce) {
  .program-prism {
    animation: none;
  }
}
