*{box-sizing:border-box}
html,body{min-height:100%}

body{
    margin:0;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    background:radial-gradient(circle at 50% 20%,#17243b 0%,#0b1019 42%,#05070b 100%);
    color:#fff;
    font-family:Inter,system-ui,-apple-system,"Segoe UI",Arial,sans-serif
}

.card{
    width:min(520px,100%);
    padding:55px 40px;
    text-align:center;
    background:rgba(15,21,32,.78);
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    box-shadow:0 25px 80px rgba(0,0,0,.45);
    backdrop-filter:blur(10px)
}

.logo{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:16px;
    margin-bottom:58px
}

.wordmark-wrap{
    text-align:left
}

.wordmark{
    font-size:46px;
    font-weight:800;
    letter-spacing:-2px;
    line-height:.88
}

.wordmark span{
    font-weight:300
}

.motto{
    margin-top:1px;
    margin-left:0;
    color:#9aa8bb;
    font-size:10px;
    letter-spacing:.75px;
    line-height:1;
    white-space:nowrap
}

.server-mark{
    width:55px;
    display:flex;
    flex-direction:column;
    gap:4px
}

.server-row{
    height:15px;
    border:2px solid #d9e2ef;
    border-radius:3px;
    display:flex;
    align-items:center;
    padding:0 5px;
    gap:4px;
    background:rgba(255,255,255,.03)
}

.slot{
    height:2px;
    flex:1;
    background:#68778c;
    border-radius:2px
}

.led{
    width:4px;
    height:4px;
    border-radius:50%;
    background:#284334;
    transition:background .12s,box-shadow .12s,opacity .12s
}

.led.on{
    background:#38d878;
    box-shadow:0 0 7px #38d878;
    opacity:1
}

.status{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    margin-bottom:18px;
    color:#aeb9c9;
    font-size:13px;
    letter-spacing:1.8px
}

.heartbeat-dot{
    display:inline-block;
    width:9px;
    height:9px;
    border-radius:50%;
    background:#38d878;
    box-shadow:0 0 14px #38d878;
    animation:heartbeat 1.8s ease-in-out infinite;
    transform-origin:center
}

@keyframes heartbeat{
    0%,100%{
        transform:scale(1);
        opacity:.85;
        box-shadow:0 0 10px rgba(56,216,120,.65)
    }
    14%{
        transform:scale(1.45);
        opacity:1;
        box-shadow:0 0 18px rgba(56,216,120,1)
    }
    28%{
        transform:scale(1);
        opacity:.9;
        box-shadow:0 0 12px rgba(56,216,120,.75)
    }
    42%{
        transform:scale(1.28);
        opacity:1;
        box-shadow:0 0 16px rgba(56,216,120,.95)
    }
    58%{
        transform:scale(1);
        opacity:.85;
        box-shadow:0 0 10px rgba(56,216,120,.65)
    }
}

.counter{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
    align-items:start
}

.counter-unit{
    min-width:0
}

.counter-value{
    font-size:clamp(31px,7vw,43px);
    font-weight:500;
    line-height:1;
    letter-spacing:-1px;
    font-variant-numeric:tabular-nums
}

.counter-label{
    margin-top:8px;
    color:#66758d;
    font-size:8px;
    letter-spacing:1.6px
}

.footer{
    margin-top:48px;
    color:#536075;
    font-size:12px;
    letter-spacing:1px;
    line-height:1.55
}

.footer-sub{
    margin-top:3px;
    font-size:12px;
    letter-spacing:1px;
    color:#536075
}

@media(max-width:480px){
    .card{padding:42px 22px}
    .logo{margin-bottom:48px}
    .wordmark{font-size:35px}
    .server-mark{width:45px}
    .motto{font-size:8px;letter-spacing:.55px}
    .counter{gap:9px}
    .counter-value{font-size:30px}
    .counter-label{font-size:7px;letter-spacing:1px}
}