/* Coming Soon Page Specific Styles */

/* Page Body */
.coming-soon-page {
    overflow-x: hidden;
}

/* Header adjustments for coming soon page */
.coming-soon-page .nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.coming-soon-page .nav-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}





/* Email Signup Section */
.email-signup-section {
    padding: calc(var(--spacing-xxl) * 2) 0 var(--spacing-xxl);
    background: linear-gradient(135deg, var(--background-light) 0%, var(--background-white) 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.signup-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.signup-header h2 {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    background: var(--main-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-md);
}

.signup-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
}

.signup-form {
    background: var(--background-light);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-xl);
    border: 1px solid var(--border-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    font-size: 0.95rem;
}

.form-group input[type="text"],
.form-group input[type="email"] {
    width: 100%;
    padding: var(--spacing-md);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    background: var(--background-white);
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(0, 201, 167, 0.1);
}

.form-group input:invalid:not(:placeholder-shown) {
    border-color: var(--error-color);
}

.error-message {
    font-size: 0.85rem;
    color: var(--error-color);
    margin-top: var(--spacing-xs);
    display: none;
}

.form-group input:invalid:not(:placeholder-shown) + .error-message {
    display: block;
}

.checkbox-group {
    margin-bottom: var(--spacing-xl);
    text-align: left;
}

.checkbox-label {
    display: block;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
    padding-left: 28px;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    background: var(--background-white);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    position: absolute;
    left: 0;
    top: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.checkbox-label input:checked + .checkmark {
    background: var(--main-gradient);
    border-color: transparent;
}

.checkbox-label:hover .checkmark {
    border-color: var(--accent-primary);
}

.checkmark::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 0px;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: block;
}

.checkbox-label input:checked + .checkmark::after {
    opacity: 1;
}

.checkbox-text {
    color: var(--text-gray);
    display: block;
}

.signup-btn {
    width: 100%;
    background: var(--main-gradient);
    color: white;
    border: none;
    padding: var(--spacing-lg) var(--spacing-xl);
    border-radius: var(--border-radius-md);
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
}

.signup-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.signup-btn:active {
    transform: translateY(0);
}

.signup-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

.signup-btn.loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.signup-benefits {
    background: rgba(255, 140, 66, 0.05);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--accent-primary);
}

.benefits-title {
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    font-size: 0.9rem;
    color: var(--text-gray);
}

.benefits-list li:last-child {
    margin-bottom: 0;
}

.benefits-list i {
    color: var(--accent-primary);
    font-size: 0.8rem;
}

/* Success Message */
.success-message {
    display: none;
    background: var(--background-light);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-xl);
    border: 1px solid var(--border-color);
    text-align: center;
}

.success-message.show {
    display: block;
    animation: slideIn 0.5s ease;
}

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

.success-content i {
    font-size: 3rem;
    color: var(--success-color);
    margin-bottom: var(--spacing-lg);
}

.success-content h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.success-content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.success-btn {
    background: var(--main-gradient);
    color: white;
    border: none;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--border-radius-sm);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.success-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}



/* Features Preview Section */
.features-preview {
    padding: var(--spacing-xxl) 0;
    background: var(--background-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.feature-preview-card {
    background: var(--background-white);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--main-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.feature-icon i {
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 2;
}

.feature-preview-card h3 {
    font-size: 1.3rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.feature-preview-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.coming-badge {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: var(--accent-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: var(--font-weight-semibold);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Timeline Section */
.launch-timeline {
    padding: var(--spacing-xxl) 0;
    background: var(--background-white);
    text-align: center;
}

.launch-timeline .section-header {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
}

.launch-timeline .section-header h2 {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.launch-timeline .section-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.launch-timeline .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    text-align: left;
    padding-left: 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: var(--spacing-xxl);
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 2;
}

.timeline-item.completed .timeline-marker {
    background: var(--success-color);
    color: white;
}

.timeline-item.active .timeline-marker {
    background: var(--main-gradient);
    color: white;
}

.timeline-item.upcoming .timeline-marker {
    background: var(--border-color);
    color: var(--text-gray);
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.timeline-content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.timeline-date {
    font-size: 0.9rem;
    color: var(--accent-primary);
    font-weight: var(--font-weight-semibold);
}



/* Stay Updated Section */
.stay-updated-section {
    background: #2c2c2c;
    color: white;
    padding: var(--spacing-xxl) 0;
    text-align: center;
}

.stay-updated-content h2 {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-md);
    color: white;
}

.stay-updated-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.join-waitlist-btn {
    background: var(--main-gradient);
    color: white;
    border: none;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--border-radius-sm);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1.1rem;
}

.join-waitlist-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Simplified Footer for Coming Soon Page */
.coming-soon-page .footer {
    background: #2c2c2c;
    color: white;
    text-align: center;
    padding: var(--spacing-xxl) 0;
}



.coming-soon-page .footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: var(--spacing-lg);
}

.coming-soon-page .footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: var(--spacing-sm) 0;
    font-size: 0.9rem;
}

.coming-soon-page .footer-bottom .hashtag {
    color: var(--accent-primary);
    font-weight: var(--font-weight-medium);
}

/* Footer Enhancements */
.footer-signup-btn {
    background: var(--main-gradient);
    color: white;
    border: none;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--border-radius-sm);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1rem;
}

.footer-signup-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Responsive Design */
@media (max-width: 768px) {
    
    .email-signup-section {
        min-height: 70vh;
        padding: var(--spacing-xxl) 0;
    }
    
    
    .signup-container {
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .signup-header h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 15px;
    }
    
    .timeline-item {
        padding-left: 50px;
    }
    
    .timeline-marker {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .stay-updated-content h2 {
        font-size: 2rem;
    }
    
    .stay-updated-content p {
        font-size: 1.1rem;
    }
    
    .join-waitlist-btn {
        font-size: 1rem;
        padding: var(--spacing-sm) var(--spacing-md);
    }
    


}

@media (max-width: 480px) {
    
    .signup-form {
        padding: var(--spacing-lg);
    }
    

}

/* Print Styles */
@media print {
    .signup-btn,
    .footer-signup-btn {
        display: none;
    }
}