/* 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-color: #0A192F;
    color: #F8F9FA;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Container */
.container {
    max-width: 800px;
    width: 100%;
    text-align: center;
    padding: 40px 20px;
}

/* Logo Section */
.logo-section {
    margin-bottom: 60px;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.logo-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-png {
    height: 100px;
    width: auto;
    max-width: 250px;
    filter: drop-shadow(0 6px 12px rgba(198, 154, 57, 0.25));
}

.logo-text {
    font-size: 32px;
    font-weight: 700;
    color: #C69A39;
    letter-spacing: -0.5px;
    margin: 0;
}

/* Content */
.content {
    max-width: 600px;
    margin: 0 auto;
}

/* Headlines */
.headline-group {
    margin-bottom: 32px;
}

.headline {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -1px;
    color: #F8F9FA;
    margin-bottom: 16px;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.headline-line {
    display: block;
}

.coming-soon {
    font-size: 24px;
    font-weight: 600;
    color: #C69A39;
    margin: 0;
    letter-spacing: -0.5px;
}

.sub-headline {
    font-size: 20px;
    font-weight: 400;
    color: #F8F9FA;
    line-height: 1.6;
    margin-bottom: 48px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin: 40px 0 48px 0;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.trust-item:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(198, 154, 57, 0.1);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.trust-item:hover .trust-icon {
    background: rgba(198, 154, 57, 0.2);
}

.trust-text {
    font-size: 14px;
    font-weight: 500;
    color: #F8F9FA;
    text-align: center;
}

/* Signup Section */
.signup-section {
    margin-top: 48px;
}

.signup-instruction {
    font-size: 16px;
    font-weight: 400;
    color: #F8F9FA;
    margin-bottom: 24px;
    opacity: 0.8;
}

/* Form Styles */
.signup-form {
    max-width: 400px;
    margin: 0 auto;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
}

.email-input {
    padding: 16px 20px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    background-color: rgba(248, 249, 250, 0.05);
    border: 1px solid rgba(248, 249, 250, 0.2);
    border-radius: 8px;
    color: #F8F9FA;
    transition: all 0.3s ease;
    outline: none;
}

.email-input::placeholder {
    color: rgba(248, 249, 250, 0.6);
}

.email-input:focus {
    border-color: #C69A39;
    background-color: rgba(248, 249, 250, 0.08);
    box-shadow: 0 0 0 3px rgba(198, 154, 57, 0.1);
}

.notify-btn {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #D4A94A 0%, #C69A39 100%);
    color: #0A192F;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    position: relative;
    overflow: hidden;
}

.notify-btn:hover {
    background: linear-gradient(135deg, #E5BA5B 0%, #D4A94A 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(198, 154, 57, 0.4);
}

.notify-btn:hover::before {
    opacity: 1;
}

.notify-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
    opacity: 0;
}

.notify-btn:hover::before {
    left: 100%;
    opacity: 1;
}

.notify-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(198, 154, 57, 0.3);
}

/* Form Message */
.form-message {
    margin-top: 16px;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

/* Social Proof */
.social-proof {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid rgba(248, 249, 250, 0.1);
    text-align: center;
}

.proof-text {
    font-size: 16px;
    font-weight: 600;
    color: #C69A39;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.proof-details {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.proof-item {
    font-size: 14px;
    font-weight: 400;
    color: #F8F9FA;
    opacity: 0.8;
}

.proof-separator {
    font-size: 14px;
    color: #C69A39;
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 20px 16px;
    }
    
    .logo-section {
        margin-bottom: 40px;
    }
    
    .logo-png {
        height: 80px;
        max-width: 200px;
    }
    
    .logo-text {
        font-size: 28px;
    }
    
    .headline {
        font-size: 36px;
    }
    
    .coming-soon {
        font-size: 20px;
    }
    
    .sub-headline {
        font-size: 18px;
        margin-bottom: 32px;
    }
    
    .trust-indicators {
        gap: 32px;
        margin: 32px 0 40px 0;
    }
    
    .signup-section {
        margin-top: 32px;
    }
    
    .social-proof {
        margin-top: 48px;
    }
}

@media (max-width: 480px) {
    .headline {
        font-size: 28px;
        letter-spacing: -0.5px;
    }
    
    .coming-soon {
        font-size: 18px;
    }
    
    .sub-headline {
        font-size: 16px;
    }
    
    .trust-indicators {
        gap: 24px;
        margin: 24px 0 32px 0;
    }
    
    .trust-icon {
        width: 40px;
        height: 40px;
    }
    
    .trust-text {
        font-size: 13px;
    }
    
    .input-group {
        gap: 12px;
    }
    
    .email-input,
    .notify-btn {
        padding: 14px 18px;
        font-size: 15px;
    }
    
    .proof-details {
        flex-direction: column;
        gap: 8px;
    }
    
    .proof-separator {
        display: none;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for better accessibility */
.email-input:focus,
.notify-btn:focus {
    outline: 2px solid #C69A39;
    outline-offset: 2px;
}

/* Loading state for button */
.notify-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

.notify-btn.loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 8px;
    border: 2px solid #0A192F;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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