:root {
    --bg-dark: #050505;
    --text-main: #ffffff;
    --text-muted: #888888;
    --accent: #fff;
    --accent-glow: rgba(255, 255, 255, 0.3);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

body {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.5;
}

/* Background Video */
.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: saturate(1.2) contrast(1.1) brightness(0.7);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(5,5,5,0.2) 0%, rgba(5,5,5,0.9) 100%);
}

/* Layout */
.content {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5%;
}

.split-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    gap: 60px;
}

/* Left Section */
.text-section {
    flex: 1;
    max-width: 600px;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

h1 {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.gradient-text {
    background: linear-gradient(90deg, #ffffff, #666666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 400;
}

/* Waitlist Card */
.waitlist-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

/* Shine effect on card */
.waitlist-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transform: skewX(-20deg);
    animation: shine 8s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

.input-group {
    margin-bottom: 16px;
}

input, select {
    width: 100%;
    padding: 18px 24px;
    background: rgba(0,0,0,0.4);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: white;
    font-family: 'Satoshi', sans-serif;
    font-size: 1.05rem;
    outline: none;
    transition: all 0.3s ease;
}

input:focus, select:focus {
    border-color: rgba(255,255,255,0.3);
    background: rgba(0,0,0,0.6);
    box-shadow: 0 0 20px rgba(255,255,255,0.05);
}

button {
    width: 100%;
    padding: 18px 24px;
    background: var(--accent);
    color: #000;
    border: none;
    border-radius: 12px;
    font-family: 'Satoshi', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--accent-glow);
}

button:active {
    transform: translateY(0);
}

.btn-loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid #000;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: absolute;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.status-msg {
    margin-top: 16px;
    font-weight: 500;
    text-align: center;
    font-size: 0.95rem;
}

/* Stats */
.stats {
    margin-top: 40px;
    display: flex;
    gap: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-main);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

/* Right Section - Mockup */
.image-section {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-mockup {
    max-width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    filter: drop-shadow(0 40px 80px rgba(0,0,0,0.8));
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

.glow-effect {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.3) 0%, rgba(0, 212, 255, 0.1) 50%, transparent 100%);
    filter: blur(60px);
    z-index: 1;
    animation: pulse 8s ease-in-out infinite alternate;
}

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

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0.8; }
}

/* Responsive */
@media (max-width: 1024px) {
    .split-layout {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding-top: 80px;
    }

    h1 { font-size: 3.5rem; }
    
    .badge { margin: 0 auto 24px; }
    
    .waitlist-card {
        text-align: left;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .stats { justify-content: center; }
    
    .app-mockup { max-height: 60vh; margin-top: 40px; }
}
