/* Industry Ultra - Specialized High-Gloss Styles */

/* === 1. Advanced Hero Visuals (Dashboard Effects) === */
.industry-visual-wrapper {
    position: relative;
    perspective: 1500px;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-dashboard-card {
    background: rgba(10, 25, 47, 0.85);
    border: 1px solid rgba(100, 255, 218, 0.2);
    border-radius: 16px;
    padding: 2rem;
    width: 100%;
    max-width: 550px;
    box-shadow: 
        0 0 40px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(100, 255, 218, 0.1);
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.industry-dashboard-card:hover {
    transform: rotateY(0) rotateX(0) scale(1.02);
    box-shadow: 
        0 0 50px rgba(0, 0, 0, 0.6),
        0 0 25px rgba(100, 255, 218, 0.2);
    border-color: var(--accent-primary);
}

/* Scan Line Animation */
.industry-dashboard-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    opacity: 0.3;
    animation: scanDown 3s linear infinite;
}

@keyframes scanDown {
    0% { top: 0; opacity: 0; }
    10% { opacity: 0.5; }
    90% { opacity: 0.5; }
    100% { top: 100%; opacity: 0; }
}

.dash-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    margin-bottom: 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border-left: 3px solid transparent;
    transition: all 0.3s;
}

.dash-row:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(5px);
}

.dash-row.secure { border-left-color: var(--accent-primary); }
.dash-row.warning { border-left-color: var(--accent-alert); }
.dash-row.pending { border-left-color: #f1c40f; }

.dash-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(2, 12, 27, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.dash-meta h4 {
    font-size: 0.95rem;
    color: #fff;
    margin: 0 0 0.2rem 0;
    font-weight: 600;
}

.dash-meta p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
    font-family: var(--font-mono);
}

.dash-status-badge {
    font-size: 0.7rem;
    font-family: var(--font-mono);
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-secure { background: rgba(100, 255, 218, 0.1); color: var(--accent-primary); }
.status-alert { background: rgba(255, 107, 107, 0.1); color: var(--accent-alert); }

/* === 2. Hero Status Bar Polish === */
.ultra-status-bar {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.ultra-pill {
    background: rgba(2, 12, 27, 0.6);
    border: 1px solid rgba(100, 255, 218, 0.1);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.ultra-pill:hover {
    border-color: var(--accent-primary);
    color: var(--text-main);
    box-shadow: 0 0 15px rgba(100, 255, 218, 0.1);
}

.ultra-pill.active {
    border-color: var(--accent-primary);
    background: rgba(100, 255, 218, 0.05);
}

.blink-dot {
    width: 8px; height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    box-shadow: 0 0 5px var(--accent-primary);
    animation: blink 2s infinite;
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* === 3. Checklist & Mandate Visuals === */
.mandate-list {
    background: linear-gradient(145deg, rgba(17, 34, 64, 0.9), rgba(2, 12, 27, 0.95));
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
}

.mandate-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

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

.mandate-number {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    color: rgba(255,255,255,0.1);
    font-weight: 700;
    min-width: 40px;
}

.mandate-content h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.mandate-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* === 4. Grid Refinements === */
.grid-2-smart {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

/* Fix for cards in the grid to match Ultra height */
.grid-2-smart .ultra-card {
    min-height: 350px;
    justify-content: space-between;
}
