/* This file contains all the CSS styles extracted from the original HTML file. It includes styles for the body, gradient text, card glow effects, waitlist form styling, and responsive design. */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #050505;
    color: #f5f5f5;
    overflow-x: hidden;
}

.gradient-text {
    background: linear-gradient(90deg, #00f5a0, #00d9f5);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.card-glow:hover {
    box-shadow: 0 0 25px rgba(0, 245, 160, 0.3);
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

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

/* Waitlist form styling - VoltOne dark theme */

#waitlist-form,
#final-waitlist-form {
    max-width: 500px;
    margin: 0 auto;
}

#waitlist-email,
#final-waitlist-email {
    background: #181c23;
    color: #f3f4f6;
    border: 1.5px solid #23272f;
    transition: border 0.2s, box-shadow 0.2s;
}

#waitlist-email::placeholder,
#final-waitlist-email::placeholder {
    color: #7dd3fc;
    opacity: 0.7;
}

#waitlist-email:focus,
#final-waitlist-email:focus {
    outline: none;
    border-color: #00f5a0;
    box-shadow: 0 0 0 2px rgba(0, 245, 160, 0.25);
    background: #23272f;
}

#waitlist-msg,
#final-waitlist-msg {
    min-height: 24px;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

.success-msg {
    color: #00f5a0;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.error-msg {
    color: #ff6b6b;
    font-weight: 600;
    letter-spacing: 0.02em;
}

#waitlist-submit,
#final-waitlist-submit {
    background: linear-gradient(90deg, #00f5a0 0%, #00d9f5 100%);
    color: #181c23;
    font-weight: 700;
    border: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px 0 rgba(0,245,160,0.08);
}

#waitlist-submit:hover,
#final-waitlist-submit:hover {
    background: linear-gradient(90deg, #00d9f5 0%, #00f5a0 100%);
    color: #181c23;
    box-shadow: 0 4px 16px 0 rgba(0,245,160,0.15);
}

@media (max-width: 640px) {
    #waitlist-form,
    #final-waitlist-form {
        flex-direction: column;
    }
}