@keyframes pulseDot {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, .8)
    }
    70% {
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0)
    }
    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0)
    }
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border: 1px solid rgba(40, 167, 69, .25);
    border-radius: 999px;
    padding: .2rem .6rem;
    font-size: .75rem;
    font-weight: 600;
    background: rgba(40, 167, 69, .08);
    color: #28a745
}

.status-pill .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%
}

.status-pill .dot.online {
    background: #28a745;
    animation: pulseDot 1.3s infinite
}

.btn-blip {
    position: relative;
    overflow: hidden
}

.btn-blip.blip::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid currentColor;
    border-radius: 6px;
    opacity: .3;
    animation: btnBlip .45s ease-out forwards
}

@keyframes btnBlip {
    from {
        transform: scale(.92)
    }
    to {
        transform: scale(1.06);
        opacity: 0
    }
}

.log-ticker {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
    max-height: 200px;
    overflow: auto
}


.badge-chip {
    border: 1px solid rgba(220, 53, 69, .35);
    color: #dc3545;
    background: rgba(220, 53, 69, .08);
    border-radius: 999px;
    padding: .15rem .5rem;
    font-size: .7rem
}

@keyframes pulseDot {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, .8);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

.status-pill .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%
}

.status-pill .dot.online {
    background: #28a745;
    animation: pulseDot 1.4s infinite
}

.root-controls .btn {
    letter-spacing: .2px
}

.btn-blip {
    position: relative;
    overflow: hidden
}

.btn-blip.blip::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid currentColor;
    border-radius: 6px;
    opacity: .25;
    animation: btnBlip .5s ease-out forwards;
}

@keyframes btnBlip {
    from {
        transform: scale(.9)
    }
    to {
        transform: scale(1.08);
        opacity: 0
    }
}

.main{padding:2rem;background:linear-gradient(135deg,rgba(25,135,84,.2),rgba(0,0,0,.95))}

.hero-cta .btn {
    transform: translateY(0);
    transition: transform .15s ease, box-shadow .15s ease
}

.hero-cta .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 0.5rem 1rem rgba(25, 135, 84, .25)
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    border: 1px solid rgba(25, 135, 84, .35);
    background: rgba(25, 135, 84, .08);
    color: #198754;
    border-radius: 999px;
    padding: .2rem .6rem;
    font-size: .75rem;
    font-weight: 600
}

.kpi {
    display: flex;
    align-items: center;
    gap: .6rem
}

.kpi .icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(25, 135, 84, .15);
    color: #198754
}

.card-gradient {
    background: linear-gradient(180deg, rgba(25, 135, 84, .05), transparent)
}

.list-clean li + li {
    border-top: 1px dashed rgba(255, 255, 255, .08);
    padding-top: .5rem;
    margin-top: .5rem
}
