/* Landing Page Base Styles */

/* Import Google Fonts for domain-specific typography */
@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;600;700&family=Fira+Code:wght@400;500&family=Inter:wght@300;400;600;700&family=Space+Grotesk:wght@300;400;600;700&family=Playfair+Display:wght@400;700;900&family=Courier+Prime:wght@400;700&display=swap');

/* Base Landing Page Styles */
.landing-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.landing-container {
    flex: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
}

.landing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.landing-header h1 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.logo-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.tagline {
    font-size: 1.25rem;
    opacity: 0.9;
    font-weight: 300;
}

.landing-main {
    flex: 1;
}

/* Waitlist Section */
.waitlist-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.waitlist-section h2 {
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
}

.waitlist-section > p {
    text-align: center;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

/* Form Styles */
.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.form-group {
    width: 100%;
}

.form-group input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: inherit;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-group input:focus {
    outline: none;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Buttons */
.btn-primary {
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-large {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Features Preview */
.features-preview {
    text-align: center;
}

.features-preview h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.feature-list li {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    font-size: 0.95rem;
}

/* Form Messages */
.form-message {
    text-align: center;
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.95rem;
}

.form-message.success {
    background: rgba(57, 217, 138, 0.2);
    border: 1px solid var(--success);
}

.form-message.error {
    background: rgba(255, 59, 48, 0.2);
    border: 1px solid var(--error);
}

/* Footer */
.landing-footer {
    text-align: center;
    padding-top: 2rem;
    margin-top: auto;
    font-size: 0.875rem;
    opacity: 0.7;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .landing-header h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .waitlist-section {
        padding: 1.5rem;
    }
    
    .feature-list {
        grid-template-columns: 1fr;
    }
}
