:root {
    --ink: #020711;
    --ink-soft: #041126;
    --navy: #071a3d;
    --navy-light: #0b275c;
    --blue: #087cff;
    --cyan: #19b9ff;
    --sun: #ffd21a;
    --amber: #ff9d00;
    --orange: #ff6800;
    --live: #f23838;
    --white: #f8fbff;
    --mist: #b7c7de;
    --muted: #7890b0;
    --line: rgba(142, 176, 221, 0.18);
    --display: "Saira Condensed", "Arial Narrow", sans-serif;
    --body: "Source Sans 3", "Segoe UI", sans-serif;
    --shell: min(1280px, calc(100% - 3rem));
    --header-height: 5.5rem;
    --dock-height: 5.35rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { min-width: 320px; scroll-behavior: smooth; background: var(--ink); }
body {
    margin: 0;
    padding-bottom: var(--dock-height);
    overflow-x: hidden;
    color: var(--white);
    background: var(--ink);
    font-family: var(--body);
    -webkit-font-smoothing: antialiased;
}

button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img { max-width: 100%; }
[hidden] { display: none !important; }

.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;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 1rem;
    left: 1rem;
    padding: .8rem 1rem;
    transform: translateY(-180%);
    color: var(--ink);
    background: var(--sun);
    font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.section-shell { width: var(--shell); margin-inline: auto; }
.section-pad { padding-block: clamp(5rem, 10vw, 9rem); }

.site-header {
    position: absolute;
    z-index: 50;
    top: 0;
    left: 50%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    width: var(--shell);
    min-height: var(--header-height);
    transform: translateX(-50%);
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: .85rem;
    text-decoration: none;
}
.brand img { width: 3.55rem; height: 3.55rem; border-radius: .65rem .2rem .65rem .2rem; object-fit: cover; }
.brand span { display: grid; }
.brand strong { font-family: var(--display); font-size: 1.25rem; line-height: 1; text-transform: uppercase; }
.brand small { margin-top: .22rem; color: var(--mist); font-size: .68rem; letter-spacing: .09em; text-transform: uppercase; }

.site-nav { display: flex; justify-content: center; gap: clamp(1.2rem, 3vw, 2.6rem); }
.site-nav a {
    position: relative;
    color: var(--mist);
    font-family: var(--display);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
}
.site-nav a::after { position: absolute; right: 0; bottom: -.65rem; left: 0; height: 2px; content: ""; transform: scaleX(0); background: var(--sun); transition: transform .2s ease; }
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); }

.header-live {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .65rem .9rem;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 99px;
    color: var(--white);
    background: rgba(2,7,17,.32);
    font-family: var(--display);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
}
.live-dot { display: inline-block; width: .5rem; height: .5rem; border-radius: 50%; background: var(--live); box-shadow: 0 0 0 .3rem rgba(242,56,56,.12), 0 0 1rem rgba(242,56,56,.7); }
.menu-toggle { display: none; }

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(24rem, .92fr);
    align-items: center;
    gap: clamp(2rem, 7vw, 7rem);
    min-height: min(56rem, 100vh);
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 5rem;
}
.hero::before {
    position: absolute;
    z-index: -1;
    top: 0;
    right: calc((100vw - 100%) / -2);
    bottom: 0;
    left: calc((100vw - 100%) / -2);
    content: "";
    background:
        radial-gradient(circle at 78% 46%, rgba(255,157,0,.19), transparent 20rem),
        radial-gradient(circle at 72% 44%, rgba(8,124,255,.2), transparent 39rem),
        linear-gradient(145deg, #020711, #06162f 55%, #020711);
}
.hero::after {
    position: absolute;
    z-index: -1;
    inset: 0 calc((100vw - 100%) / -2);
    content: "";
    opacity: .24;
    background-image: linear-gradient(rgba(25,185,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(25,185,255,.07) 1px, transparent 1px);
    background-size: 74px 74px;
    mask-image: linear-gradient(to bottom, #000, transparent 92%);
}

.eyebrow, .section-index {
    display: flex;
    align-items: center;
    gap: .7rem;
    margin: 0 0 1.2rem;
    color: var(--cyan);
    font-family: var(--display);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .17em;
    text-transform: uppercase;
}
.eyebrow span { width: 2.3rem; height: 2px; background: var(--sun); }

.hero h1, .section-heading h2, .live-hub h2, .about h2, .social-band h2 {
    margin: 0;
    font-family: var(--display);
    font-weight: 800;
    letter-spacing: -.045em;
    text-transform: uppercase;
}
.hero h1 { max-width: 9.5ch; font-size: clamp(4.4rem, 8.5vw, 8.2rem); line-height: .8; }
.hero h1 em { display: block; color: transparent; background: linear-gradient(95deg, var(--sun), var(--amber) 58%, var(--orange)); background-clip: text; -webkit-background-clip: text; font-style: normal; }
.hero-lead { max-width: 38rem; margin: 2rem 0 0; color: var(--mist); font-size: clamp(1.05rem, 1.6vw, 1.25rem); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2.25rem; }

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .85rem;
    min-height: 3.35rem;
    padding: .8rem 1.3rem;
    border: 1px solid transparent;
    border-radius: .35rem 1.15rem .35rem 1.15rem;
    font-family: var(--display);
    font-size: .9rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.button:hover { transform: translateY(-3px); }
.button-sun { color: var(--ink); background: var(--sun); box-shadow: 0 1rem 2.5rem rgba(255,157,0,.2); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.25); background: rgba(2,7,17,.2); }
.button-play { width: 0; height: 0; border-top: .35rem solid transparent; border-bottom: .35rem solid transparent; border-left: .55rem solid currentColor; }

.hero-signals { display: flex; flex-wrap: wrap; gap: 1.7rem; margin: 3rem 0 0; padding: 0; list-style: none; }
.hero-signals li { color: var(--mist); font-family: var(--display); font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.hero-signals span { margin-right: .35rem; color: var(--sun); }

.hero-stage { position: relative; min-height: 35rem; }
.sun-disc {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    place-content: center;
    width: min(26rem, 76vw);
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255,210,26,.52);
    border-radius: 50%;
    text-align: center;
    background: radial-gradient(circle at 42% 36%, #ffe95f, var(--sun) 25%, var(--amber) 58%, var(--orange));
    box-shadow: 0 0 4rem rgba(255,157,0,.22), inset -2rem -2rem 5rem rgba(201,63,0,.25);
}
.sun-disc strong { font-family: var(--display); font-size: clamp(6.5rem, 13vw, 10rem); line-height: .72; letter-spacing: -.07em; color: var(--ink); }
.sun-disc > span { color: rgba(2,7,17,.72); font-family: var(--display); font-size: .72rem; font-weight: 800; letter-spacing: .17em; }
.sun-disc .sun-kicker { margin-bottom: .6rem; font-size: 1rem; }
.hero-orbits { position: absolute; inset: 0; }
.hero-orbits i { position: absolute; inset: var(--orbit); border: 1px solid rgba(25,185,255,.2); border-radius: 50%; }
.hero-orbits i:nth-child(1) { --orbit: 1rem; }
.hero-orbits i:nth-child(2) { --orbit: 4rem; }
.hero-orbits i:nth-child(3) { --orbit: 7rem; }

.stage-card { position: absolute; z-index: 3; padding: .9rem 1rem; border: 1px solid rgba(255,255,255,.15); background: rgba(2,7,17,.82); box-shadow: 0 1.25rem 3rem rgba(0,0,0,.35); backdrop-filter: blur(12px); }
.stage-card small { color: var(--muted); font-family: var(--display); font-size: .66rem; letter-spacing: .14em; }
.stage-card strong { display: block; margin-top: .2rem; font-family: var(--display); font-size: 1rem; text-transform: uppercase; }
.stage-card-live { bottom: 3.6rem; left: -1rem; display: flex; align-items: center; gap: .8rem; min-width: 13rem; border-radius: .35rem 1rem .35rem 1rem; }
.stage-card-stream { top: 4rem; right: -.5rem; border-radius: 1rem .35rem 1rem .35rem; text-align: right; }

.live-hub { position: relative; overflow: hidden; padding-block: clamp(4rem, 7vw, 6rem); color: var(--ink); background: var(--sun); }
.live-hub::before { position: absolute; inset: 0; content: ""; opacity: .14; background-image: repeating-linear-gradient(110deg, transparent 0 44px, var(--ink) 45px 46px); }
.live-hub-grid { position: relative; display: grid; grid-template-columns: .72fr 1.28fr; align-items: center; gap: clamp(2rem, 6vw, 6rem); }
.live-hub .section-index { color: rgba(2,7,17,.6); }
.live-hub h2 { max-width: 8ch; font-size: clamp(3.4rem, 6vw, 6rem); line-height: .82; }
.live-hub h2 span { color: var(--blue); }
.live-console { display: grid; grid-template-columns: auto 1fr minmax(8rem, 1fr) auto; align-items: center; gap: 1.3rem; padding: 1.25rem; border-radius: 1.3rem .4rem 1.3rem .4rem; color: var(--white); background: var(--ink-soft); box-shadow: 0 1.5rem 4rem rgba(81,48,0,.22); }
.console-status { display: grid; place-items: center; gap: .45rem; padding-inline: .65rem; color: var(--mist); font-family: var(--display); font-size: .62rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.console-program { display: grid; min-width: 0; }
.console-program small { color: var(--cyan); font-family: var(--display); font-size: .63rem; font-weight: 700; letter-spacing: .12em; }
.console-program strong { overflow: hidden; font-family: var(--display); font-size: clamp(1.25rem, 2.3vw, 2rem); line-height: 1; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.console-program > span { margin-top: .3rem; color: var(--muted); font-size: .8rem; }
.console-wave { display: flex; align-items: center; justify-content: center; gap: 3px; height: 3.5rem; overflow: hidden; }
.console-wave i { width: 3px; height: calc(.5rem + (var(--n, 1) * 1px)); max-height: 3rem; border-radius: 3px; background: linear-gradient(to top, var(--blue), var(--cyan)); animation: wave 1.2s ease-in-out infinite alternate; animation-delay: calc(var(--n, 1) * -70ms); }
.console-wave i:nth-child(3n) { --n: 22; }.console-wave i:nth-child(4n) { --n: 32; }.console-wave i:nth-child(5n) { --n: 15; }.console-wave i:nth-child(7n) { --n: 38; }
.console-play { display: grid; place-items: center; width: 4rem; aspect-ratio: 1; border: 0; border-radius: 50%; color: var(--ink); background: var(--sun); cursor: pointer; box-shadow: 0 0 0 .5rem rgba(255,210,26,.08); }
.console-play .button-play { transform: scale(1.25); margin-left: .2rem; }

@keyframes wave { from { transform: scaleY(.35); opacity: .55; } to { transform: scaleY(1); opacity: 1; } }

/* SECTION HEADINGS */
.section-heading { margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.section-heading h2, .about h2, .social-band h2 { font-size: clamp(3.6rem, 7vw, 7rem); line-height: .82; }
.section-heading h2 span, .about h2 span, .social-band h2 span { color: var(--sun); }
.split-heading { display: grid; grid-template-columns: 1.35fr .65fr; align-items: end; gap: 3rem; }
.split-heading > p { max-width: 28rem; margin: 0 0 .4rem; color: var(--mist); font-size: 1.05rem; line-height: 1.55; }

.webtv { position: relative; }
.webtv::before { position: absolute; z-index: -1; top: 8rem; right: -24vw; width: 52vw; aspect-ratio: 1; border-radius: 50%; content: ""; background: radial-gradient(circle, rgba(8,124,255,.2), transparent 68%); }
.webtv-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(17rem, .34fr); border: 1px solid var(--line); background: var(--ink-soft); box-shadow: 0 2rem 5rem rgba(0,0,0,.28); }
.video-stage { position: relative; aspect-ratio: 16/9; overflow: hidden; background: #01040a; }
.video-stage iframe { display: block; width: 100%; height: 100%; border: 0; }
.video-placeholder { position: absolute; inset: 0; display: grid; place-items: center; overflow: hidden; background: radial-gradient(circle at 50% 48%, rgba(255,210,26,.16), transparent 18rem), linear-gradient(135deg, #031029, #020711); }
.video-placeholder::before, .video-placeholder::after { position: absolute; width: 31rem; aspect-ratio: 1; border: 1px solid rgba(25,185,255,.2); border-radius: 50%; content: ""; }
.video-placeholder::after { width: 22rem; }
.video-beam { position: absolute; width: 2px; height: 130%; transform: rotate(24deg); background: linear-gradient(transparent, var(--sun), transparent); box-shadow: 0 0 2rem var(--amber); }
.video-label { position: absolute; top: 1.25rem; left: 1.25rem; color: var(--cyan); font-family: var(--display); font-size: .72rem; font-weight: 700; letter-spacing: .14em; }
.video-start { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: .8rem; padding: 1rem 1.25rem; border: 1px solid rgba(255,255,255,.22); border-radius: 99px; color: var(--white); background: rgba(2,7,17,.78); font-family: var(--display); font-size: .82rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; cursor: pointer; }
.video-start:disabled { cursor: wait; opacity: .7; }
.video-now { display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(1.5rem, 3vw, 2.5rem); border-left: 1px solid var(--line); background: linear-gradient(160deg, rgba(8,124,255,.14), transparent 46%); }
.video-now-index { color: var(--sun); font-family: var(--display); font-size: .68rem; font-weight: 700; letter-spacing: .15em; }
.video-now h3 { margin: .8rem 0; font-family: var(--display); font-size: clamp(1.7rem, 3vw, 2.6rem); line-height: .95; text-transform: uppercase; }
.video-now p { margin: 0 0 1.4rem; color: var(--muted); font-size: .9rem; }
.video-now a { width: fit-content; color: var(--cyan); font-family: var(--display); font-size: .75rem; font-weight: 700; letter-spacing: .09em; text-decoration: none; text-transform: uppercase; }
.video-rail { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 1rem; }
.video-card { position: relative; min-width: 0; border: 1px solid var(--line); background: var(--ink-soft); cursor: pointer; transition: transform .2s ease, border-color .2s ease; }
.video-card:hover, .video-card:focus-within, .video-card.is-active { transform: translateY(-4px); border-color: rgba(255,210,26,.62); }
.video-card button { display: block; width: 100%; padding: 0; border: 0; color: inherit; background: transparent; text-align: left; cursor: pointer; }
.video-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--navy); }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.video-card:hover img { transform: scale(1.045); }
.video-thumb::after { position: absolute; inset: 0; content: ""; background: linear-gradient(to top, rgba(2,7,17,.72), transparent 55%); }
.thumb-play { position: absolute; z-index: 2; right: .8rem; bottom: .7rem; display: grid; place-items: center; width: 2.2rem; aspect-ratio: 1; border-radius: 50%; color: var(--ink); background: var(--sun); }
.video-card-copy { display: grid; gap: .45rem; padding: 1rem; }
.video-card-copy strong { display: -webkit-box; overflow: hidden; font-family: var(--display); font-size: 1.05rem; line-height: 1.05; text-transform: uppercase; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.video-card-copy span { color: var(--muted); font-size: .72rem; }
.video-card-skeleton { min-height: 14rem; cursor: wait; overflow: hidden; }
.video-card-skeleton::after { position: absolute; inset: 0; content: ""; transform: translateX(-100%); background: linear-gradient(90deg, transparent, rgba(255,255,255,.07), transparent); animation: shimmer 1.4s infinite; }
.video-card-skeleton span { display: block; aspect-ratio: 16/9; background: var(--navy); }
.video-card-skeleton i { display: block; width: 76%; height: .7rem; margin: 1rem; border-radius: 1rem; background: rgba(183,199,222,.12); }
.video-card-skeleton i + i { width: 42%; margin-top: -.45rem; }
.inline-notice { padding: 1rem; border: 1px solid var(--line); color: var(--mist); background: var(--ink-soft); }
@keyframes shimmer { to { transform: translateX(100%); } }

.schedule-section { position: relative; background: #06132a; }
.schedule-section::before { position: absolute; inset: 0; content: ""; opacity: .18; background-image: linear-gradient(90deg, transparent 49.8%, rgba(25,185,255,.18) 50%, transparent 50.2%); background-size: 9rem 100%; }
.schedule-section .section-shell { position: relative; }
.day-tabs { display: flex; gap: .45rem; margin-bottom: 1.5rem; overflow-x: auto; scrollbar-width: thin; }
.day-tabs button { flex: 1 0 auto; min-width: 8rem; padding: .9rem 1rem; border: 1px solid var(--line); color: var(--muted); background: rgba(2,7,17,.3); font-family: var(--display); font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; }
.day-tabs button[aria-selected=true] { border-color: var(--sun); color: var(--ink); background: var(--sun); }
.day-tabs button:focus-visible { outline: 3px solid var(--cyan); outline-offset: 2px; }
.schedule-list { border-top: 1px solid var(--line); }
.schedule-row { position: relative; display: grid; grid-template-columns: 5rem minmax(2rem, .3fr) 1fr auto; align-items: center; gap: 1.2rem; min-height: 6rem; padding: 1rem; border-bottom: 1px solid var(--line); transition: background-color .2s ease, transform .2s ease; }
.schedule-row:hover { transform: translateX(.35rem); background: rgba(8,124,255,.07); }
.schedule-row time { color: var(--sun); font-family: var(--display); font-size: 1.45rem; font-weight: 800; }
.schedule-line { height: 1px; background: linear-gradient(90deg, var(--blue), transparent); }
.schedule-row h3 { margin: 0; font-family: var(--display); font-size: clamp(1.25rem, 2.5vw, 1.85rem); line-height: 1; text-transform: uppercase; }
.schedule-row p { margin: .25rem 0 0; color: var(--muted); font-size: .78rem; }
.schedule-row.is-special { background: linear-gradient(90deg, rgba(8,124,255,.16), transparent 70%); }
.schedule-row.is-special h3::after { display: inline-block; margin-left: .65rem; padding: .25rem .4rem; vertical-align: middle; border: 1px solid var(--cyan); color: var(--cyan); content: "MIÉRCOLES"; font-size: .55rem; letter-spacing: .1em; }
.schedule-row.is-live { background: linear-gradient(90deg, rgba(255,210,26,.12), transparent 70%); }
.on-air-badge { display: inline-flex; align-items: center; gap: .4rem; padding: .38rem .58rem; border-radius: 99px; color: var(--white); background: var(--live); font-family: var(--display); font-size: .62rem; font-weight: 800; letter-spacing: .09em; }
.on-air-badge::before { width: .35rem; height: .35rem; border-radius: 50%; content: ""; background: currentColor; }

/* ABOUT */
.about { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: clamp(3rem, 8vw, 8rem); }
.about-signal { position: relative; display: grid; place-items: center; min-height: 32rem; }
.about-signal::before { position: absolute; width: min(24rem, 75vw); aspect-ratio: 1; border-radius: 50%; content: ""; background: radial-gradient(circle at 38% 35%, #fff47a, var(--sun) 30%, var(--amber) 65%, var(--orange)); box-shadow: 0 0 4rem rgba(255,157,0,.2); }
.about-signal span { position: relative; z-index: 2; color: var(--ink); font-family: var(--display); font-size: clamp(6rem, 13vw, 10rem); font-weight: 800; letter-spacing: -.08em; }
.about-signal i { position: absolute; width: calc(25rem + var(--ring) * 5rem); aspect-ratio: 1; border: 1px solid rgba(25,185,255,.2); border-radius: 50%; }
.about-signal i:nth-of-type(1) { --ring: 0; }.about-signal i:nth-of-type(2) { --ring: 1; }.about-signal i:nth-of-type(3) { --ring: 2; }
.about-copy > p:not(.section-index) { max-width: 40rem; color: var(--mist); font-size: 1.1rem; line-height: 1.65; }
.about-facts { display: grid; grid-template-columns: repeat(3, 1fr); margin: 2.4rem 0 0; border-block: 1px solid var(--line); }
.about-facts div { display: grid; gap: .2rem; padding: 1.1rem 0; }
.about-facts div + div { padding-left: 1rem; border-left: 1px solid var(--line); }
.about-facts dt { color: var(--muted); font-family: var(--display); font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.about-facts dd { margin: 0; font-family: var(--display); font-size: 1.05rem; font-weight: 700; text-transform: uppercase; }

.social-band { padding-block: clamp(4rem, 8vw, 7rem); color: var(--ink); background: var(--sun); }
.social-band-inner { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 4rem; }
.social-band .section-index { color: rgba(2,7,17,.58); }
.social-band h2 { max-width: 9ch; }
.social-band h2 span { color: var(--blue); }
.social-links { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(2,7,17,.25); }
.social-links a { display: flex; justify-content: space-between; gap: .8rem; min-width: 0; padding: 1.1rem .3rem; border-bottom: 1px solid rgba(2,7,17,.25); color: var(--ink); font-family: var(--display); font-size: clamp(.82rem, 1.3vw, 1.05rem); font-weight: 800; letter-spacing: .04em; overflow-wrap: anywhere; text-decoration: none; text-transform: uppercase; }
.social-links a:nth-child(odd) { padding-right: 1.2rem; }
.social-links a:nth-child(even) { padding-left: 1.2rem; border-left: 1px solid rgba(2,7,17,.25); }
.social-links a:hover span { transform: translate(3px, -3px); }
.social-links span { transition: transform .2s ease; }

.site-footer { padding: 4rem 0 1.5rem; background: #01040b; }
.footer-grid { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 3rem; }
.footer-brand img { width: 7rem; height: 7rem; border-radius: 1rem .35rem 1rem .35rem; object-fit: cover; }
.footer-statement { display: grid; }
.footer-statement strong { font-family: var(--display); font-size: clamp(2rem, 4vw, 3.3rem); line-height: .9; text-transform: uppercase; }
.footer-statement span { margin-top: .5rem; color: var(--sun); font-family: var(--display); font-size: .8rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.site-footer nav { display: grid; gap: .6rem; }
.site-footer nav a { color: var(--mist); font-family: var(--display); font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.site-footer nav a:hover { color: var(--sun); }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 3rem; padding-top: 1rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .72rem; }

.radio-dock {
    position: fixed;
    z-index: 100;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: auto auto minmax(0, 1fr) auto minmax(8rem, 13rem);
    align-items: center;
    gap: 1rem;
    min-height: var(--dock-height);
    padding: .65rem max(1rem, calc((100vw - 1280px) / 2));
    border-top: 1px solid rgba(25,185,255,.28);
    background: rgba(2,7,17,.94);
    box-shadow: 0 -1rem 4rem rgba(0,0,0,.35);
    backdrop-filter: blur(18px);
}
.dock-play { display: grid; place-items: center; width: 3.5rem; aspect-ratio: 1; border: 0; border-radius: 50%; color: var(--ink); background: var(--sun); cursor: pointer; box-shadow: 0 0 0 .42rem rgba(255,210,26,.08); }
.dock-play-icon { width: 0; height: 0; margin-left: .18rem; border-top: .42rem solid transparent; border-bottom: .42rem solid transparent; border-left: .62rem solid currentColor; }
.radio-dock.is-playing .dock-play-icon { width: .72rem; height: .85rem; margin: 0; border: 0; border-inline: .22rem solid currentColor; }
.dock-signal { display: flex; align-items: center; gap: 2px; height: 1.6rem; }
.dock-signal i { width: 2px; height: 35%; background: var(--cyan); }
.radio-dock.is-playing .dock-signal i { animation: dock-wave .7s ease-in-out infinite alternate; }
.dock-signal i:nth-child(2) { height: 80%; animation-delay: -.2s !important; }.dock-signal i:nth-child(3) { height: 55%; animation-delay: -.4s !important; }.dock-signal i:nth-child(4) { height: 95%; animation-delay: -.1s !important; }
.dock-copy { display: grid; min-width: 0; }
.dock-copy > span { color: var(--cyan); font-family: var(--display); font-size: .59rem; font-weight: 700; letter-spacing: .12em; }
.dock-copy strong { overflow: hidden; font-family: var(--display); font-size: 1.05rem; line-height: 1.1; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.dock-frequency { display: flex; align-items: flex-end; gap: .35rem; padding-inline: 1rem; border-inline: 1px solid var(--line); }
.dock-frequency strong { color: var(--sun); font-family: var(--display); font-size: 2.1rem; line-height: .85; letter-spacing: -.05em; }
.dock-frequency span { color: var(--muted); font-family: var(--display); font-size: .7rem; font-weight: 700; }
.volume-control { display: flex; align-items: center; gap: .65rem; }
.volume-control svg { width: 1.15rem; fill: none; stroke: var(--mist); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.volume-control input { width: 100%; accent-color: var(--sun); cursor: pointer; }
@keyframes dock-wave { to { transform: scaleY(1.5); opacity: .55; } }

button:focus-visible, a:focus-visible, input:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }

@media (max-width: 1024px) {
    :root { --shell: min(100% - 2rem, 860px); }
    .site-header { grid-template-columns: 1fr auto; }
    .header-live { display: none; }
    .menu-toggle { display: grid; place-content: center; gap: 4px; width: 2.8rem; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.18); color: var(--white); background: rgba(2,7,17,.55); cursor: pointer; }
    .menu-toggle > span:not(.sr-only) { display: block; width: 1.15rem; height: 2px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
    .menu-toggle[aria-expanded=true] > span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .menu-toggle[aria-expanded=true] > span:nth-child(2) { opacity: 0; }
    .menu-toggle[aria-expanded=true] > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
    .site-nav { position: absolute; top: calc(100% + .5rem); right: 0; left: 0; display: none; flex-direction: column; gap: 0; padding: .7rem; border: 1px solid var(--line); background: rgba(2,7,17,.97); box-shadow: 0 1.5rem 3rem rgba(0,0,0,.35); }
    .site-nav.is-open { display: flex; }
    .site-nav a { padding: .9rem; border-bottom: 1px solid var(--line); }
    .site-nav a:last-child { border-bottom: 0; }

    .hero { grid-template-columns: 1fr; min-height: auto; padding-top: calc(var(--header-height) + 5rem); }
    .hero-copy { position: relative; z-index: 4; }
    .hero h1 { max-width: 10ch; }
    .hero-stage { min-height: 31rem; }
    .sun-disc { width: min(24rem, 72vw); }
    .stage-card-live { left: 7%; }
    .stage-card-stream { right: 7%; }

    .live-hub-grid { grid-template-columns: 1fr; }
    .live-hub h2 { max-width: none; }
    .webtv-layout { grid-template-columns: 1fr; }
    .video-now { min-height: 13rem; border-top: 1px solid var(--line); border-left: 0; }
    .video-rail { grid-template-columns: repeat(2, 1fr); }
    .about { grid-template-columns: 1fr; }
    .about-signal { order: 2; min-height: 28rem; }
    .social-band-inner { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: auto 1fr; }
    .site-footer nav { grid-column: 1 / -1; grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 700px) {
    :root { --shell: calc(100% - 1.25rem); --dock-height: 4.8rem; }
    .section-pad { padding-block: 4.5rem; }
    .brand img { width: 3rem; height: 3rem; }
    .brand strong { font-size: 1.05rem; }
    .hero { gap: 1rem; padding-top: calc(var(--header-height) + 3rem); padding-bottom: 3rem; }
    .hero h1 { font-size: clamp(3.8rem, 18vw, 6rem); }
    .hero-lead { font-size: 1rem; }
    .hero-actions .button { width: 100%; }
    .hero-signals { gap: .8rem 1.25rem; margin-top: 2rem; }
    .hero-stage { min-height: 25rem; }
    .sun-disc { width: min(20rem, 78vw); }
    .sun-disc strong { font-size: 7rem; }
    .hero-orbits i:nth-child(2), .hero-orbits i:nth-child(3) { display: none; }
    .stage-card { padding: .7rem .8rem; }
    .stage-card-live { bottom: 1rem; left: 0; min-width: 11rem; }
    .stage-card-stream { top: 1rem; right: 0; }

    .live-console { grid-template-columns: auto 1fr auto; gap: .75rem; padding: 1rem .75rem; }
    .console-status { display: none; }
    .console-wave { display: none; }
    .console-program strong { font-size: 1.25rem; }
    .console-play { width: 3.3rem; }
    .split-heading { grid-template-columns: 1fr; gap: 1.2rem; }
    .section-heading h2, .about h2, .social-band h2 { font-size: clamp(3.3rem, 15vw, 5rem); }

    .video-rail { display: flex; margin-right: -.625rem; overflow-x: auto; scroll-snap-type: x mandatory; }
    .video-card { flex: 0 0 78vw; scroll-snap-align: start; }
    .video-placeholder::before { width: 20rem; }
    .video-placeholder::after { width: 14rem; }

    .day-tabs { margin-inline: -.625rem; padding-inline: .625rem; }
    .schedule-row { grid-template-columns: 4rem 1fr auto; gap: .75rem; min-height: 5.4rem; padding: .85rem .2rem; }
    .schedule-line { display: none; }
    .schedule-row time { font-size: 1.2rem; }
    .schedule-row h3 { font-size: 1.2rem; }
    .schedule-row p { font-size: .7rem; }
    .on-air-badge { padding: .3rem .4rem; font-size: .5rem; }
    .schedule-row.is-special h3::after { display: block; width: fit-content; margin: .35rem 0 0; }

    .about-signal { min-height: 23rem; }
    .about-signal::before { width: 18rem; }
    .about-signal i { width: calc(18rem + var(--ring) * 2.5rem); }
    .about-facts { grid-template-columns: 1fr; }
    .about-facts div + div { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
    .social-links { grid-template-columns: 1fr; }
    .social-links a:nth-child(n) { padding-inline: .2rem; border-left: 0; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand img { width: 5rem; height: 5rem; }
    .site-footer nav { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: .35rem; }

    .radio-dock { grid-template-columns: auto auto minmax(0,1fr); gap: .7rem; padding: .55rem .75rem; }
    .dock-frequency, .volume-control { display: none; }
    .dock-play { width: 3.2rem; }
    .dock-copy strong { font-size: .95rem; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
