:root {
    --bg: #0a0a0f;
    --accent: #7C5CFF;
    --accent-soft: rgba(124, 92, 255, 0.18);
    --text: #EDEDF2;
    --text-muted: #9999A8;
    --border-soft: rgba(255, 255, 255, 0.08);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

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

body {
    background: var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
        Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.glow {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(
            ellipse 60% 50% at 50% 35%,
            var(--accent-soft) 0%,
            transparent 70%
        );
}

.stage {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1.5rem 2rem;
}

.stage > * {
    opacity: 0;
    transform: translateY(8px);
    animation: fade-in 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.stage > *:nth-child(1) { animation-delay: 0.05s; }
.stage > *:nth-child(2) { animation-delay: 0.18s; }
.stage > *:nth-child(3) { animation-delay: 0.28s; }
.stage > *:nth-child(4) { animation-delay: 0.40s; }
.stage > *:nth-child(5) { animation-delay: 0.52s; }

@keyframes fade-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    width: clamp(180px, 32vw, 280px);
    height: auto;
    margin-bottom: 1.25rem;
    filter: drop-shadow(0 0 28px rgba(124, 92, 255, 0.35));
}

.brand {
    margin: 0 0 0.5rem;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.tagline {
    margin: 0 0 2rem;
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-muted);
    max-width: 32rem;
}

.wip {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem 0.9rem;
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    background: rgba(124, 92, 255, 0.06);
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    color: var(--text);
    margin-bottom: 1.25rem;
}

.wip-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 0 rgba(124, 92, 255, 0.6);
    animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(124, 92, 255, 0.55);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(124, 92, 255, 0);
    }
}

.message {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 28rem;
}

.footer {
    position: relative;
    z-index: 1;
    padding: 1.5rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer a {
    color: var(--text-muted);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.footer a:hover,
.footer a:focus-visible {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.footer .sep {
    opacity: 0.5;
}

@media (max-width: 480px) {
    .stage {
        padding: 3rem 1.25rem 1.5rem;
    }

    .footer .sep {
        display: none;
    }

    .footer {
        flex-direction: column;
        gap: 0.25rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .stage > * {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .wip-dot {
        animation: none;
    }
}
