
:root {
  --ink: #08080a;
  --paper: #f4f1eb;
  --pink: #ff075e;
  --cyan: #19dbe8;
  --lime: #8aff00;
  --violet: #6f0bdb;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
}
body.popup-open { overflow: hidden; }
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: .08;
  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='.7'/%3E%3C/svg%3E");
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.site-header {
  height: 94px;
  padding: 10px clamp(24px, 5vw, 82px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  z-index: 10;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.mini-brand { width: clamp(155px, 13vw, 205px); display: block; flex: 0 0 auto; }
.mini-brand img { width: 100%; height: auto; display: block; }
nav { display: flex; gap: 34px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; }
nav a { opacity: .7; transition: .2s; }
nav a:hover { color: var(--pink); opacity: 1; }
.header-live { font-size: 12px; font-weight: 900; letter-spacing: .15em; display: flex; align-items: center; gap: 9px; }
.header-live span, .eyebrow span { width: 8px; height: 8px; display: inline-block; border-radius: 50%; background: var(--pink); box-shadow: 0 0 14px var(--pink); animation: pulse 1.5s infinite; }

.hero {
  min-height: 100svh;
  padding: 150px clamp(24px, 8vw, 120px) 90px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  isolation: isolate;
  background:
    linear-gradient(115deg, #08080a 0%, #101012 47%, #050506 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .3;
  background: repeating-linear-gradient(0deg, transparent 0 78px, rgba(255,255,255,.035) 79px 80px), repeating-linear-gradient(90deg, transparent 0 78px, rgba(255,255,255,.025) 79px 80px);
}
.hero::after { content: ""; position: absolute; width: 320px; height: 14px; background: var(--pink); left: -70px; bottom: 18%; transform: rotate(-8deg); box-shadow: 0 0 50px rgba(255,7,94,.35); }
.hero-copy { position: relative; z-index: 2; }
.eyebrow { font-size: 12px; font-weight: 900; letter-spacing: .22em; text-transform: uppercase; display: flex; align-items: center; gap: 10px; }
h1, h2 { margin: 18px 0; text-transform: uppercase; letter-spacing: -.07em; font-weight: 950; line-height: .82; }
h1 { font-size: clamp(66px, 9vw, 142px); }
h2 { font-size: clamp(54px, 7vw, 104px); }
h1 em, h2 em { display: inline-block; color: var(--pink); text-transform: none; font-family: "Brush Script MT", "Segoe Script", cursive; font-weight: 700; letter-spacing: -.04em; transform: rotate(-4deg); text-shadow: 0 0 35px rgba(255,7,94,.25); }
.hero-text { max-width: none; color: rgba(255,255,255,.64); font-size: clamp(14px, 1.2vw, 18px); line-height: 1.65; margin: 30px 0 16px; white-space: nowrap; }
.motto { margin: 0 0 28px; width: fit-content; padding: 9px 14px; border-left: 4px solid var(--cyan); background: rgba(25,219,232,.08); color: #fff; text-transform: uppercase; letter-spacing: .12em; font-size: 15px; font-weight: 900; }
.motto em { color: var(--cyan); font-style: normal; }

.player { max-width: 620px; min-height: 132px; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.055); backdrop-filter: blur(12px); display: flex; align-items: center; padding: 16px 24px 16px 16px; gap: 22px; box-shadow: 18px 18px 0 rgba(255,7,94,.08); }
.play-button { flex: 0 0 100px; height: 100px; border: 0; border-radius: 50%; color: #fff; background: var(--pink); cursor: pointer; box-shadow: 0 0 42px rgba(255,7,94,.58); transition: transform .2s, background .2s; font-size: 25px; }
.play-button:hover { transform: scale(1.06); background: #ff2875; }
.play-icon { margin-left: 4px; }
.is-playing .play-icon { margin-left: 0; font-size: 25px; line-height: 1; }
.player-info { display: grid; gap: 4px; flex: 1; }
.player-info .live-label { color: var(--pink); font-size: 9px; font-weight: 950; letter-spacing: .2em; }
.player-info strong { font-size: 18px; }
.player-info small { color: rgba(255,255,255,.5); }
.equalizer { height: 34px; display: flex; gap: 3px; align-items: center; }
.equalizer i { display: block; width: 3px; height: 5px; background: var(--cyan); }
.equalizer.active i { animation: bars .8s ease-in-out infinite alternate; }
.equalizer.active i:nth-child(2) { animation-delay: -.2s; }.equalizer.active i:nth-child(3) { animation-delay: -.45s; }.equalizer.active i:nth-child(4) { animation-delay: -.1s; }.equalizer.active i:nth-child(5) { animation-delay: -.35s; }

.hero-art { position: relative; justify-self: center; width: min(39vw, 580px); aspect-ratio: 1; }
.hero-art img { position: absolute; inset: 7%; width: 86%; height: 86%; object-fit: cover; border-radius: 2px; filter: contrast(1.06); box-shadow: 0 35px 90px rgba(0,0,0,.7); transform: rotate(2deg); }
.glow-ring { position: absolute; inset: 1%; border-radius: 50%; background: conic-gradient(var(--pink), #ff9400, var(--lime), var(--cyan), var(--violet), var(--pink)); filter: blur(22px); opacity: .48; animation: rotate 10s linear infinite; }
.frequency-sticker { position: absolute; right: -2%; bottom: 5%; width: 112px; height: 112px; display: grid; place-content: center; text-align: center; border-radius: 50%; background: var(--paper); color: var(--ink); font-size: 13px; transform: rotate(9deg); box-shadow: 8px 8px 0 var(--pink); }
.frequency-sticker b { font-size: 29px; letter-spacing: -.06em; }
.scribble { position: absolute; z-index: 1; font-weight: 950; color: transparent; -webkit-text-stroke: 1px rgba(255,7,94,.3); font-size: 100px; transform: rotate(90deg); }
.scribble-one { right: -90px; top: 27%; }.scribble-two { left: -110px; top: 35%; color: rgba(25,219,232,.05); -webkit-text-stroke: 1px rgba(25,219,232,.25); }
.scroll-hint { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); font-size: 10px; text-transform: uppercase; letter-spacing: .2em; color: rgba(255,255,255,.45); white-space: nowrap; }
.scroll-hint span { color: var(--pink); font-size: 18px; margin-left: 10px; }

.advertising { padding: 90px clamp(24px, 8vw, 120px) 110px; background: #111114; position: relative; overflow: hidden; }
.advertising::before { content: "PUBLICIDAD"; position: absolute; right: -30px; top: -30px; font-size: 130px; font-weight: 950; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.05); }
.ad-intro { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 48px; position: relative; z-index: 1; }
.ad-intro h2 { font-size: clamp(44px, 5vw, 74px); margin: 0; }
.ad-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 300px)); justify-content: center; gap: clamp(24px, 4vw, 60px); position: relative; z-index: 1; }
.ad-slot { width: 100%; aspect-ratio: 6 / 5; border: 1px dashed rgba(255,255,255,.3); background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,7,94,.06)); display: grid; place-content: center; text-align: center; gap: 9px; color: rgba(255,255,255,.45); transition: .25s; overflow: hidden; }
.ad-slot:hover { border-color: var(--pink); transform: translateY(-5px); }
.ad-slot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ad-slot span { font-size: 9px; font-weight: 900; letter-spacing: .2em; }.ad-slot strong { color: #fff; font-size: 26px; }.ad-slot small { font-size: 10px; }

.neuquen { padding: 110px clamp(24px, 8vw, 120px); display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: center; background: linear-gradient(125deg, #08080a, #15151a); position: relative; overflow: hidden; }
.neuquen::after { content: "NEUQUÉN"; position: absolute; right: -80px; bottom: -25px; font-size: 145px; font-weight: 950; color: transparent; -webkit-text-stroke: 1px rgba(25,219,232,.08); }
.neuquen-copy, .neuquen-player { position: relative; z-index: 1; }
.neuquen-copy h2 { font-size: clamp(48px, 6vw, 90px); }
.neuquen-copy h2 em { color: var(--cyan); }.neuquen-copy p:last-child { color: rgba(255,255,255,.56); font-size: 17px; }
.neuquen-player { width: 100%; }.neuquen-player .play-button { background: var(--cyan); box-shadow: 0 0 42px rgba(25,219,232,.4); }.neuquen-player .live-label { color: var(--cyan); }
.neuquen-inline { max-width: 620px; margin-top: 24px; }
.signal-kicker { display: block; margin-bottom: 9px; color: rgba(255,255,255,.52); font-size: 9px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.neuquen-inline .player { min-height: 96px; }
.neuquen-inline .play-button { flex-basis: 68px; height: 68px; font-size: 17px; }

.frequencies { padding: 100px clamp(24px, 6vw, 92px) 110px; background: var(--paper); color: var(--ink); position: relative; overflow: hidden; }
.frequencies::after { content: "ON AIR"; position: absolute; right: -20px; top: 0; font-size: 170px; font-weight: 950; letter-spacing: -.1em; color: transparent; -webkit-text-stroke: 1px rgba(8,8,10,.07); }
.frequencies .eyebrow span { background: var(--pink); }
.section-heading { position: relative; z-index: 1; margin-bottom: 52px; }
.network-layout { width: min(100%, 1104px); margin-inline: auto; display: grid; grid-template-columns: repeat(2, minmax(0,540px)); justify-content: center; gap: 24px; align-items: start; position: relative; z-index: 1; }
.network-panel, .schedule-panel { width: 100%; max-width: 540px; min-width: 0; margin-inline: auto; display: grid; grid-template-rows: auto 1fr; }
.panel-title { min-height: 48px; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid rgba(8,8,10,.14); display: flex; align-items: baseline; justify-content: space-between; gap: 14px; text-transform: uppercase; letter-spacing: .13em; font-size: 10px; }
.panel-title span { font-weight: 950; }
.panel-title b { color: #008f9c; font-size: 9px; }
.frequency-grid { aspect-ratio: 4 / 5; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); grid-template-rows: repeat(6,1fr); gap: 10px; background: transparent; }
.frequency-card { min-height: 0; padding: 12px 18px; display: flex; flex-direction: column; justify-content: center; border: 1px solid rgba(8,8,10,.12); border-left: 4px solid var(--pink); background: rgba(255,255,255,.34); overflow: hidden; transition: transform .22s, border-color .22s, background .22s; }
.frequency-card:nth-child(3n+2) { border-left-color: var(--cyan); }
.frequency-card:nth-child(3n) { border-left-color: var(--lime); }
.frequency-card:hover { transform: translateY(-3px); border-color: var(--pink); }
.frequency-card strong { font-size: clamp(25px,2.2vw,36px); line-height: .95; letter-spacing: -.055em; }
.frequency-card span { margin-top: 7px; color: rgba(8,8,10,.58); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .11em; }
.network-tagline { border: 0; padding-inline: 22px; background: var(--ink); color: var(--paper); position: relative; }
.network-tagline::after { content: ""; position: absolute; inset: auto 0 0; height: 4px; background: linear-gradient(90deg,var(--pink),var(--cyan),var(--lime)); }
.network-tagline strong { color: var(--pink); font-size: clamp(16px,1.45vw,23px); letter-spacing: -.035em; }
.network-tagline span { color: var(--cyan); font-size: 9px; }
.network-tagline:hover { background: #15151a; border-color: transparent; }
.schedule-slider { position: relative; width: 100%; max-width: 540px; margin-inline: auto; overflow: hidden; background: #09092f; box-shadow: 0 20px 48px rgba(8,8,10,.16); }
.schedule-track { position: relative; aspect-ratio: 4 / 5; }
.schedule-slide { position: absolute; inset: 0; margin: 0; opacity: 0; transform: translateX(3%); transition: opacity .55s ease, transform .55s ease; pointer-events: none; }
.schedule-slide.is-active { opacity: 1; transform: none; pointer-events: auto; }
.schedule-slide img { display: block; width: 100%; height: 100%; object-fit: cover; }
.slider-arrow { position: absolute; top: 50%; z-index: 2; width: 42px; height: 42px; margin-top: -21px; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; background: rgba(8,8,10,.72); color: #fff; font-size: 28px; line-height: 1; cursor: pointer; backdrop-filter: blur(6px); }
.slider-prev { left: 14px; }.slider-next { right: 14px; }
.slider-dots { position: absolute; z-index: 2; left: 50%; bottom: 16px; transform: translateX(-50%); display: flex; gap: 8px; }
.slider-dots button { width: 8px; height: 8px; padding: 0; border: 1px solid #fff; border-radius: 50%; background: transparent; cursor: pointer; }
.slider-dots button.is-active { background: var(--pink); border-color: var(--pink); }

.social { padding: 110px clamp(24px, 8vw, 120px); background: var(--pink); color: #fff; display: grid; grid-template-columns: .85fr 1.15fr; gap: 8vw; align-items: center; position: relative; overflow: hidden; }
.social::before { content: "#NORTEFM"; position: absolute; left: -20px; bottom: -45px; font-size: 150px; font-weight: 950; letter-spacing: -.08em; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.18); }
.social .eyebrow span { background: #fff; box-shadow: 0 0 14px rgba(255,255,255,.7); }
.social h2 { font-size: clamp(52px, 6vw, 88px); position: relative; z-index: 1; }
.social h2 em { color: var(--ink); text-shadow: none; }
.social-grid { position: relative; z-index: 1; display: grid; gap: 12px; }
.social-grid a { min-height: 105px; padding: 18px 22px; border: 1px solid rgba(255,255,255,.42); display: grid; grid-template-columns: 64px 1fr 30px; gap: 20px; align-items: center; background: rgba(8,8,10,.08); transition: .25s; }
.social-grid a:hover { background: var(--ink); transform: translateX(8px); }
.social-icon { width: 58px; height: 58px; border: 2px solid currentColor; border-radius: 50%; display: grid; place-items: center; font: 900 38px/1 Arial; }
.social-icon.instagram svg { width: 29px; height: 29px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.social-icon.instagram .ig-dot { fill: currentColor; stroke: none; }
.social-icon.x-icon { font-size: 24px; }
.social-grid div { display: grid; gap: 5px; }
.social-grid small { text-transform: uppercase; letter-spacing: .15em; opacity: .65; font-size: 9px; }
.social-grid strong { font-size: 22px; }

.contact { padding: 120px clamp(24px, 8vw, 120px); display: grid; grid-template-columns: .9fr 1.1fr; gap: 10vw; background: linear-gradient(140deg, #0c0c0e, #050506); }
.contact-links { border-top: 1px solid rgba(255,255,255,.16); }
.contact-links > * { min-height: 105px; border-bottom: 1px solid rgba(255,255,255,.16); display: grid; grid-template-columns: 130px 1fr 30px; align-items: center; gap: 20px; transition: .2s; }
.contact-links a:hover { color: var(--pink); padding-left: 12px; }
.contact-links span { color: rgba(255,255,255,.42); text-transform: uppercase; letter-spacing: .16em; font-size: 10px; }
.contact-links strong { font-size: clamp(18px, 2vw, 27px); }

footer { min-height: 330px; padding: 48px clamp(24px, 5vw, 82px); position: relative; isolation: isolate; border-top: 5px solid var(--pink); color: rgba(255,255,255,.72); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; background: #08080a url('brand/footer-estudio.webp') center 47% / cover no-repeat; }
footer::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(5,5,12,.95) 0%, rgba(5,5,12,.82) 48%, rgba(5,5,12,.68) 100%), linear-gradient(0deg, rgba(5,5,12,.88), transparent 70%); }
.footer-inner { width: 100%; min-height: 230px; padding-right: 250px; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr auto; gap: 30px 50px; align-items: end; }
footer a { transition: color .2s; }
footer > a:not(.footer-live):hover { color: #fff; }
.footer-live { grid-column: 1 / -1; align-self: center; width: fit-content; display: inline-flex; align-items: center; gap: 18px; color: #fff; transition: transform .2s; }
.footer-live:hover { transform: translateY(-3px); }
.footer-play { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: var(--pink); color: #fff; padding-left: 3px; font-size: 17px; box-shadow: 0 0 30px rgba(255,7,94,.42); }
.footer-live-copy { display: grid; gap: 3px; }
.footer-live-copy small { color: var(--cyan); font-size: 9px; letter-spacing: .2em; }
.footer-live-copy strong { font-size: clamp(17px,1.5vw,22px); letter-spacing: .05em; }
.footer-info { display: grid; gap: 9px; align-self: end; }
.footer-info p { margin: 0; }
.footer-info a:hover, .decus-credit:hover { color: #fff; }
.decus-credit { justify-self: end; align-self: end; text-transform: none; letter-spacing: .05em; color: rgba(255,255,255,.62); }
.back-to-top { position: fixed; right: 22px; bottom: 170px; z-index: 31; width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: rgba(8,8,10,.9); color: #fff; font-size: 23px; line-height: 1; box-shadow: 0 8px 24px rgba(0,0,0,.35); opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .2s, visibility .2s, transform .2s, background .2s; }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--pink); }
.whatsapp-actions { position: fixed; right: 18px; bottom: 18px; z-index: 30; display: flex; flex-direction: column-reverse; gap: 9px; }
.whatsapp-button { min-width: 176px; padding: 11px 16px 11px 11px; display: flex; align-items: center; gap: 10px; border-radius: 999px; color: #fff; box-shadow: 0 10px 30px rgba(0,0,0,.38); transition: transform .2s; }
.whatsapp-button:hover { transform: translateX(-5px); }
.whatsapp-button span { width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; font-size: 9px; font-weight: 950; }
.whatsapp-button span svg { width: 19px; height: 19px; display: block; fill: currentColor; }
.whatsapp-button strong { font-size: 13px; }
.whatsapp-button.commercial { background: #168c52; }.whatsapp-button.live { background: var(--pink); }

.program-popup[hidden] { display: none; }
.program-popup { position: fixed; inset: 0; z-index: 100; padding: 24px; display: grid; place-items: center; background: rgba(2,2,8,.82); backdrop-filter: blur(8px); }
.program-popup-dialog { position: relative; width: min(88vw, 390px); height: min(760px, calc(100dvh - 48px)); max-height: calc(100dvh - 48px); overflow: hidden; display: grid; grid-template-rows: minmax(0,1fr) auto; background: #09092f; color: #fff; box-shadow: 0 28px 90px rgba(0,0,0,.65); border: 1px solid rgba(255,7,94,.8); }
.program-popup-dialog > img { display: block; width: 100%; height: 100%; min-height: 0; object-fit: contain; background: #09092f; }
.program-popup-close { position: absolute; z-index: 2; top: 10px; right: 10px; width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; background: rgba(8,8,10,.8); color: #fff; font-size: 25px; cursor: pointer; }
.program-popup-copy { padding: 20px 22px 24px; }
.program-popup-copy p { margin: 0 0 7px; color: var(--cyan); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .18em; }
.program-popup-copy h2 { margin: 0 0 18px; font-size: 25px; line-height: 1; letter-spacing: -.03em; }
.program-popup-live { width: 100%; min-height: 54px; border: 0; background: var(--cyan); color: #061014; box-shadow: 0 10px 28px rgba(25,219,232,.28); font-weight: 950; text-transform: uppercase; letter-spacing: .08em; cursor: pointer; transition: transform .2s, background .2s; }
.program-popup-live:hover { background: #74f4fb; transform: translateY(-2px); }
.program-popup-live span { margin-right: 8px; }

@keyframes pulse { 50% { opacity: .35; transform: scale(.7); } }
@keyframes bars { to { height: 33px; } }
@keyframes rotate { to { transform: rotate(360deg); } }

@media (max-width: 900px) {
  nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 130px; align-content: center; }
  .hero-art { position: absolute; width: 75vw; right: -28vw; opacity: .28; z-index: -1; }
  .hero-copy { max-width: 700px; }
  .network-layout { grid-template-columns: 1fr; gap: 60px; }
  .social, .contact, .neuquen { grid-template-columns: 1fr; }
  .ad-intro { display: block; }
}

@media (max-width: 560px) {
  .site-header { height: 76px; padding: 9px 20px; }
  .mini-brand { width: 145px; }
  .hero { padding: 90px 20px 48px; min-height: 680px; align-content: start; }
  .hero::after {
    content: "105.5";
    width: auto;
    height: auto;
    left: 22px;
    bottom: 4px;
    background: none;
    box-shadow: none;
    transform: none;
    color: transparent;
    -webkit-text-stroke: 1px rgba(25,219,232,.22);
    font-size: 92px;
    font-weight: 950;
    line-height: .9;
    letter-spacing: -.08em;
    z-index: -1;
  }
  h1 { font-size: 62px; }
  .hero-text { font-size: 16px; }
  .hero-text { white-space: normal; }
  .motto { font-size: 15px; line-height: 1.35; }
  .player { padding: 11px; gap: 12px; }
  .player { min-height: 104px; }
  .play-button { flex-basis: 76px; height: 76px; font-size: 19px; }
  .player-info strong { font-size: 15px; }
  .player-info small { font-size: 10px; }
  .equalizer { display: none; }
  .scroll-hint { display: none; }
  .frequencies, .social, .contact, .advertising, .neuquen { padding: 85px 20px; }
  .ad-grid { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }
  .section-heading { margin-bottom: 42px; }
  .network-layout { gap: 52px; }
  .panel-title { display: grid; min-height: 0; gap: 7px; }
  .frequency-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .frequency-grid { aspect-ratio: 4 / 5; min-height: 0; padding: 0; gap: 8px; }
  .frequency-card { padding: 10px 12px; }
  .frequency-card strong { font-size: 23px; }
  .frequency-card span { font-size: 9px; }
  .network-tagline { padding-inline: 12px; }
  .network-tagline strong { font-size: 15px; line-height: 1.05; }
  .network-tagline span { font-size: 8px; }
  .contact-links > * { grid-template-columns: 1fr 20px; gap: 8px; padding: 20px 0; }
  .contact-links span { grid-column: 1 / -1; }
  .social-grid a { grid-template-columns: 54px 1fr 20px; padding: 14px; }
  .social-icon { width: 50px; height: 50px; }
  footer { min-height: 430px; padding: 48px 20px 190px; background-position: 62% center; }
  footer::before { background: linear-gradient(90deg, rgba(5,5,12,.95), rgba(5,5,12,.72)), linear-gradient(0deg, rgba(5,5,12,.93), transparent 80%); }
  .footer-inner { min-height: 190px; padding-right: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; gap: 15px; }
  .footer-live { width: 100%; }
  .footer-play { width: 44px; height: 44px; }
  .back-to-top { right: 14px; bottom: 210px; width: 42px; height: 42px; }
  .decus-credit { align-self: flex-start; }
  .whatsapp-actions { left: auto; right: 12px; bottom: 70px; gap: 8px; }
  .whatsapp-button { width: fit-content; min-width: 190px; min-height: 54px; padding: 10px 16px 10px 10px; justify-content: flex-start; }
  .whatsapp-button span { display: grid; flex: 0 0 34px; width: 34px; height: 34px; }
  .whatsapp-button span svg { width: 20px; height: 20px; }
  .whatsapp-button strong { font-size: 13px; }
  .program-popup { padding: 14px; }
  .program-popup-dialog { width: min(92vw, 360px); height: min(700px, calc(100dvh - 28px)); max-height: calc(100dvh - 28px); }
  .program-popup-copy { padding: 15px 18px 18px; }
  .program-popup-copy h2 { margin-bottom: 13px; }
  .program-popup-live { min-height: 50px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; animation-duration: .01ms !important; }
}
