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

:root {
    --bg: #ffffff;
    --text: #0f172a;
    --text-dim: #64748b;
    --accent: #8b5cf6;
    --accent-light: #a78bfa;
}

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

/* Light gradient mesh background */
.background {
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(ellipse 100% 80% at 50% -20%, rgba(139, 92, 246, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 80% 50% at -10% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 80% 50% at 110% 50%, rgba(236, 72, 153, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 100% 60% at 50% 120%, rgba(6, 182, 212, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #faf5ff 0%, #ffffff 50%, #f0f9ff 100%);
}

/* Soft glow at top */
.background::before {
    content: '';
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 350px;
    background: radial-gradient(ellipse, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
    animation: breathe 6s ease-in-out infinite;
}

@keyframes breathe {

    0%,
    100% {
        opacity: 0.5;
        transform: translateX(-50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translateX(-50%) scale(1.1);
    }
}

/* Subtle grid pattern */
.background::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

/* Main content */
.main {
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
    max-width: 800px;
}

/* Brand */
.brand {
    font-size: clamp(4rem, 14vw, 9rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--text);
    margin-bottom: 2rem;
    line-height: 1;
}

/* Status badge */
.status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--accent);
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.1);
}

.dot {
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Tagline */
.tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--text-dim);
    margin-bottom: 3.5rem;
    font-weight: 400;
}

/* Features */
.features {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.feature {
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dim);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.feature:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(255, 255, 255, 1));
    border-color: rgba(139, 92, 246, 0.3);
    color: var(--text);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.15);
}

/* Footer */
.footer {
    position: fixed;
    bottom: 24px;
    font-size: 0.8rem;
    color: #94a3b8;
    letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 600px) {
    .status {
        padding: 10px 20px;
        letter-spacing: 0.2em;
    }

    .features {
        gap: 10px;
    }

    .feature {
        padding: 12px 18px;
        font-size: 0.85rem;
    }
}