/* 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: #333;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Animated Background */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('https://res.cloudinary.com/dlw9peu4t/image/upload/f_auto,q_auto,w_auto,dpr_auto,c_fill,g_auto/v1754388933/u8786887351_Vector-style_abstract_landscape_illustration_with_87c91165-3e3b-4140-9981-37dcf8ce854b_1-for-svg_2x_upscale_qgddv0.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: backgroundZoom 30s ease-in-out infinite;
    transform-origin: center center;
}

@keyframes backgroundZoom {
    0%, 100% {
        transform: scale(1.2);
    }
    50% {
        transform: scale(1);
    }
}

/* Overlay for better text readability */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.65) 0%,
        rgba(255, 255, 255, 0) 100%
    );
    z-index: -1;
}

/* Animated Clouds */
.cloud {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}



/* Container */
.container {
    max-width: 800px;
    margin: 5% auto 0 auto;
    padding: 0 20px;
}

/* Main Content */
.main-content {
    min-height: 100vh;
    display: flex;
    align-items: start;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-section {
    text-align: center;
    width: 100%;
}

/* Logo Styling */
.logo {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

/* Hidden text for SEO */
.hidden {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Title and Subtitle (hidden for SEO) */
.title {
    font-size: 4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #3d68d3, #3d68d3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.launch-text {
    font-size: 1.25rem;
    color: #374151;
    margin-bottom: 3rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.nowrap {
    white-space: nowrap;
}

/* Form Styles */
.early-access-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group input {
    flex: 2;
    padding: 16px 20px;
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: #1e293b;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.form-group input:focus {
    outline: none;
    border-color: #3d68d3;
    box-shadow: 0 0 0 3px rgba(61, 104, 211, 0.1), 0 8px 16px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.98);
}

.form-group input::placeholder {
    color: #6b7280;
}

.btn {
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #3d68d3, #3d68d3);
    color: white;
    box-shadow: 0 4px 6px rgba(61, 104, 211, 0.2);
    backdrop-filter: blur(10px);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(61, 104, 211, 0.3);
    background: linear-gradient(135deg, #3d68d3, #3d68d3);
}

.form-message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
    display: block;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
    display: block;
}

.form-note {
    font-size: 0.675rem;
    color: #6b7280;
    margin-top: 0.75rem;
    opacity: 0.8;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        max-width: 500px;
    }
    
    .title {
        font-size: 3rem;
    }
    
    .subtitle {
        font-size: 1.25rem;
    }
    
    .launch-text {
        font-size: 1.125rem;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 400px;
    }
    
    .title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.125rem;
    }
    
    .launch-text {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 16px;
    }
} 