* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    font-family: var(--font-body);
    background: radial-gradient(circle at 18% 12%, #11303b 0%, #08171d 45%, #050d12 100%);
    color: var(--color-text);
    overflow: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 78% 18%, rgba(255, 176, 102, 0.08), transparent 42%),
        radial-gradient(circle at 16% 86%, rgba(62, 201, 199, 0.12), transparent 48%);
}

.app-container {
    position: relative;
    width: 100vw;
    height: 100vh;
}

.progress-badge {
    position: fixed;
    top: 16px;
    left: 16px;
    z-index: var(--z-nav);
    pointer-events: none;
}

.progress-text {
    font-size: var(--text-sm);
    font-weight: 600;
    color: rgba(219, 238, 242, 0.86);
    letter-spacing: 0.01em;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.22);
}

.hidden {
    display: none !important;
}

.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;
}
