*{
    box-sizing:border-box;
}

body{
    margin:0;
    min-height:100vh;
    font-family:Segoe UI,Tahoma,Arial,sans-serif;
    color:white;
    background:
        radial-gradient(circle at top,#0f3b75 0%,#06101f 38%,#020617 100%);
    overflow-x:hidden;
}

.bg-glow{
    position:fixed;
    inset:0;
    background:
        radial-gradient(circle at 30% 25%,rgba(0,153,255,.28),transparent 32%),
        radial-gradient(circle at 70% 30%,rgba(34,197,94,.20),transparent 28%);
    filter:blur(40px);
    z-index:-1;
}

.page{
    width:min(1180px,92%);
    margin:auto;
    padding:45px 0 30px;
    text-align:center;
}

.hero{
    animation:fadeUp .7s ease both;
}

.logo{
    width:min(620px,92%);
    margin:0 auto 5px;
    display:block;
    filter:drop-shadow(0 0 35px rgba(0,153,255,.45));
}

h1{
    font-size:38px;
    margin:5px 0 10px;
    font-weight:900;
    letter-spacing:-1px;
}

.subtitle{
    font-size:20px;
    color:#cbd5e1;
    margin:0 auto 30px;
    max-width:760px;
    line-height:1.5;
}

.actions{
    display:flex;
    justify-content:center;
    gap:22px;
    flex-wrap:wrap;
    margin-bottom:22px;
}

.btn{
    min-width:250px;
    padding:18px 30px;
    border-radius:14px;
    color:white;
    text-decoration:none;
    font-size:18px;
    font-weight:900;
    transition:.22s ease;
    box-shadow:0 15px 35px rgba(0,0,0,.35);
}

.btn.green{
    background:linear-gradient(135deg,#22c55e,#16a34a);
}

.btn.blue{
    background:linear-gradient(135deg,#2563eb,#0284c7);
}

.btn:hover{
    transform:translateY(-4px) scale(1.02);
    filter:brightness(1.12);
}

.status{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    margin-top:6px;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(15,23,42,.58);
    border:1px solid rgba(34,197,94,.28);
    color:#cbd5e1;
    font-size:17px;
    font-weight:600;
    box-shadow:0 0 24px rgba(34,197,94,.10);
}

.status strong{
    color:#22c55e;
}

.dot{
    display:inline-block;
    width:10px;
    height:10px;
    border-radius:50%;
    background:#22c55e;
    box-shadow:0 0 10px #22c55e;
}

.cards{
    margin-top:55px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.card{
    background:rgba(15,23,42,.72);
    border:1px solid rgba(148,163,184,.20);
    border-radius:22px;
    padding:30px 22px;
    box-shadow:0 20px 45px rgba(0,0,0,.28);
    backdrop-filter:blur(12px);
    transition:.25s ease;
}

.card:hover{
    transform:translateY(-6px);
    border-color:rgba(34,197,94,.55);
    box-shadow:0 0 35px rgba(34,197,94,.18);
}

.icon{
    font-size:42px;
    margin-bottom:14px;
}

.card h2{
    margin:0 0 12px;
    font-size:23px;
}

.card p{
    color:#cbd5e1;
    line-height:1.55;
    margin:0;
    font-size:16px;
}

footer{
    margin-top:55px;
    padding-top:22px;
    border-top:1px solid rgba(255,255,255,.08);
    color:#94a3b8;
    font-size:15px;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(22px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media(max-width:900px){
    .cards{
        grid-template-columns:repeat(2,1fr);
    }

    h1{
        font-size:32px;
    }
}

@media(max-width:560px){
    .page{
        padding-top:25px;
    }

    .logo{
        width:96%;
    }

    .cards{
        grid-template-columns:1fr;
    }

    .btn{
        width:100%;
    }

    .subtitle{
        font-size:18px;
    }

    .status{
        font-size:15px;
        padding:9px 14px;
    }
}
