/* Estado del servicio — página pública Saiyan */
.is-status-page .l-status-main {
    min-height: calc(100vh - 72px);
    padding: 2rem 1rem 3.5rem;
    background: var(--l-bg);
}

.l-status-hero {
    max-width: 520px;
    margin: 2rem auto 0;
    padding: 2.25rem 1.85rem 2rem;
    background: var(--l-surface);
    border: 1px solid var(--l-border);
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 14px 48px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

html[data-public-theme='dark'] .l-status-hero {
    box-shadow: 0 18px 56px rgba(0, 0, 0, 0.42);
}

.l-status-hero::before {
    content: '';
    position: absolute;
    inset: -35% -25% auto;
    height: 52%;
    background: radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--l-accent) 28%, transparent), transparent 68%);
    opacity: 0.65;
    pointer-events: none;
}

.l-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.42rem 0.95rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.l-status-badge--ok {
    background: rgba(34, 197, 94, 0.14);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: var(--l-heading);
}

.l-status-badge--busy {
    background: color-mix(in srgb, var(--l-accent) 16%, transparent);
    border: 1px solid color-mix(in srgb, var(--l-accent) 38%, transparent);
    color: var(--l-heading);
}

.l-status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
}

.l-status-dot--ok {
    background: #22c55e;
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.22);
    animation: lStatusGlowOk 2.5s ease-in-out infinite;
}

.l-status-dot--busy {
    background: var(--l-accent);
    box-shadow: 0 0 0 6px color-mix(in srgb, var(--l-accent) 28%, transparent);
    animation: lStatusGlowBusy 2s ease-in-out infinite;
}

@keyframes lStatusGlowOk {
    0%,
    100% {
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.22);
    }
    50% {
        box-shadow: 0 0 0 11px rgba(34, 197, 94, 0.09);
    }
}

@keyframes lStatusGlowBusy {
    0%,
    100% {
        box-shadow: 0 0 0 6px color-mix(in srgb, var(--l-accent) 28%, transparent);
    }
    50% {
        box-shadow: 0 0 0 12px color-mix(in srgb, var(--l-accent) 14%, transparent);
    }
}

.l-status-title {
    margin: 0 0 0.65rem;
    font-size: 1.42rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--l-heading);
    position: relative;
    z-index: 1;
}

.l-status-desc {
    margin: 0 0 1.1rem;
    font-size: 0.96rem;
    line-height: 1.6;
    color: var(--l-text-muted);
    position: relative;
    z-index: 1;
}

.l-status-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    margin: 0 0 1.15rem;
    position: relative;
    z-index: 1;
    text-align: left;
}

.l-status-mini {
    padding: 0.65rem 0.75rem;
    border-radius: 14px;
    background: color-mix(in srgb, var(--l-surface) 88%, var(--l-bg));
    border: 1px solid var(--l-border);
}

.l-status-mini dt {
    margin: 0;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--l-text-muted);
}

.l-status-mini dd {
    margin: 0.25rem 0 0;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--l-heading);
}

.l-status-meta {
    margin: 0 0 1.15rem;
    font-size: 0.8rem;
    color: var(--l-text-muted);
    opacity: 0.92;
    position: relative;
    z-index: 1;
}

.l-status-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.62rem 1.25rem;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 800;
    background: var(--l-accent);
    color: #101010;
    text-decoration: none;
    position: relative;
    z-index: 1;
}

.l-status-back:focus-visible {
    outline: 2px solid color-mix(in srgb, var(--l-accent) 65%, #fff);
    outline-offset: 3px;
}

@media (max-width: 420px) {
    .l-status-grid {
        grid-template-columns: 1fr;
    }
}
