:root {
    --bg: #0f1115;
    --bg-alt: #15181f;
    --text: #f2f3f5;
    --text-dim: #9aa0ab;
    --accent: #6c8cff;
    --border: rgba(255, 255, 255, 0.08);
}

@media (prefers-color-scheme: light) {
    :root:not([data-theme="dark"]) {
        --bg: #f7f8fa;
        --bg-alt: #ffffff;
        --text: #14161a;
        --text-dim: #5a6472;
        --accent: #3b5fe0;
        --border: rgba(0, 0, 0, 0.08);
    }
}

:root[data-theme="dark"] {
    --bg: #0f1115;
    --bg-alt: #15181f;
    --text: #f2f3f5;
    --text-dim: #9aa0ab;
    --accent: #6c8cff;
    --border: rgba(255, 255, 255, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    background-color: red !important;
    margin: 0;
    min-height: 100vh;
    background: radial-gradient(circle at 30% 20%, var(--bg-alt), var(--bg) 70%);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.card {
    max-width: 560px;
    width: 100%;
    text-align: center;
    padding: 48px 32px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 28px;
}

h1 {
    font-size: clamp(28px, 5vw, 42px);
    margin: 0 0 12px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

p.subtitle {
    color: var(--text-dim);
    font-size: 17px;
    line-height: 1.6;
    margin: 0 0 36px;
}

.dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 36px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.3;
    animation: pulse 1.4s infinite ease-in-out;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes pulse {
    0%, 80%, 100% {
        opacity: 0.25;
        transform: scale(1);
    }
    40% {
        opacity: 1;
        transform: scale(1.3);
    }
}

.contact {
    font-size: 14px;
    color: var(--text-dim);
}

.contact a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.contact a:hover {
    text-decoration: underline;
}

footer {
    margin-top: 44px;
    font-size: 12px;
    color: var(--text-dim);
    opacity: 0.6;
}