* {
    box-sizing: border-box;
}

:root {
    color-scheme: dark;
}

body {
    margin: 0;
    min-height: 100vh;

    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: #f5f1f5;

    background:
        radial-gradient(
            circle at 50% -10%,
            #38243b 0%,
            transparent 38%
        ),
        #0d0a0e;
}

a {
    color: inherit;
}

nav {
    width: min(900px, calc(100% - 40px));
    margin: 0 auto;

    padding: 24px 0;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;

    text-decoration: none;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .16em;
}

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

    border-radius: 10px;
}

.back {
    color: #aaa0ac;
    text-decoration: none;
    font-size: .8rem;
}

.back:hover {
    color: #fff;
}

main {
    width: min(760px, calc(100% - 40px));
    margin: 48px auto 100px;
}

.eyebrow {
    margin-bottom: 12px;

    color: #c08b99;

    font-size: .7rem;
    font-weight: 700;

    letter-spacing: .16em;
    text-transform: uppercase;
}

h1 {
    margin: 0 0 16px;

    font-size: clamp(2.3rem, 7vw, 4.3rem);
    font-weight: 350;
    letter-spacing: -.035em;
}

.intro {
    margin-bottom: 42px;

    color: #b6adb8;

    font-size: 1rem;
    line-height: 1.7;
}

section {
    padding: 25px 0;

    border-top:
        1px solid rgba(255,255,255,.09);
}

h2 {
    margin: 0 0 12px;

    font-size: 1.12rem;
    font-weight: 650;
}

p,
li {
    color: #aaa1ad;

    font-size: .88rem;
    line-height: 1.7;
}

ul {
    padding-left: 22px;
}

.notice {
    margin-top: 18px;
    padding: 15px 17px;

    border:
        1px solid rgba(200,139,155,.20);

    border-radius: 16px;

    background:
        rgba(140,70,87,.08);

    color: #bcb1bb;

    font-size: .8rem;
    line-height: 1.6;
}

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

    margin-top: 35px;
}

.legal-links a {
    color: #aaa0ac;

    font-size: .8rem;
    text-decoration: underline;
    text-underline-offset: 3px;
}

footer {
    width: min(760px, calc(100% - 40px));
    margin: 0 auto;

    padding: 30px 0 45px;

    border-top:
        1px solid rgba(255,255,255,.07);

    color: #756d77;

    font-size: .72rem;
}

strong {
    color: #eee9ef;
}
