:root {
    --bg: #0b0f14;
    --ink: #c9d1d9;
    --ink-2: #6e7a87;
    --pulse: #4fd18b;
}
html, body {
    height: 100%;
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: ui-monospace, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
    overflow: hidden;
}
canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}
.status {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
    pointer-events: none;
}
.status .label {
    font-size: 11px;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: var(--ink-2);
}
.status .line {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    letter-spacing: .06em;
}
.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pulse);
    box-shadow: 0 0 0 0 rgba(79, 209, 139, 0.55);
    animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(79, 209, 139, 0.55); }
    70%  { box-shadow: 0 0 0 12px rgba(79, 209, 139, 0); }
    100% { box-shadow: 0 0 0 0 rgba(79, 209, 139, 0); }
}
.foot {
    position: fixed;
    left: 0; right: 0; bottom: 18px;
    text-align: center;
    font-size: 10.5px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--ink-2);
}
@media (prefers-reduced-motion: reduce) {
    .dot { animation: none; }
}
