/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
    --bg: #ffffff;
    --bg2: #f5f2ed;
    --bg3: #edeae4;
    --surface: #e6e2db;
    --border: rgba(22,17,11,.1);
    --red: #d4001f;
    --red-dim: rgba(212,0,31,.1);
    --red-glow: rgba(212,0,31,.28);
    --gold: #b87800;
    --text: #16110b;
    --muted: #6b6058;
    --dim: #c8c3bb;
    --peacock: linear-gradient(90deg,#d4001f,#e85c00,#c8860a,#008a42,#0057b8,#6b1fad);
    --font-disp: 'Bebas Neue', sans-serif;
    --font-body: 'Barlow', sans-serif;
    --font-serif: 'Barlow Condensed', sans-serif;
    --r: 6px;
    --r-lg: 12px;
    --shadow-sm: 0 1px 4px rgba(22,17,11,.08);
    --shadow-md: 0 4px 20px rgba(22,17,11,.10);
    --shadow-lg: 0 12px 40px rgba(22,17,11,.14);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ─── UTILITY ────────────────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--red);
}

.section-title {
    font-family: var(--font-disp);
    font-size: clamp(42px, 6vw, 68px);
    line-height: .95;
    letter-spacing: .01em;
    color: var(--text);
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 99px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.pill-red {
    background: var(--red-dim);
    border: 1px solid rgba(212,0,31,.3);
    color: var(--red);
}

.pill-live {
    background: var(--red);
    color: #fff;
    animation: pulse-bg 2s ease-in-out infinite;
}

@keyframes pulse-bg {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .85;
    }
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.dot.blink {
    animation: blink 1.1s step-start infinite;
}

@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* ─── PEACOCK STRIPE ─────────────────────────────────────── */
.peacock-bar {
    height: 3px;
    background: var(--peacock);
    width: 100%;
}

/* ─── NAV ────────────────────────────────────────────────── */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border);
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-mark {
    width: 38px;
    height: 38px;
    position: relative;
    flex-shrink: 0;
}

.logo-mark svg {
    width: 38px;
    height: 38px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text .brand {
    font-family: var(--font-disp);
    font-size: 20px;
    letter-spacing: .06em;
    color: var(--text);
}

.logo-text .sub {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .04em;
    color: var(--muted);
    transition: color .2s;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--r);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .04em;
    transition: all .2s;
}

.btn-primary {
    background: var(--red);
    color: #fff;
    border: 1px solid var(--red);
}

.btn-primary:hover {
    background: #b8001a;
    box-shadow: 0 4px 18px var(--red-glow);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    border-color: rgba(22,17,11,.25);
    background: rgba(22,17,11,.05);
}

.btn-outline-red {
    background: transparent;
    color: var(--red);
    border: 1px solid rgba(212,0,31,.45);
}

.btn-outline-red:hover {
    background: var(--red-dim);
    border-color: var(--red);
}

/* ─── TICKER ─────────────────────────────────────────────── */
#ticker {
    background: var(--text);
    padding: 6px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-inner {
    display: inline-flex;
    animation: ticker-scroll 40s linear infinite;
    gap: 0;
}

.ticker-inner:hover {
    animation-play-state: paused;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 40px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
}

.ticker-sep {
    color: var(--red);
    font-size: 14px;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ─── HERO ───────────────────────────────────────────────── */
#hero {
    padding: 40px 0;
    position: relative;
    overflow: hidden;

    /* min-height: 100vh */
    display: flex;
    flex-direction: column;
    background: var(--bg);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
    flex: 1;
    padding: 40px 0 60px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,0,31,.05) 0%, transparent 65%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,87,184,.04) 0%, transparent 65%);
}

/* subtle paper grain */
.scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(22,17,11,.008) 3px,
      rgba(22,17,11,.008) 4px
    );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-disp);
    font-size: clamp(64px, 9vw, 110px);
    line-height: .9;
    letter-spacing: .01em;
    margin-bottom: 28px;
    color: var(--text);
}

.hero-title .line2 {
    color: var(--red);
}

.hero-desc {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(22,17,11,.65);
    max-width: 520px;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-desc strong {
    color: var(--text);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

.hero-actions .btn {
    padding: 14px 28px;
    font-size: 14px;
}

.hero-stats {
    display: flex;
    gap: 36px;
}

.h-stat {
}

.h-stat .num {
    font-family: var(--font-disp);
    font-size: 36px;
    letter-spacing: .02em;
    color: var(--text);
    line-height: 1;
}

.h-stat .desc {
    font-size: 12px;
    color: var(--muted);
    letter-spacing: .04em;
    margin-top: 4px;
}

.h-stat-div {
    width: 1px;
    background: var(--border);
}

/* Live monitor card */
.hero-monitor {
    position: relative;
    z-index: 1;
}

.monitor-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(22,17,11,.04);
}

.monitor-header {
    background: var(--text);
    color: #fff;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(22,17,11,.1);
}

.monitor-title {
    font-family: var(--font-disp);
    font-size: 16px;
    letter-spacing: .1em;
    color: #fff;
}

.monitor-body {
    padding: 24px 20px;
    background: var(--bg);
}

.now-playing {
    background: var(--red-dim);
    border: 1px solid rgba(212,0,31,.2);
    border-radius: 10px;
    padding: 18px;
    margin-bottom: 16px;
}

.np-label {
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 600;
    margin-bottom: 8px;
}

.np-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.np-sub {
    font-size: 12px;
    color: var(--muted);
}

.np-waveform {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 32px;
    margin: 14px 0 10px;
}

.wave-bar {
    flex: 1;
    background: var(--red);
    border-radius: 2px;
    animation: wave-anim var(--d, .8s) ease-in-out infinite alternate;
}

@keyframes wave-anim {
    0% {
        transform: scaleY(.2);
    }

    100% {
        transform: scaleY(1);
    }
}

.np-time {
    font-size: 11px;
    color: var(--muted);
    display: flex;
    justify-content: space-between;
}

.np-progress {
    height: 3px;
    background: var(--dim);
    border-radius: 99px;
    margin-bottom: 4px;
    overflow: hidden;
}

.np-progress-fill {
    height: 100%;
    width: 38%;
    background: var(--red);
    border-radius: 99px;
}

.schedule-next {
}

.sn-label {
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 10px;
}

.sn-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    color: var(--text);
}

.sn-item:last-child {
    border-bottom: none;
}

.sn-time {
    color: var(--muted);
    font-variant-numeric: tabular-nums;
}

.sn-format {
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.fmt-2 {
    background: rgba(212,0,31,.1);
    color: var(--red);
}

.fmt-4 {
    background: rgba(0,87,184,.1);
    color: #0057b8;
}

.fmt-1 {
    background: rgba(184,120,0,.1);
    color: var(--gold);
}

/* ─── ABOUT ──────────────────────────────────────────────── */
#about {
    padding: 100px 0;
    position: relative;
    background: var(--bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content .section-title {
    margin: 12px 0 24px;
}

.about-content p {
    font-size: 16px;
    color: rgba(22,17,11,.65);
    line-height: 1.75;
    margin-bottom: 18px;
    font-weight: 300;
}

.about-content p strong {
    color: var(--text);
    font-weight: 600;
}

.about-features {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.feat-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    transition: border-color .2s, transform .2s, box-shadow .2s;
}

.feat-row:hover {
    border-color: rgba(212,0,31,.3);
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.feat-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--red-dim);
    border: 1px solid rgba(212,0,31,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}

.feat-text .title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--text);
}

.feat-text .desc {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
}

/* About visual */
.about-visual {
    position: relative;
}

.broadcast-clock {
    width: 100%;
    aspect-ratio: 1;
    max-width: 380px;
    margin: 0 auto;
    position: relative;
}

.clock-svg {
    width: 100%;
    height: 100%;
}

.clock-label {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.clock-label .num {
    font-family: var(--font-disp);
    font-size: 52px;
    line-height: 1;
    color: var(--text);
}

.clock-label .sub {
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 4px;
}

/* floating badges */
.float-badge {
    position: absolute;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
}

.float-badge .fb-val {
    font-family: var(--font-disp);
    font-size: 22px;
    color: var(--red);
    line-height: 1;
    display: block;
}

.float-badge .fb-lbl {
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 2px;
}

.badge-tl {
    top: 10%;
    left: -20px;
    animation: float1 4s ease-in-out infinite;
}

.badge-br {
    bottom: 12%;
    right: -20px;
    animation: float2 5s ease-in-out infinite;
}

@keyframes float1 {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes float2 {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

/* ─── SCHEDULE ───────────────────────────────────────────── */
#schedule {
    padding: 100px 0;
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.schedule-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.schedule-head .section-title {
    margin: 12px 0 18px;
}

.schedule-head p {
    color: var(--muted);
    font-size: 15px;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.sched-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform .25s, border-color .25s, box-shadow .25s;
}

.sched-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.sched-card.featured {
    border-color: rgba(212,0,31,.3);
}

.sched-card.featured:hover {
    border-color: rgba(212,0,31,.5);
}

.sched-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.sched-card.type-2::before {
    background: var(--red);
}

.sched-card.type-4::before {
    background: #0057b8;
}

.sched-card.type-1::before {
    background: var(--gold);
}

.sched-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.sched-dur {
    font-family: var(--font-disp);
    font-size: 64px;
    line-height: 1;
    letter-spacing: .02em;
    margin-bottom: 4px;
}

.sched-card.type-2 .sched-dur {
    color: var(--red);
}

.sched-card.type-4 .sched-dur {
    color: #0057b8;
}

.sched-card.type-1 .sched-dur {
    color: var(--gold);
}

.sched-dur-unit {
    font-size: 15px;
    color: var(--muted);
    font-family: var(--font-body);
    font-weight: 400;
}

.sched-name {
    font-size: 17px;
    font-weight: 600;
    margin: 12px 0 8px;
    color: var(--text);
}

.sched-when {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

.sched-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 99px;
}

.sched-card.type-2 .sched-badge {
    background: var(--red-dim);
    color: var(--red);
    border: 1px solid rgba(212,0,31,.25);
}

.sched-card.type-4 .sched-badge {
    background: rgba(0,87,184,.1);
    color: #0057b8;
    border: 1px solid rgba(0,87,184,.25);
}

.sched-card.type-1 .sched-badge {
    background: rgba(184,120,0,.1);
    color: var(--gold);
    border: 1px solid rgba(184,120,0,.25);
}

/* 24/7 strip */
.always-on {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 24px 32px;
    background: var(--text);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-align: center;
    flex-wrap: wrap;
}

.ao-num {
    font-family: var(--font-disp);
    font-size: 48px;
    letter-spacing: .02em;
    background: var(--peacock);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.ao-div {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,.15);
}

.ao-text .t1 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.ao-text .t2 {
    font-size: 13px;
    color: rgba(255,255,255,.55);
    margin-top: 3px;
}

.ao-cta {
    margin-left: auto;
}

/* ─── AUDIO DEMOS ────────────────────────────────────────── */
#audio {
    padding: 40px 0;
    background: var(--bg);
}

.audio-head {
    margin-bottom: 48px;
}

.audio-head .section-title {
    margin: 12px 0 16px;
}

.audio-head p {
    color: var(--muted);
    font-size: 15px;
    max-width: 560px;
}

.audio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.audio-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    transition: border-color .2s, transform .2s, box-shadow .2s;
}

.audio-card:hover {
    border-color: rgba(212,0,31,.3);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.ac-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}

.ac-meta .type-pill {
    margin-bottom: 8px;
}

.ac-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 3px;
    color: var(--text);
}

.ac-sub {
    font-size: 12px;
    color: var(--muted);
}

.ac-dur-badge {
    font-family: var(--font-disp);
    font-size: 22px;
    color: var(--red);
    background: var(--red-dim);
    border: 1px solid rgba(212,0,31,.2);
    border-radius: 8px;
    padding: 4px 12px;
    line-height: 1.3;
    white-space: nowrap;
}

/* Audio player UI */
.audio-player {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px 18px;
}

.ap-waveform {
    display: flex;
    align-items: center;
    gap: 2px;
    height: 40px;
    margin-bottom: 12px;
    cursor: pointer;
}

.ap-bar {
    flex: 1;
    border-radius: 2px;
    transition: background .2s;
}

.ap-bar.played {
    background: var(--red);
}

.ap-bar.unplayed {
    background: var(--dim);
}

.ap-bar.unplayed:hover {
    background: var(--muted);
}

.ap-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ap-play {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    border: 2px solid var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 2px 10px var(--red-glow);
}

.ap-play:hover {
    background: #b8001a;
    transform: scale(1.1);
    box-shadow: 0 0 0 4px rgba(212,0,31,.2), 0 4px 16px var(--red-glow);
}

.ap-play.is-playing {
    box-shadow: 0 0 0 4px rgba(212,0,31,.25), 0 2px 12px var(--red-glow);
}

.ap-timeline {
    flex: 1;
}

.ap-prog {
    height: 3px;
    background: var(--dim);
    border-radius: 99px;
    cursor: pointer;
    overflow: hidden;
}

.ap-prog-fill {
    height: 100%;
    background: var(--red);
    border-radius: 99px;
}

.ap-times {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: var(--muted);
    margin-top: 4px;
    font-variant-numeric: tabular-nums;
}

.ap-actions {
    display: flex;
    gap: 8px;
    margin-left: auto;
}

.ap-btn {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: color .2s, border-color .2s, background .2s;
}

.ap-btn:hover {
    color: #fff;
    border-color: var(--text);
    background: var(--text);
}

.audio-more {
    text-align: center;
    padding-top: 16px;
}

.audio-more .btn {
    padding: 14px 36px;
    font-size: 14px;
}

/* ─── DISTRIBUTION ───────────────────────────────────────── */
#distribution {
    padding: 80px 0;
    background: var(--bg2);
    border-top: 1px solid var(--border);
}

.dist-head {
    text-align: center;
    margin-bottom: 48px;
}

.dist-head .label {
    margin-bottom: 12px;
}

.dist-head h2 {
    font-family: var(--font-disp);
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 12px;
    color: var(--text);
}

.dist-head p {
    color: var(--muted);
    font-size: 15px;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.platform-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    transition: border-color .2s, transform .2s, background .2s, box-shadow .2s;
    cursor: pointer;
}

.platform-card:hover {
    border-color: rgba(22,17,11,.2);
    background: var(--text);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.platform-card:hover .platform-name {
    color: #fff;
}

.platform-card:hover .platform-tag {
    color: rgba(255,255,255,.55);
}

.platform-icon {
    font-size: 28px;
    margin-bottom: 10px;
}

.platform-name {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--text);
    transition: color .2s;
}

.platform-tag {
    font-size: 10px;
    color: var(--muted);
    margin-top: 3px;
    transition: color .2s;
}

/* ─── TRUST BANNER ───────────────────────────────────────── */
#trust {
    padding: 80px 0;
    background: var(--bg);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.trust-item {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 0;
}

.trust-item:first-child {
    border-radius: 12px 0 0 12px;
}

.trust-item:last-child {
    border-radius: 0 12px 12px 0;
}

.trust-num {
    font-family: var(--font-disp);
    font-size: 52px;
    letter-spacing: .02em;
    background: var(--peacock);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.trust-label {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.4;
}

/* ─── FINAL CTA ──────────────────────────────────────────── */
#cta-final {
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--bg2);
    border-top: 1px solid var(--border);
}

#cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(212,0,31,.06), transparent),
      radial-gradient(ellipse 60% 40% at 50% 0%, rgba(0,87,184,.04), transparent);
    pointer-events: none;
}

.cta-final-inner {
    position: relative;
    z-index: 1;
}

.cta-final-inner .label {
    margin-bottom: 16px;
}

.cta-final-inner h2 {
    font-family: var(--font-disp);
    font-size: clamp(52px, 8vw, 100px);
    line-height: .92;
    letter-spacing: .01em;
    margin-bottom: 24px;
    color: var(--text);
}

.cta-final-inner h2 span {
    color: var(--red);
}

.cta-final-inner p {
    font-size: 17px;
    color: rgba(22,17,11,.6);
    max-width: 520px;
    margin: 0 auto 48px;
    line-height: 1.7;
    font-weight: 300;
}

.cta-final-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.cta-final-actions .btn {
    padding: 16px 36px;
    font-size: 15px;
}

.cta-fine {
    margin-top: 20px;
    font-size: 12px;
    color: var(--muted);
}

/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
    background: var(--text);
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 60px 0 32px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    margin-bottom: 32px;
}

.footer-brand p {
    font-size: 13px;
    color: rgba(255,255,255,.45);
    line-height: 1.7;
    margin-top: 14px;
    max-width: 260px;
}

.footer-brand .brand-name {
    font-family: var(--font-disp);
    font-size: 20px;
    letter-spacing: .06em;
    color: #fff;
}

.footer-col h4 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: 13px;
    color: rgba(255,255,255,.55);
    transition: color .2s;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255,255,255,.25);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-size: 12px;
    color: rgba(255,255,255,.25);
    transition: color .2s;
}

.footer-links a:hover {
    color: rgba(255,255,255,.55);
}

/* ─── SECTION DIVIDERS ───────────────────────────────────── */
.section-rule {
    width: 40px;
    height: 3px;
    background: var(--red);
    border-radius: 2px;
    margin: 0 0 14px;
}

/* ─── SCROLL FADE-IN ─────────────────────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: none;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 24px 0 40px;
    }

    .hero-monitor {
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
    }

    .monitor-card {
        border-radius: 12px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        display: none;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .audio-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .trust-item:first-child {
        border-radius: 12px 0 0 0;
    }

    .trust-item:last-child {
        border-radius: 0 0 12px 0;
    }

    .platforms-grid {
        grid-template-columns: repeat(3,1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 560px) {
    .container {
        padding: 0 20px;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .platforms-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-item:first-child {
        border-radius: 12px 12px 0 0;
    }

    .trust-item:last-child {
        border-radius: 0 0 12px 12px;
    }
}

/* ─── Hero play button playing state ────────────────────────── */
#hero-play-btn.is-playing {
    box-shadow: 0 0 0 4px rgba(212,0,31,.25), 0 2px 12px var(--red-glow);
    background: var(--red) !important;
}

#hero-play-btn:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 0 0 5px rgba(212,0,31,.3), 0 4px 16px var(--red-glow) !important;
}

/* ─── NBC News Radio Branded Section ─────────────────────── */
.branded-section {
    margin-top: 56px;
    padding-top: 48px;
    border-top: 3px solid var(--text);
}

.branded-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.branded-header-left .branded-kicker {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.branded-stripe {
    height: 3px;
    width: 32px;
    background: var(--peacock);
    border-radius: 2px;
}

.branded-title {
    font-family: var(--font-disp);
    font-size: clamp(26px, 3.5vw, 38px);
    line-height: 1;
    letter-spacing: .01em;
    color: var(--text);
    margin-bottom: 6px;
}

.branded-sub {
    font-size: 14px;
    color: var(--muted);
    max-width: 420px;
    line-height: 1.55;
}

.branded-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: var(--text);
    color: #fff;
    border-radius: var(--r-lg);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em;
    white-space: nowrap;
    flex-shrink: 0;
}

.branded-badge .peacock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--peacock);
}

@media (max-width: 900px) {
    .branded-header {
        flex-direction: column;
    }
}

/* ─── Features grid — 2-col desktop, 1-col mobile ──────────── */
.features-grid {
    grid-template-columns: repeat(2, 1fr) !important;
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ─── Info Strip ─────────────────────────────────────────── */
.info-strip {
    background: var(--bg);
    padding: 48px 0;
}

.info-strip-inner {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 0 48px;
    flex: 1;
    min-width: 220px;
    text-align: center;
}

.info-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    color: var(--red);
}

.info-icon svg {
    width: 48px;
    height: 48px;
}

.info-text {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    max-width: 260px;
}

.info-text strong {
    color: var(--text);
    font-weight: 600;
    display: block;
    font-size: 15px;
    margin-bottom: 3px;
}

.info-divider {
    width: 1px;
    height: 56px;
    background: var(--border);
    flex-shrink: 0;
    align-self: center;
}

@media (max-width: 700px) {
    .info-strip-inner {
        flex-direction: column;
        align-items: center;
        gap: 36px;
    }

    .info-divider {
        display: none;
    }

    .info-item {
        padding: 0 24px;
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 320px;
    }
}