* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family:
            Inter,
            system-ui,
            sans-serif;
}

body {
    position: relative;
    background: #09090b;
    color: #fff;
}

.background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.background::before,
.background::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(120px);
}

.background::before {
    width: 500px;
    height: 500px;
    background: #7c3aed;
    top: -100px;
    left: -100px;
    opacity: .4;
}

.background::after {
    width: 400px;
    height: 400px;
    background: #06b6d4;
    bottom: -100px;
    right: -100px;
    opacity: .35;
}

.container {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100dvh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 24px;
}

.content {
    text-align: center;
    max-width: 800px;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 42px;
    padding: 0 18px;

    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(20px);

    border-radius: 999px;

    font-size: .85rem;
    letter-spacing: .15em;
    text-transform: uppercase;
}

h1 {
    margin-top: 28px;

    font-size: clamp(3rem, 8vw, 7rem);
    line-height: .95;
    font-weight: 800;
    letter-spacing: -0.04em;
}

p {
    margin-top: 24px;

    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,.65);

    max-width: 500px;
    margin-inline: auto;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .background::before {
        width: 300px;
        height: 300px;
    }

    .background::after {
        width: 250px;
        height: 250px;
    }
}