:root {
    color-scheme: dark;
    --bg: #050814;
    --card: rgba(14, 20, 43, .80);
    --line: rgba(158, 172, 230, .14);
    --text: #f4f6ff;
    --muted: #a3adc7;
    --purple: #9378ff;
    --blue: #43a0ff;
    --cyan: #52e8d4;
    --gold: #ffbd43;
    font-family:
        Manrope,
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background:
        radial-gradient(
            circle at 15% -5%,
            rgba(103, 75, 255, .22),
            transparent 34rem
        ),
        radial-gradient(
            circle at 100% 18%,
            rgba(41, 119, 255, .13),
            transparent 40rem
        ),
        var(--bg);
}

a {
    color: inherit;
}

.container {
    width: min(1160px, calc(100% - 40px));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(255,255,255,.07);
    background: rgba(5,8,20,.89);
    backdrop-filter: blur(18px);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 800;
}

.brand img {
    width: 40px;
    height: 40px;
    border-radius: 11px;
}

.brand b {
    color: var(--gold);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.desktop-nav a {
    text-decoration: none;
    color: #b4bdd5;
    font-size: 14px;
    font-weight: 700;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: #fff;
}

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 46px;
    padding: 0 19px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 13px;
    text-decoration: none;
    font-weight: 800;
}

.button-primary {
    color: white;
    background:
        linear-gradient(
            135deg,
            #7359ff,
            #409dff
        );
    box-shadow: 0 14px 38px rgba(83,72,255,.20);
}

.button-secondary {
    background: rgba(255,255,255,.035);
}

.page-hero {
    padding: 92px 0 48px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #b2bcda;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--cyan);
    box-shadow: 0 0 16px var(--cyan);
}

.page-hero h1 {
    max-width: 900px;
    margin: 18px 0;
    font-size: clamp(42px, 7vw, 76px);
    line-height: .98;
    letter-spacing: -.055em;
}

.gradient {
    background:
        linear-gradient(
            90deg,
            #a48cff,
            #735fff 48%,
            #4aa5ff
        );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.page-hero p {
    max-width: 770px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.page-section {
    padding: 24px 0 90px;
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(0,1fr) 330px;
    gap: 22px;
}

.card {
    padding: clamp(23px,4vw,38px);
    border: 1px solid var(--line);
    border-radius: 22px;
    background:
        linear-gradient(
            145deg,
            rgba(24,31,64,.72),
            rgba(9,14,32,.74)
        );
    box-shadow: 0 30px 90px rgba(0,0,0,.20);
}

.card + .card {
    margin-top: 17px;
}

.card h2 {
    margin: 30px 0 12px;
    font-size: 23px;
}

.card h2:first-child {
    margin-top: 0;
}

.card h3 {
    margin: 25px 0 8px;
    font-size: 17px;
}

.card p,
.card li {
    color: #b3bdd3;
    font-size: 15px;
    line-height: 1.8;
}

.card ul {
    padding-left: 22px;
}

.card a {
    color: #b8a9ff;
}

.info-item {
    padding: 17px 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.info-item:first-child {
    padding-top: 0;
}

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

.info-label {
    color: #7e89a5;
    margin-bottom: 6px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.info-value {
    color: #edf1ff;
    line-height: 1.6;
    overflow-wrap: anywhere;
}

.callout {
    margin-top: 24px;
    padding: 20px;
    border: 1px solid rgba(119,96,255,.25);
    border-radius: 18px;
    background:
        linear-gradient(
            135deg,
            rgba(103,78,255,.12),
            rgba(43,119,255,.06)
        );
}

.callout strong {
    display: block;
    margin-bottom: 7px;
}

.legal-nav {
    display: grid;
    gap: 7px;
}

.legal-nav a {
    padding: 11px 12px;
    border-radius: 11px;
    text-decoration: none;
    color: #aeb7ce;
}

.legal-nav a:hover,
.legal-nav a.active {
    color: #fff;
    background: rgba(120,94,255,.10);
}

.site-footer {
    border-top: 1px solid rgba(255,255,255,.07);
    background: rgba(3,6,15,.78);
}

.footer-inner {
    min-height: 112px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
}

.footer-copy {
    text-align: center;
    color: #68738e;
    font-size: 12px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 17px;
}

.footer-links a {
    color: #a8b0c5;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}

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

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

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

    .footer-inner {
        grid-template-columns: 1fr;
        padding: 30px 0;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(100% - 24px, 1160px);
    }

    .header-inner {
        min-height: 68px;
    }

    .brand img {
        width: 34px;
        height: 34px;
    }

    .header-inner > .button {
        padding: 0 13px;
        font-size: 12px;
    }

    .page-hero {
        padding-top: 62px;
    }

    .page-hero h1 {
        font-size: clamp(38px,13vw,56px);
    }

    .page-hero p {
        font-size: 15px;
    }

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