body {
    margin: 0;
    background: #1A2030;
    font-family: 'Poppins';
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: 1275px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    @media (max-width: 1024px) {
        max-width: 95%;
    }
}



h1, p {
    color: #fff;
    margin: 0;
    max-width: 760px;
}

h1 {
    color: #FFF;
    text-align: center;
    font-family: Poppins;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 115%; /* 73.6px */
}

p {
    color: rgba(236, 238, 244, 0.72);
    text-align: center;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 150% */
}

.placeholder {
    height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logos {
    display: flex;
    gap: 28px;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.texts {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.blur-circle-1 {
    width: 240px;
    height: 401px;
    right: -74px;
    top: -74px;
    position: absolute;
    background: #66DAFF;
    box-shadow: 320px 320px 320px;
    border-radius: 9999px;
    filter: blur(160px);
    z-index: -9;
}

.blur-circle-2 {
    width: 449px;
    height: 449px;
    left: -90px;
    bottom: -90px;
    position: absolute;
    background: #615DE8;
    box-shadow: 360px 360px 360px;
    border-radius: 9999px;
    filter: blur(180px);
    z-index: -9;
}



.ring-1 {
    width: 580.80px;
    height: 580.80px;
    /* left: calc(50% - 270.40px);
    top: calc(50% - 270.40px); */
    position: absolute;
    border-radius: 9999px;
    border: 1px rgba(255, 255, 255, 0.06) solid;
}

.ring-2 {
    width: 708.80px;
    height: 708.80px;
    /* left: calc(50% - 354.40px);
    top: calc(50% - 354.40px); */
    position: absolute;
    border-radius: 9999px;
    border: 1px rgba(255, 255, 255, 0.04) solid;
}

.ring-3 {
    width: 838.40px;
    height: 838.40px;
    /* left: calc(50% - 419.20px);
    top: calc(50% - 419.20px); */
    position: absolute;
    border-radius: 9999px;
    border: 1px rgba(255, 255, 255, 0.04) solid;
}

.ring-4 {
    width: 968px;
    height: 968px;
    /* left: calc(50% - 484px);
    top: calc(50% - 484px); */
    position: absolute;
    border-radius: 9999px;
    border: 1px rgba(255, 255, 255, 0.02) solid;
}

.cta-button {
    border-radius: 1000px;
    background: #7393FF;
    color: #fff;
    width: max-content;
    display: flex;
    gap: 16px;
    align-items: center;
    padding-left: 24px;
    text-decoration: none;
    z-index: 999;
}

.link-container {
    border-radius: 1000px;
    height: 56px;
    width: 56px;
    padding: 16px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.12);
}

.bg {
    position: relative;
    overflow: hidden;
}

@media (max-width: 1024px) {

    .container {
        max-width: 95%;
        gap: 16px;
    }
    .blur-circle-1 {
        right: 0;
    }
    .blur-circle-2 {
        left: 0;
    }
    .ring-1 {
        width: 57vw;
        height: 57vw;
    }

    .ring-2 {
        width: 69vw;
        height: 69vw;
    }

    .ring-3 {
        width: 82vw;
        height: 82vw;
    }

    .ring-4 {
        width: 94vw;
        height: 94vw;
    }
}

@media (max-width: 768px) {
    .blur-circle-1 {
        width: 23vw;
        height: 43vh;
    }
    .blur-circle-2 {
        width: 44vw;
        height: 44vh;
    }
}

@media (max-width: 375px) {
    h1 {
        font-size: 44px;
    }
    .logo {
        width: 80px;
        height: 80px;
    }
}