/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#020403;
    color:#fff;
    overflow-x:hidden;
    position:relative;
}

/* BACKGROUND */

.glow-bg-container{
    position:fixed;
    inset:0;
    z-index:-1;
    overflow:hidden;
}

.blob{
    position:absolute;
    border-radius:50%;
    filter:blur(120px);
    opacity:.12;
    background:#00ff66;
}

.blob-1{
    width:500px;
    height:500px;
    top:-10%;
    left:-10%;
    animation:blob1 20s infinite alternate ease-in-out;
}

.blob-2{
    width:600px;
    height:600px;
    bottom:-20%;
    right:-10%;
    background:#00cc52;
    animation:blob2 25s infinite alternate ease-in-out;
}

.blob-3{
    width:400px;
    height:400px;
    top:40%;
    left:30%;
    opacity:.08;
    animation:blob3 18s infinite alternate ease-in-out;
}

@keyframes blob1{
    0%{transform:translate(0,0) scale(1);}
    100%{transform:translate(120px,120px) scale(1.2);}
}

@keyframes blob2{
    0%{transform:translate(0,0) scale(1);}
    100%{transform:translate(-100px,-100px) scale(.9);}
}

@keyframes blob3{
    0%{transform:translate(0,0) scale(1);}
    100%{transform:translate(-60px,60px) scale(1.2);}
}

/* REVEAL */

.reveal{
    opacity:0;
    transform:translateY(40px);
    transition:1s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/* HERO */

.hero-section{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:40px 20px;
}

.hero-container{
    max-width:800px;
    width:100%;
}

.tagline-badge{
    display:inline-block;
    padding:8px 16px;
    border:1px solid rgba(0,255,102,.3);
    border-radius:8px;
    color:#00ff66;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
}

.brand-title{
    font-size:90px;
    font-weight:800;
    line-height:1;
    margin-top:24px;
}

.brand-sub{
    font-size:28px;
    color:#00ff66;
    letter-spacing:10px;
    font-weight:700;
    margin-bottom:30px;
}

.brand-desc{
    color:#94a3b8;
    line-height:1.8;
    max-width:650px;
    margin:0 auto 35px;
}

/* SOCIAL */

.social{
    display:flex;
    justify-content:center;
    gap:18px;
    margin-bottom:30px;
    flex-wrap:wrap;
}

.social a{
    width:58px;
    height:58px;
    border-radius:50%;
    background:#00ff66;
    color:#000;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    text-decoration:none;
    box-shadow:0 0 25px rgba(0,255,102,.45);
    transition:.25s;
}

.social a:hover{
    transform:translateY(-4px);
    background:#00cc52;
}

/* BUTTON */

.action-row{
    display:flex;
    justify-content:center;
}

.btn-action{
    background:#00ff66;
    color:#000;
    text-decoration:none;
    padding:15px 42px;
    border-radius:10px;
    font-weight:700;
    transition:.25s;
}

.btn-action:hover{
    background:#00cc52;
}

/* STATUS */

.status-section{
    padding:40px 20px 100px;
    display:flex;
    justify-content:center;
}

.server-card{
    width:100%;
    max-width:550px;
    border:1px solid rgba(0,255,102,.15);
    background:rgba(255,255,255,.01);
    border-radius:18px;
    padding:28px;
}

.card-status-bar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
}

.status-indicator{
    color:#7b8794;
    font-size:12px;
    font-weight:800;
}

.status-online{
    color:#00ff66;
    border:1px solid rgba(0,255,102,.3);
    padding:6px 14px;
    border-radius:999px;
    font-size:12px;
    font-weight:700;
}

.card-info-box{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.info-block{
    background:rgba(0,0,0,.3);
    border:1px solid rgba(255,255,255,.03);
    border-radius:12px;
    padding:16px 18px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
}

.info-label{
    display:block;
    font-size:11px;
    color:#64748b;
    margin-bottom:4px;
    font-weight:700;
}

.info-value{
    font-weight:600;
}

.btn-copy{
    background:rgba(0,255,102,.06);
    border:1px solid rgba(0,255,102,.25);
    color:#00ff66;
    padding:8px 16px;
    border-radius:8px;
    font-weight:700;
    cursor:pointer;
}

.card-stats-grid{
    margin-top:28px;
    border:1px solid rgba(0,255,102,.15);
    border-radius:14px;
    padding:24px;
    display:flex;
    justify-content:space-around;
    align-items:center;
}

.stat-item{
    text-align:center;
}

.stat-label{
    display:block;
    color:#7b8794;
    font-size:11px;
    margin-bottom:6px;
    font-weight:700;
}

.stat-value{
    font-weight:600;
}

.divider{
    width:1px;
    height:50px;
    background:rgba(255,255,255,.08);
}

/* SECTION */

.features-section{
    max-width:1200px;
    margin:auto;
    padding:80px 20px;
}

.section-header{
    text-align:center;
    margin-bottom:50px;
}

.section-header h2{
    font-size:42px;
    margin-bottom:12px;
}

.section-header p{
    color:#64748b;
}

/* GRID */

.features-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:24px;
}

/* CARD */

.feature-card{
    background:rgba(255,255,255,.01);
    border:1px solid rgba(0,255,102,.15);
    border-radius:18px;
    padding:28px;
    transition:.25s;
}

.feature-card:hover{
    transform:translateY(-6px);
    border-color:rgba(0,255,102,.4);
    box-shadow:0 0 30px rgba(0,255,102,.08);
}

.feature-card h3{
    color:#00ff66;
    font-size:24px;
    margin-bottom:16px;
}

.feature-desc{
    color:#94a3b8;
    line-height:1.8;
    margin-bottom:24px;
}

/* COMMAND */

.command-group{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.command-box{
    background:rgba(0,255,102,.06);
    border:1px solid rgba(0,255,102,.25);
    color:#00ff66;
    padding:8px 14px;
    border-radius:10px;
    font-size:12px;
    font-weight:700;
    font-family:monospace;
}

/* FOOTER */

.footer{
    padding:40px 20px;
    text-align:center;
    color:#c8c8c8;
    border-top:1px solid rgba(255,255,255,.04);
}

/* MOBILE */

@media(max-width:768px){

    .brand-title{
        font-size:62px;
    }

    .brand-sub{
        font-size:22px;
        letter-spacing:6px;
    }

    .section-header h2{
        font-size:34px;
    }

    .info-block{
        flex-direction:column;
        align-items:flex-start;
    }

    .btn-copy{
        width:100%;
    }

    .card-stats-grid{
        flex-direction:column;
        gap:24px;
    }

    .divider{
        width:100%;
        height:1px;
    }

}