:root {
    --surface: rgba(11, 28, 57, 0.78);
    --surface-strong: rgba(8, 18, 36, 0.9);
    --text: #f4f8ff;
    --muted: #bfd4ef;
    --line: rgba(153, 207, 255, 0.2);
    --blue: #148cd6;
    --navy: #29398d;
    --green: #9fc567;
    --shadow: 0 20px 50px rgba(1, 9, 24, 0.4);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Barlow", sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    background:
        radial-gradient(circle at top right, rgba(20, 140, 214, 0.35), transparent 26%),
        radial-gradient(circle at 15% 20%, rgba(159, 197, 103, 0.18), transparent 20%),
        linear-gradient(135deg, #050c1d 0%, #0c1b39 52%, #0e2e55 100%);
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: auto;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

body::before {
    top: 90px;
    right: -140px;
    width: 380px;
    height: 380px;
    border: 30px solid rgba(125, 199, 255, 0.2);
    border-left-color: rgba(20, 140, 214, 0.75);
    border-bottom-color: rgba(41, 57, 141, 0.8);
}

body::after {
    bottom: -150px;
    left: -110px;
    width: 320px;
    height: 320px;
    border: 26px solid rgba(159, 197, 103, 0.25);
    border-right-color: rgba(20, 140, 214, 0.6);
}

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

.page-shell {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 24px 0 36px;
}

.topbar,
.hero,
.team-section,
.footer {
    backdrop-filter: blur(14px);
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 13px 22px;
    background: rgba(5, 14, 30, 0.88);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* ── Launch strip ── */
.launch-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 10px;
    padding: 8px 22px;
    background: rgba(5, 14, 30, 0.88);
    border: 1px solid var(--line);
    border-radius: 16px;
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow);
}

.launch-strip-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
}

.launch-digits {
    display: flex;
    align-items: baseline;
    gap: 3px;
    font-family: "Sora", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: -0.02em;
}

.ld-val {
    min-width: 1.6ch;
    text-align: center;
}

.ld-sep {
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 400;
    margin-right: 4px;
}

.launch-strip-date {
    font-size: 0.8rem;
    color: var(--muted);
}

.brand img {
    display: block;
    width: clamp(150px, 20vw, 240px);
}

.topnav {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--muted);
    font-size: 1.05rem;
}

.topnav a {
    transition: color 180ms ease, transform 180ms ease;
}

.topnav a:hover,
.topnav a:focus-visible {
    color: var(--text);
    transform: translateY(-1px);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 24px;
    margin-top: 10px;
    padding: 26px;
    background:
        linear-gradient(130deg, rgba(12, 27, 57, 0.96) 0%, rgba(20, 140, 214, 0.9) 120%),
        var(--surface-strong);
    border: 1px solid rgba(125, 199, 255, 0.22);
    border-radius: 36px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-copy {
    max-width: 640px;
}

.hero-fallback {
    margin-top: 12px;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(125, 199, 255, 0.16);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(7, 20, 43, 0.1));
}

.hero-fallback-title {
    margin: 0 0 10px;
    font-family: "Sora", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
}

.hero-fallback-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.hero-fallback-item {
    display: grid;
    gap: 3px;
    padding: 9px 10px;
    border-radius: 12px;
    border: 1px solid rgba(125, 199, 255, 0.14);
    background: rgba(9, 24, 47, 0.45);
}

.hero-fallback-item strong {
    font-size: 0.78rem;
    font-weight: 700;
}

.hero-fallback-item span {
    font-size: 0.74rem;
    color: var(--muted);
    line-height: 1.35;
}

.eyebrow,
.section-kicker,
.card-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(159, 197, 103, 0.18);
    color: #d7efb0;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    font-size: 0.72rem;
}

.hero h1 {
    font-family: "Sora", sans-serif;
    margin: 14px 0 12px;
    font-size: clamp(1.9rem, 3.2vw, 3.4rem);
    line-height: 0.97;
    letter-spacing: -0.04em;
}

.intro,
.section-heading p,
.footer-copy,
.live-subtitle {
    color: var(--muted);
    font-size: 0.97rem;
    line-height: 1.55;
    margin: 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin: 20px 0;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    background: linear-gradient(90deg, var(--green), #b8d989);
    color: #10250a;
    box-shadow: 0 16px 32px rgba(159, 197, 103, 0.24);
}

.button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
}

.hero-highlights {
    display: grid;
    gap: 6px;
    padding: 0;
    margin: 0;
    list-style: none;
    color: #e9f3ff;
    font-size: 0.92rem;
}

.hero-panel {
    display: grid;
    gap: 14px;
    align-content: start;
}

.hero-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-highlights li::before {
    content: "";
    flex-shrink: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 5px rgba(159, 197, 103, 0.12);
}

.live-card,
.schedule-card,
.team-section,
.footer {
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.live-card,
.schedule-card {
    border-radius: 24px;
    padding: 20px;
}

.live-card-featured {
    background:
        radial-gradient(circle at top right, rgba(159, 197, 103, 0.18), transparent 28%),
        rgba(7, 20, 43, 0.9);
}

.card-link {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.live-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-weight: 600;
    font-size: 0.88rem;
}

.live-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22ff72;
    box-shadow: 0 0 0 6px rgba(34, 255, 114, 0.16);
    flex-shrink: 0;
}

.live-card-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 10px;
}

.live-title {
    margin: 0 0 5px;
    font-family: "Sora", sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
}

.radio-player {
    margin-top: 12px;
    padding: 12px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(7, 20, 43, 0.35));
    border: 1px solid rgba(125, 199, 255, 0.2);
}

.radio-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.radio-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(125, 199, 255, 0.26);
    background: rgba(7, 20, 43, 0.7);
    color: var(--text);
    font-family: "Sora", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.radio-btn:hover,
.radio-btn:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(125, 199, 255, 0.5);
}

.radio-btn-play {
    background: linear-gradient(180deg, rgba(20, 140, 214, 0.36), rgba(41, 57, 141, 0.45));
}

.radio-btn-stop {
    background: rgba(10, 25, 49, 0.8);
}

.radio-btn-icon {
    font-size: 0.76rem;
    line-height: 1;
}

.radio-volume {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid rgba(125, 199, 255, 0.2);
    background: rgba(7, 20, 43, 0.7);
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--muted);
}

.radio-volume input[type="range"] {
    width: 96px;
    accent-color: var(--green);
}

.radio-status {
    margin: 9px 0 0;
    font-size: 0.72rem;
    color: #c9def7;
}

.radio-now-playing {
    margin: 4px 0 0;
    font-size: 0.75rem;
    color: #d7e6f8;
}

.radio-now-playing strong {
    color: #ffffff;
    font-weight: 700;
}

.player-visual {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 44px;
    flex-shrink: 0;
}

.player-visual span {
    width: 6px;
    border-radius: 999px;
    background: linear-gradient(180deg, #9fc567 0%, #148cd6 100%);
    animation: pulseBars 1.8s ease-in-out infinite;
    animation-play-state: paused;
}

.live-card-featured.is-playing .player-visual span {
    animation-play-state: running;
}

.player-visual span:nth-child(1) { height: 20px; animation-delay: 0s; }
.player-visual span:nth-child(2) { height: 38px; animation-delay: 0.15s; }
.player-visual span:nth-child(3) { height: 28px; animation-delay: 0.3s; }
.player-visual span:nth-child(4) { height: 42px; animation-delay: 0.45s; }
.player-visual span:nth-child(5) { height: 24px; animation-delay: 0.6s; }

.live-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.pill {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-weight: 700;
    font-size: 0.82rem;
}

.pill-muted {
    background: rgba(41, 57, 141, 0.52);
}

.schedule-card {
    display: grid;
    gap: 10px;
}

.schedule-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.92rem;
}

.schedule-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.schedule-item span {
    color: var(--muted);
}

.team-section {
    margin-top: 18px;
    padding: 28px;
    border-radius: 28px;
    backdrop-filter: blur(14px);
}

.team-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.section-heading {
    max-width: 480px;
    margin-bottom: 14px;
}

.section-heading h2 {
    font-family: "Sora", sans-serif;
    margin: 8px 0 6px;
    font-size: clamp(1.2rem, 1.8vw, 1.8rem);
    line-height: 1.05;
}

.section-heading p {
    font-size: 0.88rem;
    color: var(--muted);
    margin: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.team-card {
    padding: 12px 14px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(125, 199, 255, 0.09), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(125, 199, 255, 0.12);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    transform-origin: center;
}

.team-card:hover,
.team-card:focus-within {
    transform: scale(1.035);
    border-color: rgba(125, 199, 255, 0.38);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.team-photo {
    display: block;
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(125, 199, 255, 0.24);
    filter: grayscale(100%);
    transition: filter 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.team-card:hover .team-photo,
.team-card:focus-within .team-photo {
    filter: grayscale(0%);
    transform: scale(1.08);
    border-color: rgba(159, 197, 103, 0.55);
}

.team-card-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.team-name {
    margin: 0;
    font-family: "Sora", sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
}

.team-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 23px;
    padding: 0 8px;
    width: fit-content;
    border-radius: 999px;
    border: 1px solid rgba(110, 184, 255, 0.45);
    background: rgba(20, 140, 214, 0.15);
    color: #cfe9ff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    opacity: 0;
    transform: translateY(4px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.team-card:hover .team-linkedin,
.team-card:focus-within .team-linkedin {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.team-linkedin:hover,
.team-linkedin:focus-visible {
    background: rgba(20, 140, 214, 0.28);
    border-color: rgba(110, 184, 255, 0.85);
    color: #ffffff;
}

/* Mobile/touch: first tap expands card, second tap opens LinkedIn */
.touch-device .team-card:hover,
.touch-device .team-card:focus-within {
    transform: none;
    border-color: rgba(125, 199, 255, 0.12);
    box-shadow: none;
}

.touch-device .team-card:hover .team-photo,
.touch-device .team-card:focus-within .team-photo {
    filter: grayscale(100%);
    transform: none;
    border-color: rgba(125, 199, 255, 0.24);
}

.touch-device .team-card:hover .team-linkedin,
.touch-device .team-card:focus-within .team-linkedin {
    opacity: 0;
    transform: translateY(4px);
    pointer-events: none;
}

.touch-device .team-card .team-linkedin {
    transition: none;
}

.touch-device .team-card.is-expanded {
    transform: scale(1.02);
    border-color: rgba(125, 199, 255, 0.38);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.touch-device .team-card.is-expanded .team-photo {
    filter: grayscale(0%);
    transform: scale(1.08);
    border-color: rgba(159, 197, 103, 0.55);
}

.touch-device .team-card.is-expanded .team-linkedin {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Info column */
.info-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-block {
    padding: 20px 22px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(125, 199, 255, 0.07), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(125, 199, 255, 0.12);
}

.info-heading {
    font-family: "Sora", sans-serif;
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 6px 0 10px;
}

.info-body {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0 0 12px;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-list li {
    font-size: 0.82rem;
    color: var(--text);
    padding-left: 14px;
    position: relative;
}

.info-list li::before {
    content: "·";
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: 700;
}

.info-cta {
    font-size: 0.82rem;
    padding: 7px 16px;
}

.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 18px;
    padding: 18px 24px;
    border-radius: 20px;
}

.footer-title {
    margin: 0 0 4px;
    font-family: "Sora", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
}

.footer-copy {
    margin: 0;
    font-size: 1rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: var(--muted);
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--text);
}

@media (max-width: 980px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .hero-panel {
        order: -1;
    }

    .team-layout {
        grid-template-columns: 1fr 1fr;
    }

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

    .footer,
    .topbar {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .page-shell {
        width: calc(100% - 20px);
        padding-top: 10px;
    }

    .topbar,
    .hero,
    .team-section,
    .footer {
        border-radius: 18px;
    }

    .topnav {
        flex-wrap: wrap;
        gap: 10px;
    }

    .hero,
    .team-section,
    .footer {
        padding: 18px;
    }

    .hero-actions,
    .live-pill-row {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-fallback-grid {
        grid-template-columns: 1fr;
    }

    .launch-strip {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

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

    .schedule-item {
        flex-direction: column;
        align-items: flex-start;

    }

    .team-layout {
        grid-template-columns: 1fr;
    }

    .radio-controls {
        align-items: stretch;
    }

    .radio-volume {
        justify-content: space-between;
        width: 100%;
    }

    .radio-volume input[type="range"] {
        width: 100%;
        max-width: 140px;
    }
}

@keyframes pulseBars {
    0%,
    100% {
        transform: scaleY(0.55);
        opacity: 0.6;
    }

    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}