/* ── Reset & Base ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --red: #F10100;
    --red2: #f50000;
    --gold: #F3BE16;
    --teal: #389E89;
    --dark: #0e0e0e;
    --dark2: #161616;
    --dark3: #1e1e1e;
    --card: #1a1a1a;
    --text: #f0ece3;
    --muted: #9a9080;
    --font-display: 'Black Han Sans', sans-serif;
    --font-cond: 'Barlow Condensed', sans-serif;
    --font-body: 'Nunito', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--dark);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark2);
}

::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 3px;
}

/* ── HEADER ── */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(14, 14, 14, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 2px solid var(--red);
    box-shadow: 0 0 40px rgba(241, 1, 0, 0.25);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo-img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    box-shadow: 0 0 16px rgba(243, 190, 22, 0.4);
}

.logo-text h1 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--gold);
    letter-spacing: 0.04em;
    line-height: 1.1;
}

.logo-text span {
    font-family: var(--font-cond);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal);
}

nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

nav a {
    font-family: var(--font-cond);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
}

nav a:hover {
    color: var(--gold);
    background: rgba(243, 190, 22, 0.08);
}

.nav-live {
    background: var(--red) !important;
    color: #fff !important;
    border-radius: 4px;
    animation: pulse-live 2s infinite;
}

.nav-live::before {
    content: '●';
    margin-right: 5px;
    font-size: 0.6rem;
}

@keyframes pulse-live {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(241, 1, 0, 0.6);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(241, 1, 0, 0);
    }
}

/* ── HAMBURGER ── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 2rem 60px;
}

/* Animated background */
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 55% at 65% 40%, rgba(241, 1, 0, 0.18) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 20% 70%, rgba(56, 158, 137, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 40% 30% at 80% 80%, rgba(243, 190, 22, 0.08) 0%, transparent 60%),
        var(--dark);
}

/* Sound wave bars decoration */
.hero-waves {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 42%;
    display: flex;
    align-items: flex-end;
    gap: 6px;
    padding: 0 60px 120px 0;
    opacity: 0.18;
}

.wave-bar {
    flex: 1;
    background: linear-gradient(to top, var(--red), var(--gold));
    border-radius: 4px 4px 0 0;
    animation: wave-anim var(--dur, 1.2s) ease-in-out infinite alternate;
    animation-delay: var(--del, 0s);
}

@keyframes wave-anim {
    from {
        transform: scaleY(0.15);
    }

    to {
        transform: scaleY(1);
    }
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 4rem;
    align-items: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(241, 1, 0, 0.12);
    border: 1px solid rgba(241, 1, 0, 0.35);
    border-radius: 100px;
    padding: 5px 16px;
    font-family: var(--font-cond);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1.5rem;
}

.hero-tag::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
    animation: blink 1.5s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.2
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1;
    color: #fff;
    margin-bottom: 0.4rem;
}

.hero-title .hl-red {
    color: var(--red);
}

.hero-title .hl-gold {
    color: var(--gold);
}

.hero-subtitle {
    font-family: var(--font-cond);
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1.8rem;
}

.hero-desc {
    font-size: 1rem;
    color: var(--muted);
    max-width: 520px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--red);
    color: #fff;
    font-family: var(--font-cond);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 24px rgba(241, 1, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(241, 1, 0, 0.55);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--gold);
    font-family: var(--font-cond);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    border: 2px solid rgba(243, 190, 22, 0.4);
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary:hover {
    border-color: var(--gold);
    background: rgba(243, 190, 22, 0.08);
    transform: translateY(-2px);
}

/* Hero logo card */
.hero-logo-card {
    background: var(--card);
    border: 1px solid rgba(241, 1, 0, 0.2);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(243, 190, 22, 0.08);
    position: relative;
}

.hero-logo-card img {
    width: 100%;
    display: block;
}

.hero-logo-card .card-foot {
    padding: 20px 24px;
    background: linear-gradient(to right, rgba(241, 1, 0, 0.15), rgba(243, 190, 22, 0.08));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.card-foot .stream-url {
    font-family: var(--font-cond);
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    color: var(--muted);
    word-break: break-all;
}

.card-foot .stream-url strong {
    color: var(--teal);
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 2px;
}

/* ── SECTION BASE ── */
section {
    padding: 80px 2rem;
}

.section-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-eyebrow {
    font-family: var(--font-cond);
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    line-height: 1.05;
}

.section-title span {
    color: var(--red);
}

.section-desc {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--muted);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    opacity: 0.25;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--red), transparent);
}

.divider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

/* ── PLAYER SECTION ── */
#live-section {
    background: var(--dark2);
}

.player-wrapper {
    background: var(--card);
    border-radius: 16px;
    border: 1px solid rgba(241, 1, 0, 0.2);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.player-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 24px;
    background: linear-gradient(135deg, rgba(241, 1, 0, 0.15), rgba(243, 190, 22, 0.05));
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--red);
    animation: pulse-live 1.5s infinite;
    flex-shrink: 0;
}

.player-header h3 {
    font-family: var(--font-cond);
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
}

.player-wrapper iframe {
    width: 100%;
    height: 150px;
    border: 0;
    display: block;
}

/* ── STATS BAR ── */
.stats-bar {
    background: linear-gradient(135deg, var(--red) 0%, #a00000 100%);
    padding: 0;
}

.stats-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    padding: 2.5rem 2rem;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    transition: background 0.2s;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.07);
}

.stat-num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    color: var(--gold);
    display: block;
}

.stat-label {
    font-family: var(--font-cond);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

/* ── HISTORY SECTION ── */
#history-section {
    background: var(--dark3);
}

.history-frame {
    background: var(--card);
    border-radius: 14px;
    border: 1px solid rgba(56, 158, 137, 0.2);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.history-frame iframe {
    width: 100%;
    height: 300px;
    border: 0;
    display: block;
}

/* ── PODCASTS SECTION ── */
#podcasts-section {
    background: var(--dark2);
}

.podcasts-frame {
    background: var(--card);
    border-radius: 14px;
    border: 1px solid rgba(243, 190, 22, 0.15);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.podcasts-frame iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

/* ── SCHEDULE SECTION ── */
#schedule-section {
    background: var(--dark3);
}

.schedule-frame {
    background: var(--card);
    border-radius: 14px;
    border: 1px solid rgba(241, 1, 0, 0.15);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.schedule-frame iframe {
    width: 100%;
    height: 800px;
    border: 0;
    display: block;
}

/* ── ABOUT SECTION ── */
#about-section {
    background: var(--dark2);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-content h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--gold);
    margin: 2rem 0 1rem;
}

.about-content p {
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 1rem;
}

.mission-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.mission-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--muted);
    font-size: 0.95rem;
}

.mission-list li::before {
    content: '▶';
    color: var(--teal);
    font-size: 0.55rem;
    margin-top: 0.45rem;
    flex-shrink: 0;
}

/* ── ADVERTISE SECTION ── */
#advertise-section {
    background: var(--dark3);
}

.adv-box {
    background: var(--card);
    border: 1px solid rgba(241, 1, 0, 0.2);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
}

.adv-box h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.adv-box p {
    color: var(--muted);
    max-width: 520px;
    margin: 0 auto 2rem;
}

.contact-hl {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #212529, #212529);
    color: #fff;
    font-family: var(--font-cond);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    margin-bottom: 3rem;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
}

.contact-hl:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(241, 1, 0, 0.5);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    text-align: left;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 1.5rem;
    transition: border-color 0.2s, transform 0.2s;
}

.benefit-card:hover {
    border-color: rgba(243, 190, 22, 0.3);
    transform: translateY(-4px);
}

.benefit-icon {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    display: block;
}

.benefit-card h4 {
    font-family: var(--font-cond);
    font-size: 1rem;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.benefit-card p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ── FOOTER ── */
footer {
    background: #080808;
    border-top: 2px solid var(--red);
    padding: 4rem 2rem 0;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 1.2rem;
    letter-spacing: 0.05em;
}

.footer-col p {
    font-size: 0.87rem;
    color: var(--muted);
    line-height: 1.8;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.87rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--gold);
}

.social-row {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text);
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.social-btn:hover {
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--muted);
}

.footer-stream {
    font-family: var(--font-cond);
    font-size: 0.75rem;
    color: var(--teal);
    letter-spacing: 0.1em;
}

/* ── SCROLL FADE IN ── */
.fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-logo-card {
        max-width: 420px;
        margin: 0 auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    nav.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(14, 14, 14, 0.98);
        padding: 1.5rem 2rem;
        border-bottom: 2px solid var(--red);
        gap: 0.25rem;
    }

    nav.open a {
        display: block;
        padding: 10px 0;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .stats-inner {
        grid-template-columns: 1fr 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .hero-waves {
        display: none;
    }

    section {
        padding: 60px 1.5rem;
    }
}

/* ── TICKER ── */
.ticker-wrap {
    background: var(--red);
    overflow: hidden;
    padding: 10px 0;
    white-space: nowrap;
}

.ticker-track {
    display: inline-block;
    animation: ticker 30s linear infinite;
}

.ticker-track span {
    font-family: var(--font-cond);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    padding: 0 3rem;
}

.ticker-track span::before {
    content: '♪ ';
    color: var(--gold);
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}








    /* ═══════════════════════════════════════════
       UNIFIED SECTION STYLES
       Used by: Listen On, Desktop Downloads, Mobile Downloads
       ═══════════════════════════════════════════ */

    .unified-section {
      padding: 5rem 1.5rem;
    }

    .unified-section--alt {
      background: linear-gradient(180deg, var(--cream, #faf6f0) 0%, var(--cream-dark, #f0eade) 50%, var(--cream, #faf6f0) 100%);
    }

    .unified-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    /* ─── Section Header ─── */
    .unified-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .unified-label {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--saffron, #c0792a);
      margin-bottom: 1rem;
    }

    .unified-label-line {
      display: inline-block;
      width: 28px;
      height: 1.5px;
      background: var(--saffron, #c0792a);
      border-radius: 2px;
    }

    .unified-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 4vw, 2.8rem);
      font-weight: 400;
      color: var(--dark, #1a1611);
      line-height: 1.2;
      margin: 0 0 0.8rem;
    }

    .unified-title em {
      font-style: italic;
      color: var(--saffron, #c0792a);
    }

    .unified-subtitle {
      font-family: 'DM Sans', sans-serif;
      font-size: 1rem;
      color: var(--muted, #7a7060);
      max-width: 560px;
      margin: 0 auto;
      line-height: 1.6;
    }

    /* ─── Card Grid ─── */
    .unified-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 1.25rem;
    }

    .unified-grid--2col {
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }

    /* ─── Base Card ─── */
    .u-card {
      position: relative;
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1.25rem 1.4rem;
      background: #f3be16;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border: 1px solid rgba(192, 121, 42, 0.1);
      border-radius: 16px;
      text-decoration: none;
      color: inherit;
      transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      overflow: hidden;
    }

    .u-card::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 16px;
      background: linear-gradient(135deg, rgba(192, 121, 42, 0.06) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.35s ease;
    }

    .u-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(192, 121, 42, 0.1), 0 2px 8px rgba(0, 0, 0, 0.04);
      border-color: rgba(192, 121, 42, 0.25);
    }

    .u-card:hover::before {
      opacity: 1;
    }

    .u-card:hover .u-card-arrow {
      opacity: 1;
      transform: translateX(0);
    }

    /* Card Logo / Icon */
    .u-card-icon {
      position: relative;
      z-index: 1;
      width: 48px;
      height: 48px;
      border-radius: 12px;
      object-fit: contain;
      flex-shrink: 0;
      background: #fff;
      padding: 6px;
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    }

    /* SVG icon variant (for OS icons) */
    .u-card-svg-icon {
      position: relative;
      z-index: 1;
      width: 48px;
      height: 48px;
      border-radius: 12px;
      flex-shrink: 0;
      background: #fff;
      padding: 10px;
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .u-card-svg-icon svg {
      width: 26px;
      height: 26px;
      fill: var(--dark, #1a1611);
    }

    /* Card Text */
    .u-card-info {
      position: relative;
      z-index: 1;
      flex: 1;
      min-width: 0;
    }

    .u-card-name {
      font-family: 'DM Sans', sans-serif;
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--dark, #1a1611);
      margin: 0 0 2px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .u-card-desc {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.78rem;
      color: #0e0e0e;
      margin: 0;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    /* Arrow */
    .u-card-arrow {
      position: relative;
      z-index: 1;
      flex-shrink: 0;
      width: 20px;
      height: 20px;
      color: var(--saffron, #c0792a);
      opacity: 0;
      transform: translateX(-6px);
      transition: all 0.3s ease;
    }

    /* Badge (Recommended / Portable etc.) */
    .u-card-badge {
      position: relative;
      z-index: 1;
      flex-shrink: 0;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--saffron, #c0792a);
      background: rgba(192, 121, 42, 0.08);
      padding: 3px 8px;
      border-radius: 6px;
      white-space: nowrap;
    }

    /* Download icon inline */
    .u-card-dl-icon {
      position: relative;
      z-index: 1;
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      color: var(--saffron, #c0792a);
      opacity: 0;
      transform: translateY(-4px);
      transition: all 0.3s ease;
    }

    .u-card:hover .u-card-dl-icon {
      opacity: 1;
      transform: translateY(0);
    }

    /* Section Footer */
    .unified-footer {
      text-align: center;
      margin-top: 2rem;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.82rem;
      color: var(--muted, #7a7060);
      opacity: 0.7;
    }

    /* Version tag */
    .unified-version {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      margin-top: 1.5rem;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.8rem;
      color: var(--muted, #7a7060);
      justify-content: center;
      width: 100%;
    }

    .unified-version-tag {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      color: var(--saffron, #c0792a);
      background: rgba(192, 121, 42, 0.08);
      padding: 2px 8px;
      border-radius: 6px;
    }

    /* Feature strip */
    .unified-features {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0.4rem 0.8rem;
      margin-top: 0.6rem;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.78rem;
      color: var(--muted, #7a7060);
      opacity: 0.65;
    }

    /* ─── Download card variant (stacked with sub-links) ─── */
    .u-card--download {
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      padding: 0;
    }

    .u-card--download .u-dl-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1.25rem 1.4rem 0.8rem;
    }

    .u-card--download .u-dl-links {
      display: flex;
      flex-direction: column;
      gap: 0;
      padding: 0 0.75rem 0.75rem;
    }

    .u-dl-link {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.55rem 0.65rem;
      border-radius: 10px;
      text-decoration: none;
      color: var(--dark, #1a1611);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.85rem;
      font-weight: 500;
      transition: background 0.2s ease;
      position: relative;
      z-index: 1;
    }

    .u-dl-link:hover {
      background: rgba(192, 121, 42, 0.06);
    }

    .u-dl-link svg {
      width: 15px;
      height: 15px;
      color: var(--saffron, #c0792a);
      flex-shrink: 0;
    }

    .u-dl-link-text {
      flex: 1;
    }

    .u-dl-link .u-card-badge {
      font-size: 0.6rem;
    }

    /* ─── Responsive ─── */
    @media (max-width: 640px) {
      .unified-section {
        padding: 3.5rem 1rem;
      }

      .unified-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
      }

      .unified-grid--2col {
        grid-template-columns: 1fr;
      }

      .u-card {
        padding: 1rem 1.2rem;
      }

      .u-card-arrow,
      .u-card-dl-icon {
        opacity: 0.5;
        transform: translateX(0) translateY(0);
      }
    }



#downloads {
    background: var(--dark3);
}


