:root {
    color-scheme: dark;
    --bg: #07120f;
    --panel: rgba(18, 32, 28, 0.9);
    --panel-2: rgba(255, 255, 255, 0.055);
    --line: rgba(255, 255, 255, 0.12);
    --text: #f7fff9;
    --muted: rgba(247, 255, 249, 0.74);
    --green: #83a83d;
    --green-bright: #b8d969;
    --gold: #f2c15e;
    --dark: #020706;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at 20% 8%, rgba(131, 168, 61, 0.18), transparent 31rem),
        linear-gradient(145deg, #07120f, #111f1b 58%, #050807);
    color: var(--text);
}

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid var(--line);
    background: rgba(7, 18, 15, 0.88);
    padding: 12px clamp(16px, 4vw, 48px);
    backdrop-filter: blur(16px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand img {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    object-fit: cover;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-size: 1rem;
}

.brand small {
    color: var(--muted);
    font-size: 0.82rem;
}

nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

nav a {
    border: 1px solid transparent;
    border-radius: 8px;
    color: var(--muted);
    padding: 9px 11px;
    text-decoration: none;
    font-weight: 800;
}

nav a:hover,
nav a:focus {
    border-color: var(--line);
    color: var(--text);
}

.listen-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    gap: clamp(24px, 5vw, 72px);
    align-items: center;
    min-height: calc(100vh - 78px);
    padding: clamp(32px, 6vw, 86px) clamp(16px, 5vw, 72px);
}

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

.eyebrow,
.live-pill {
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.eyebrow {
    margin: 0 0 10px;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 780px;
    margin-bottom: 16px;
    font-size: clamp(2.35rem, 7vw, 5.8rem);
    line-height: 0.98;
}

h2 {
    margin-bottom: 10px;
    font-size: clamp(1.45rem, 3vw, 2.25rem);
}

.intro {
    max-width: 670px;
    color: var(--muted);
    font-size: clamp(1.02rem, 2vw, 1.25rem);
    line-height: 1.55;
}

.player-shell {
    display: grid;
    gap: 16px;
    width: min(100%, 640px);
    margin-top: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
    padding: 18px;
}

audio {
    width: 100%;
    min-height: 44px;
}

.link-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.primary-link,
.secondary-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 10px 16px;
    text-decoration: none;
    font-weight: 900;
}

.primary-link {
    background: var(--green-bright);
    color: var(--dark);
}

.secondary-link {
    border: 1px solid var(--line);
    color: var(--text);
}

.hero-art {
    display: grid;
    place-items: center;
}

.hero-art img {
    width: min(100%, 620px);
    max-height: 58vh;
    object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.35));
}

.content-band,
.section-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.content-band {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding: 24px 0 34px;
}

.feature-panel,
.connect-panel,
.schedule-card,
.message-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel-2);
    padding: 22px;
}

.feature-panel p,
.connect-panel p,
.schedule-card p,
.message-card p {
    color: var(--muted);
    line-height: 1.5;
}

.speaker,
.schedule-card span,
.message-card span {
    color: var(--gold);
    font-weight: 900;
}

.section-shell {
    padding: 42px 0;
}

.section-heading {
    margin-bottom: 18px;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

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

.schedule-card strong {
    font-size: 1.1rem;
}

.schedule-card small {
    color: var(--green-bright);
    font-weight: 900;
}

.message-list {
    display: grid;
    gap: 14px;
}

.site-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    padding: 24px clamp(16px, 5vw, 72px);
}

.site-footer a {
    font-weight: 900;
    text-decoration: none;
}

@media (max-width: 900px) {
    .site-header,
    .listen-hero,
    .content-band {
        grid-template-columns: 1fr;
    }

    .site-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .listen-hero {
        min-height: auto;
    }

    .hero-art {
        order: -1;
    }

    .hero-art img {
        max-height: 320px;
    }

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

@media (max-width: 520px) {
    nav {
        width: 100%;
    }

    nav a {
        flex: 1 1 auto;
        text-align: center;
    }

    .player-shell,
    .feature-panel,
    .connect-panel,
    .schedule-card,
    .message-card {
        padding: 16px;
    }
}
