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

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    padding: 16px 0;
    border-bottom: 1px solid #f3f4f6;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #9945ff, #14f195);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
}

.coming-soon {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

/* Main Content */
.main {
    padding: 64px 0;
    text-align: center;
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f3f0ff;
    color: #7c3aed;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 32px;
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.15);
}

/* Hero Title */
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
    line-height: 1.1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gradient-text {
    background: linear-gradient(135deg, #9945ff, #14f195);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Description */
.hero-description {
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 64px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.feature-card {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    border: 1px solid #f3f4f6;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: white;
}

.feature-icon.purple {
    background: linear-gradient(135deg, #9945ff, #7c3aed);
}

.feature-icon.green {
    background: linear-gradient(135deg, #14f195, #10b981);
}

.feature-icon.blue {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.feature-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

/* Waitlist Container */
.waitlist-container {
    max-width: 448px;
    margin: 0 auto;
}

.waitlist-form-container {
    background: linear-gradient(135deg, #f3f0ff, #f0fdf4);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #e5e7eb;
}

.form-header {
    margin-bottom: 24px;
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.form-subtitle {
    color: #6b7280;
    font-size: 16px;
}

/* Form Styles */
.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.input-container {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
}

.email-input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font-size: 16px;
    color: #1f2937;
    background: white;
    transition: all 0.2s ease;
}

.email-input:focus {
    outline: none;
    border-color: #9945ff;
    box-shadow: 0 0 0 3px rgba(153, 69, 255, 0.1);
}

.email-input::placeholder {
    color: #9ca3af;
}

/* Submit Button */
.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #9945ff, #14f195);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.submit-button:hover:not(:disabled) {
    background: linear-gradient(135deg, #7c3aed, #10b981);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(153, 69, 255, 0.3);
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.button-text {
    transition: opacity 0.3s ease;
}

.button-icon {
    transition: opacity 0.3s ease;
}

.loading-spinner {
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.submit-button.loading .button-text,
.submit-button.loading .button-icon {
    opacity: 0;
}

.submit-button.loading .loading-spinner {
    opacity: 1;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.form-disclaimer {
    font-size: 12px;
    color: #6b7280;
    text-align: center;
    margin-top: 16px;
}

/* Social Proof */
.social-proof {
    margin-top: 64px;
}

.social-proof-text {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 24px;
}

.stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0.6;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #9ca3af;
}

.stat-label {
    font-size: 14px;
    color: #9ca3af;
}

.stat-divider {
    width: 1px;
    height: 32px;
    background: #d1d5db;
}

/* Twitter Section */
.twitter-section {
    margin-top: 48px;
}

.twitter-text {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
}

.twitter-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1da1f2;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(29, 161, 242, 0.2);
}

.twitter-button:hover {
    background: #1991db;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(29, 161, 242, 0.3);
}

.twitter-button:active {
    transform: translateY(0);
}

/* Footer */
.footer {
    border-top: 1px solid #f3f4f6;
    padding: 32px 0;
    margin-top: 64px;
}

.footer-text {
    font-size: 14px;
    color: #6b7280;
    text-align: center;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 24px;
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 16px;
    padding: 48px 32px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: scale(1);
}

.success-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
}

.success-title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.success-description {
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.5;
}

.success-next-steps {
    background: linear-gradient(135deg, #f3f0ff, #f0fdf4);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e5e7eb;
}

.next-steps-text {
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
}

.next-steps-label {
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .main {
        padding: 48px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 16px;
    }
    
    .hero-description {
        font-size: 18px;
        margin-bottom: 48px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 48px;
    }
    
    .feature-card {
        padding: 24px 20px;
    }
    
    .waitlist-form-container {
        padding: 24px;
    }
    
    .stats {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .modal-content {
        padding: 32px 24px;
        margin: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .features-grid {
        gap: 16px;
    }
    
    .social-proof {
        margin-top: 48px;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Focus Styles for Accessibility */
.submit-button:focus,
.email-input:focus {
    outline: 2px solid #9945ff;
    outline-offset: 2px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}