*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Inter',sans-serif;
    background:#07111c;
    overflow:hidden;
    color:#fff;

}

.hero{

    display:flex;
    justify-content:center;
    align-items:center;
    min-height:100vh;
    position:relative;
    padding:20px;

}

.background{

    position:absolute;
    inset:0;
    overflow:hidden;

}

.background span{

    position:absolute;
    border-radius:50%;
    filter:blur(120px);
    animation:float 12s infinite ease-in-out;

}

.background span:nth-child(1){

    width:350px;
    height:350px;
    background:#00c2ff;
    top:-80px;
    left:-80px;

}

.background span:nth-child(2){

    width:400px;
    height:400px;
    background:#4f46e5;
    right:-100px;
    bottom:-120px;
    animation-delay:3s;

}

.background span:nth-child(3){

    width:250px;
    height:250px;
    background:#0ea5e9;
    top:40%;
    left:55%;
    animation-delay:5s;

}

@keyframes float{

    0%{

        transform:translateY(0px) scale(1);

    }

    50%{

        transform:translateY(-40px) scale(1.15);

    }

    100%{

        transform:translateY(0px) scale(1);

    }

}

.card{

    width:700px;
    max-width:100%;
    padding:60px;
    border-radius:30px;
    background:rgba(255,255,255,.06);
    backdrop-filter:blur(25px);
    border:1px solid rgba(255,255,255,.08);
    text-align:center;
    z-index:10;

}

.logo{

    width:90px;
    margin-bottom:25px;
}

.tag{

    display:inline-block;
    padding:10px 18px;
    border-radius:100px;
    background:rgba(0,194,255,.15);
    color:#59d4ff;
    letter-spacing:2px;
    font-size:13px;
    margin-bottom:25px;

}

h1{

    font-size:56px;
    font-weight:800;
    line-height:1.15;
    margin-bottom:25px;

}

h1 span{

    color:#00c2ff;

}

.description{

    color:#b8c4d4;
    line-height:1.9;
    font-size:17px;
    margin-bottom:35px;

}

.services{

    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:40px;

}

.services span{

    padding:10px 18px;
    border-radius:100px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    font-size:14px;

}

.btn{

    display:inline-block;
    text-decoration:none;
    color:#fff;
    background:#00c2ff;
    padding:16px 36px;
    border-radius:12px;
    font-weight:600;
    transition:.35s;

}

.btn:hover{

    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(0,194,255,.35);

}

.footer{

    margin-top:45px;
    color:#7b8ba3;
    font-size:14px;

}

@media(max-width:768px){

.card{

padding:35px 25px;

}

h1{

font-size:38px;

}

.description{

font-size:15px;

}

.logo{

width:70px;

}

}