/* ============================================
   RESPONSIVE – PART 15 & MISSING CLASSES
   ============================================ */

/* ---------- TABLET (768px–1024px) ---------- */
@media (min-width: 768px) and (max-width: 1024px) {

  .no-assessment-box {
    margin: 48px auto;
    padding: 48px 34px;
  }

  .no-assessment-box h3 {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .no-assessment-box p {
    font-size: 15px;
    margin-bottom: 26px;
  }

  .domain-score-display .score-number {
    font-size: 28px;
  }

  .domain-score-display .score-max {
    font-size: 15px;
  }

  .priority-locked-preview {
    padding: 14px;
    margin-top: 14px;
  }

  .priority-locked-preview p,
  .priority-locked-preview ul {
    font-size: 13px;
  }

  .insight-bullets li {
    font-size: 14px;
  }
}

/* ---------- MOBILE (≤ 767px) ---------- */
@media (max-width: 767px) {

  .no-assessment-box {
    max-width: 100%;
    margin: 36px auto;
    padding: 26px 18px;
    border-radius: 10px;
  }

  .no-assessment-box h3 {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .no-assessment-box p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 22px;
  }

  .domain-score-display {
    gap: 6px;
  }

  .domain-score-display .score-number {
    font-size: 24px;
  }

  .domain-score-display .score-max {
    font-size: 14px;
  }

  .priority-locked-preview {
    padding: 14px;
    margin-top: 12px;
  }

  .priority-locked-preview p,
  .priority-locked-preview ul {
    font-size: 13px;
  }

  .insight-bullets {
    margin: 18px 0;
    padding-left: 18px;
  }

  .insight-bullets li {
    font-size: 14px;
  }
}

/* ---------- EXTRA SMALL MOBILE (≤ 480px) ---------- */
@media (max-width: 480px) {

  .no-assessment-box {
    margin: 30px auto;
    padding: 22px 14px;
  }

  .no-assessment-box h3 {
    font-size: 20px;
  }

  .no-assessment-box p {
    font-size: 14px;
  }

  .domain-score-display .score-number {
    font-size: 22px;
  }

  .domain-score-display .score-max {
    font-size: 13px;
  }

  .insight-bullets {
    padding-left: 16px;
  }

  .insight-bullets li {
    font-size: 13px;
  }
}

/* ============================================
   ICI WORLD-CLASS v3.0 - COMPLETE STYLES
   
   This replaces ALL previous ICI styles.
   Add to END of aeci-advanced-features.css
   ============================================ */

/* ========================================
   SAFE CHANGE LOAD BOX
   ======================================== */
.ici-safe-load-box {
    border-radius: 12px;
    padding: 25px 30px;
    margin-bottom: 35px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.safe-load-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 15px;
}

.safe-load-title {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.safe-load-icon {
    font-size: 2.5em;
    line-height: 1;
}

.safe-load-text h3 {
    margin: 0 0 5px 0;
    font-size: 1.3em;
    font-weight: 700;
    color: #26366B;
}

.safe-load-subtitle {
    margin: 0;
    font-size: 1em;
    color: #64748B;
}

.safe-load-subtitle strong {
    color: #26366B;
}

/* Support Level Badge (replaces percentage) */
.safe-load-support-level {
    display: flex;
    align-items: center;
}

.support-badge {
    font-size: 0.85rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.support-low {
    background: #fecaca;
    color: #b91c1c;
}

.support-moderate {
    background: #fef3c7;
    color: #b45309;
}

.support-high {
    background: #d1fae5;
    color: #059669;
}

.safe-load-message {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #334155;
}

/* ========================================
   DRIVERS LEGEND
   ======================================== */
.ici-drivers-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #64748b;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-dot.stable {
    background: #4ECDC4;
}

.legend-dot.building {
    background: #FFD700;
}

.legend-dot.developing {
    background: #cbd5e1;
}

/* ========================================
   BEHAVIORAL DRIVERS GRID
   ======================================== */
.ici-habits-section {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 12px;
    margin: 35px 0;
}

.ici-habits-section h3 {
    margin-top: 0;
    color: #26366B;
    font-size: 1.3em;
    margin-bottom: 10px;
}

.ici-habits-section > p {
    color: #64748B;
    margin-bottom: 15px;
}

.ici-habits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

/* Driver Cards - Three States */
.ici-driver-card {
    background: #FFFFFF;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 18px 20px;
    transition: all 0.2s ease;
}

.ici-driver-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Stable Card (was "Strength") */
.ici-driver-stable {
    background: linear-gradient(135deg, #f0fff4 0%, #e8f5e9 100%);
    border-color: #4ECDC4;
}

/* Building Card (new - partial consistency) */
.ici-driver-building {
    background: linear-gradient(135deg, #fffef5 0%, #fff9e5 100%);
    border-color: #FFD700;
}

/* Developing Card (was "Gap") */
.ici-driver-developing {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-color: #cbd5e1;
}

/* Veto Factor Card (Action Initiation Gap) */
.ici-driver-veto {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%) !important;
    border-color: #ef4444 !important;
    border-width: 2px;
}

.ici-driver-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.ici-driver-label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ici-driver-emoji {
    font-size: 1.4em;
}

.ici-driver-label h4 {
    margin: 0;
    font-size: 1em;
    font-weight: 600;
    color: #334155;
}

/* Status Labels - Three Tiers */
.ici-driver-status {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 20px;
}

.status-stable {
    background: #d1fae5;
    color: #059669;
}

.status-building {
    background: #fef3c7;
    color: #b45309;
}

.status-developing {
    background: #f1f5f9;
    color: #64748b;
}

.ici-driver-veto .status-developing {
    background: #fecaca;
    color: #dc2626;
}

/* Progress Bar with Ghost Bar Fix */
.ici-driver-progress {
    margin-bottom: 10px;
}

.ici-progress-track {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    /* Ghost bar fix: ensure track is always visible */
    min-height: 8px;
}

.ici-progress-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.5s ease;
    /* Ghost bar fix: minimum width so low scores are still visible */
    min-width: 8px;
}

/* Driver Insight Text */
.ici-driver-insight {
    font-size: 0.85rem;
    line-height: 1.5;
}

.insight-stable {
    color: #059669;
}

.insight-building {
    color: #b45309;
}

.insight-developing {
    color: #64748b;
}

.insight-veto {
    color: #dc2626;
}

.insight-veto strong {
    color: #b91c1c;
}

/* ========================================
   VETO FACTOR ALERT BOX
   ======================================== */
.ici-veto-alert {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 2px solid #fca5a5;
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 25px;
}

.veto-alert-icon {
    font-size: 2em;
    flex-shrink: 0;
}

.veto-alert-content h4 {
    margin: 0 0 8px 0;
    font-size: 1.1em;
    font-weight: 700;
    color: #b91c1c;
}

.veto-alert-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #7f1d1d;
}

/* ========================================
   RECOMMENDATION SECTIONS
   ======================================== */
.ici-recommendation {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 30px 35px;
    margin-top: 35px;
    border: 1px solid #E5E7EB;
}

.ici-recommendation h3 {
    margin: 0 0 20px 0;
    color: #26366B;
    font-size: 1.3em;
}

.ici-recommendation-lead {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 25px;
}

/* Two-Paths Layout (Self vs Guided) */
.ici-two-paths {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.ici-path {
    padding: 20px 24px;
    border-radius: 10px;
}

.ici-path-self {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.ici-path-guided {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #7dd3fc;
}

.ici-path h4 {
    margin: 0 0 15px 0;
    font-size: 1.05em;
    color: #26366B;
}

.ici-path ul {
    margin: 0;
    padding-left: 20px;
}

.ici-path li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #334155;
}

.ici-path li:last-child {
    margin-bottom: 0;
}

.ici-path li strong {
    color: #26366B;
}

/* CTA within path */
.ici-cta-inline {
    margin-top: 20px;
}

/* Self-Guided Tips (High Capacity) */
.ici-self-guided-tips {
    background: #f8fafc;
    border-radius: 10px;
    padding: 20px 24px;
    margin-bottom: 25px;
}

.ici-self-guided-tips h4 {
    margin: 0 0 15px 0;
    font-size: 1.05em;
    color: #26366B;
}

.ici-self-guided-tips ul {
    margin: 0;
    padding-left: 20px;
}

.ici-self-guided-tips li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #334155;
}

/* ========================================
   CTA BUTTONS
   ======================================== */
.ici-cta-button {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1em;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.ici-cta-primary {
    background: #26366B;
    color: #FFFFFF !important;
    border: none;
}

.ici-cta-primary:hover {
    background: #1a2547;
    color: #FFFFFF;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(38, 54, 107, 0.3);
}

.ici-cta-secondary {
    background: #FFD700;
    color: #26366B;
    border: none;
}

.ici-cta-secondary:hover {
    background: #e6c200;
    color: #26366B;
    text-decoration: none;
    transform: translateY(-1px);
}

.ici-cta-tertiary {
    background: #FFFFFF;
    color: #26366B;
    border: 2px solid #26366B;
}

.ici-cta-tertiary:hover {
    background: #26366B;
    color: #FFFFFF;
    text-decoration: none;
}

/* Optional Support (High Capacity) */
.ici-optional-support {
    padding: 20px 24px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 3px solid #64748B;
}

.ici-optional-support p {
    margin: 0 0 15px 0;
    font-size: 0.95rem;
    color: #64748B;
    line-height: 1.6;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
    .ici-safe-load-box {
        padding: 22px 25px;
    }
    
    .safe-load-icon {
        font-size: 2.2em;
    }
    
    .safe-load-text h3 {
        font-size: 1.2em;
    }
    
    .ici-two-paths {
        grid-template-columns: 1fr;
    }
    
    .ici-veto-alert {
        padding: 18px 20px;
    }
    
    .ici-recommendation {
        padding: 25px 28px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .ici-safe-load-box {
        padding: 20px;
        border-left-width: 4px;
    }
    
    .safe-load-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .safe-load-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .safe-load-icon {
        font-size: 2em;
    }
    
    .safe-load-text h3 {
        font-size: 1.1em;
    }
    
    .safe-load-support-level {
        align-self: flex-start;
    }
    
    .support-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    .safe-load-message {
        font-size: 14px;
    }
    
    .ici-drivers-legend {
        flex-direction: column;
        gap: 10px;
    }
    
    .ici-habits-section {
        padding: 25px 20px;
    }
    
    .ici-driver-card {
        padding: 15px;
    }
    
    .ici-driver-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .ici-driver-status {
        font-size: 0.7rem;
    }
    
    .ici-veto-alert {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
    }
    
    .veto-alert-icon {
        font-size: 1.6em;
    }
    
    .veto-alert-content h4 {
        font-size: 1em;
    }
    
    .veto-alert-content p {
        font-size: 0.9rem;
    }
    
    .ici-recommendation {
        padding: 20px;
    }
    
    .ici-two-paths {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ici-path {
        padding: 16px 18px;
    }
    
    .ici-cta-button {
        display: block;
        text-align: center;
        padding: 12px 24px;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .ici-safe-load-box {
        padding: 16px;
    }
    
    .safe-load-text h3 {
        font-size: 1em;
    }
    
    .safe-load-subtitle {
        font-size: 0.9em;
    }
    
    .ici-driver-emoji {
        font-size: 1.2em;
    }
    
    .ici-driver-label h4 {
        font-size: 0.95em;
    }
    
    .ici-path li {
        font-size: 0.9rem;
    }
}

/* Print Styles */
@media print {
    .ici-safe-load-box {
        border: 2px solid #000 !important;
        background: #f5f5f5 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    
    .ici-veto-alert {
        border: 2px solid #dc2626 !important;
        background: #fef2f2 !important;
    }
    
    .ici-cta-button,
    .ici-cta-inline,
    .ici-optional-support a {
        display: none !important;
    }
    
    .ici-two-paths {
        grid-template-columns: 1fr 1fr;
    }
}

/* ========================================
   ACCESSIBILITY FOCUS STATES
   ======================================== */
.ici-cta-button:focus {
    outline: 3px solid #FFD700;
    outline-offset: 2px;
}

.ici-driver-card:focus-within {
    outline: 2px solid #26366B;
    outline-offset: 2px;
}

/* ============================================
   ENERGY VOLATILITY SCORE (EVS) V3 STYLES
   Narrative-driven, Archetype-based design
   Add to END of style.css
   ============================================ */

/* Section Container */
.page-energy-volatility {
    background: #FFFFFF !important;
    padding: 60px 80px !important;
}

/* ============================================
   ARCHETYPE CARD
   ============================================ */

.evs-archetype-card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 30px 35px;
    border-radius: 16px;
    border-left: 5px solid;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 35px;
}

.evs-archetype-icon {
    font-size: 3em;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.evs-archetype-info {
    flex: 1;
}

.evs-archetype-name {
    margin: 0 0 8px 0;
    font-size: 1.8em;
    font-weight: 700;
    color: #26366B;
}

.evs-archetype-subtitle {
    font-size: 1.1em;
    color: #64748B;
    font-weight: 500;
}

/* Archetype-specific backgrounds */
.evs-archetype-rock {
    background: linear-gradient(135deg, #f0fffe 0%, #ffffff 100%);
}

.evs-archetype-flatline {
    background: linear-gradient(135deg, #fff8f0 0%, #ffffff 100%);
}

.evs-archetype-rollercoaster {
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}

.evs-archetype-shifter {
    background: linear-gradient(135deg, #fffef5 0%, #ffffff 100%);
}

/* ============================================
   STABILITY SPECTRUM
   ============================================ */

.evs-spectrum-container {
    margin: 30px 0 40px 0;
    padding: 0 10px;
}

.evs-spectrum-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.85em;
    font-weight: 600;
    color: #64748B;
}

.evs-spectrum-track {
    position: relative;
    height: 12px;
    border-radius: 6px;
    background: #e0e0e0;
    overflow: visible;
}

.evs-spectrum-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 6px;
    background: linear-gradient(90deg, 
        #F38181 0%, 
        #FFD700 35%, 
        #4ECDC4 70%, 
        #4ECDC4 100%
    );
}

.evs-spectrum-marker {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.evs-marker-dot {
    width: 24px;
    height: 24px;
    background: #26366B;
    border: 4px solid #FFFFFF;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.evs-marker-label {
    position: absolute;
    top: 32px;
    white-space: nowrap;
    font-size: 0.85em;
    font-weight: 600;
    color: #26366B;
    background: #FFFFFF;
    padding: 4px 12px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* ============================================
   NARRATIVE BLOCKS
   ============================================ */

.evs-narrative-block {
    background: #f8f9fa;
    padding: 28px 32px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.evs-narrative-block h4 {
    margin: 0 0 15px 0;
    font-size: 1.15em;
    font-weight: 600;
    color: #26366B;
}

.evs-narrative-block p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: #222329D9;
}

/* Reality Check - slightly different styling */
.evs-reality-check {
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f4f8 100%);
    border-left: 4px solid #26366B;
}

/* Lived Experience */
.evs-lived-intro {
    margin-bottom: 15px !important;
    font-style: italic;
    color: #64748B !important;
}

.evs-experience-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.evs-experience-list li {
    position: relative;
    padding: 10px 0 10px 28px;
    font-size: 15px;
    line-height: 1.6;
    color: #222329D9;
    border-bottom: 1px solid #e5e7eb;
}

.evs-experience-list li:last-child {
    border-bottom: none;
}

.evs-experience-list li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #64748B;
    font-size: 1.2em;
}

/* ============================================
   STRATEGIC SEQUENCING
   ============================================ */

.evs-strategy-container {
    background: #FFFFFF;
    border: 2px solid;
    border-radius: 16px;
    padding: 35px;
    margin: 35px 0;
}

.evs-strategy-container h3 {
    margin: 0 0 25px 0;
    font-size: 1.3em;
    font-weight: 700;
    color: #26366B;
    text-align: center;
}

.evs-phases {
    display: flex;
    align-items: stretch;
    gap: 20px;
}

.evs-phase {
    flex: 1;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
}

.evs-phase-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.evs-phase-number {
    width: 32px;
    height: 32px;
    background: #26366B;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95em;
    flex-shrink: 0;
}

.evs-phase-title {
    font-size: 1.1em;
    font-weight: 600;
    color: #26366B;
}

.evs-phase p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #222329D9;
}

.evs-phase-arrow {
    display: flex;
    align-items: center;
    font-size: 1.8em;
    color: #26366B;
    font-weight: 700;
    flex-shrink: 0;
}

/* ============================================
   PRIORITY BOX
   ============================================ */

.evs-priority-box {
    border: 2px solid;
    border-radius: 14px;
    padding: 30px;
    margin: 30px 0;
}

.evs-priority-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.evs-priority-icon {
    font-size: 1.5em;
}

.evs-priority-header h4 {
    margin: 0;
    font-size: 1.15em;
    font-weight: 700;
    color: #26366B;
}

.evs-priority-box > p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: #222329D9;
}

/* ============================================
   WHAT NOT TO DO
   ============================================ */

.evs-what-not {
    background: linear-gradient(135deg, #fff8f8 0%, #fff5f5 100%);
    border-left: 4px solid #F38181;
}

.evs-not-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.evs-not-list li {
    position: relative;
    padding: 10px 0 10px 32px;
    font-size: 15px;
    line-height: 1.6;
    color: #222329D9;
}

.evs-not-list li::before {
    content: "✗";
    position: absolute;
    left: 6px;
    color: #F38181;
    font-weight: 700;
    font-size: 1.1em;
}

/* ============================================
   TIMELINE
   ============================================ */

.evs-timeline-block {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: linear-gradient(135deg, #26366B 0%, #3d5a99 100%);
    padding: 28px 32px;
    border-radius: 14px;
    margin-top: 30px;
}

.evs-timeline-icon {
    font-size: 2em;
    flex-shrink: 0;
}

.evs-timeline-content h4 {
    margin: 0 0 10px 0;
    font-size: 1.1em;
    font-weight: 600;
    color: #FFFFFF;
}

.evs-timeline-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
    .page-energy-volatility {
        padding: 40px 48px !important;
    }
    
    .evs-archetype-card {
        padding: 25px 30px;
    }
    
    .evs-archetype-icon {
        width: 75px;
        height: 75px;
        font-size: 2.5em;
    }
    
    .evs-archetype-name {
        font-size: 1.5em;
    }
    
    .evs-phases {
        flex-direction: column;
    }
    
    .evs-phase-arrow {
        transform: rotate(90deg);
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .page-energy-volatility {
        padding: 24px 18px !important;
    }
    
    .evs-archetype-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
        gap: 15px;
    }
    
    .evs-archetype-icon {
        width: 70px;
        height: 70px;
        font-size: 2.2em;
    }
    
    .evs-archetype-name {
        font-size: 1.4em;
    }
    
    .evs-archetype-subtitle {
        font-size: 1em;
    }
    
    .evs-narrative-block {
        padding: 22px 20px;
    }
    
    .evs-strategy-container {
        padding: 25px 20px;
    }
    
    .evs-phases {
        flex-direction: column;
    }
    
    .evs-phase-arrow {
        transform: rotate(90deg);
        justify-content: center;
        margin: 5px 0;
    }
    
    .evs-phase {
        padding: 20px;
    }
    
    .evs-priority-box {
        padding: 22px 20px;
    }
    
    .evs-timeline-block {
        flex-direction: column;
        gap: 12px;
        padding: 22px 20px;
    }
    
    .evs-marker-label {
        font-size: 0.75em;
        padding: 3px 8px;
    }
}

/* Print Styles */
@media print {
    .evs-archetype-card {
        border: 2px solid #26366B !important;
        print-color-adjust: exact;
        -webkit-print-color-adjust: exact;
    }
    
    .evs-spectrum-gradient {
        print-color-adjust: exact;
        -webkit-print-color-adjust: exact;
    }
    
    .evs-timeline-block {
        background: #26366B !important;
        print-color-adjust: exact;
        -webkit-print-color-adjust: exact;
    }
}

/* ================================
   EXECUTIVE SUMMARY SECTION
   ================================ */

.page-executive-summary {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%) !important;
}

.exec-summary-intro .lead-text {
  font-size: 1.2em;
  line-height: 1.7;
  color: #26366B;
  font-weight: 500;
  margin-bottom: 30px;
}

.exec-summary-snapshot {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.snapshot-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.snapshot-label {
  font-size: 0.85em;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748B;
  margin-bottom: 8px;
  font-weight: 600;
}

.snapshot-value {
  font-size: 2em;
  font-weight: 700;
  color: #26366B;
  margin-bottom: 8px;
}

.snapshot-context {
  font-size: 0.9em;
  color: #64748B;
  line-height: 1.5;
}

.exec-summary-priorities {
  background: #f8fafc;
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 32px;
}

.priority-summary-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.priority-summary-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  padding: 14px 18px;
  border-radius: 8px;
}

.priority-num {
  background: #26366B;
  color: #FFD700;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9em;
}

.priority-name {
  flex: 1;
  font-weight: 600;
  color: #26366B;
}

.priority-score {
  font-weight: 700;
  color: #64748B;
}

/* ================================
   HOW TO USE THIS REPORT - WORLD CLASS
   ================================ */

.exec-summary-navigation {
  background: #26366B;
  color: #ffffff;
  border-radius: 12px;
  padding: 28px 32px;
}

.exec-summary-navigation h3 {
  color: #FFD700 !important;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

/* Navigation Tip */
.exec-summary-navigation .nav-tip {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 24px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92) !important;
}

.exec-summary-navigation .nav-tip .tip-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.exec-summary-navigation .nav-tip strong {
  color: #FFD700;
}

.exec-summary-navigation .nav-tip em {
  background: rgba(255, 215, 0, 0.2);
  padding: 2px 6px;
  border-radius: 4px;
  font-style: normal;
  color: #FFD700;
}

/* Reading Modes Grid */
.reading-modes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.reading-mode-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 18px;
  transition: all 0.2s ease;
}

.reading-mode-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-2px);
}

.mode-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.mode-icon {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 215, 0, 0.15);
  border-radius: 8px;
}

.mode-title-block h4 {
  margin: 0 !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
}

.mode-time {
  font-size: 0.75rem;
  color: #FFD700;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mode-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8) !important;
  margin: 0 0 12px 0 !important;
  line-height: 1.5;
}

.mode-links {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.mode-links li {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75) !important;
  margin-bottom: 8px !important;
  padding-left: 16px;
  position: relative;
}

.mode-links li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #FFD700;
  font-weight: 600;
}

.mode-links li:last-child {
  margin-bottom: 0 !important;
}

.mode-links a {
  color: #FFD700 !important;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
}

.mode-links a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* Pro Tip Banner */
.reading-pro-tip {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.08) 100%);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  gap: 12px;
}

.pro-tip-badge {
  background: #FFD700;
  color: #26366B;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.reading-pro-tip strong {
  color: #FFD700;
}

/* Reading Time Footer */
.exec-summary-navigation .reading-time {
  margin-top: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.7) !important;
  text-align: center;
}

/* ================================
   RESPONSIVE: Tablet
   ================================ */
@media (max-width: 1024px) {
  .reading-modes-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  
  .reading-mode-card {
    padding: 16px;
  }
}

/* ================================
   RESPONSIVE: Mobile
   ================================ */
@media (max-width: 767px) {
  .exec-summary-navigation {
    padding: 22px 20px;
  }
  
  .exec-summary-navigation h3 {
    font-size: 1.15rem;
  }
  
  .exec-summary-navigation .nav-tip {
    flex-direction: column;
    gap: 8px;
    padding: 12px 14px;
    font-size: 0.9rem;
  }
  
  .reading-modes-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .mode-header {
    gap: 10px;
  }
  
  .mode-icon {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }
  
  .reading-pro-tip {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 14px;
  }
}

/* ================================
   SECTION TRANSITIONS
   ================================ */

.section-transition {
  max-width: 1200px;
  margin: 0 auto 24px;
  padding: 0 20px;
}

.transition-bridge {
  background: linear-gradient(135deg, #f0f7ff 0%, #fef9e7 100%);
  border-left: 4px solid #FFD700;
  border-radius: 0 12px 12px 0;
  padding: 24px 28px;
}

.transition-bridge p {
  margin: 0 0 12px 0;
  font-size: 1.05em;
  line-height: 1.7;
  color: #26366B;
}

.transition-bridge p:last-child {
  margin-bottom: 0;
}

.transition-bridge strong {
  color: #26366B;
}

.transition-bridge em {
  color: #64748B;
  font-style: italic;
}

/* Page Pillar Intro */
.page-pillar-intro {
  background: #ffffff !important;
}

.page-pillar-intro .transition-content {
  max-width: 800px;
}

.transition-list {
  margin: 20px 0;
  padding-left: 0;
  list-style: none;
}

.transition-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.transition-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #26366B;
  font-weight: 700;
}

.transition-guidance {
  background: #fef9e7;
  border-radius: 8px;
  padding: 16px 20px;
  margin-top: 24px;
  border-left: 3px solid #FFD700;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .exec-summary-snapshot {
    grid-template-columns: 1fr;
  }
  
  .snapshot-value {
    font-size: 1.6em;
  }
  
  .transition-bridge {
    padding: 20px;
  }
  
  .section-transition {
    padding: 0 16px;
  }
}

/* ============================================================
   CROSS-PILLAR CASCADE MAP - ISOLATED CSS
   All rules prefixed with #antah-report for Astra/Elementor override
   Add this to your style.css file
   ============================================================ */

/* ---------------------------------------------
   RESET: Cascade Map Section
   --------------------------------------------- */
#antah-report .page-cascade-map *,
#antah-report .page-cascade-map *::before,
#antah-report .page-cascade-map *::after {
  box-sizing: border-box !important;
}

#antah-report .page-cascade-map h2,
#antah-report .page-cascade-map h3,
#antah-report .page-cascade-map h4,
#antah-report .page-cascade-map h5,
#antah-report .page-cascade-map h6,
#antah-report .page-cascade-map p,
#antah-report .page-cascade-map ul,
#antah-report .page-cascade-map ol,
#antah-report .page-cascade-map li {
  margin: 0 !important;
  padding: 0 !important;
  letter-spacing: normal !important;
}

/* ---------------------------------------------
   CASCADE INTRO
   --------------------------------------------- */
#antah-report .cascade-intro {
  background: linear-gradient(135deg, #f8fafc 0%, #f0f7ff 100%) !important;
  padding: 28px !important;
  border-left: 5px solid #FFD700 !important;
  border-radius: 0 12px 12px 0 !important;
  margin-bottom: 32px !important;
}

#antah-report .cascade-intro p {
  font-size: 1.05em !important;
  line-height: 1.7 !important;
  color: #26366B !important;
  margin-bottom: 14px !important;
}

#antah-report .cascade-intro p:last-child {
  margin-bottom: 0 !important;
}

#antah-report .cascade-intro strong {
  color: #26366B !important;
  font-weight: 700 !important;
}

/* ---------------------------------------------
   PATTERN OVERVIEW
   --------------------------------------------- */
#antah-report .cascade-pattern-overview {
  text-align: center !important;
  padding: 24px !important;
  background: #ffffff !important;
  border: 2px solid #e5e7eb !important;
  border-radius: 12px !important;
  margin-bottom: 32px !important;
}

#antah-report .pattern-badge {
  display: inline-block !important;
  padding: 10px 24px !important;
  border-radius: 24px !important;
  font-weight: 700 !important;
  font-size: 1em !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  margin-bottom: 12px !important;
}

#antah-report .pattern-single_blocker {
  background: #fff5f5 !important;
  color: #c53030 !important;
  border: 2px solid #fc8181 !important;
}

#antah-report .pattern-multiple_blockers {
  background: #fffaf0 !important;
  color: #c05621 !important;
  border: 2px solid #fbd38d !important;
}

#antah-report .pattern-thriving {
  background: #f0fff4 !important;
  color: #276749 !important;
  border: 2px solid #9ae6b4 !important;
}

#antah-report .pattern-independent_struggles,
#antah-report .pattern-mixed {
  background: #ebf8ff !important;
  color: #2b6cb0 !important;
  border: 2px solid #90cdf4 !important;
}

#antah-report .pattern-description {
  font-size: 1em !important;
  line-height: 1.6 !important;
  color: #4a5568 !important;
  max-width: 700px !important;
  margin: 0 auto !important;
}

/* ---------------------------------------------
   PRIMARY BLOCKER SECTION
   --------------------------------------------- */
#antah-report .primary-blocker-section {
  background: #fff5f5 !important;
  border: 3px solid #F38181 !important;
  border-radius: 16px !important;
  padding: 32px !important;
  margin-bottom: 32px !important;
}

#antah-report .blocker-header {
  text-align: center !important;
  margin-bottom: 24px !important;
}

#antah-report .blocker-alert-icon {
  font-size: 3em !important;
  display: block !important;
  margin-bottom: 12px !important;
}

#antah-report .blocker-header h3 {
  font-size: 1.5em !important;
  color: #26366B !important;
  font-weight: 700 !important;
  margin-bottom: 8px !important;
}

#antah-report .blocker-subtitle {
  font-size: 1em !important;
  color: #64748B !important;
}

#antah-report .blocker-card {
  background: #ffffff !important;
  border-radius: 12px !important;
  padding: 28px !important;
  border-left: 6px solid #F38181 !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06) !important;
}

#antah-report .blocker-info {
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
  margin-bottom: 20px !important;
  padding-bottom: 20px !important;
  border-bottom: 2px solid #f0f0f0 !important;
}

#antah-report .blocker-icon {
  font-size: 3em !important;
  flex-shrink: 0 !important;
}

#antah-report .blocker-details {
  flex: 1 !important;
}

#antah-report .blocker-details h4 {
  font-size: 1.4em !important;
  color: #26366B !important;
  font-weight: 700 !important;
  margin-bottom: 6px !important;
}

#antah-report .blocker-score {
  font-size: 1.1em !important;
  color: #F38181 !important;
}

#antah-report .blocker-score strong {
  font-weight: 700 !important;
}

#antah-report .blocker-impact {
  text-align: center !important;
  background: #26366B !important;
  color: #ffffff !important;
  padding: 16px 20px !important;
  border-radius: 12px !important;
  flex-shrink: 0 !important;
}

#antah-report .impact-number {
  display: block !important;
  font-size: 2.2em !important;
  font-weight: 700 !important;
  color: #FFD700 !important;
  line-height: 1 !important;
}

#antah-report .impact-label {
  display: block !important;
  font-size: 0.85em !important;
  margin-top: 4px !important;
}

#antah-report .blocker-explanation {
  padding-top: 16px !important;
}

#antah-report .blocker-explanation p {
  font-size: 1em !important;
  line-height: 1.7 !important;
  color: #4a5568 !important;
}

/* ---------------------------------------------
   CASCADE CHAIN VISUALIZATION
   --------------------------------------------- */
#antah-report .cascade-chain {
  margin-top: 32px !important;
}

#antah-report .chain-title {
  font-size: 1.2em !important;
  color: #26366B !important;
  font-weight: 700 !important;
  margin-bottom: 20px !important;
  text-align: center !important;
}

#antah-report .cascade-link {
  margin-bottom: 20px !important;
}

#antah-report .cascade-arrow {
  text-align: center !important;
  padding: 12px 0 !important;
}

#antah-report .arrow-line {
  width: 4px !important;
  height: 28px !important;
  background: linear-gradient(to bottom, #FFD700, #F38181) !important;
  margin: 0 auto !important;
  border-radius: 2px !important;
}

#antah-report .arrow-head {
  font-size: 1.8em !important;
  color: #F38181 !important;
  line-height: 0.6 !important;
  margin-top: -4px !important;
}

#antah-report .affected-card {
  background: #ffffff !important;
  border: 2px solid #e5e7eb !important;
  border-radius: 12px !important;
  padding: 24px !important;
  position: relative !important;
}

#antah-report .affected-card.strong-cascade {
  border-color: #F38181 !important;
  border-width: 3px !important;
  box-shadow: 0 4px 16px rgba(243, 129, 129, 0.15) !important;
}

#antah-report .affected-card.moderate-cascade {
  border-color: #FFD700 !important;
  border-width: 2px !important;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.15) !important;
}

#antah-report .cascade-strength-badge {
  position: absolute !important;
  top: -14px !important;
  right: 24px !important;
  padding: 6px 16px !important;
  border-radius: 20px !important;
  font-size: 0.75em !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.03em !important;
}

#antah-report .strong-cascade .cascade-strength-badge {
  background: #F38181 !important;
  color: #ffffff !important;
}

#antah-report .moderate-cascade .cascade-strength-badge {
  background: #FFD700 !important;
  color: #26366B !important;
}

#antah-report .affected-header {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  margin-bottom: 20px !important;
  padding-bottom: 16px !important;
  border-bottom: 2px solid #f0f0f0 !important;
}

#antah-report .affected-icon {
  font-size: 2.2em !important;
  flex-shrink: 0 !important;
}

#antah-report .affected-info {
  flex: 1 !important;
}

#antah-report .affected-info h5 {
  font-size: 1.15em !important;
  color: #26366B !important;
  font-weight: 700 !important;
  margin-bottom: 4px !important;
}

#antah-report .affected-score {
  font-size: 1em !important;
  font-weight: 700 !important;
  color: #64748B !important;
}

#antah-report .cascade-mechanism {
  background: #f8fafc !important;
  padding: 18px !important;
  border-radius: 10px !important;
  margin-bottom: 20px !important;
}

#antah-report .cascade-mechanism h6 {
  font-size: 0.95em !important;
  color: #26366B !important;
  font-weight: 700 !important;
  margin-bottom: 10px !important;
}

#antah-report .cascade-mechanism p {
  font-size: 0.95em !important;
  line-height: 1.7 !important;
  color: #4a5568 !important;
}

/* Improvement Potential Bar */
#antah-report .improvement-potential h6 {
  font-size: 0.95em !important;
  color: #26366B !important;
  font-weight: 700 !important;
  margin-bottom: 12px !important;
}

#antah-report .potential-bar-container {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  margin-bottom: 12px !important;
}

#antah-report .potential-bar {
  flex: 1 !important;
  height: 32px !important;
  background: #e2e8f0 !important;
  border-radius: 16px !important;
  overflow: hidden !important;
}

#antah-report .potential-fill {
  height: 100% !important;
  border-radius: 16px !important;
  transition: width 0.8s ease !important;
}

#antah-report .potential-label {
  font-size: 1.3em !important;
  font-weight: 700 !important;
  color: #26366B !important;
  min-width: 50px !important;
}

#antah-report .potential-explanation {
  font-size: 0.9em !important;
  line-height: 1.6 !important;
  color: #4a5568 !important;
}

/* ---------------------------------------------
   STRATEGY SECTION
   --------------------------------------------- */
#antah-report .cascade-strategy-section {
  background: #f8fafc !important;
  border-radius: 16px !important;
  padding: 32px !important;
  margin-bottom: 32px !important;
}

#antah-report .cascade-strategy-section > h3 {
  font-size: 1.4em !important;
  color: #26366B !important;
  font-weight: 700 !important;
  margin-bottom: 24px !important;
  text-align: center !important;
}

#antah-report .strategy-comparison {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 24px !important;
  margin-bottom: 32px !important;
}

#antah-report .strategy-box {
  padding: 24px !important;
  border-radius: 12px !important;
}

#antah-report .strategy-wrong {
  background: #fff5f5 !important;
  border-left: 5px solid #F38181 !important;
}

#antah-report .strategy-right {
  background: #f0fff4 !important;
  border-left: 5px solid #48bb78 !important;
}

#antah-report .strategy-box h4 {
  font-size: 1.1em !important;
  color: #26366B !important;
  font-weight: 700 !important;
  margin-bottom: 14px !important;
}

#antah-report .strategy-box > p {
  font-size: 0.95em !important;
  line-height: 1.6 !important;
  color: #4a5568 !important;
  margin-bottom: 12px !important;
}

#antah-report .strategy-reason {
  font-size: 0.9em !important;
  color: #718096 !important;
  font-style: italic !important;
}

#antah-report .strategy-phase {
  display: flex !important;
  gap: 16px !important;
  margin-bottom: 20px !important;
  padding-bottom: 20px !important;
  border-bottom: 1px solid #c6f6d5 !important;
}

#antah-report .strategy-phase:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  border-bottom: none !important;
}

#antah-report .phase-marker {
  background: #48bb78 !important;
  color: #ffffff !important;
  padding: 8px 14px !important;
  border-radius: 8px !important;
  font-size: 0.85em !important;
  font-weight: 700 !important;
  white-space: nowrap !important;
  height: fit-content !important;
}

#antah-report .phase-content {
  flex: 1 !important;
}

#antah-report .phase-content strong {
  display: block !important;
  color: #26366B !important;
  margin-bottom: 8px !important;
}

#antah-report .phase-content ul {
  margin: 10px 0 0 20px !important;
  list-style: disc outside !important;
}

#antah-report .phase-content li {
  font-size: 0.9em !important;
  line-height: 1.5 !important;
  color: #4a5568 !important;
  margin-bottom: 6px !important;
  list-style: disc outside !important;
}

#antah-report .phase-content p {
  font-size: 0.9em !important;
  line-height: 1.6 !important;
  color: #4a5568 !important;
}

/* Expected Results Grid */
#antah-report .expected-results {
  background: #ffffff !important;
  border-radius: 12px !important;
  padding: 24px !important;
  border: 2px solid #e5e7eb !important;
}

#antah-report .expected-results h4 {
  font-size: 1.15em !important;
  color: #26366B !important;
  font-weight: 700 !important;
  margin-bottom: 20px !important;
  text-align: center !important;
}

#antah-report .results-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
  gap: 16px !important;
}

#antah-report .result-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  padding: 18px !important;
  border-radius: 10px !important;
  background: #f8fafc !important;
}

#antah-report .result-item.result-direct {
  background: #f0fff4 !important;
  border: 2px solid #9ae6b4 !important;
}

#antah-report .result-item.result-cascade {
  background: #fef9e7 !important;
  border: 2px solid #fbd38d !important;
}

#antah-report .result-icon {
  font-size: 2em !important;
  margin-bottom: 8px !important;
}

#antah-report .result-pillar {
  font-size: 0.9em !important;
  font-weight: 600 !important;
  color: #26366B !important;
  margin-bottom: 8px !important;
}

#antah-report .result-change {
  font-size: 1.1em !important;
  color: #4a5568 !important;
  margin-bottom: 6px !important;
}

#antah-report .result-change strong {
  color: #48bb78 !important;
}

#antah-report .result-type {
  font-size: 0.8em !important;
  color: #718096 !important;
  font-style: italic !important;
}

/* ---------------------------------------------
   DOWNSTREAM SYMPTOMS SECTION
   --------------------------------------------- */
#antah-report .downstream-section {
  background: #fffaf0 !important;
  border: 2px solid #fbd38d !important;
  border-radius: 16px !important;
  padding: 28px !important;
  margin-bottom: 32px !important;
}

#antah-report .downstream-section > h3 {
  font-size: 1.3em !important;
  color: #26366B !important;
  font-weight: 700 !important;
  margin-bottom: 12px !important;
}

#antah-report .downstream-section > p {
  font-size: 1em !important;
  line-height: 1.6 !important;
  color: #4a5568 !important;
  margin-bottom: 20px !important;
}

#antah-report .symptom-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 20px !important;
}

#antah-report .symptom-card {
  background: #ffffff !important;
  border: 2px solid #e5e7eb !important;
  border-radius: 12px !important;
  padding: 20px !important;
}

#antah-report .symptom-header {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin-bottom: 16px !important;
  padding-bottom: 14px !important;
  border-bottom: 2px solid #f0f0f0 !important;
}

#antah-report .symptom-icon {
  font-size: 1.8em !important;
}

#antah-report .symptom-header h5 {
  flex: 1 !important;
  font-size: 1em !important;
  color: #26366B !important;
  font-weight: 700 !important;
}

#antah-report .symptom-score {
  font-weight: 700 !important;
  color: #64748B !important;
}

#antah-report .symptom-causes p {
  font-size: 0.9em !important;
  color: #26366B !important;
  margin-bottom: 8px !important;
}

#antah-report .symptom-causes ul {
  list-style: none !important;
}

#antah-report .symptom-causes li {
  background: #f8fafc !important;
  padding: 10px 12px !important;
  border-radius: 8px !important;
  margin-bottom: 8px !important;
  font-size: 0.9em !important;
  color: #4a5568 !important;
  list-style: none !important;
}

#antah-report .cause-strength {
  display: inline-block !important;
  padding: 3px 10px !important;
  border-radius: 12px !important;
  font-size: 0.75em !important;
  font-weight: 700 !important;
  background: #fbd38d !important;
  color: #744210 !important;
  margin-left: 8px !important;
  text-transform: capitalize !important;
}

#antah-report .symptom-advice {
  background: #fef9e7 !important;
  padding: 14px !important;
  border-radius: 8px !important;
  margin-top: 16px !important;
  font-size: 0.9em !important;
  line-height: 1.5 !important;
  color: #744210 !important;
  border-left: 4px solid #fbd38d !important;
}

/* ---------------------------------------------
   NO CASCADE SECTION
   --------------------------------------------- */
#antah-report .no-cascade-section {
  background: #f0fff4 !important;
  border: 2px solid #9ae6b4 !important;
  border-radius: 16px !important;
  padding: 28px !important;
  margin-bottom: 32px !important;
}

#antah-report .no-cascade-section > h3 {
  font-size: 1.3em !important;
  color: #26366B !important;
  font-weight: 700 !important;
  margin-bottom: 16px !important;
}

#antah-report .no-cascade-section > p {
  font-size: 1em !important;
  line-height: 1.6 !important;
  color: #4a5568 !important;
  margin-bottom: 16px !important;
}

#antah-report .no-cascade-list {
  margin: 16px 0 24px 24px !important;
  list-style: disc outside !important;
}

#antah-report .no-cascade-list li {
  font-size: 1em !important;
  line-height: 1.6 !important;
  color: #4a5568 !important;
  margin-bottom: 10px !important;
  list-style: disc outside !important;
}

#antah-report .no-cascade-strategy {
  background: #ffffff !important;
  padding: 20px !important;
  border-radius: 12px !important;
  border-left: 4px solid #48bb78 !important;
}

#antah-report .no-cascade-strategy h4 {
  font-size: 1.1em !important;
  color: #26366B !important;
  font-weight: 700 !important;
  margin-bottom: 12px !important;
}

#antah-report .no-cascade-strategy p {
  font-size: 0.95em !important;
  line-height: 1.6 !important;
  color: #4a5568 !important;
  margin-bottom: 10px !important;
}

#antah-report .no-cascade-strategy p:last-child {
  margin-bottom: 0 !important;
}

/* ---------------------------------------------
   TIMELINE SECTION
   --------------------------------------------- */
#antah-report .cascade-timeline-section {
  background: #ebf8ff !important;
  border: 2px solid #90cdf4 !important;
  border-radius: 16px !important;
  padding: 28px !important;
}

#antah-report .cascade-timeline-section > h3 {
  font-size: 1.3em !important;
  color: #26366B !important;
  font-weight: 700 !important;
  margin-bottom: 12px !important;
}

#antah-report .cascade-timeline-section > p {
  font-size: 1em !important;
  line-height: 1.6 !important;
  color: #4a5568 !important;
  margin-bottom: 24px !important;
}

#antah-report .timeline-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
}

#antah-report .timeline-item {
  background: #ffffff !important;
  padding: 20px !important;
  border-radius: 12px !important;
  border-left: 4px solid #4299e1 !important;
}

#antah-report .timeline-marker {
  font-size: 1.1em !important;
  font-weight: 700 !important;
  color: #4299e1 !important;
  margin-bottom: 10px !important;
}

#antah-report .timeline-item h5 {
  font-size: 1em !important;
  color: #26366B !important;
  font-weight: 700 !important;
  margin-bottom: 8px !important;
}

#antah-report .timeline-item p {
  font-size: 0.9em !important;
  line-height: 1.5 !important;
  color: #4a5568 !important;
}

/* ---------------------------------------------
   RESPONSIVE: TABLET (768px - 1024px)
   --------------------------------------------- */
@media (min-width: 768px) and (max-width: 1024px) {
  #antah-report .strategy-comparison {
    grid-template-columns: 1fr !important;
  }
  
  #antah-report .blocker-info {
    flex-wrap: wrap !important;
  }
  
  #antah-report .blocker-impact {
    width: 100% !important;
    margin-top: 16px !important;
  }
  
  #antah-report .timeline-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ---------------------------------------------
   RESPONSIVE: MOBILE (≤ 767px)
   --------------------------------------------- */
@media (max-width: 767px) {
  #antah-report .page-cascade-map {
    padding: 24px 18px !important;
  }
  
  #antah-report .cascade-intro {
    padding: 20px !important;
  }
  
  #antah-report .primary-blocker-section {
    padding: 20px !important;
  }
  
  #antah-report .blocker-card {
    padding: 20px !important;
  }
  
  #antah-report .blocker-info {
    flex-direction: column !important;
    text-align: center !important;
  }
  
  #antah-report .blocker-impact {
    width: 100% !important;
  }
  
  #antah-report .affected-header {
    flex-direction: column !important;
    text-align: center !important;
  }
  
  #antah-report .potential-bar-container {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  
  #antah-report .potential-label {
    text-align: center !important;
  }
  
  #antah-report .strategy-comparison {
    grid-template-columns: 1fr !important;
  }
  
  #antah-report .strategy-phase {
    flex-direction: column !important;
  }
  
  #antah-report .phase-marker {
    align-self: flex-start !important;
  }
  
  #antah-report .results-grid {
    grid-template-columns: 1fr !important;
  }
  
  #antah-report .symptom-grid {
    grid-template-columns: 1fr !important;
  }
  
  #antah-report .timeline-grid {
    grid-template-columns: 1fr !important;
  }
  
  #antah-report .cascade-strategy-section {
    padding: 20px !important;
  }
}

/* ---------------------------------------------
   PRINT STYLES
   --------------------------------------------- */
@media print {
  #antah-report .page-cascade-map {
    page-break-before: always !important;
  }
  
  #antah-report .primary-blocker-section {
    background: #fff5f5 !important;
    print-color-adjust: exact !important;
    -webkit-print-color-adjust: exact !important;
  }
  
  #antah-report .cascade-strength-badge {
    print-color-adjust: exact !important;
    -webkit-print-color-adjust: exact !important;
  }
  
  #antah-report .potential-fill {
    print-color-adjust: exact !important;
    -webkit-print-color-adjust: exact !important;
  }
  
  #antah-report .cascade-chain {
    page-break-inside: avoid !important;
  }
  
  #antah-report .strategy-comparison {
    page-break-inside: avoid !important;
  }
}

/* ============================================================
   VICIOUS CYCLE SECTION - ENHANCEMENT
   ============================================================ */

#antah-report .vicious-cycle-section {
  background: linear-gradient(135deg, #fef2f2 0%, #fff5f5 100%) !important;
  border: 3px solid #e53e3e !important;
  border-radius: 16px !important;
  padding: 32px !important;
  margin-bottom: 32px !important;
}

#antah-report .cycle-header {
  text-align: center !important;
  margin-bottom: 28px !important;
}

#antah-report .cycle-alert-icon {
  font-size: 3em !important;
  display: block !important;
  margin-bottom: 12px !important;
}

#antah-report .cycle-header h3 {
  font-size: 1.5em !important;
  color: #c53030 !important;
  font-weight: 700 !important;
  margin-bottom: 8px !important;
}

#antah-report .cycle-subtitle {
  font-size: 1em !important;
  color: #742a2a !important;
}

#antah-report .cycle-card {
  background: #ffffff !important;
  border-radius: 12px !important;
  padding: 28px !important;
  position: relative !important;
  border: 2px solid #feb2b2 !important;
}

#antah-report .cycle-card.cycle-critical {
  border-color: #e53e3e !important;
  border-width: 3px !important;
}

#antah-report .cycle-type-badge {
  position: absolute !important;
  top: -14px !important;
  left: 24px !important;
  padding: 6px 16px !important;
  border-radius: 20px !important;
  font-size: 0.8em !important;
  font-weight: 700 !important;
  background: #e53e3e !important;
  color: #ffffff !important;
}

#antah-report .cycle-visual {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 24px !important;
  margin: 24px 0 !important;
  padding: 20px !important;
  background: #f7fafc !important;
  border-radius: 12px !important;
}

#antah-report .cycle-pillar {
  text-align: center !important;
  padding: 20px 28px !important;
  background: #ffffff !important;
  border-radius: 12px !important;
  border: 3px solid #e2e8f0 !important;
  min-width: 140px !important;
}

#antah-report .cycle-pillar-icon {
  font-size: 2.5em !important;
  display: block !important;
  margin-bottom: 8px !important;
}

#antah-report .cycle-pillar h4 {
  font-size: 1.1em !important;
  color: #26366B !important;
  font-weight: 700 !important;
  margin-bottom: 6px !important;
}

#antah-report .cycle-pillar-score {
  font-size: 1em !important;
  font-weight: 700 !important;
  color: #e53e3e !important;
}

#antah-report .cycle-arrows {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 2em !important;
  color: #e53e3e !important;
}

#antah-report .cycle-mechanisms {
  margin: 24px 0 !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 16px !important;
}

#antah-report .mechanism-item {
  background: #f7fafc !important;
  padding: 16px !important;
  border-radius: 10px !important;
  border-left: 4px solid #e53e3e !important;
}

#antah-report .mechanism-item strong {
  display: block !important;
  color: #26366B !important;
  margin-bottom: 8px !important;
  font-size: 0.9em !important;
}

#antah-report .mechanism-item p {
  font-size: 0.9em !important;
  line-height: 1.6 !important;
  color: #4a5568 !important;
}

#antah-report .cycle-strategy {
  background: #f0fff4 !important;
  padding: 20px !important;
  border-radius: 10px !important;
  border-left: 4px solid #48bb78 !important;
  margin-top: 20px !important;
}

#antah-report .cycle-strategy h5 {
  font-size: 1.1em !important;
  color: #26366B !important;
  font-weight: 700 !important;
  margin-bottom: 12px !important;
}

#antah-report .cycle-strategy ul {
  margin: 12px 0 0 20px !important;
  list-style: disc outside !important;
}

#antah-report .cycle-strategy li {
  font-size: 0.9em !important;
  line-height: 1.5 !important;
  margin-bottom: 8px !important;
}

#antah-report .additional-cycles-note {
  margin-top: 16px !important;
  font-size: 0.9em !important;
  color: #718096 !important;
  text-align: center !important;
}

#antah-report .pattern-vicious_cycle {
  background: #fed7d7 !important;
  color: #c53030 !important;
  border: 2px solid #fc8181 !important;
}

/* Responsive: Vicious Cycles */
@media (max-width: 767px) {
  #antah-report .cycle-visual {
    flex-direction: column !important;
  }
  
  #antah-report .cycle-arrows {
    flex-direction: row !important;
    transform: rotate(90deg) !important;
  }
  
  #antah-report .cycle-mechanisms {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================
   ICI UPGRADE v2.0 - NEW STYLES
   Add this to the END of your aeci-advanced-features.css file
   ============================================ */

/* ========================================
   SAFE CHANGE LOAD BOX (Executive Signal)
   ======================================== */
.ici-safe-load-box {
    border-radius: 12px;
    padding: 25px 30px;
    margin-bottom: 35px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.safe-load-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 15px;
}

.safe-load-title {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.safe-load-icon {
    font-size: 2.5em;
    line-height: 1;
}

.safe-load-text h3 {
    margin: 0 0 5px 0;
    font-size: 1.3em;
    font-weight: 700;
    color: #26366B;
}

.safe-load-subtitle {
    margin: 0;
    font-size: 1em;
    color: #64748B;
}

.safe-load-subtitle strong {
    color: #26366B;
}

.safe-load-percentage {
    font-size: 2.8em;
    font-weight: 800;
    line-height: 1;
}

.safe-load-message {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #334155;
}

/* ========================================
   BEHAVIORAL DRIVERS GRID (Replaces old habit grid)
   ======================================== */
.ici-driver-card {
    background: #FFFFFF;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 18px 20px;
    transition: all 0.2s ease;
}

.ici-driver-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Strength Card */
.ici-driver-strength {
    background: linear-gradient(135deg, #f0fff4 0%, #e8f5e9 100%);
    border-color: #4ECDC4;
}

/* Gap Card */
.ici-driver-gap {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-color: #cbd5e1;
}

/* Veto Factor Card (Action Initiation Gap) */
.ici-driver-veto {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%) !important;
    border-color: #ef4444 !important;
    border-width: 2px;
}

.ici-driver-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.ici-driver-label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ici-driver-emoji {
    font-size: 1.4em;
}

.ici-driver-label h4 {
    margin: 0;
    font-size: 1em;
    font-weight: 600;
    color: #334155;
}

/* Status Labels */
.ici-driver-status {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 20px;
}

.status-strength {
    background: #d1fae5;
    color: #059669;
}

.status-gap {
    background: #f1f5f9;
    color: #64748b;
}

.ici-driver-veto .status-gap {
    background: #fecaca;
    color: #dc2626;
}

/* Progress Bar */
.ici-driver-progress {
    margin-bottom: 10px;
}

.ici-progress-track {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.ici-progress-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.5s ease;
}

/* Driver Insight Text */
.ici-driver-insight {
    font-size: 0.85rem;
    line-height: 1.5;
}

.insight-positive {
    color: #059669;
}

.insight-gap {
    color: #64748b;
}

.insight-veto {
    color: #dc2626;
}

.insight-veto strong {
    color: #b91c1c;
}

/* ========================================
   VETO FACTOR ALERT BOX
   ======================================== */
.ici-veto-alert {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 2px solid #fca5a5;
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 25px;
}

.veto-alert-icon {
    font-size: 2em;
    flex-shrink: 0;
}

.veto-alert-content h4 {
    margin: 0 0 8px 0;
    font-size: 1.1em;
    font-weight: 700;
    color: #b91c1c;
}

.veto-alert-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #7f1d1d;
}

/* ========================================
   RESPONSIVE STYLES - ICI v2.0
   ======================================== */

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
    .ici-safe-load-box {
        padding: 22px 25px;
    }
    
    .safe-load-icon {
        font-size: 2.2em;
    }
    
    .safe-load-text h3 {
        font-size: 1.2em;
    }
    
    .safe-load-percentage {
        font-size: 2.4em;
    }
    
    .ici-veto-alert {
        padding: 18px 20px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .ici-safe-load-box {
        padding: 20px;
        border-left-width: 4px;
    }
    
    .safe-load-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .safe-load-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .safe-load-icon {
        font-size: 2em;
    }
    
    .safe-load-text h3 {
        font-size: 1.1em;
    }
    
    .safe-load-percentage {
        font-size: 2.2em;
        align-self: flex-end;
    }
    
    .safe-load-message {
        font-size: 14px;
    }
    
    .ici-driver-card {
        padding: 15px;
    }
    
    .ici-driver-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .ici-driver-status {
        font-size: 0.7rem;
    }
    
    .ici-veto-alert {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
    }
    
    .veto-alert-icon {
        font-size: 1.6em;
    }
    
    .veto-alert-content h4 {
        font-size: 1em;
    }
    
    .veto-alert-content p {
        font-size: 0.9rem;
    }
    
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .ici-safe-load-box {
        padding: 16px;
    }
    
    .safe-load-text h3 {
        font-size: 1em;
    }
    
    .safe-load-subtitle {
        font-size: 0.9em;
    }
    
    .safe-load-percentage {
        font-size: 1.8em;
    }
    
    .ici-driver-emoji {
        font-size: 1.2em;
    }
    
    .ici-driver-label h4 {
        font-size: 0.95em;
    }
}

/* Print Styles - ICI v2.0 */
@media print {
    .ici-safe-load-box {
        border: 2px solid #000 !important;
        background: #f5f5f5 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    
    .ici-veto-alert {
        border: 2px solid #dc2626 !important;
        background: #fef2f2 !important;
    }
    
}