:root {
    --background: #0a0a0a;
    --primary: #1f2937;
    --foreground: #ededed;
    --accent: #dbe2e9;
    --accent-hover: #c5d0db;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--foreground);
    font-family:
        'Poppins',
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        Roboto,
        sans-serif;
    padding: 1.5rem;
}

.wrap {
    text-align: center;
    max-width: 32rem;
}

.logo {
    display: block;
    margin: 0 auto 1.5rem;
}

.eyebrow {
    margin: 0 0 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
}

h1 {
    margin: 0 0 1rem;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
}

.body {
    margin: 0 auto 2rem;
    color: var(--accent);
    line-height: 1.6;
}

.dots {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.dots span {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background: var(--accent);
    opacity: 0.4;
    animation: pulse 1.4s ease-in-out infinite;
}

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

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

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

footer {
    font-size: 0.8rem;
    color: var(--accent);
    opacity: 0.7;
}

@media (prefers-reduced-motion: reduce) {
    .dots span {
        animation: none;
    }
}
