.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    /* Removed potential glassmorphism: using solid tint instead of blur */
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--green);
    line-height: 1;
    /* Layer promotion to keep the badge snappy during scroll */
    transform: translateZ(0);
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: var(--green);
    border-radius: 50%;
    position: relative;
    /* GPU Acceleration trigger */
    transform: translate3d(0, 0, 0);
}

.pulse-dot::after {
    content: "";
    position: absolute;
    inset: 0; 
    background-color: var(--green);
    border-radius: 50%;
    /* Optimization: Logic preserved, hardware accelerated */
    animation: pulse-ring 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    will-change: transform, opacity;
}

@keyframes pulse-ring {
    0% {
        transform: scale3d(1, 1, 1);
        opacity: 0.8;
    }
    100% {
        transform: scale3d(3.5, 3.5, 1);
        opacity: 0;
    }
}