:root {
    --purple: rgb(168, 85, 247);
    --blue: rgb(59, 130, 246);
}

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

body {
    font-family: system-ui, -apple-system, sans-serif;
    min-height: 100vh;
    background: linear-gradient(to bottom right, #111827, #1f2937, #111827);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow-x: hidden;
}

.background {
    position: fixed;
    inset: -10px;
    overflow: hidden;
    z-index: 0;
    opacity: 0.5;
}

.gradient-orb {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(100px);
    animation: pulse 4s ease-in-out infinite;
}

.purple {
    background: var(--purple);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.blue {
    background: var(--blue);
    top: 25%;
    right: 25%;
    animation-delay: 1s;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.content {
    position: relative;
    z-index: 1;
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(-10px);
    animation: fadeIn 1s ease-out forwards;
}

.gradient-text {
    background: linear-gradient(to right, var(--blue), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.subtitle {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    color: #d1d5db;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(-10px);
    animation: fadeIn 1s ease-out 0.3s forwards;
}

.contact-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease-out 0.6s forwards;
}

.contact-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

.launch-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: #9ca3af;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease-out 0.9s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 640px) {
    .social-links {
        flex-direction: column;
        align-items: stretch;
    }
    
    .social-link {
        justify-content: center;
    }
}