:root {
    --bg: #0b1020;
    --surface: rgba(255, 255, 255, 0.06);
    --surface-border: rgba(255, 255, 255, 0.12);
    --text: #e8ecf6;
    --text-muted: #9aa3b8;
    --accent: #7c9bff;
    --accent-2: #b06bff;
    --radius: 20px;
    color-scheme: dark;
}

* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Segoe UI", Roboto, system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

.page {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.45;
    animation: float 16s ease-in-out infinite;
}

.orb--one {
    width: 360px;
    height: 360px;
    top: -120px;
    left: -80px;
    background: var(--accent);
}

.orb--two {
    width: 420px;
    height: 420px;
    bottom: -160px;
    right: -100px;
    background: var(--accent-2);
    animation-delay: -6s;
}

.orb--three {
    width: 280px;
    height: 280px;
    top: 40%;
    left: 60%;
    background: #34d6c9;
    animation-delay: -11s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.08); }
}

.card {
    position: relative;
    z-index: 1;
    max-width: 560px;
    width: 100%;
    text-align: center;
    padding: 48px 40px;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--surface-border);
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    animation: appear 0.6s ease-out both;
}

@keyframes appear {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: var(--accent);
    animation: pulse 3s ease-in-out infinite;
}

.icon svg {
    width: 100%;
    height: 100%;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: 0.8; }
}

.eyebrow {
    margin: 0 0 8px;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
}

h1 {
    margin: 0 0 12px;
    font-size: clamp(1.8rem, 5vw, 2.6rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--text), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    margin: 0 0 28px;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

.progress {
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
    margin: 0 0 20px;
}

.progress__fill {
    display: block;
    height: 100%;
    width: 40%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    animation: indeterminate 1.8s ease-in-out infinite;
}

@keyframes indeterminate {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(250%); }
}

.meta {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.button {
    display: inline-block;
    margin-top: 8px;
    padding: 12px 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(124, 155, 255, 0.35);
}

.button:focus-visible {
    outline: 2px solid var(--text);
    outline-offset: 2px;
}

.button--ghost {
    background: transparent;
    border: 1px solid var(--surface-border);
    color: var(--text);
}

.button--ghost:hover,
.button--ghost:focus-visible {
    box-shadow: none;
    background: rgba(255, 255, 255, 0.06);
}

@media (prefers-reduced-motion: reduce) {
    .orb,
    .icon,
    .card,
    .progress__fill {
        animation: none !important;
    }
}
