/* ULTRA vCISO SPECIFIC STYLES */

/* === Hero Visual: The Strategic Command Table === */
.strategy-visual-container {
    position: relative;
    height: 550px;
    perspective: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.strategy-board {
    width: 100%;
    max-width: 600px;
    height: 400px;
    background: rgba(10, 25, 47, 0.6);
    border: 1px solid rgba(100, 255, 218, 0.2);
    border-radius: 12px;
    transform: rotateX(35deg) rotateZ(-10deg);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.strategy-grid-floor {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(100, 255, 218, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(100, 255, 218, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Holographic Pieces */
.holo-piece {
    position: absolute;
    width: 40px;
    height: 40px;
    transform-style: preserve-3d;
}

.piece-base {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(100, 255, 218, 0.1);
    border: 1px solid var(--accent-primary);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(100, 255, 218, 0.2);
    animation: pulseBase 3s infinite;
}

.piece-hologram {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 60px;
    background: linear-gradient(to top, var(--accent-primary), transparent);
    opacity: 0.7;
}

.piece-icon {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: var(--accent-primary);
    text-shadow: 0 0 10px var(--accent-primary);
    animation: floatPiece 3s ease-in-out infinite;
}

@keyframes pulseBase {
    0%, 100% { box-shadow: 0 0 15px rgba(100, 255, 218, 0.2); border-color: var(--accent-primary); }
    50% { box-shadow: 0 0 25px rgba(100, 255, 218, 0.4); border-color: #fff; }
}

@keyframes floatPiece {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Connection Lines */
.conn-line {
    position: absolute;
    background: var(--accent-secondary);
    height: 2px;
    opacity: 0.3;
    transform-origin: 0 50%;
    box-shadow: 0 0 5px var(--accent-secondary);
}

/* === Board Report Card === */
.board-report-card {
    position: absolute;
    top: 10%;
    right: -5%;
    width: 280px;
    background: rgba(2, 12, 27, 0.95);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 1.5rem;
    transform: translateZ(100px); /* Pop out */
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.report-header {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.risk-meter {
    margin-top: 1rem;
}

.meter-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
}

.meter-bar-bg {
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
}

.meter-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    width: 0;
    animation: fillMeter 2s ease-out forwards;
}

@keyframes fillMeter { to { width: 75%; } }

/* === Executive Profile Cards === */
.exec-card {
    position: relative;
    overflow: hidden;
}

.exec-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
    background: var(--accent-primary);
    opacity: 0.5;
    transition: opacity 0.3s;
}

.exec-card:hover::before { opacity: 1; }

.exec-role {
    font-family: var(--font-mono);
    color: var(--accent-primary);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    display: block;
}

/* === Governance Framework Grid === */
.framework-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.framework-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-light);
    padding: 1.5rem;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s;
}

.framework-item:hover {
    background: rgba(100, 255, 218, 0.05);
    border-color: var(--accent-primary);
    transform: translateY(-3px);
}

.framework-icon {
    font-size: 2rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.framework-item:hover .framework-icon { color: var(--accent-primary); }
