:root {
    --primary-color: #4f46e5;
    --secondary-color: #10b981;
    --text-main: #1f2937;
    --text-muted: #4b5563;
    --bg-light: #f9fafb;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.4;
}

.container {
    display: flex;
    height: 100vh;
    width: 100vw;
}

.hero-section {
    flex: 1.2;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 2rem 4rem;
    justify-content: center;
    background: var(--white);
    overflow-y: auto;
}

.logo-text {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.logo-text span {
    color: var(--secondary-color);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.counter-badge {
    background: #eef2ff;
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    border: 1px solid #c7d2fe;
}

.counter-badge span {
    color: var(--secondary-color);
}

.tagline {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #111;
}

.description {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

.sub-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.features-list {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f3f4f6;
    padding: 0.5rem 0.8rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-main);
}

.feature-item i {
    color: var(--primary-color);
}

.waitlist-form {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    margin-bottom: 2rem;
}

.waitlist-form h3 {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
}

#waitlist-form {
    display: flex;
    gap: 0.8rem;
}

#waitlist-form input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 0.95rem;
    outline: none;
}

#waitlist-form button {
    background: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    white-space: nowrap;
}

footer {
    margin-top: 1rem;
}

.social-links {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1rem;
}

.social-links a {
    color: var(--text-muted);
    font-size: 1.3rem;
    text-decoration: none;
}

.footer-note {
    font-size: 0.8rem;
    color: #94a3b8;
}

@media (max-width: 900px) {
    html, body {
        overflow: auto;
        height: auto;
    }
    
    .container {
        flex-direction: column;
        height: auto;
    }
    
    .hero-section {
        height: 300px;
        flex: none;
    }

    .content-section {
        padding: 2rem 1.5rem;
    }
}
