*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Space Grotesk',sans-serif;
    background:#050816;
    color:white;
    overflow:hidden;

}

.grid{

    position:fixed;
    inset:0;

    background-image:

        linear-gradient(rgba(255,255,255,.05) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px);

    background-size:55px 55px;

    mask-image:radial-gradient(circle at center,black 35%,transparent 100%);
    -webkit-mask-image:radial-gradient(circle at center,black 35%,transparent 100%);

}

.glow{

    position:fixed;
    border-radius:50%;
    filter:blur(150px);

}

.glow1{

    width:450px;
    height:450px;
    background:#00e1ff;
    top:-120px;
    left:-120px;

}

.glow2{

    width:420px;
    height:420px;
    background:#5f3bff;
    right:-100px;
    bottom:-100px;

}

section{

    position:relative;

    z-index:5;

    min-height:100vh;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    padding:20px;

    text-align:center;

}

.badge{

    border:1px solid rgba(0,225,255,.4);

    color:#66ecff;

    padding:10px 22px;

    border-radius:100px;

    margin-bottom:35px;

    backdrop-filter:blur(15px);

}

h1{

    font-size:82px;
    font-weight:700;
    line-height:1;

}

h1 span{

    color:#00e1ff;

    text-shadow:0 0 35px rgba(0,225,255,.7);

}

p{

    width:650px;
    max-width:90%;

    margin-top:35px;

    color:#b5bfd8;

    font-size:20px;

    line-height:1.8;

}

.stack{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:15px;

    margin:50px 0;

}

.stack span{

    padding:14px 20px;

    border:1px solid rgba(255,255,255,.08);

    background:rgba(255,255,255,.04);

    border-radius:12px;

    transition:.3s;

}

.stack span:hover{

    transform:translateY(-6px);

    border-color:#00e1ff;

    box-shadow:0 0 25px rgba(0,225,255,.3);

}

a{

    text-decoration:none;

    color:white;

    background:#00b8d9;

    padding:18px 42px;

    border-radius:12px;

    font-weight:600;

    transition:.3s;

}

a:hover{

    transform:translateY(-5px);

    box-shadow:0 0 35px rgba(0,225,255,.5);

}

footer{

    position:fixed;

    bottom:25px;

    width:100%;

    text-align:center;

    color:#69748d;

    font-size:14px;

}

@media(max-width:768px){

h1{

font-size:52px;

}

p{

font-size:17px;

}

.stack{

gap:10px;

}

.stack span{

font-size:14px;

padding:12px 15px;

}

}