@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
    --bg: #050606;
    --card: #0b0e0e;
    --white: #f5f7f7;
    --muted: #858d8f;
    --dim: #555d5f;
    --green: #8cff3f;
    --border: rgba(255,255,255,.075);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background: var(--bg);
    color: var(--white);
    font-family: "Inter", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}


/* BACKGROUND */

.background {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.grid {
    position: absolute;
    inset: -100px;

    opacity: .25;

    background-image:
        linear-gradient(
            rgba(255,255,255,.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.018) 1px,
            transparent 1px
        );

    background-size: 48px 48px;
}

.glow {
    position: absolute;

    width: 500px;
    height: 500px;

    top: -280px;
    left: 50%;

    transform: translateX(-50%);

    border-radius: 50%;

    background: var(--green);

    filter: blur(130px);

    opacity: .045;
}


/* TOPBAR */

.topbar {
    position: relative;

    width: 100%;
    height: 80px;

    padding: 0 42px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid var(--border);

    background: rgba(5,6,6,.65);

    backdrop-filter: blur(18px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 18px;
    font-weight: 900;
    letter-spacing: -1px;
}

.brand-mark {
    width: 35px;
    height: 35px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background: var(--green);
    color: #071006;

    font-size: 17px;
    font-weight: 900;
}

.brand-name span {
    color: var(--green);
}

.join-button {
    padding: 10px 16px;

    border: 1px solid rgba(140,255,63,.2);
    border-radius: 8px;

    background: rgba(140,255,63,.06);

    color: var(--green);

    font-size: 8px;
    font-weight: 800;

    transition: .2s ease;
}

.join-button:hover {
    background: rgba(140,255,63,.11);
    transform: translateY(-1px);
}


/* PAGE */

.terms-page {
    width: min(900px, 100%);

    margin: auto;

    padding: 90px 24px 50px;
}


/* HERO */

.hero {
    text-align: center;
    margin-bottom: 55px;
}

.status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    color: var(--green);

    font-size: 7px;
    font-weight: 900;

    letter-spacing: 1.7px;
}

.status span {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 12px
        rgba(140,255,63,.7);
}

.hero h1 {
    margin-top: 14px;

    font-size: clamp(40px, 6vw, 62px);
    line-height: 1;

    letter-spacing: -3px;
}

.hero h1 span {
    color: var(--green);
}

.hero p {
    max-width: 500px;

    margin: 17px auto 0;

    color: var(--muted);

    font-size: 11px;
    line-height: 1.7;
}

.updated {
    margin-top: 18px;

    color: var(--dim);

    font-size: 7px;
    font-weight: 700;
}


/* CARD */

.terms-card {
    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.025),
            rgba(255,255,255,.008)
        );

    box-shadow:
        0 35px 100px rgba(0,0,0,.3);
}


/* SECTION */

.terms-card section {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 15px;

    padding: 32px 35px;

    border-bottom: 1px solid var(--border);
}

.number {
    color: var(--green);

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 1px;
}

.content h2 {
    margin-bottom: 12px;

    font-size: 16px;
    letter-spacing: -.5px;
}

.content p {
    max-width: 680px;

    margin-bottom: 12px;

    color: var(--muted);

    font-size: 10px;
    line-height: 1.85;
}

.content p:last-child {
    margin-bottom: 0;
}


/* LIST */

.content ul {
    display: grid;
    gap: 8px;

    margin-top: 15px;
    padding-left: 17px;

    color: var(--muted);

    font-size: 10px;
    line-height: 1.7;
}

.content li::marker {
    color: var(--green);
}


/* WARNING */

.warning {
    display: flex;
    flex-direction: column;
    gap: 7px;

    margin-top: 18px;
    padding: 15px 17px;

    border: 1px solid rgba(140,255,63,.12);
    border-left: 2px solid var(--green);

    border-radius: 9px;

    background: rgba(140,255,63,.025);
}

.warning strong {
    color: var(--green);
    font-size: 8px;
}

.warning span {
    color: var(--muted);

    font-size: 9px;
    line-height: 1.7;
}


/* CONTACT */

.contact {
    display: inline-block;

    margin-top: 7px;

    color: var(--green);

    font-size: 10px;
    font-weight: 800;
}

.contact:hover {
    text-decoration: underline;
}


/* FINAL */

.final-note {
    display: flex;
    align-items: center;
    gap: 15px;

    margin: 30px;
    padding: 20px;

    border: 1px solid var(--border);
    border-radius: 11px;

    background: rgba(255,255,255,.015);
}

.check {
    width: 30px;
    height: 30px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border-radius: 8px;

    background: rgba(140,255,63,.09);

    color: var(--green);

    font-size: 14px;
    font-weight: 900;
}

.final-note strong {
    font-size: 10px;
}

.final-note p {
    margin-top: 4px;

    color: var(--dim);

    font-size: 8px;
}


/* FOOTER */

footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 25px 3px;

    color: var(--dim);

    font-size: 7px;
}

footer div {
    display: flex;
    gap: 20px;
}

footer a {
    color: var(--muted);
}

footer a:hover {
    color: var(--green);
}


/* MOBILE */

@media (max-width: 600px) {

    .topbar {
        height: 70px;
        padding: 0 20px;
    }

    .terms-page {
        padding: 65px 14px 35px;
    }

    .hero {
        margin-bottom: 35px;
    }

    .hero h1 {
        font-size: 40px;
        letter-spacing: -2px;
    }

    .terms-card section {
        grid-template-columns: 1fr;
        gap: 10px;

        padding: 25px 22px;
    }

    .content h2 {
        font-size: 15px;
    }

    .content p,
    .content li {
        font-size: 9px;
    }

    .final-note {
        margin: 20px;
        padding: 16px;
    }

    footer {
        flex-direction: column;
        gap: 15px;
    }
}