/* ============================================
   Work in Progress Section - Tool Pages
   ============================================ */

.tool-wip-section {
    padding: 4rem 0;
    background: linear-gradient(135deg,
            rgba(99, 102, 241, 0.03) 0%,
            rgba(139, 92, 246, 0.03) 100%);
}

.wip-banner {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 24px;
    padding: 3rem 2rem;
    box-shadow: 0 4px 24px rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Decorative Background Elements */
.wip-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle,
            rgba(99, 102, 241, 0.05) 0%,
            transparent 70%);
    pointer-events: none;
}

/* Work in Progress Badge */
.wip-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    border: 2px solid #F59E0B;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    animation: pulse-badge 2s ease-in-out infinite;
}

.wip-badge i {
    font-size: 1.125rem;
    color: #D97706;
}

.wip-badge span {
    font-weight: 600;
    font-size: 0.875rem;
    color: #92400E;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes pulse-badge {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 0 0 8px rgba(245, 158, 11, 0);
    }
}

/* Main Content */
.wip-content {
    position: relative;
    z-index: 1;
}

/* Tool Icon */
.wip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg,
            rgba(99, 102, 241, 0.1) 0%,
            rgba(139, 92, 246, 0.1) 100%);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    position: relative;
}

.wip-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    border-radius: 20px;
    opacity: 0.1;
    z-index: -1;
}

.wip-icon i {
    font-size: 2.5rem;
}

/* Title */
.wip-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Description */
.wip-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Launch Info */
.wip-launch-info {
    margin-bottom: 2rem;
}

.launch-date {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg,
            rgba(99, 102, 241, 0.08) 0%,
            rgba(139, 92, 246, 0.08) 100%);
    border-radius: 16px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.launch-date i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.launch-date span {
    font-size: 1rem;
    color: var(--text-secondary);
}

.launch-date strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Feature Pills */
.wip-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: var(--secondary-bg);
    border-radius: 50px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-pill i {
    font-size: 1rem;
    color: var(--success-color);
}

.feature-pill span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.feature-pill:hover {
    background: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
}

.feature-pill:hover i {
    color: var(--primary-color);
}

.feature-pill:hover span {
    color: var(--primary-color);
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 768px) {
    .tool-wip-section {
        padding: 3rem 0;
    }

    .wip-banner {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .wip-icon {
        width: 64px;
        height: 64px;
        border-radius: 16px;
    }

    .wip-icon i {
        font-size: 2rem;
    }

    .wip-title {
        font-size: 1.5rem;
    }

    .wip-description {
        font-size: 1rem;
    }

    .launch-date {
        padding: 0.875rem 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .launch-date i {
        font-size: 1.25rem;
    }

    .launch-date span {
        font-size: 0.9375rem;
    }

    .wip-features {
        gap: 0.75rem;
    }

    .feature-pill {
        padding: 0.5rem 1rem;
    }

    .feature-pill span {
        font-size: 0.8125rem;
    }
}

@media (max-width: 480px) {
    .wip-banner {
        padding: 1.5rem 1rem;
    }

    .wip-badge {
        padding: 0.5rem 1rem;
    }

    .wip-badge span {
        font-size: 0.8125rem;
    }

    .wip-title {
        font-size: 1.25rem;
    }

    .wip-description {
        font-size: 0.9375rem;
    }

    .wip-features {
        flex-direction: column;
        align-items: stretch;
    }

    .feature-pill {
        justify-content: center;
    }
}