*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Inter,Segoe UI,Arial,sans-serif;
    background:#070707;
    color:#fff;
    overflow-x:hidden;
}

/* Background */

.bg{
    position:fixed;
    inset:0;
    z-index:-2;
    background:#070707;
}

.bg::before{
    content:"";
    position:absolute;
    width:700px;
    height:700px;
    background:#00ff6640;
    border-radius:50%;
    filter:blur(180px);
    top:-250px;
    left:50%;
    transform:translateX(-50%);
}

/* Hero */

.hero{
    max-width:900px;
    margin:auto;
    text-align:center;
    padding:70px 20px 40px;
}

.logo{
    width:180px;
    max-width:70%;
    margin-bottom:25px;
}

.hero h1{
    font-size:3rem;
    color:#00ff66;
    margin-bottom:20px;
}

.hero p{
    max-width:650px;
    margin:auto;
    color:#cfcfcf;
    font-size:1.1rem;
    line-height:1.8;
}

/* Cards */

.cards{

    width:min(1200px,92%);
    margin:40px auto 80px;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:25px;

}

.card{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    padding:32px;

    backdrop-filter:blur(18px);

    transition:.35s;

}

.card:hover{

    transform:translateY(-8px);

    border-color:#00ff66;

    box-shadow:0 15px 40px rgba(0,255,102,.15);

}

.card h2{

    color:#00ff66;

    margin-bottom:18px;

    font-size:1.6rem;

}

.card h3{

    color:white;

    margin-top:15px;

    word-break:break-word;

}

.card p{

    color:#d8d8d8;

    line-height:1.8;

}

.card ul{

    padding-left:22px;

    color:#d8d8d8;

    line-height:2;

}

.inline-link{

    display:inline-block;

    margin-top:18px;

    color:#00ff66;

    text-decoration:none;

    font-weight:600;

}

.inline-link:hover{

    text-decoration:underline;

}

/* Footer */

footer{

    text-align:center;

    padding:35px;

    color:#888;

    border-top:1px solid rgba(255,255,255,.05);

}

/* Mobile */

@media(max-width:768px){

.hero{

padding-top:50px;

}

.logo{

width:150px;

}

.hero h1{

font-size:2.2rem;

}

.hero p{

font-size:1rem;

}

.card{

padding:24px;

}

}