
/* MISSION CONTROL (INDUSTRY SOLUTIONS) STYLES */

.mission-control-section {
    padding: 160px 0;
    background: #030303;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.mission-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

/* 1. SECTION ANCHOR */
.mission-header {
    margin-bottom: 80px;
    max-width: 800px;
}

.mission-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 14px;
    color: #00FFCC;
    letter-spacing: 2px;
    margin-bottom: 24px;
    display: block;
}

.mission-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(48px, 5vw, 64px);
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 32px;
}

.mission-subtext {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    max-width: 600px;
}

/* 2. INTERACTIVE UI LAYOUT */
.mission-ui-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    min-height: 600px;
}

/* LEFT: VERTICAL LIST */
.mission-list {
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(255,255,255,0.1);
}

.mission-item {
    padding: 24px 32px;
    cursor: pointer;
    font-family: 'Space Mono', monospace;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4); /* Muted gray for inactive */
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
    margin-left: -1px; /* Overlap border */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mission-item:hover {
    color: #FFF;
    background: rgba(255,255,255,0.02);
}

.mission-item.active {
    color: #FFFFFF; /* Pure White */
    border-left-color: #00FFCC; /* 2px Teal Border */
    background: transparent; /* Remove background fill */
    font-weight: 700;
}

/* RIGHT: DIAGNOSTIC REPORT CARD */
.diagnostic-window {
    position: relative;
    background: transparent; /* No background */
    border: none; /* No border */
    padding: 20px 0 20px 40px;
    /* Machined Look Removed - Pure Float */
}

/* Technical corner markers - Razor Thin */
.diagnostic-window::before {
    content: '';
    position: absolute;
    top: 0; left: 40px;
    width: 15px; height: 15px;
    border-top: 1px solid #00FFCC;
    border-left: 1px solid #00FFCC;
    opacity: 0.8;
}

.diagnostic-window::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 15px; height: 15px;
    border-bottom: 1px solid #00FFCC;
    border-right: 1px solid #00FFCC;
    opacity: 0.8;
}

/* Report Content Animation */
.report-content {
    display: none;
    animation: fadeInReport 0.4s ease forwards;
}

.report-content.active {
    display: block;
}

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

/* Report Typography */
.report-header {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 24px;
    margin-bottom: 32px;
}

.report-label {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    display: block;
}

.report-title {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #FFF;
    letter-spacing: -0.02em;
}

.report-grid {
    display: grid;
    gap: 32px;
}

.report-block h4 {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    color: #00FFCC; /* Crisp Teal Headers */
    margin-bottom: 12px;
    text-transform: uppercase;
    font-weight: 700;
}

.report-block p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* Challenge vs Impact Styling */
.challenge-block p { color: #A0A0A0; /* Clean Translucent Silver */ }
.impact-block p, .result-block p { color: #FFF; }

/* 3. CTA BANNER */
.mission-cta-banner {
    margin-top: 80px;
    background: #000000;
    border: 1px solid #333;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 4px;
}

.mission-cta-content h3 {
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.mission-cta-content p {
    color: #888;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    max-width: 600px;
}

.mission-btn {
    background: #FFF;
    color: #000;
    border: none;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mission-btn:hover {
    background: #00FFCC;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
    .mission-ui-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }
    
    .mission-list {
        flex-direction: row;
        overflow-x: auto;
        border-left: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 1px;
    }
    
    .mission-item {
        border-left: none;
        border-bottom: 2px solid transparent;
        white-space: nowrap;
        margin-left: 0;
        margin-bottom: -1px;
    }
    
    .mission-item.active {
        border-left-color: transparent;
        border-bottom-color: #00FFCC;
    }
    
    .mission-cta-banner {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
}
