:root {
    --navy: #143a63;
    --blue: #1d5d91;
    --light: #f3f7fb;
    --gold: #f4b942;
    --ink: #172331;
    --muted: #64748b;
    --white: #fff;
    --radius: 24px;
    --shadow: 0 20px 50px rgba(20, 58, 99, .14);
	--scp-red: #EC432F;
    --scp-green: #006B3F;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
}

a {
    color: inherit;
}

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

.container {
    width: min(1160px, 92vw);
    margin-inline: auto;
}

.topbar {
    background: var(--scp-red);
    color: #dbeafe;
    display: flex;
    justify-content: center;
    gap: 28px;
    padding: 8px 16px;
    font-size: .9rem;
}

.topbar a {
    color: white;
    text-decoration: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(16px);
    box-shadow: 0 2px 20px rgba(15, 23, 42, .08);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--navy);
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    color: white;
    font-weight: 900;
    letter-spacing: .04em;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    font-weight: 700;
    color: var(--scp-red);
}

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

.nav-toggle {
    display: none;
    border: 0;
    background: var(--navy);
    color: white;
    border-radius: 12px;
    padding: 10px 13px;
    font-size: 1.2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    padding: 13px 22px;
    background: var(--gold);
    color: #10233b;
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 10px 25px rgba(244, 185, 66, .25);
}

.btn-small {
    padding: 9px 15px;
    font-size: .92rem;
}

.btn-ghost {
    background: rgba(255, 255, 255, .14);
    color: white;
    border: 1px solid rgba(255, 255, 255, .45);
    box-shadow: none;
}

.hero {
    position: relative;
    min-height: 72vh;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.hero picture,
.hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(9, 27, 49, .88),
        rgba(20, 58, 99, .55),
        rgba(20, 58, 99, .15)
    );
}

.hero-content {
    position: relative;
    color: white;
    padding: 90px 0;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .8rem;
    font-weight: 900;
    color: var(--gold);
    margin: 0 0 10px;
}

.hero h1 {
    font-size: clamp(2.5rem, 7vw, 5.8rem);
    line-height: .98;
    max-width: 850px;
    margin: 0 0 22px;
}

.hero p:not(.eyebrow) {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    max-width: 670px;
    color: #e8f2ff;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.section {
    padding: 86px 0;
}

.section-soft {
    background: var(--light);
}

.section-head {
    max-width: 740px;
    margin-bottom: 34px;
}

.section-head h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.05;
    margin: 0 0 12px;
    color: var(--navy);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

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

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

.card,
.info-box,
.profile-card,
.sponsor-card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.card img {
    width: 100%;
    height: 235px;
    object-fit: cover;
}

.card-body {
    padding: 24px;
}

.card h3,
.profile-card h3,
.info-box h3 {
    margin: .2rem 0 .6rem;
    color: var(--navy);
}

.card time,
.muted {
    color: var(--muted);
    font-size: .94rem;
}

.pill {
    display: inline-flex;
    background: #e8f1fb;
    color: var(--blue);
    border-radius: 999px;
    padding: 5px 12px;
    font-size: .8rem;
    font-weight: 900;
}

.facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 18px 0;
}

.facts div {
    background: #f8fafc;
    border-radius: 16px;
    padding: 12px;
}

.facts dt {
    font-size: .75rem;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 800;
}

.facts dd {
    margin: 0;
    font-weight: 900;
}

.table-wrap {
    overflow: auto;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

th,
td {
    text-align: left;
    padding: 18px;
    border-bottom: 1px solid #e5edf5;
}

th {
    background: var(--navy);
    color: white;
}

tr:last-child td {
    border-bottom: 0;
}

.profile-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    align-items: center;
}

.profile-card img {
    width: 112px;
    height: 112px;
    border-radius: 22px;
    object-fit: cover;
}

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

.info-box {
    padding: 28px;
}

.cta {
    background: linear-gradient(135deg, var(--navy), var(--blue));
    color: white;
}

.cta h2 {
    color: white;
}

.cta p {
    color: #e4eef9;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 34px;
    align-items: center;
}

.contact-list {
    display: grid;
    gap: 18px;
}

.contact-card {
    box-shadow: 0 20px 50px rgba(0, 0, 0, .16);
}

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

.sponsor-card {
    text-decoration: none;
    text-align: center;
    padding: 22px;
    display: grid;
    gap: 10px;
    color: var(--ink);
}

.sponsor-card img {
    height: 105px;
    object-fit: contain;
    margin: auto;
}

.sponsor-card span {
    color: var(--muted);
    font-size: .92rem;
}

.footer {
    background: #0f2946;
    color: #dbeafe;
    padding: 46px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 28px;
}

.footer a {
    color: white;
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .14);
    padding: 18px;
    margin-top: 28px;
    color: #b9cbe0;
}

@media (max-width: 900px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        left: 4vw;
        right: 4vw;
        top: 88px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: white;
        border-radius: 22px;
        padding: 20px;
        box-shadow: var(--shadow);
    }

    .nav-links.open {
        display: flex;
    }

    .card-grid,
    .news-grid,
    .small-grid,
    .split-grid,
    .sponsor-grid,
    .cta-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 650px;
    }

    .section {
        padding: 62px 0;
    }

    .topbar {
        display: none;
    }
}

@media (max-width: 560px) {
    .brand small {
        display: none;
    }

    .brand-mark {
        width: 46px;
        height: 46px;
    }

    .profile-card {
        align-items: flex-start;
    }

    .profile-card img {
        width: 86px;
        height: 86px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .card img {
        height: 210px;
    }
}