:root {
    --primary: #6366f1;    /* Electric Indigo */
    --accent: #a855f7;     /* Bright Purple */
    --bg-dark: #0f172a;    /* Deep Navy */
    --text-light: #f8fafc;
    --glass: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

/* Animated Background Glow */
.bg-glow {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(168, 85, 247, 0.15) 0%, transparent 40%);
    z-index: -1;
    animation: pulse 10s ease-in-out infinite alternate;
}

@keyframes pulse {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

/* Navbar */
.navbar {
    padding: 2rem 5%;
    display: flex;
    justify-content: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--text-light);
}

.logo span { color: var(--primary); }

/* Main Content */
.container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.content-box {
    max-width: 700px;
    text-align: center;
    background: var(--glass);
    padding: 4rem 3rem;
    border-radius: 32px;
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.badge {
    background: rgba(99, 102, 241, 0.2);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin: 1.5rem 0;
    line-height: 1;
    font-weight: 800;
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    color: #94a3b8;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Form */
.waitlist-form {
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    border-radius: 16px;
    border: 1px solid var(--border);
    margin-bottom: 2rem;
}

.waitlist-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 20px;
    color: white;
    font-size: 1rem;
    outline: none;
}

.waitlist-form button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.waitlist-form button:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

/* Social Proof */
.social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.avatars {
    display: flex;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
    margin-right: -10px;
}

.social-proof p {
    margin: 0;
    font-size: 0.85rem;
    color: #64748b;
}

footer {
    padding: 2rem;
    text-align: center;
    font-size: 0.8rem;
    color: #475569;
}

/* Responsive */
@media (max-width: 600px) {
    .waitlist-form { flex-direction: column; background: transparent; border: none; padding: 0; }
    .waitlist-form input { background: var(--glass); border-radius: 12px; margin-bottom: 10px; border: 1px solid var(--border); }
    .content-box { padding: 3rem 1.5rem; }
}