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

body, html {
    height: 100%;
    font-family: 'Inter', sans-serif;
    background: #000;
    color: #fff;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
        #000;
    padding: 20px;
}

.content {
    max-width: 600px;
    animation: fadeIn 1.2s ease-in-out;
}

.logo {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00FF88, #00FFFF, #FF00FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-transform: uppercase;
    animation: float 3s ease-in-out infinite;
}

.headline {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.subheadline {
    font-size: 1.2rem;
    color: #bbb;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.signup-form input {
    padding: 16px;
    border-radius: 12px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.signup-form input:focus {
    border-color: #00FFFF;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    transform: scale(1.02);
}

.signup-form button {
    padding: 16px 24px;
    border-radius: 12px;
    border: 3px solid #00FFFF;
    background: linear-gradient(135deg, #00FF88 0%, #00FFFF 50%, #0EA5E9 100%);
    color: #000;
    font-weight: 900;
    font-size: 1.1rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
}

.signup-form button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 5px 40px rgba(0, 255, 255, 0.6);
    border-color: #FF00FF;
}

.note {
    font-size: 0.95rem;
    color: #888;
    margin-top: 10px;
}

#waitlistCount {
    margin-bottom: 15px;
    font-weight: 700;
    color: #00FF88;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.6);
}


footer {
    text-align: center;
    padding: 15px;
    background: #111;
    font-size: 0.85rem;
    color: #666;
}

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

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

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

@keyframes rocketLaunch {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.2);
    }
    100% {
        transform: translateY(-100vh) scale(0);
    }
}

.fade-out {
    animation: fadeOutUp 0.8s forwards;
}

/* Add specific button fade-out with delay */
button.fade-out {
    animation-delay: 0.2s;
}

.rocket-launch {
    display: inline-block;
    animation: rocketLaunch 1.5s forwards;
}

.signup-success {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.5s forwards;
    animation-delay: 0.3s;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
