* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0a0a0a;
    color: #333;
    height: 100vh;
    overflow: hidden;
}

.container {
    display: flex;
    height: 100vh;
    background: white;
    box-shadow: 0 0 100px rgba(102, 126, 234, 0.2);
}

/* Image Section - Left Side */
.image-section {
    flex: 1.2;
    position: relative;
    overflow: hidden;
    background: #000;
}

.image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.4) 100%);
    pointer-events: none;
}

.image-content {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    z-index: 10;
    display: flex;
    gap: 2rem;
}

.stats-badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.6s ease;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
}

/* Content Section - Right Side */
.content-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 2.5rem 3.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow-y: auto;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #333;
}

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

.launch-badge {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.05); }
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 520px;
}

.announcement-bar {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
    animation: slideIn 0.5s ease;
}

.pulse {
    width: 8px;
    height: 8px;
    background: #667eea;
    border-radius: 50%;
    animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7); }
    50% { box-shadow: 0 0 0 10px rgba(102, 126, 234, 0); }
}

.title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -2px;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1;
    animation: fadeIn 0.6s ease;
}

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

.subtitle {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
    animation: fadeIn 0.7s ease;
}

.features-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeIn 0.8s ease;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
}

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

.feature-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.divider-fancy {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    animation: fadeIn 0.9s ease;
}

.divider-fancy span:first-child,
.divider-fancy span:last-child {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ddd, transparent);
}

.divider-text {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #999;
}

.cta-text {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 2rem;
    animation: fadeIn 1s ease;
}

.cta-text strong {
    color: #333;
    font-weight: 600;
}

.email-form {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    animation: slideUp 0.6s ease;
}

.email-input {
    flex: 1;
    padding: 1.1rem 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background: white;
    color: #333;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.email-input::placeholder {
    color: #999;
}

.email-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.submit-btn {
    padding: 1.1rem 2rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.submit-btn:hover .btn-arrow {
    transform: translateX(3px);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-message {
    min-height: 30px;
    font-size: 0.95rem;
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.2);
    opacity: 1;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.2);
    opacity: 1;
}

.trust-indicators {
    display: flex;
    gap: 2rem;
    animation: fadeIn 1.1s ease;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #666;
}

.check {
    color: #4CAF50;
    font-weight: 700;
}

.footer {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
}

.footer-content h3 {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #333;
    margin-bottom: 1rem;
}

.footer-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    color: #999;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #667eea;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

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

/* Responsive Design */
@media (max-width: 1400px) {
    .content-section {
        padding: 2rem 3rem;
    }
}

@media (max-width: 1200px) {
    .image-section {
        flex: 1;
    }
    
    .content-section {
        padding: 2rem 2.5rem;
    }
    
    .title {
        font-size: 3rem;
    }
}

@media (max-width: 968px) {
    .container {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }
    
    body {
        overflow-y: auto;
    }
    
    .image-section {
        height: 50vh;
        min-height: 350px;
        order: -1;
    }
    
    .content-section {
        padding: 2rem 1.5rem;
        order: 1;
    }
    
    .features-preview {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .feature-item {
        justify-content: flex-start;
    }
    
    .title {
        font-size: 2.75rem;
        text-align: center;
    }
    
    .subtitle {
        text-align: center;
    }
    
    .header {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .logo {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .image-section {
        display: none;
    }
    
    .content-section {
        padding: 1.5rem;
    }
    
    .title {
        font-size: 2.25rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .email-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .submit-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }
    
    .features-preview {
        gap: 1rem;
    }
    
    .divider-text {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .features-preview {
        flex-direction: column;
    }
    
    .feature-item {
        width: 100%;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
}