/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.logo-icon {
    font-size: 2rem;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
}

/* Typography */
.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Benefits */
.benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 1.25rem;
}

.benefit-text {
    font-weight: 600;
    color: #374151;
    font-size: 0.875rem;
}

/* Waitlist Container */
.waitlist-container {
    margin: 3rem 0;
    display: flex;
    justify-content: center;
}

/* GetWaitlist Widget Customization */
#getWaitlistContainer {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

/* Override GetWaitlist widget styles to match our design */
#getWaitlistContainer input[type="email"] {
    border-radius: 50px !important;
    border: 2px solid #e5e7eb !important;
    padding: 0.75rem 1.25rem !important;
    font-family: inherit !important;
    font-size: 1rem !important;
    transition: border-color 0.3s ease !important;
}

#getWaitlistContainer input[type="email"]:focus {
    outline: none !important;
    border-color: #667eea !important;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1) !important;
}

#getWaitlistContainer button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 0.75rem 2rem !important;
    font-family: inherit !important;
    font-weight: 600 !important;
    color: white !important;
    cursor: pointer !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    font-size: 1rem !important;
}

#getWaitlistContainer button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .benefits {
        gap: 1rem;
    }
    
    .benefit {
        padding: 0.5rem 0.75rem;
    }
    
    .benefit-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .logo-icon {
        font-size: 1.75rem;
    }
    
    .benefits {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
} 