:root {
    color-scheme: dark;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #0b1020;
    color: #e5edf7;
}

* {
    box-sizing: border-box;
}

body {
    min-height: 100svh;
    margin: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(56, 189, 248, 0.14), transparent 28rem),
        linear-gradient(135deg, #0b1020, #111827 58%, #121212);
}

.boot-shell {
    min-height: 100svh;
    display: grid;
    place-items: center;
    padding: 28px;
}

.boot-panel {
    width: min(880px, 100%);
    border: 1px solid rgba(148, 163, 184, 0.24);
    background: rgba(15, 23, 42, 0.86);
    padding: 28px;
    border-radius: 8px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.eyebrow {
    margin: 0 0 8px;
    color: #67e8f9;
    font-size: large;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1 {
    margin: 0;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1;
    letter-spacing: 0;
}

.lead {
    max-width: 680px;
    margin: 16px 0 26px;
    color: #cbd5e1;
    font-size: 17px;
    line-height: 1.55;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 8px;
}

.status-grid div {
    min-width: 0;
    background: rgba(2, 6, 23, 0.42);
    padding: 14px;
}

.status-grid span {
    display: block;
    margin-bottom: 6px;
    color: #94a3b8;
    font-size: 12px;
}

.status-grid strong {
    display: block;
    overflow-wrap: anywhere;
    font-size: 15px;
}

.steps {
    display: grid;
    gap: 8px;
    margin: 22px 0 0;
    padding: 0;
    color: #94a3b8;
    list-style: none;
}

.steps li {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    min-height: 28px;
    font-size: 14px;
}

.steps span {
    width: 10px;
    height: 10px;
    border: 1px solid rgba(148, 163, 184, 0.44);
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.88);
}

.steps strong {
    overflow-wrap: anywhere;
    font-size: 14px;
}

.steps li.is-active {
    color: #e5edf7;
}

.steps li.is-active span {
    border-color: #67e8f9;
    background: #67e8f9;
    box-shadow: 0 0 0 5px rgba(103, 232, 249, 0.12);
}

.steps li.is-done {
    color: #cbd5e1;
}

.steps li.is-done span {
    border-color: #22c55e;
    background: #22c55e;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

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

.state {
    color: #9ca3af;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0;
}
