:root {
    --bg: #0a0a0a;
    --text: #fafafa;
    --text-muted: #a1a1a1;
}

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

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Subtle ambient gradient - single soft glow */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(
        ellipse 60% 40% at 50% 50%,
        rgba(255, 255, 255, 0.05) 0%,
        transparent 70%
    );
    z-index: 0;
    pointer-events: none;
}

#bg-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.logo {
    width: 400px;
    max-width: 90%;
    height: auto;
    display: block;
    opacity: 0;
    animation: fadeUp 1.2s ease-out 0.2s both;
}

.status {
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
    opacity: 0;
    animation: fadeUp 1.2s ease-out 0.5s both;
}

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

@media (max-width: 768px) {
    .logo {
        width: 250px;
    }

    .status {
        font-size: 0.65rem;
        letter-spacing: 0.2em;
    }
}
