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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #1e1b4b 0%, #3730a3 50%, #4338ca 100%);
    color: #ffffff;
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    padding: 32px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-icon {
    width: 32px;
    height: 32px;
    background: #8B5CF6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-selector select {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 8px;
    color: #ffffff;
    padding: 8px 12px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
}

.language-selector select:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
}

.language-selector select option {
    background: #1e1b4b;
    color: #ffffff;
}

.coming-soon-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #a78bfa;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Main Content */
.main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 0;
}

/* Hero Section */
.hero {
    margin-bottom: 48px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0;
    color: #ffffff;
}

.hero-subtitle {
    color: #a78bfa;
    font-weight: 700;
}

/* Description Section */
.description {
    max-width: 600px;
    margin-bottom: 64px;
}

.description p {
    font-size: 1.125rem;
    color: #cbd5e1;
    line-height: 1.7;
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 64px;
    width: 100%;
    max-width: 900px;
}

.feature-card {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-4px);
}

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

.feature-icon.ai-powered {
    background: rgba(139, 92, 246, 0.2);
    color: #8B5CF6;
}

.feature-icon.lightning-fast {
    background: rgba(168, 85, 247, 0.2);
    color: #A855F7;
}

.feature-icon.precise-matching {
    background: rgba(34, 197, 94, 0.2);
    color: #22C55E;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.feature-card p {
    font-size: 0.875rem;
    color: #cbd5e1;
    line-height: 1.5;
}

/* Target Segments Section */
.segments {
    margin-bottom: 64px;
    width: 100%;
    max-width: 800px;
    text-align: center;
}

.segments h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 48px;
    color: #ffffff;
}

.segments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.segment-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.segment-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.segment-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(139, 92, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #8B5CF6;
}

.segment-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.segment-card p {
    font-size: 0.875rem;
    color: #cbd5e1;
    line-height: 1.5;
}

/* Notify Form */
.notify-section {
    margin-bottom: 80px;
    width: 100%;
}

.notify-container {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 48px 40px;
    max-width: 480px;
    margin: 0 auto;
}

.notify-container h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.notify-container p {
    color: #cbd5e1;
    margin-bottom: 32px;
    font-size: 0.875rem;
}

.notify-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.notify-form input {
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.notify-form input:focus {
    border-color: #8B5CF6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.notify-form input::placeholder {
    color: #94a3b8;
}

.notify-form button {
    padding: 16px 24px;
    background: #6366f1;
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.notify-form button:hover {
    background: #4f46e5;
    transform: translateY(-1px);
}

/* Footer */
.footer {
    padding: 40px 0;
    text-align: center;
    margin-top: auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #cbd5e1;
}

.footer-link svg {
    transition: all 0.3s ease;
}

.copyright {
    color: #64748b;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .header-right {
        flex-direction: column;
        gap: 12px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .segments h2 {
        font-size: 1.75rem;
    }
    
    .segments-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .notify-container {
        padding: 32px 24px;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .description p {
        font-size: 1rem;
    }

    .feature-card {
        padding: 24px 20px;
    }
    
    .segments h2 {
        font-size: 1.5rem;
    }
    
    .segment-card {
        padding: 24px 20px;
    }
}