* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    min-height: 100vh;

    background:
        radial-gradient(
            circle at top,
            #25212c 0%,
            #121014 45%,
            #09090b 100%
        );

    color: #e8e5ea;

    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    line-height: 1.7;
}


.container {
    width: min(
        900px,
        calc(100% - 32px)
    );

    margin: 0 auto;

    padding:
        70px
        0;
}


.card {
    background:
        rgba(
            22,
            20,
            25,
            0.92
        );

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.08
        );

    border-radius:
        18px;

    padding:
        42px;

    box-shadow:
        0
        24px
        70px
        rgba(
            0,
            0,
            0,
            0.35
        );
}


.hero {
    text-align:
        center;

    padding-top:
        70px;

    padding-bottom:
        70px;
}


h1 {
    margin-top:
        0;

    margin-bottom:
        12px;

    font-size:
        clamp(
            2.4rem,
            6vw,
            4rem
        );

    line-height:
        1.1;
}


h2 {
    margin-top:
        38px;

    margin-bottom:
        8px;

    font-size:
        1.25rem;
}


p {
    color:
        #c9c5cc;
}


.subtitle {
    font-size:
        1.2rem;

    color:
        #aaa3ae;

    margin-bottom:
        32px;
}


.muted {
    color:
        #817b85;

    font-size:
        0.9rem;
}


.links {
    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        14px;

    margin-top:
        32px;
}


.hero .links {
    justify-content:
        center;
}


a {
    display:
        inline-block;

    color:
        #f0edf2;

    text-decoration:
        none;

    padding:
        10px
        18px;

    border-radius:
        10px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.13
        );

    background:
        rgba(
            255,
            255,
            255,
            0.04
        );

    transition:
        0.15s ease;
}


a:hover {
    background:
        rgba(
            255,
            255,
            255,
            0.09
        );

    border-color:
        rgba(
            255,
            255,
            255,
            0.22
        );
}


@media (
    max-width: 600px
) {

    .container {
        padding:
            30px
            0;
    }

    .card {
        padding:
            25px;

        border-radius:
            14px;
    }
}