/* ---------- State pages (404, 500, offline) ---------- */
.state {
    min-height: 70vh;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 80px 32px;
    text-align: center;
}
.state-lion {
    width: 220px; height: 220px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin-bottom: 40px;
    background: var(--bg-2);
}
.state .big-number {
    font-family: var(--font-serif);
    font-weight: 400;
    font-variation-settings: "opsz" 144, "SOFT" 30;
    font-size: clamp(72px, 10vw, 128px);
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--muted);
    opacity: .55;
    margin: 0 0 18px;
}
.state h1 { max-width: 20ch; }
.state .lead { max-width: 46ch; }
.state .actions {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    margin-top: 28px;
}
.state .actions.row { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 16px; }
.quiet-link {
    color: var(--muted);
    border-bottom: none;
    font-size: 14px;
    margin-top: 20px;
}
.quiet-link:hover { color: var(--amber); }
.mono-line {
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: .08em;
    color: var(--muted);
    margin-top: 28px;
    opacity: .8;
    display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-variation-settings: "opsz" 24, "SOFT" 70;
    font-size: 20px;
    color: var(--amber);
    letter-spacing: .01em;
    margin: 0 0 14px;
}
.pulse {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--amber);
    box-shadow: 0 0 0 0 rgba(201,154,59,.6);
    animation: pulse 1.6s infinite;
}
@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(201,154,59,.55); }
    70%  { box-shadow: 0 0 0 12px rgba(201,154,59,0);  }
    100% { box-shadow: 0 0 0 0 rgba(201,154,59,0);    }
}

