/* Coming Soon Modal (2025 Redesign) */

.cs-modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(30, 27, 75, 0.7);
    backdrop-filter: blur(10px);
    display: flex; align-items: center; justify-content: center;
    z-index: 9999; opacity: 0;
    transition: opacity 0.3s ease;
}

.cs-modal-overlay.active { opacity: 1; }

.cs-modal-content {
    background: #fff; width: 90%; max-width: 500px;
    border-radius: 24px; padding: 2.5rem; position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 60px rgba(79, 70, 229, 0.2);
    border: 1.5px solid #e0e7ff;
    text-align: center;
}

.cs-modal-overlay.active .cs-modal-content { transform: translateY(0); }

.cs-close-btn {
    position: absolute; top: 1.25rem; right: 1.25rem;
    background: transparent; border: none;
    font-size: 1.5rem; color: #6b7280;
    cursor: pointer; line-height: 1; padding: 0.5rem;
    border-radius: 50%; transition: all 0.2s ease;
}

.cs-close-btn:hover { background: #f0f0ff; color: #4f46e5; }

.cs-icon-wrapper {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, #e0e7ff, #f0f0ff);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
    border: 1.5px solid #e0e7ff;
    box-shadow: 0 4px 16px rgba(79, 70, 229, 0.12);
}

.cs-icon-wrapper i { font-size: 2.5rem; color: #4f46e5; }

.cs-title {
    font-size: 1.5rem; font-weight: 900;
    color: #1e1b4b; margin-bottom: 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.03em;
}

.cs-description { color: #6b7280; font-size: 1rem; line-height: 1.6; margin-bottom: 1.5rem; }

.cs-tuned {
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    color: #4f46e5; font-weight: 700; font-size: 1.1rem; margin-bottom: 2rem;
}

.cs-tuned i { font-size: 1.2rem; }

.cs-got-it {
    background: linear-gradient(135deg, #1e1b4b, #4f46e5);
    color: #fff; border: none; width: 100%; padding: 1rem; border-radius: 14px;
    font-size: 1.1rem; font-weight: 700; cursor: pointer;
    transition: all 0.2s ease; box-shadow: 0 6px 18px rgba(79, 70, 229, 0.25);
}

.cs-got-it:hover { background: linear-gradient(135deg, #312e81, #6366f1); transform: scale(1.01); box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35); }
.cs-got-it:active { transform: scale(0.99); }
