:root {
    --bg: #120b1f;
    --bg-alt: #211236;
    --surface: #291940;
    --border: #4d3a64;
    --text: #f7f5fb;
    --muted: #d5cce0;
    --blue: #9be34f;
    --blue-strong: #72c62b;
    --blue-light: #b9f06f;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.65;
}

a {
    color: var(--blue);
}

a:hover {
    color: var(--blue-light);
}

.container {
    width: min(1100px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(18, 11, 31, 0.96);
    border-bottom: 1px solid var(--border);
}

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

.brand {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
}

.site-nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.site-nav a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 600;
}

.site-nav a:hover {
    color: #fff;
}

.brand-banner {
    padding: 32px 0 12px;
}

.brand-banner img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 14px;
    border: 1px solid var(--border);
}

.hero {
    padding: 56px 0 70px;
}

.eyebrow {
    color: var(--blue-light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
}

h1 {
    margin: 8px 0 12px;
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    line-height: 1.05;
    color: #fff;
}

.tagline {
    margin: 0 0 22px;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--blue);
}

.hero-copy {
    max-width: 760px;
    color: var(--muted);
    font-size: 1.1rem;
}

.section {
    padding: 64px 0;
}

.alt-section {
    background: var(--bg-alt);
}

h2 {
    margin-top: 0;
    color: var(--blue-light);
    font-size: 1.8rem;
}

h3 {
    color: #fff;
    margin-top: 8px;
}

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

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px;
}

.status {
    margin: 0;
    color: var(--blue);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pill-list span {
    padding: 10px 16px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface);
}

.policy {
    max-width: 850px;
}

.policy h1 {
    font-size: clamp(2.2rem, 6vw, 3.4rem);
}

.policy h2 {
    margin-top: 38px;
}

.callout {
    background: var(--surface);
    border-left: 4px solid var(--blue-strong);
    padding: 16px 18px;
    border-radius: 8px;
}

.support-email {
    font-size: 1.3rem;
    font-weight: 700;
}

.site-footer {
    border-top: 1px solid var(--border);
    padding: 32px 0;
    color: #9ca3af;
}

.footer-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.site-footer a {
    color: var(--muted);
    text-decoration: none;
}

.site-footer a:hover {
    color: #fff;
}

.copyright {
    white-space: nowrap;
}

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

    .site-nav {
        gap: 14px;
    }

    .hero {
        padding-top: 60px;
    }

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

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

.portal-link {
    display: inline-block;
    margin-top: 10px;
    font-weight: 700;
    text-decoration: none;
}

.disabled-link {
    color: var(--muted);
}
