:root {
    --leidos-purple: #5c2d91;
    --leidos-purple-dark: #3b1464;
    --leidos-purple-light: #7b42b5;
    --leidos-purple-accent: #8b5cf6;
    --leidos-purple-bg: rgba(92, 45, 145, 0.09);
    --cbp-navy: #002855;
    --cbp-navy-dark: #001733;
    --cbp-blue-light: #00458f;
    --cbp-accent-cyan: #0284c7;
    --slate-bg: #f8fafc;
    --card-bg: #ffffff;
    --border-subtle: #cbd5e1;
    --text-primary: #0f172a;
    --text-secondary: #1e293b;
    --text-muted: #475569;
    --emerald-green: #059669;
    --amber-warning: #d97706;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Base Presentation Adaptive Font Sizing */
html {
    font-size: clamp(16px, 1.15vw, 21px);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-primary);
    background-color: var(--slate-bg);
    height: 100vh;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
}

.app-container {
    display: flex;
    height: 100vh;
    width: 100vw;
}

/* ==========================================================================
   LEFT SIDEBAR (PRESENTATION-READY, HIGH CONTRAST)
   ========================================================================== */
.sidebar {
    width: clamp(340px, 24vw, 440px);
    background-color: var(--cbp-navy-dark);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    border-right: 4px solid var(--leidos-purple);
    box-shadow: 6px 0 25px rgba(0, 0, 0, 0.3);
    z-index: 20;
    flex-shrink: 0;
}

.sidebar-header {
    padding: clamp(18px, 2vh, 26px) clamp(18px, 1.5vw, 24px);
    background: linear-gradient(160deg, #090e1a 0%, var(--cbp-navy-dark) 100%);
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}

.logo-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.leidos-logo {
    height: clamp(32px, 3.5vh, 42px);
    width: auto;
}

.cbp-tag {
    background-color: rgba(2, 132, 199, 0.25);
    color: #7dd3fc;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 5px;
    border: 1px solid rgba(125, 211, 252, 0.5);
}

.sidebar-header h2 {
    font-size: clamp(1.35rem, 1.8vw, 1.85rem);
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #ffffff;
}

.sidebar-header .subtitle {
    font-size: clamp(0.85rem, 1vw, 1.05rem);
    color: #94a3b8;
    margin-top: 4px;
    font-weight: 500;
}

.nav-container {
    flex: 1;
    overflow-y: auto;
    padding: 16px 0;
}

.nav-container::-webkit-scrollbar {
    width: 6px;
}
.nav-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.nav-section-group {
    margin-bottom: 18px;
}

.nav-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px clamp(18px, 1.5vw, 26px);
    font-size: 0.92rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #93c5fd;
    background-color: rgba(0, 40, 85, 0.85);
    border-left: 4px solid transparent;
}

.section-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: var(--leidos-purple);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 800;
}

.nav-sub-list {
    list-style: none;
    padding: 4px 0;
}

.nav-sub-list li {
    padding: 12px clamp(18px, 1.5vw, 24px) 12px clamp(24px, 2vw, 36px);
    font-size: clamp(1.0rem, 1.15vw, 1.25rem); /* LARGE PRESENTATION FONT */
    color: #e2e8f0;
    cursor: pointer;
    border-left: 5px solid transparent;
    transition: all 0.15s ease-in-out;
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.35;
    font-weight: 600;
}

.nav-sub-list li:hover {
    background-color: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    padding-left: clamp(28px, 2.3vw, 42px);
}

.nav-sub-list li.active {
    background-color: rgba(92, 45, 145, 0.55);
    color: #ffffff;
    border-left: 5px solid var(--leidos-purple-accent);
    font-weight: 800;
}

.sub-num {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 800;
}

.nav-sub-list li.active .sub-num {
    color: #e9d5ff;
}

.nav-sub-list li.highlight-item {
    color: #38bdf8;
    font-weight: 800;
}

.sidebar-footer {
    padding: 16px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.88rem;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #080d1a;
    font-weight: 700;
}

.status-indicator {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background-color: var(--emerald-green);
    box-shadow: 0 0 12px var(--emerald-green);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

/* ==========================================================================
   MAIN CONTENT PANE (ADAPTIVE & EXPANSIVE)
   ========================================================================== */
.content-pane {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: var(--slate-bg);
    overflow: hidden;
    position: relative;
}

.content-header {
    height: clamp(52px, 6.2vh, 66px);
    background-color: #ffffff;
    border-bottom: 2px solid var(--border-subtle);
    padding: 0 clamp(20px, 2.5vw, 40px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.breadcrumb-badge {
    font-size: clamp(0.82rem, 0.9vw, 1.0rem);
    font-weight: 800;
    color: var(--leidos-purple);
    background-color: var(--leidos-purple-bg);
    padding: 5px 12px;
    border-radius: 6px;
    border: 1px solid rgba(92, 45, 145, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.breadcrumb-separator {
    color: var(--text-muted);
    font-size: 1.0rem;
    font-weight: 700;
}

.breadcrumb-current {
    font-size: clamp(1.05rem, 1.25vw, 1.45rem);
    font-weight: 800;
    color: var(--cbp-navy);
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 14px;
}

.progress-indicator {
    font-family: ui-monospace, monospace;
    font-size: clamp(0.85rem, 0.95vw, 1.05rem);
    color: var(--text-secondary);
    background-color: #f1f5f9;
    padding: 5px 14px;
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
    font-weight: 800;
}

.ctrl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(34px, 4vh, 42px);
    height: clamp(34px, 4vh, 42px);
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
    background-color: #ffffff;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.15s ease;
}

.ctrl-btn:hover {
    background-color: var(--cbp-navy);
    color: #ffffff;
    border-color: var(--cbp-navy);
}

.ctrl-btn svg {
    width: clamp(18px, 2vh, 24px);
    height: clamp(18px, 2vh, 24px);
}

.progress-bar-track {
    height: 4px;
    background-color: #e2e8f0;
    width: 100%;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--leidos-purple) 0%, var(--cbp-accent-cyan) 100%);
    width: 6.25%;
    transition: width 0.25s ease;
}

/* Content Body */
.content-body {
    flex: 1;
    overflow-y: auto;
    padding: clamp(14px, 1.8vh, 24px) clamp(24px, 3.2vw, 56px) clamp(16px, 2vh, 28px);
    max-width: 1750px;
    margin: 0 auto;
    width: 100%;
}

/* ==========================================================================
   HIGH-VISIBILITY TYPOGRAPHY FOR PRESENTATION SCREENS
   ========================================================================== */
.content-body h1 {
    color: var(--cbp-navy);
    font-size: clamp(1.65rem, 2.2vw, 2.4rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: clamp(10px, 1.2vh, 16px);
    padding-bottom: clamp(6px, 0.8vh, 10px);
    border-bottom: 3px solid var(--leidos-purple);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.content-body h2 {
    color: var(--leidos-purple);
    font-size: clamp(1.45rem, 2.0vw, 2.2rem);
    font-weight: 800;
    margin-top: 32px;
    margin-bottom: 18px;
}

.content-body h3 {
    color: var(--cbp-navy);
    font-size: clamp(1.2rem, 1.5vw, 1.65rem);
    font-weight: 800;
    margin-top: 24px;
    margin-bottom: 14px;
}

.content-body p {
    font-size: clamp(1.05rem, 1.2vw, 1.35rem);
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-weight: 450;
}

.content-body ul, .content-body ol {
    margin-bottom: 24px;
    padding-left: 28px;
}

.content-body li {
    font-size: clamp(1.02rem, 1.15vw, 1.3rem);
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.content-body strong {
    color: var(--text-primary);
    font-weight: 800;
}

/* Action / Notice Banner */
.note-box {
    background-color: #fffbeb;
    border-left: 6px solid var(--amber-warning);
    padding: 18px 24px;
    border-radius: 0 10px 10px 0;
    margin: 24px 0;
    border: 1px solid #fef3c7;
    border-left-width: 6px;
}

.note-box-title {
    font-weight: 900;
    color: #92400e;
    font-size: clamp(1.0rem, 1.1vw, 1.2rem);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.note-box p {
    color: #78350f;
    font-size: clamp(0.95rem, 1.05vw, 1.15rem);
    margin-bottom: 0;
    font-weight: 500;
}

/* ==========================================================================
   CONNECTED 10-STEP WORKFLOW DIAGRAM (SECTION 2.1)
   ========================================================================== */
.workflow-pipeline {
    margin: 24px 0 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.workflow-phase-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8fafc;
    padding: 8px 16px;
    border-radius: 8px;
    border-left: 5px solid var(--leidos-purple);
    margin-bottom: -6px;
}

.phase-title {
    font-size: clamp(0.95rem, 1.1vw, 1.2rem);
    font-weight: 800;
    color: var(--cbp-navy);
}

.phase-tag {
    font-size: 0.8rem;
    font-weight: 800;
    font-family: ui-monospace, monospace;
    padding: 3px 8px;
    border-radius: 4px;
    background: #e2e8f0;
    color: #334155;
}

.workflow-row {
    display: flex;
    align-items: stretch;
    gap: 8px;
    width: 100%;
}

.wf-step-card {
    flex: 1;
    background: #ffffff;
    border: 1.5px solid var(--border-subtle);
    border-radius: 10px;
    padding: 14px 12px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-top: 5px solid var(--cbp-navy);
}

.wf-step-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.wf-step-card.purple-wf {
    border-top-color: var(--leidos-purple);
}

.wf-step-card.green-wf {
    border-top-color: var(--emerald-green);
    background: #f0fdf4;
}

/* Step 8 Loop Card */
.wf-step-card.loop-card {
    border: 2px solid #7c3aed;
    border-top: 6px solid #7c3aed;
    background: linear-gradient(180deg, #faf5ff 0%, #ffffff 100%);
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.15);
}

.loop-pulse-badge {
    background: #7c3aed;
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.loop-mini-flow {
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px dashed #d8b4fe;
    font-size: 0.72rem;
    font-weight: 800;
    color: #6d28d9;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wf-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--leidos-purple);
    font-size: 1.1rem;
    font-weight: 900;
    padding: 0 2px;
    user-select: none;
}

.wf-step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.wf-step-badge {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.85rem;
    color: #ffffff;
    background-color: var(--cbp-navy);
}

.wf-step-badge.purple-bg { background-color: var(--leidos-purple); }
.wf-step-badge.green-bg { background-color: var(--emerald-green); }
.wf-step-badge.loop-bg { background-color: #7c3aed; }

.wf-step-time {
    font-family: ui-monospace, monospace;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    background: #f1f5f9;
    color: var(--text-secondary);
}

.wf-step-title {
    font-size: clamp(0.9rem, 1.0vw, 1.12rem);
    font-weight: 800;
    color: var(--cbp-navy);
    margin-bottom: 6px;
    line-height: 1.25;
}

.wf-step-desc {
    font-size: clamp(0.78rem, 0.88vw, 0.96rem);
    color: var(--text-secondary);
    line-height: 1.4;
    font-weight: 500;
}

/* Downward bridge connector between row 1 and row 2 */
.workflow-bridge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 8px 16px;
    background: linear-gradient(90deg, #f8fafc 0%, #ede9fe 50%, #f8fafc 100%);
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    color: var(--leidos-purple);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bridge-arrow {
    font-size: 1.2rem;
    font-weight: 900;
    animation: bounceDown 1.5s infinite;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(3px); }
}

/* ==========================================================================
   TEAM HEADSHOT & BIO GRID (5 IN THE ROOM)
   ========================================================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin: 28px 0;
}

.team-card {
    background: #ffffff;
    border: 2px solid var(--border-subtle);
    border-radius: 14px;
    padding: 24px 20px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-top: 6px solid var(--leidos-purple);
}

.avatar-frame {
    width: clamp(76px, 8vh, 96px);
    height: clamp(76px, 8vh, 96px);
    max-width: 96px;
    max-height: 96px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--leidos-purple) 0%, var(--cbp-navy) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 900;
    font-size: clamp(1.4rem, 2vw, 1.85rem);
    margin-bottom: 16px;
    box-shadow: 0 6px 16px rgba(0, 40, 85, 0.25);
    border: 3px solid #ffffff;
    overflow: hidden !important;
    position: relative;
    flex-shrink: 0;
}

.avatar-frame img,
.team-card .avatar-frame img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: cover !important;
    object-position: center 15% !important;
    display: block !important;
    border-radius: 50% !important;
}

.team-name {
    font-size: clamp(1.18rem, 1.4vw, 1.5rem);
    font-weight: 900;
    color: var(--cbp-navy);
    margin-bottom: 6px;
}

.team-role {
    font-size: clamp(0.85rem, 0.95vw, 1.05rem);
    font-weight: 800;
    color: var(--leidos-purple);
    background-color: var(--leidos-purple-bg);
    padding: 4px 12px;
    border-radius: 14px;
    margin-bottom: 16px;
    display: inline-block;
    border: 1px solid rgba(92, 45, 145, 0.2);
}

.team-bullets {
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.team-bullets li {
    font-size: clamp(0.92rem, 1.05vw, 1.15rem);
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.45;
    position: relative;
    padding-left: 16px;
    font-weight: 500;
}

.team-bullets li::before {
    content: "•";
    color: var(--leidos-purple);
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
}

/* ==========================================================================
   BUBBLE CONTAINERS (ADAPTIVE & READABLE)
   ========================================================================== */
.bubble-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: clamp(20px, 2.2vw, 32px);
    margin: 28px 0;
}

.bubble-card {
    background: #ffffff;
    border-radius: 18px;
    padding: clamp(24px, 2.8vw, 36px) clamp(22px, 2.5vw, 32px);
    border: 2px solid var(--border-subtle);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
    position: relative;
    display: flex;
    flex-direction: column;
}

.bubble-card.purple-bubble { border-top: 7px solid var(--leidos-purple); }
.bubble-card.blue-bubble   { border-top: 7px solid var(--cbp-blue-light); }
.bubble-card.cyan-bubble   { border-top: 7px solid var(--cbp-accent-cyan); }
.bubble-card.navy-bubble   { border-top: 7px solid var(--cbp-navy); }
.bubble-card.green-bubble  { border-top: 7px solid var(--emerald-green); }

.bubble-badge {
    display: inline-flex;
    align-items: center;
    font-size: clamp(0.95rem, 1.15vw, 1.35rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 6px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    align-self: flex-start;
}

.purple-badge { background-color: var(--leidos-purple-bg); color: var(--leidos-purple); border: 1.5px solid rgba(92, 45, 145, 0.35); }
.blue-badge { background-color: rgba(0, 40, 85, 0.12); color: var(--cbp-navy); border: 1.5px solid rgba(0, 40, 85, 0.3); }
.cyan-badge { background-color: rgba(2, 132, 199, 0.15); color: #0369a1; border: 1.5px solid rgba(2, 132, 199, 0.35); }
.navy-badge-pill { background-color: rgba(0, 40, 85, 0.12); color: var(--cbp-navy); border: 1.5px solid rgba(0, 40, 85, 0.3); }
.green-badge-pill { background-color: rgba(5, 150, 105, 0.15); color: #047857; border: 1.5px solid rgba(5, 150, 105, 0.35); }

.bubble-title {
    font-size: clamp(1.45rem, 1.85vw, 2.25rem);
    font-weight: 900;
    color: var(--cbp-navy);
    margin-bottom: 16px;
    line-height: 1.25;
}

.bubble-card ul {
    margin: 10px 0 0;
    padding-left: 26px;
}

.bubble-card li {
    font-size: clamp(1.15rem, 1.35vw, 1.6rem);
    color: #334155;
    margin-bottom: 14px;
    line-height: 1.55;
    font-weight: 450;
}

.bubble-card li strong {
    color: #0f172a;
    font-weight: 800;
}

/* ==========================================================================
   DIAGRAM CONTAINERS & PRESENTATION SVG
   ========================================================================== */
.diagram-container {
    background: #ffffff;
    border: 2px solid var(--border-subtle);
    border-radius: 14px;
    padding: 26px;
    margin: 28px 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.diagram-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--border-subtle);
}

.diagram-title {
    font-size: clamp(1.15rem, 1.4vw, 1.6rem);
    font-weight: 900;
    color: var(--cbp-navy);
}

.diagram-tag {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--leidos-purple);
    background: var(--leidos-purple-bg);
    padding: 4px 12px;
    border-radius: 6px;
    border: 1px solid rgba(92, 45, 145, 0.2);
}

.diagram-svg {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid var(--border-subtle);
}

/* ==========================================================================
   INTERACTIVE IFRAME CONTAINER (FOR LIVE APPS & MISSION GRAPH)
   ========================================================================== */
.embed-frame-container {
    background: #ffffff;
    border: 2px solid var(--border-subtle);
    border-radius: 14px;
    overflow: hidden;
    margin: 24px 0 28px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.embed-frame-header {
    background: #f8fafc;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid var(--border-subtle);
}

.embed-frame-title {
    font-size: clamp(1.05rem, 1.2vw, 1.35rem);
    font-weight: 800;
    color: var(--cbp-navy);
    display: flex;
    align-items: center;
    gap: 8px;
}

.embed-frame-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-open-ext {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--leidos-purple);
    color: #ffffff !important;
    font-size: 0.85rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.btn-open-ext:hover {
    background: var(--cbp-navy);
    transform: translateY(-1px);
}

.live-embed-iframe {
    width: 100%;
    height: clamp(520px, 64vh, 760px);
    border: none;
    display: block;
    background: #ffffff;
}

/* ==========================================================================
   TABLES & KPI METRIC TILES
   ========================================================================== */
.content-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--border-subtle);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.content-body th {
    background-color: var(--cbp-navy);
    color: #ffffff;
    font-weight: 900;
    text-align: left;
    padding: 16px 20px;
    font-size: clamp(1.02rem, 1.15vw, 1.28rem);
    letter-spacing: 0.02em;
}

.content-body td {
    padding: 16px 20px;
    border-top: 1px solid var(--border-subtle);
    font-size: clamp(0.98rem, 1.1vw, 1.22rem);
    color: var(--text-secondary);
    line-height: 1.5;
}

.content-body tr:nth-child(even) td {
    background-color: #f8fafc;
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    margin: 28px 0;
}

.kpi-card {
    background: #ffffff;
    border: 2px solid var(--border-subtle);
    border-radius: 14px;
    padding: 28px 24px;
    border-left: 8px solid var(--leidos-purple);
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}

.kpi-num {
    font-size: clamp(2.8rem, 4.2vw, 4.5rem);
    font-weight: 900;
    color: var(--cbp-navy);
    line-height: 1;
    margin-bottom: 8px;
}

.kpi-label {
    font-size: clamp(0.95rem, 1.1vw, 1.25rem);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--leidos-purple);
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.kpi-desc {
    font-size: clamp(0.92rem, 1.05vw, 1.18rem);
    color: var(--text-muted);
    line-height: 1.45;
}

/* ==========================================================================
   4.3 OUTSMART. OUTDO. (NO-SCROLL VALUE PROPOSITION MATRIX)
   ========================================================================== */
.vp-offer-banner {
    background: linear-gradient(135deg, #fdf4ff 0%, #f0fdf4 100%);
    border: 1.5px solid #e9d5ff;
    border-left: 5px solid var(--leidos-purple);
    border-radius: 8px;
    padding: clamp(6px, 0.7vh, 10px) clamp(12px, 1.2vw, 18px);
    margin: 4px 0 8px;
    box-shadow: 0 2px 8px rgba(92, 45, 145, 0.05);
}

.vp-offer-text {
    font-size: clamp(0.82rem, 0.9vw, 1.05rem);
    line-height: 1.35;
    color: var(--text-primary);
    font-weight: 500;
    margin: 0;
}

.highlight-purple { color: #5c2d91; font-weight: 800; }
.highlight-purple-light { color: #7c3aed; font-weight: 800; }
.highlight-blue { color: #0284c7; font-weight: 800; }
.highlight-red { color: #b91c1c; font-weight: 800; }
.highlight-green { color: #059669; font-weight: 800; }

.vp-matrix-container {
    border: 2px solid #5c2d91;
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
    margin: 4px 0 6px;
}

.vp-matrix-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.vp-matrix-table thead th {
    background: #f8f4fc;
    color: var(--cbp-navy);
    font-size: clamp(0.82rem, 0.9vw, 1.02rem);
    font-weight: 900;
    text-transform: none;
    letter-spacing: 0;
    padding: clamp(4px, 0.5vh, 7px) clamp(10px, 1vw, 14px);
    border-bottom: 2px solid #e9d5ff;
    text-align: left;
}

.vp-matrix-table thead th:first-child {
    text-align: center;
}

.vp-matrix-table td {
    padding: clamp(3px, 0.45vh, 6px) clamp(10px, 1vw, 14px);
    border-top: 1px solid #f1f5f9;
    vertical-align: middle;
}

.vp-pillar-cell {
    text-align: center;
    border-right: 1px solid #f1f5f9;
    background-color: #fafbfc;
    padding: clamp(3px, 0.4vh, 6px) 8px !important;
}

.vp-pillar-title {
    font-size: clamp(0.92rem, 1.05vw, 1.18rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 2px;
}

.vp-title-agility { color: #5c2d91; }
.vp-title-modern { color: #0284c7; }
.vp-title-resilience { color: #b91c1c; }
.vp-title-commit { color: #059669; }

.vp-pillar-icon {
    font-size: clamp(0.95rem, 1.15vw, 1.35rem);
    line-height: 1;
}

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

.vp-cell-list li {
    font-size: clamp(0.78rem, 0.86vw, 0.98rem);
    color: var(--text-secondary);
    margin-bottom: 2px;
    line-height: 1.25;
    position: relative;
    padding-left: 12px;
    font-weight: 500;
}

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

.vp-cell-list li::before {
    content: "•";
    color: var(--leidos-purple);
    font-weight: 900;
    position: absolute;
    left: 0;
}

.vp-outcome-list li {
    padding-left: 0;
}

.vp-outcome-list li::before {
    content: "";
}

.vp-outcome-lead {
    font-weight: 800;
}

.vp-purple-outcome strong { color: #5c2d91; }
.vp-blue-outcome strong { color: #0284c7; }
.vp-red-outcome strong { color: #b91c1c; }
.vp-green-outcome strong { color: #059669; }

/* ==========================================================================
   DIAGRAM PLACEHOLDER STYLING (CLEAN & PROFESSIONAL)
   ========================================================================== */
.placeholder-diagram-body {
    padding: clamp(28px, 4.5vh, 56px) 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
}

.placeholder-icon {
    font-size: clamp(2.2rem, 3.2vw, 3.6rem);
    margin-bottom: 12px;
}

.placeholder-heading {
    font-size: clamp(1.15rem, 1.35vw, 1.5rem);
    font-weight: 800;
    color: var(--cbp-navy);
    margin-bottom: 8px;
}

.placeholder-instructions {
    max-width: 780px;
    font-size: clamp(0.9rem, 1.0vw, 1.15rem);
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}




