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

:root {
    --background: 240 10% 3.9%;
    --card: 240 10% 8%;
    --primary: 180 65% 58%;
    --secondary: 45 80% 60%;
    --accent: 160 75% 55%;
    --foreground: 0 0% 98%;
    --muted-foreground: 240 5% 64.9%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: hsl(var(--foreground));
    margin: 0;
}

.page-container {
    position: relative;
    display: flex;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(to bottom right,
        hsl(var(--background)),
        hsl(var(--background)),
        hsl(var(--card))
    );
}

/* Animated background elements */
.background-wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.bg-blob {
    position: absolute;
    height: 320px;
    width: 320px;
    border-radius: 9999px;
    filter: blur(96px);
    animation: pulse-glow 4s ease-in-out infinite;
}

.bg-blob-1 {
    top: -160px;
    right: -160px;
    background-color: hsla(var(--primary), 0.1);
}

.bg-blob-2 {
    bottom: -160px;
    left: -160px;
    background-color: hsla(var(--secondary), 0.1);
    animation-delay: 1.5s;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Main content */
.content-wrapper {
    position: relative;
    z-index: 10;
    padding: 0 24px;
    text-align: center;
}

.content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Brand name with animation */
.brand-name {
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
    background: linear-gradient(to right,
        hsl(var(--primary)),
        hsl(var(--accent)),
        hsl(var(--secondary))
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fade-in 0.8s ease-out;
}

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

/* Coming soon message */
.message {
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: slide-up 0.8s ease-out 0.2s both;
}

.tagline {
    font-size: 1.875rem;
    font-weight: 300;
    color: hsla(var(--foreground), 0.9);
}

.subtitle {
    font-size: 1.25rem;
    color: hsl(var(--muted-foreground));
}

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

/* Decorative line */
.divider-wrapper {
    display: flex;
    justify-content: center;
    animation: slide-up 0.8s ease-out 0.4s both;
}

.divider {
    height: 4px;
    width: 128px;
    border-radius: 9999px;
    background: linear-gradient(to right,
        transparent,
        hsl(var(--primary)),
        transparent
    );
}

/* Contact link */
.contact-wrapper {
    animation: slide-up 0.8s ease-out 0.6s both;
}

.contact {
    color: hsl(var(--muted-foreground));
    text-decoration: none;
    transition: color 300ms;
    font-size: 1rem;
}

.contact:hover {
    color: hsl(var(--primary));
}

/* Bottom fade effect */
.bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 128px;
    background: linear-gradient(to top, hsl(var(--background)), transparent);
}

/* Responsive design */
@media (min-width: 768px) {
    .brand-name {
        font-size: 6rem;
    }

    .tagline {
        font-size: 2.25rem;
    }

    .subtitle {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .brand-name {
        font-size: 8rem;
    }
}
