:root {
    --bg: #05080d;
    --bg-soft: #0a1018;
    --panel: #0d151f;
    --panel-2: #111c28;
    --line: rgba(255,255,255,.09);
    --text: #edf4f8;
    --muted: #91a4b3;
    --accent: #35d6b4;
    --accent-soft: rgba(53,214,180,.12);
    --blue: #58a6ff;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 80% 10%, rgba(53,214,180,.08), transparent 28rem),
        radial-gradient(circle at 10% 35%, rgba(88,166,255,.06), transparent 30rem),
        var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
                 "Segoe UI", sans-serif;
    line-height: 1.65;
}

a {
    color: inherit;
}

.container {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}

header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--line);
    background: rgba(5,8,13,.88);
    backdrop-filter: blur(18px);
}

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

.brand {
    text-decoration: none;
    font-weight: 800;
    letter-spacing: .16em;
    font-size: 18px;
}

.brand span {
    color: var(--accent);
}

nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--muted);
    font-size: 14px;
}

nav a:hover {
    color: var(--text);
}

.hero {
    padding: 115px 0 105px;
    position: relative;
    overflow: hidden;
}

.hero:after {
    content: "";
    position: absolute;
    width: 620px;
    height: 620px;
    right: -230px;
    top: -100px;
    border-radius: 50%;
    border: 1px solid rgba(53,214,180,.13);
    box-shadow:
        0 0 0 80px rgba(53,214,180,.025),
        0 0 0 160px rgba(53,214,180,.018);
    pointer-events: none;
}

.eyebrow {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 22px;
}

h1 {
    margin: 0;
    max-width: 850px;
    font-size: clamp(48px, 7vw, 86px);
    line-height: 1.02;
    letter-spacing: -.045em;
}

.hero h1 span {
    color: var(--accent);
}

.lead {
    max-width: 760px;
    margin-top: 28px;
    color: var(--muted);
    font-size: 20px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
}

.tag {
    padding: 9px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #bfd0db;
    background: rgba(255,255,255,.025);
    font-size: 13px;
}

section {
    padding: 88px 0;
    border-top: 1px solid var(--line);
}

.section-head {
    max-width: 760px;
    margin-bottom: 42px;
}

.section-head h2 {
    margin: 8px 0 14px;
    font-size: clamp(31px, 4vw, 48px);
    letter-spacing: -.035em;
}

.section-head p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
}

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

.card {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.025), transparent),
        var(--panel);
}

.card .number {
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .15em;
}

.card h3 {
    margin: 15px 0 10px;
    font-size: 20px;
}

.card p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.statement {
    padding: 42px;
    border: 1px solid rgba(53,214,180,.25);
    border-radius: 18px;
    background: var(--accent-soft);
}

.statement h2 {
    margin-top: 0;
}

.statement p:last-child {
    margin-bottom: 0;
}

.legal-page {
    padding: 75px 0 100px;
}

.legal-page h1 {
    font-size: clamp(38px, 5vw, 58px);
    margin-bottom: 15px;
}

.legal-page .intro {
    color: var(--muted);
    max-width: 820px;
    margin-bottom: 48px;
}

.legal {
    max-width: 900px;
}

.legal h2 {
    margin-top: 42px;
    font-size: 23px;
}

.legal h3 {
    margin-top: 28px;
}

.legal p,
.legal li {
    color: #b4c3ce;
}

.legal li {
    margin-bottom: 8px;
}

.notice {
    padding: 22px 24px;
    margin: 28px 0;
    border-left: 3px solid var(--accent);
    background: var(--panel);
}

footer {
    border-top: 1px solid var(--line);
    padding: 45px 0;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 35px;
    flex-wrap: wrap;
}

.footer-brand {
    max-width: 400px;
}

.footer-brand p {
    color: var(--muted);
    font-size: 14px;
}

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

.footer-links a {
    color: var(--muted);
    font-size: 13px;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--text);
}

.copyright {
    margin-top: 30px;
    color: #667986;
    font-size: 12px;
}

@media (max-width: 800px) {
    nav {
        display: none;
    }

    .hero {
        padding: 85px 0 75px;
    }

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

    section {
        padding: 65px 0;
    }

    .statement {
        padding: 28px;
    }
}
