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

:root {
    --background: #000000;
    --foreground: #ededed;
    --muted: #888888;
    --accent: #0070f3;
    --accent-secondary: #7928ca;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.content {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.logo-wrapper {
    position: relative;
    display: inline-block;
}

.logo {
    font-size: clamp(3rem, 10vw, 5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    background: linear-gradient(to bottom right, #ffffff, #a0a0a0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.tagline {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--muted);
    margin-top: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--muted), transparent);
    margin: 2rem auto;
}

.description {
    font-size: 1rem;
    color: var(--muted);
    max-width: 400px;
    line-height: 1.6;
}

.footer {
    position: absolute;
    bottom: 2rem;
    font-size: 0.875rem;
    color: var(--muted);
    opacity: 0.6;
}

/* Gradient blur effects - Vercel signature style */
.gradient-blur {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.gradient-blur-1 {
    background: var(--accent);
    top: -200px;
    right: -200px;
    animation: float 8s ease-in-out infinite;
}

.gradient-blur-2 {
    background: var(--accent-secondary);
    bottom: -200px;
    left: -200px;
    animation: float 8s ease-in-out infinite reverse;
}

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

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(30px, 30px);
    }
}

/* Mobile responsiveness */
@media (max-width: 640px) {
    .gradient-blur {
        width: 300px;
        height: 300px;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .description {
        font-size: 0.875rem;
    }
}
