*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Poppins',sans-serif;
    background:#08111f;
    overflow:hidden;
    color:#fff;
}

.background{

    position:absolute;
    inset:0;
    overflow:hidden;
}

.background span{

    position:absolute;
    border-radius:50%;
    filter:blur(60px);
    animation:move 15s infinite alternate;
}

.background span:nth-child(1){

    width:350px;
    height:350px;
    background:#00b4ff;
    top:-120px;
    left:-100px;
}

.background span:nth-child(2){

    width:280px;
    height:280px;
    background:#7d2cff;
    right:-80px;
    bottom:50px;
}

.background span:nth-child(3){

    width:200px;
    height:200px;
    background:#00ffbf;
    bottom:-50px;
    left:30%;
}

@keyframes move{

    to{

        transform:translateY(60px) translateX(60px);
    }
}

.container{

    position:relative;
    z-index:2;

    width:100%;
    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;
    gap:80px;

    padding:40px;
}

.illustration{

    position:relative;
}

.monitor{

    width:360px;
    height:240px;

    background:#18263d;

    border-radius:20px;

    border:10px solid #293f61;

    box-shadow:0 30px 80px rgba(0,0,0,.45);
}

.monitor:after{

    content:'';

    position:absolute;

    width:120px;
    height:18px;

    background:#293f61;

    left:50%;
    transform:translateX(-50%);
    bottom:-28px;

    border-radius:10px;
}

.screen{

    width:100%;
    height:100%;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    background:#0d1628;

    border-radius:10px;
}

.progress{

    width:240px;
    height:16px;

    background:#1c2740;

    border-radius:30px;

    overflow:hidden;
}

.bar{

    width:40%;

    height:100%;

    background:linear-gradient(90deg,#00b4ff,#00ffbf);

    animation:loading 2s infinite;
}

@keyframes loading{

    0%{

        width:10%;
    }

    50%{

        width:80%;
    }

    100%{

        width:20%;
    }

}

.screen h2{

    margin-top:25px;

    font-size:22px;

    letter-spacing:4px;

    color:#00d4ff;
}

.gear{

    position:absolute;

    font-size:70px;

    color:#00b4ff;
}

.gear1{

    left:-60px;

    top:-30px;

    animation:rotate 6s linear infinite;
}

.gear2{

    right:-40px;

    bottom:-20px;

    color:#00ffbf;

    animation:rotate2 6s linear infinite;
}

@keyframes rotate{

    from{

        transform:rotate(0deg);
    }

    to{

        transform:rotate(360deg);
    }

}

@keyframes rotate2{

    from{

        transform:rotate(360deg);
    }

    to{

        transform:rotate(0deg);
    }

}

.content{

    max-width:520px;
}

.content span{

    color:#00d4ff;

    font-weight:600;

    letter-spacing:3px;

    font-size:14px;
}

.content h1{

    margin:18px 0;

    font-size:58px;

    line-height:1.1;
}

.content p{

    color:#b9c6d8;

    line-height:1.8;

    margin-bottom:35px;
}

.btn{

    display:inline-block;

    text-decoration:none;

    color:#fff;

    background:linear-gradient(45deg,#00b4ff,#7d2cff);

    padding:16px 40px;

    border-radius:50px;

    transition:.4s;
}

.btn:hover{

    transform:translateY(-6px);

    box-shadow:0 20px 40px rgba(0,180,255,.35);
}

.social{

    margin-top:45px;

    display:flex;

    gap:18px;
}

.social a{

    width:48px;
    height:48px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#13213b;

    color:#fff;

    transition:.4s;
}

.social a:hover{

    background:#00b4ff;

    transform:translateY(-6px);
}

@media(max-width:991px){

.container{

flex-direction:column;
text-align:center;
gap:60px;

}

.content h1{

font-size:42px;

}

.monitor{

width:300px;
height:200px;

}

.progress{

width:200px;

}

}

@media(max-width:576px){

.container{

padding:30px 20px;

}

.content h1{

font-size:34px;

}

.monitor{

width:260px;
height:170px;

}

.gear{

font-size:50px;

}

.progress{

width:160px;

}

}