:root {
    --bg: #080b0a;
    --fg: #f2f5f1;
    --muted: #9aa59f;
    --mint: #31e8b0;
    --line: rgba(232, 242, 236, .14);
    color-scheme: dark
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--fg);
    font-family: "Manrope", "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased
}

a {
    color: inherit
}

:focus-visible {
    outline: 3px solid var(--mint);
    outline-offset: 4px
}

.legal-nav {
    position: sticky;
    z-index: 10;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px clamp(18px, 4vw, 56px);
    border-bottom: 1px solid var(--line);
    background: rgba(8, 11, 10, .86);
    backdrop-filter: blur(14px)
}

.legal-nav a {
    text-decoration: none
}

.legal-brand {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: -.05em
}

.legal-back {
    color: #b9c3bd;
    font-size: .82rem;
    font-weight: 650
}

.legal-shell {
    display: grid;
    grid-template-columns: minmax(190px, .34fr) minmax(0, 1fr);
    gap: clamp(36px, 9vw, 140px);
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: clamp(72px, 12vw, 150px) 0 110px
}

.legal-aside {
    align-self: start;
    position: sticky;
    top: 100px;
    color: var(--muted);
    font-size: .74rem;
    line-height: 1.7
}

.legal-aside strong {
    display: block;
    margin-bottom: 8px;
    color: var(--mint);
    font-family: "Space Grotesk", sans-serif;
    font-weight: 650
}

.legal-content {
    max-width: 760px
}

.legal-content h1,
.legal-content h2 {
    font-family: "Space Grotesk", sans-serif;
    text-wrap: balance
}

.legal-content h1 {
    max-width: 10ch;
    margin: 0 0 34px;
    font-size: clamp(3.6rem, 8vw, 7rem);
    line-height: .84;
    letter-spacing: -.075em
}

.legal-lead {
    max-width: 62ch;
    margin: 0 0 72px;
    color: #c5cec9;
    font-size: clamp(1.08rem, 2vw, 1.35rem);
    line-height: 1.65
}

.legal-section {
    padding: 32px 0 38px;
    border-top: 1px solid var(--line)
}

.legal-section h2 {
    margin: 0 0 16px;
    font-size: clamp(1.55rem, 3vw, 2.25rem);
    line-height: 1.05;
    letter-spacing: -.04em
}

.legal-section p,
.legal-section li {
    max-width: 68ch;
    color: #aeb8b2;
    line-height: 1.75
}

.legal-section ul {
    padding-left: 1.15rem
}

.legal-section a {
    color: var(--mint)
}

.legal-footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: 28px 0 36px;
    border-top: 1px solid var(--line);
    color: #7e8982;
    font-size: .72rem
}

@media(max-width:720px) {
    .legal-shell {
        grid-template-columns: 1fr;
        gap: 38px;
        padding-top: 72px
    }

    .legal-aside {
        position: static
    }

    .legal-content h1 {
        font-size: clamp(3.3rem, 15vw, 5.2rem)
    }

    .legal-lead {
        margin-bottom: 52px
    }

    .legal-footer {
        flex-direction: column
    }
}
