:root {
    color-scheme: dark;
    --bg: #050b12;
    --panel: rgba(10, 21, 33, .92);
    --line: rgba(127, 183, 220, .24);
    --text: #f4f8fb;
    --muted: #9fb2c2;
    --blue: #49b8ff;
    --green: #37e38b;
    --amber: #ffc857;
    --shadow: 0 18px 50px rgba(0, 0, 0, .32);
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    background:
        radial-gradient(
            circle at 20% 0,
            rgba(19, 96, 145, .22),
            transparent 35rem
        ),
        linear-gradient(
            180deg,
            #07111b 0%,
            var(--bg) 42%,
            #04080d 100%
        );
    color: var(--text);
    font-family:
        Aptos,
        "Aptos Display",
        "Segoe UI",
        Arial,
        sans-serif;
}

.wrap {
    width: min(1180px, calc(100% - 32px));
    margin: auto;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid var(--line);
    background: rgba(5, 11, 18, .92);
    backdrop-filter: blur(14px);
}

.nav {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.brand {
    font-weight: 850;
    letter-spacing: .075em;
}

.brand span,
.eyebrow {
    color: var(--blue);
}

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

.nav-links a {
    padding: 10px 12px;
    border-radius: 9px;
    color: var(--muted);
    font-size: .92rem;
    font-weight: 700;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
    color: var(--text);
    background: rgba(73, 184, 255, .12);
}

main {
    padding: 56px 0 76px;
}

.hero {
    min-height: 390px;
    display: grid;
    align-items: center;
}

.eyebrow {
    margin: 0 0 10px;
    font-size: .77rem;
    font-weight: 850;
    letter-spacing: .17em;
    text-transform: uppercase;
}

h1 {
    max-width: 920px;
    margin: 0;
    font-size: clamp(2.5rem, 7vw, 5rem);
    line-height: 1.02;
}

.lead {
    max-width: 760px;
    margin: 20px 0 0;
    color: var(--muted);
    font-size: clamp(1rem, 2vw, 1.22rem);
    line-height: 1.7;
}

.status-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.pill {
    padding: 8px 11px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #cfe1ed;
    background: rgba(255, 255, 255, .025);
    font-size: .8rem;
}

.pill.live {
    color: var(--green);
    border-color: rgba(55, 227, 139, .36);
}

.section-title {
    margin: 0 0 18px;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
}

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

.card {
    position: relative;
    min-height: 210px;
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--panel);
    box-shadow: var(--shadow);
    transition:
        transform .18s,
        border-color .18s;
}

.card:hover {
    transform: translateY(-3px);
    border-color: rgba(73, 184, 255, .55);
}

.card .icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border: 1px solid rgba(73, 184, 255, .35);
    border-radius: 12px;
    color: var(--blue);
    background: rgba(73, 184, 255, .09);
    font-weight: 900;
}

.card h2 {
    margin: 0 0 9px;
    font-size: 1.3rem;
}

.card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.card .go {
    position: absolute;
    right: 22px;
    bottom: 20px;
    color: var(--blue);
    font-weight: 850;
}

.panel {
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--panel);
    box-shadow: var(--shadow);
}

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

.event {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, .02);
}

.event-date {
    color: var(--blue);
    font-weight: 850;
}

.event h2 {
    margin: 0 0 7px;
    font-size: 1.15rem;
}

.event p {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
}

.footer {
    border-top: 1px solid var(--line);
    color: var(--muted);
    background: #04080d;
}

.footer-inner {
    min-height: 86px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: .82rem;
}

.notice {
    padding: 13px 15px;
    border: 1px solid rgba(255, 200, 87, .35);
    border-radius: 10px;
    color: #ffe3a1;
    background: rgba(255, 200, 87, .08);
}

@media (max-width: 720px) {
    .nav {
        align-items: flex-start;
        flex-direction: column;
        padding: 15px 0;
    }

    .nav-links {
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .hero {
        min-height: 330px;
    }

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

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

    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
    }

    .brand {
        font-size: .9rem;
    }
}
