/* ==========================================================================
   PERIMETER SECURITY - PROFESSIONAL CORPORATE EXECUTIVE THEME
   Tailored for Project Managers, Officers, and Staff
   ========================================================================== */

:root {
    --bg-main: #0b1120;
    --bg-surface: #111c33;
    --bg-card: rgba(17, 28, 51, 0.88);
    --bg-card-hover: rgba(26, 41, 74, 0.95);
    --bg-input: rgba(13, 21, 38, 0.9);
    
    --primary: #2563eb;
    --primary-light: #3b82f6;
    --primary-glow: rgba(37, 99, 235, 0.25);
    
    --cyan: #38bdf8;
    --cyan-dim: #0284c7;
    --cyan-glow: rgba(56, 189, 248, 0.2);
    --cyan-glow-intense: rgba(56, 189, 248, 0.4);
    
    --emerald: #10b981;
    --emerald-dim: #059669;
    --emerald-glow: rgba(16, 185, 129, 0.2);
    
    --crimson: #f43f5e;
    --crimson-glow: rgba(244, 63, 94, 0.25);
    
    --amber: #f59e0b;
    --amber-glow: rgba(245, 158, 11, 0.2);
    
    --purple: #8b5cf6;
    --purple-glow: rgba(139, 92, 246, 0.2);
    
    --text-pure: #ffffff;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    --border-card: rgba(255, 255, 255, 0.1);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --radius-lg: 14px;
    --radius-md: 10px;
    --radius-sm: 6px;
    
    --font-heading: 'Plus Jakarta Sans', -apple-system, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    --transition-smooth: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Setup */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    height: 100%;
    height: 100dvh;
    overflow: hidden;
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Professional Ambient Backdrop */
.ambient-gradient-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background: 
        radial-gradient(circle at 12% 15%, rgba(37, 99, 235, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 88% 85%, rgba(16, 185, 129, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(11, 17, 32, 0.5) 0%, transparent 80%);
}

.subtle-mesh-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.25;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 32px 32px;
}

/* Container Structure: Strict 100dvh Vertical Flex System */
.cyber-app-container {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* ==========================================================================
   TOP EXECUTIVE NAVIGATION BAR
   ========================================================================== */
.cyber-hud {
    position: relative;
    flex-shrink: 0;
    width: 100%;
    height: 64px;
    background: rgba(11, 17, 32, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-card);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    z-index: 100;
}

.hud-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.hud-logo-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
}

.hud-logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
    color: var(--text-pure);
}

.hud-logo-text .subbrand {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.92rem;
}

.hud-logo-text span {
    color: var(--cyan);
    text-shadow: 0 0 10px var(--cyan-glow);
}

.hud-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(0, 255, 157, 0.1);
    border: 1px solid rgba(0, 255, 157, 0.3);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--emerald);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-dot-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--emerald);
    box-shadow: 0 0 8px var(--emerald);
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
}

.hud-center-progress {
    display: flex;
    align-items: center;
    gap: 14px;
}

.progress-track {
    width: 220px;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    overflow: hidden;
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    width: 12.5%;
    background: linear-gradient(90deg, var(--cyan) 0%, var(--emerald) 100%);
    border-radius: 999px;
    box-shadow: 0 0 10px var(--cyan-glow);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.progress-counter {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--cyan);
    font-weight: 600;
}

.progress-counter .total {
    color: var(--text-muted);
}

.hud-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hud-btn {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    padding: 8px 14px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.hud-btn:hover {
    color: var(--text-pure);
    border-color: var(--cyan);
    background: rgba(0, 240, 255, 0.1);
    box-shadow: 0 0 12px var(--cyan-glow);
}

.hud-btn.active {
    color: var(--cyan);
    border-color: var(--cyan);
}

/* ==========================================================================
   SLIDE VIEWER & STAGE (ZERO-SCROLL VIEWPORT SYSTEM)
   ========================================================================== */
.slide-stage {
    flex: 1;
    min-height: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    position: relative;
    overflow: hidden;
}

.slide-deck {
    width: 100%;
    max-width: 1040px;
    height: 100%;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slide-screen {
    display: none;
    width: 100%;
    max-height: 100%;
    opacity: 0;
    transform: translateY(16px) scale(0.99);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-screen.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: slideEnter 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideEnter {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Generic Screen Header */
.screen-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.25);
    margin-bottom: 12px;
}

.screen-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-pure);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.screen-title span.highlight {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--emerald) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.screen-subtitle {
    font-size: clamp(0.85rem, 2vw, 1.05rem);
    line-height: 1.5;
    color: var(--text-secondary);
    max-width: 780px;
    margin-bottom: 20px;
}

/* Glass Card */
.glass-panel {
    width: 100%;
    max-height: 100%;
    overflow-y: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.glass-panel::-webkit-scrollbar {
    display: none;
}

.glass-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    opacity: 0.6;
}

/* ==========================================================================
   SLIDE 1: SECURE OUR PERIMETER (HOME / WELCOME)
   ========================================================================== */
.slide-welcome-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
}

.welcome-info {
    padding-right: 12px;
}

.perimeter-radar-box {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 420px;
    margin: 0 auto;
    border-radius: 50%;
    border: 1px solid rgba(0, 240, 255, 0.25);
    background: radial-gradient(circle, rgba(0, 240, 255, 0.05) 0%, rgba(5, 7, 15, 0.8) 75%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px rgba(0, 240, 255, 0.15), inset 0 0 30px rgba(0, 240, 255, 0.08);
}

.radar-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(0, 240, 255, 0.2);
}

.ring-1 { width: 33%; height: 33%; }
.ring-2 { width: 66%; height: 66%; }
.ring-3 { width: 100%; height: 100%; border-style: solid; border-color: rgba(0, 240, 255, 0.4); }

.radar-crosshair-x, .radar-crosshair-y {
    position: absolute;
    background: rgba(0, 240, 255, 0.15);
}
.radar-crosshair-x { width: 100%; height: 1px; }
.radar-crosshair-y { width: 1px; height: 100%; }

.radar-sweep-hand {
    position: absolute;
    width: 50%;
    height: 50%;
    top: 0;
    right: 0;
    transform-origin: 0% 100%;
    background: conic-gradient(from 180deg at 0% 100%, rgba(0, 240, 255, 0.45) 0deg, rgba(0, 240, 255, 0) 55deg);
    border-radius: 100% 0 0 0;
    animation: radarSweep 4s linear infinite;
}

@keyframes radarSweep {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.radar-center-shield {
    position: relative;
    z-index: 5;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.3), rgba(0, 255, 157, 0.3));
    border: 2px solid var(--cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-pure);
    box-shadow: 0 0 25px var(--cyan-glow);
}

.radar-blip {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--crimson);
    box-shadow: 0 0 10px var(--crimson);
    animation: blipGlow 1.8s infinite alternate;
}

.blip-1 { top: 22%; left: 70%; animation-delay: 0.3s; }
.blip-2 { top: 68%; left: 25%; animation-delay: 0.9s; }
.blip-3 { top: 78%; left: 65%; animation-delay: 1.4s; }

@keyframes blipGlow {
    0% { opacity: 0.3; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1.3); }
}

.welcome-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
    margin-bottom: 28px;
}

.metric-pill {
    background: rgba(10, 16, 31, 0.7);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 14px;
    text-align: left;
}

.metric-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.metric-val {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--cyan);
}

.welcome-participant-box {
    margin-bottom: 24px;
    background: rgba(10, 16, 31, 0.6);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 16px;
}

.participant-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--cyan);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.participant-input {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-pure);
    outline: none;
    transition: var(--transition-smooth);
}

.participant-input:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 14px var(--cyan-glow);
}

/* ==========================================================================
   SLIDE 2: THE VALUE OF 2FA (99.9% ATTACK DEFENSE)
   ========================================================================== */
.slide-value-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 36px;
    align-items: center;
}

.stat-hero-card {
    text-align: center;
    padding: 40px 24px;
    background: radial-gradient(circle at center, rgba(0, 240, 255, 0.08) 0%, rgba(13, 22, 42, 0.8) 70%);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.stat-number-display {
    font-family: var(--font-heading);
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #ffffff 0%, var(--cyan) 50%, var(--emerald) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 35px var(--cyan-glow);
    margin-bottom: 8px;
}

.stat-hero-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.stat-hero-note {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.threat-simulator-panel {
    background: rgba(10, 16, 31, 0.8);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.sim-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.sim-status-chip {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(0, 240, 255, 0.1);
    color: var(--cyan);
    border: 1px solid rgba(0, 240, 255, 0.2);
}

.sim-visual-arena {
    position: relative;
    height: 140px;
    background: rgba(5, 7, 15, 0.9);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    margin-bottom: 16px;
}

.sim-side-bots, .sim-side-shield {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 5;
}

.sim-shield-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 255, 157, 0.15);
    border: 2px solid var(--emerald);
    color: var(--emerald);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px var(--emerald-glow);
    transition: var(--transition-smooth);
}

.sim-shield-icon.blocking {
    animation: shieldImpact 0.4s ease;
    background: rgba(0, 255, 157, 0.35);
    box-shadow: 0 0 35px var(--emerald);
}

@keyframes shieldImpact {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.sim-laser-lane {
    position: absolute;
    left: 80px;
    right: 80px;
    top: 50%;
    height: 2px;
    background: dashed 1px rgba(255, 42, 95, 0.3);
}

.bot-projectile {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--crimson);
    box-shadow: 0 0 10px var(--crimson);
    top: calc(50% - 5px);
    left: 100px;
    opacity: 0;
}

.sim-telemetry-log {
    background: #040711;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    height: 100px;
    overflow-y: auto;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.sim-telemetry-log .log-defended {
    color: var(--emerald);
}
.sim-telemetry-log .log-threat {
    color: var(--crimson);
}

/* ==========================================================================
   SLIDE 3: THE 2FA MECHANISM (DUAL VERIFICATION FACTORS)
   ========================================================================== */
.slide-mechanism-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mechanism-factor-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
}

.mechanism-factor-card:hover {
    border-color: var(--cyan);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.15);
}

.factor-badge {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.factor-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-pure);
    margin-bottom: 8px;
}

.factor-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* Interactive Phone Simulator */
.virtual-phone-frame {
    background: #0b1222;
    border: 2px solid rgba(0, 240, 255, 0.3);
    border-radius: 20px;
    padding: 20px 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    margin-top: auto;
}

.phone-notch {
    width: 60px;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    margin: 0 auto 16px auto;
}

.totp-display-box {
    text-align: center;
    padding: 12px;
    background: rgba(5, 7, 15, 0.8);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 255, 157, 0.25);
}

.totp-code {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--emerald);
    text-shadow: 0 0 15px var(--emerald-glow);
}

.totp-timer-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    margin-top: 10px;
    overflow: hidden;
}

.totp-timer-fill {
    height: 100%;
    background: var(--emerald);
    width: 80%;
    transition: width 1s linear;
}

/* Interactive Password Strength Tester */
.passphrase-tester-box {
    background: rgba(5, 7, 15, 0.8);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    padding: 16px;
    margin-top: auto;
}

.strength-meter-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    margin: 12px 0 8px 0;
    overflow: hidden;
}

.strength-meter-fill {
    height: 100%;
    width: 70%;
    background: var(--amber);
    transition: width 0.3s ease, background-color 0.3s ease;
}

/* ==========================================================================
   SLIDE 4: TWO PATHS, ONE STANDARD (GOOGLE WORKSPACE VS PERSONAL)
   ========================================================================== */
.slide-paths-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.path-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.path-card.path-workspace {
    border-color: rgba(66, 133, 244, 0.4);
    box-shadow: 0 10px 30px rgba(66, 133, 244, 0.1);
}

.path-card.path-personal {
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.1);
}

.path-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.path-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.path-workspace .path-icon {
    background: rgba(66, 133, 244, 0.15);
    color: #4285f4;
    border: 1px solid rgba(66, 133, 244, 0.3);
}

.path-personal .path-icon {
    background: rgba(168, 85, 247, 0.15);
    color: var(--purple);
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.path-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.path-check-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px;
    background: rgba(10, 16, 31, 0.6);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.path-check-item:hover {
    background: rgba(15, 25, 48, 0.8);
    border-color: var(--cyan);
}

.path-check-item.checked {
    border-color: rgba(0, 255, 157, 0.4);
    background: rgba(0, 255, 157, 0.06);
}

.custom-checkbox {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 2px solid var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    transition: var(--transition-smooth);
}

.path-check-item.checked .custom-checkbox {
    border-color: var(--emerald);
    background: var(--emerald);
    color: #000;
}

.path-check-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-pure);
    margin-bottom: 2px;
}

.path-check-desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   SLIDE 5: DEFEATING PHISHING (THREAT INSPECTOR SIMULATOR)
   ========================================================================== */
.slide-phishing-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 32px;
    align-items: start;
}

.phishing-rules-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rule-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    transition: var(--transition-smooth);
}

.rule-card:hover {
    border-color: var(--cyan);
    transform: translateX(4px);
}

.rule-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-pure);
    margin-bottom: 6px;
}

.rule-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

/* Inspector Email Card */
.email-inspector-card {
    background: #090e1c;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.email-header-meta {
    padding: 18px 24px;
    background: rgba(15, 23, 42, 0.7);
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.88rem;
}

.meta-row {
    display: flex;
    margin-bottom: 6px;
}

.meta-key {
    width: 70px;
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    text-transform: uppercase;
}

.meta-val {
    color: var(--text-primary);
    word-break: break-all;
}

.meta-val.spoofed {
    color: var(--crimson);
    font-weight: 600;
}

.email-body-content {
    padding: 24px;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.urgent-badge-warning {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(255, 42, 95, 0.15);
    border: 1px solid var(--crimson);
    color: var(--crimson);
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.75rem;
    margin-bottom: 12px;
}

.phishing-link-preview {
    display: inline-block;
    padding: 8px 14px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px dashed rgba(255, 42, 95, 0.4);
    border-radius: var(--radius-sm);
    color: var(--crimson);
    font-family: var(--font-mono);
    font-size: 0.82rem;
    margin: 12px 0;
}

.inspector-actions-bar {
    padding: 16px 24px;
    background: rgba(10, 16, 31, 0.95);
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.inspector-feedback-box {
    padding: 14px 20px;
    font-size: 0.88rem;
    display: none;
    border-top: 1px solid var(--border-subtle);
}

.inspector-feedback-box.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

.inspector-feedback-box.correct {
    background: rgba(0, 255, 157, 0.1);
    color: var(--emerald);
    border-color: rgba(0, 255, 157, 0.3);
}

.inspector-feedback-box.incorrect {
    background: rgba(255, 42, 95, 0.1);
    color: var(--crimson);
    border-color: rgba(255, 42, 95, 0.3);
}

/* ==========================================================================
   SLIDE 6: PASSWORD FUNDAMENTALS (15+ CHARS, 0 REUSE, 1 VAULT)
   ========================================================================== */
.slide-password-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.password-pillars-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.pillar-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition-smooth);
}

.pillar-card:hover {
    border-color: var(--cyan);
    transform: translateY(-2px);
}

.pillar-big-stat {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--cyan);
    min-width: 65px;
    text-align: center;
    padding: 10px;
    border-radius: var(--radius-md);
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.2);
}

.passphrase-generator-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.passphrase-box {
    background: rgba(5, 7, 15, 0.9);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: var(--radius-md);
    padding: 18px;
    text-align: center;
    margin: 20px 0;
}

.passphrase-text {
    font-family: var(--font-mono);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--emerald);
    letter-spacing: 0.04em;
    word-break: break-all;
}

.passphrase-stats-row {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 8px;
}

/* ==========================================================================
   SLIDE 7: SECURE DATA COLLABORATION (DRIVE PERMISSION HARDENER)
   ========================================================================== */
.slide-collab-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 32px;
}

.collab-rules-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.collab-rule-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition-smooth);
}

.collab-rule-item:hover {
    border-color: var(--cyan);
}

.collab-rule-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(0, 240, 255, 0.1);
    color: var(--cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.drive-share-simulator {
    background: #0b1122;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.drive-file-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(15, 23, 42, 0.8);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.drive-toggle-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.drive-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(5, 7, 15, 0.7);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
}

/* Switch UI */
.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.15);
    transition: .3s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--emerald);
}

input:checked + .slider:before {
    transform: translateX(20px);
}

.collab-risk-meter {
    padding: 16px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    transition: var(--transition-smooth);
}

.collab-risk-meter.vulnerable {
    background: rgba(255, 42, 95, 0.15);
    border: 1px solid var(--crimson);
    color: var(--crimson);
}

.collab-risk-meter.secure {
    background: rgba(0, 255, 157, 0.15);
    border: 1px solid var(--emerald);
    color: var(--emerald);
}

/* ==========================================================================
   SLIDE 8: SECURITY IS A SHARED DUTY (ACTION ITEMS & CERTIFICATION)
   ========================================================================== */
.slide-duty-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: start;
}

.action-commitments-box {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.action-item-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 22px;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: var(--transition-smooth);
}

.action-item-card:hover {
    border-color: var(--cyan);
    transform: translateY(-2px);
}

.action-item-card.completed {
    border-color: rgba(0, 255, 157, 0.5);
    background: rgba(0, 255, 157, 0.06);
}

.action-tag {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.action-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-pure);
    margin-bottom: 4px;
}

.certificate-preview-box {
    background: radial-gradient(circle at top, rgba(0, 240, 255, 0.08) 0%, #080e1e 80%);
    border: 2px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.cert-emblem {
    width: 68px;
    height: 68px;
    margin: 0 auto 16px auto;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0,240,255,0.2), rgba(0,255,157,0.2));
    border: 2px solid var(--cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    font-size: 1.8rem;
    box-shadow: 0 0 25px var(--cyan-glow);
}

.cert-headline {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-pure);
    letter-spacing: -0.01em;
}

.cert-recipient-name {
    font-family: var(--font-mono);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--emerald);
    margin: 14px 0 6px 0;
}

.cert-verification-code {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--cyan);
    letter-spacing: 0.15em;
    margin-top: 14px;
}

/* ==========================================================================
   BOTTOM CONTROLLER BAR
   ========================================================================== */
.cyber-bottom-bar {
    position: relative;
    flex-shrink: 0;
    width: 100%;
    height: 68px;
    background: rgba(8, 14, 28, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-card);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    z-index: 100;
}

.slide-dots-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.slide-dot-item {
    width: 20px;
    height: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slide-dot-item:hover {
    background: rgba(59, 130, 246, 0.5);
}

.slide-dot-item.active {
    width: 36px;
    background: #3b82f6;
    box-shadow: 0 1px 6px rgba(59, 130, 246, 0.4);
}

.nav-buttons-cluster {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-cyber {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
    text-decoration: none;
    outline: none;
    border: none;
}

.btn-cyber-primary {
    background: #2563eb;
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-cyber-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
    background: #1d4ed8;
}

.btn-cyber-success {
    background: #059669;
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(5, 150, 105, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-cyber-success:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.35);
    background: #047857;
}

.btn-cyber-secondary {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-card);
    color: var(--text-primary);
}

.btn-cyber-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.btn-cyber-danger {
    background: rgba(244, 63, 94, 0.15);
    border: 1px solid #f43f5e;
    color: #fda4af;
}

.btn-cyber-danger:hover {
    background: #e11d48;
    color: #ffffff;
}

.btn-cyber:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* ==========================================================================
   BRIEFING & CLEARANCE STATUS PANELS (IN-SESSION)
   ========================================================================== */
.welcome-briefing-card {
    background: rgba(10, 16, 31, 0.7);
    border: 1px solid rgba(0, 240, 255, 0.25);
    border-left: 3px solid var(--cyan);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    margin-bottom: 24px;
}

.briefing-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--cyan);
    letter-spacing: 0.08em;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.briefing-text {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.briefing-text strong {
    color: var(--emerald);
}

.duty-acknowledged-box {
    margin-top: 18px;
    padding: 20px;
    background: rgba(0, 255, 157, 0.08);
    border: 1px solid var(--emerald);
    border-radius: var(--radius-md);
    box-shadow: 0 0 25px var(--emerald-glow);
    animation: fadeIn 0.4s ease;
}

.acknowledged-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--emerald);
    letter-spacing: 0.04em;
}

.security-clearance-panel {
    background: radial-gradient(circle at top, rgba(0, 240, 255, 0.06) 0%, rgba(10, 16, 31, 0.85) 70%);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    text-align: center;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.clearance-shield-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 16px auto;
    border-radius: 50%;
    background: rgba(0, 255, 157, 0.12);
    border: 2px solid var(--emerald);
    color: var(--emerald);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px var(--emerald-glow);
}

.clearance-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-pure);
    letter-spacing: 0.04em;
}

.clearance-domain {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: var(--cyan);
    margin: 6px 0 20px 0;
    letter-spacing: 0.08em;
}

.clearance-summary-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
    margin-bottom: 20px;
}

.clearance-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    background: rgba(5, 7, 15, 0.6);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-subtle);
}

.clearance-check {
    color: var(--emerald);
    font-weight: 800;
    font-size: 1rem;
    line-height: 1;
}

.clearance-footer-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ==========================================================================
   COMPONENT HELPERS (SLIDES 1 - 11 DUAL & FACTOR CARDS)
   ========================================================================== */
.compact-cta-row {
    margin-top: 16px;
}

.compact-stat-card {
    margin-bottom: 16px;
    padding: 24px 20px;
    text-align: center;
}

.sim-compact-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.sim-inline-badge {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: var(--text-secondary);
    padding: 6px 12px;
    background: rgba(0, 255, 157, 0.08);
    border: 1px solid rgba(0, 255, 157, 0.25);
    border-radius: var(--radius-sm);
}

.factor-focus-card {
    background: rgba(10, 16, 31, 0.7);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin-top: 8px;
}

.factor-badge {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--cyan);
    margin-bottom: 4px;
}

.factor-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-pure);
    margin-bottom: 4px;
}

.factor-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.passphrase-tester-box,
.compact-phone-box {
    background: rgba(5, 7, 15, 0.85);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    margin-top: 10px;
}

.compact-checklist {
    gap: 10px !important;
}

.compact-checklist .path-check-item {
    padding: 10px 14px !important;
    gap: 12px !important;
}

.compact-pillars {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.compact-inspector {
    max-width: 680px;
    margin: 0 auto;
}

.collab-standard-pill {
    background: rgba(10, 16, 31, 0.7);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
}

.collab-standard-pill:hover {
    border-color: var(--cyan);
}

/* ==========================================================================
   PROJECT DATA CLASSIFICATION (SLIDE 10)
   ========================================================================== */
.data-triage-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 8px;
}

.triage-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-sm);
    gap: 12px;
    transition: var(--transition-smooth);
}

.triage-doc-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.triage-doc-icon {
    font-size: 1.3rem;
    line-height: 1;
}

.triage-doc-title {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text-pure);
}

.triage-doc-meta {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.triage-buttons-group {
    display: flex;
    gap: 6px;
}

.btn-triage {
    padding: 6px 10px;
    font-size: 0.74rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-card);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-triage:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--text-pure);
}

.btn-triage.active-choice {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.2);
    color: #93c5fd;
}

.btn-triage.tier-correct {
    border-color: #10b981 !important;
    background: rgba(16, 185, 129, 0.25) !important;
    color: #6ee7b7 !important;
    font-weight: 700;
}

.triage-feedback-pill {
    padding: 6px 12px;
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-sm);
    font-size: 0.76rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ==========================================================================
   INCIDENT RESPONSE 3-STEP GRID (SLIDE 13)
   ========================================================================== */
.incident-step-card {
    background: rgba(15, 23, 42, 0.65);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    text-align: left;
}

.incident-step-num {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--cyan);
    margin-bottom: 2px;
}

.incident-step-title {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--text-pure);
    margin-bottom: 4px;
}

.incident-step-desc {
    font-size: 0.76rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* ==========================================================================
   MOBILE & RESPONSIVE ZERO-SCROLL PRESENTATION ENGINE
   ========================================================================== */
@media (max-width: 900px) {
    .cyber-hud {
        padding: 0 16px;
        height: 58px;
    }

    .progress-track {
        display: none;
    }

    .hud-center-progress {
        display: flex;
    }

    .progress-counter {
        font-size: 0.82rem;
    }

    .hud-logo-text {
        font-size: 0.95rem;
    }

    .hud-btn {
        padding: 5px 10px;
        font-size: 0.74rem;
    }

    .cyber-bottom-bar {
        height: 62px;
        padding: 0 16px;
    }

    .slide-stage {
        padding: 10px 14px;
    }

    .glass-panel {
        padding: 20px 20px;
        border-radius: var(--radius-md);
    }

    .screen-title {
        font-size: clamp(1.5rem, 5vw, 2.1rem);
        margin-bottom: 6px;
    }

    .screen-subtitle {
        font-size: 0.9rem;
        margin-bottom: 14px;
        line-height: 1.45;
    }

    .stat-number-display {
        font-size: clamp(2.8rem, 10vw, 3.8rem);
    }
}

@media (max-width: 640px) {
    .cyber-hud {
        height: 52px;
        padding: 0 12px;
    }

    .hud-brand {
        gap: 8px;
    }

    .hud-logo-icon {
        width: 30px;
        height: 30px;
    }

    .hud-logo-text {
        font-size: 0.84rem;
        letter-spacing: 0.04em;
    }

    .hud-btn {
        padding: 4px 8px;
        font-size: 0.7rem;
    }

    .cyber-bottom-bar {
        height: 56px;
        padding: 0 12px;
        justify-content: space-between;
    }

    .slide-dots-container {
        display: none;
    }

    #btn-prev-slide, #btn-next-slide {
        flex: 1;
        justify-content: center;
        max-width: 48%;
        padding: 10px 14px;
        font-size: 0.84rem;
    }

    .slide-stage {
        padding: 6px 10px;
    }

    .glass-panel {
        padding: 14px 14px;
        border-radius: var(--radius-md);
    }

    .screen-header-badge {
        font-size: 0.68rem;
        padding: 3px 10px;
        margin-bottom: 6px;
    }

    .screen-title {
        font-size: clamp(1.3rem, 5vw, 1.7rem);
        margin-bottom: 4px;
    }

    .screen-subtitle {
        font-size: clamp(0.76rem, 2.8vw, 0.86rem);
        margin-bottom: 10px;
        line-height: 1.35;
    }

    /* Slide 1 */
    .welcome-briefing-card {
        padding: 10px 12px;
        margin-bottom: 12px;
    }
    .briefing-text {
        font-size: 0.78rem;
        line-height: 1.4;
    }
    .compact-cta-row {
        margin-top: 10px;
    }
    .compact-cta-row .btn-cyber {
        width: 100%;
        justify-content: center;
        padding: 12px 20px !important;
        font-size: 0.9rem !important;
    }

    /* Slide 2 */
    .compact-stat-card {
        padding: 14px 12px;
        margin-bottom: 10px;
    }
    .stat-hero-title {
        font-size: 0.88rem;
    }
    .stat-hero-note {
        font-size: 0.72rem;
    }
    .sim-compact-footer {
        flex-direction: column;
        gap: 8px;
    }
    .sim-compact-footer .btn-cyber {
        width: 100%;
        justify-content: center;
    }

    /* Slide 3 & 4 */
    .factor-focus-card {
        padding: 12px 14px;
        margin-top: 6px;
    }
    .factor-title {
        font-size: 1.15rem;
    }
    .factor-desc {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    .passphrase-tester-box,
    .compact-phone-box {
        padding: 10px 12px;
        margin-top: 6px;
    }
    .totp-display-box {
        padding: 6px !important;
    }
    .totp-code {
        font-size: 1.45rem !important;
    }

    /* Slide 5 & 6 */
    .path-card {
        padding: 12px 14px !important;
    }
    .path-card-header {
        margin-bottom: 10px !important;
        gap: 10px !important;
    }
    .path-icon {
        width: 32px !important;
        height: 32px !important;
        font-size: 1rem !important;
    }
    .path-card-header h3 {
        font-size: 1.05rem !important;
    }
    .compact-checklist {
        gap: 6px !important;
    }
    .compact-checklist .path-check-item {
        padding: 8px 10px !important;
        gap: 8px !important;
    }
    .path-check-title {
        font-size: 0.82rem !important;
    }
    .path-check-desc {
        font-size: 0.72rem !important;
    }

    /* Slide 7 */
    .phishing-rules-panel {
        gap: 6px !important;
    }
    .rule-card {
        padding: 8px 12px !important;
    }
    .rule-header {
        font-size: 0.88rem !important;
        margin-bottom: 2px !important;
    }
    .rule-desc {
        font-size: 0.74rem !important;
    }

    /* Slide 8: Live Threat Inspector */
    .compact-inspector .email-header-meta {
        padding: 6px 10px !important;
    }
    .compact-inspector .meta-row {
        flex-direction: row;
        gap: 6px;
        margin-bottom: 2px !important;
    }
    .compact-inspector .meta-key {
        width: 45px !important;
        font-size: 0.7rem !important;
    }
    .compact-inspector .meta-val {
        font-size: 0.74rem !important;
    }
    .compact-inspector .email-body-content {
        padding: 8px 10px !important;
        font-size: 0.75rem !important;
        line-height: 1.35 !important;
    }
    .compact-inspector .phishing-link-preview {
        font-size: 0.68rem !important;
        padding: 4px 8px !important;
        margin: 4px 0 !important;
    }
    .compact-inspector .inspector-feedback-box {
        padding: 6px 10px !important;
        font-size: 0.74rem !important;
    }
    .compact-inspector .inspector-actions-bar {
        padding: 6px 10px !important;
        flex-direction: row !important;
        gap: 6px !important;
    }
    .compact-inspector .inspector-actions-bar .btn-cyber {
        flex: 1;
        padding: 8px 6px !important;
        font-size: 0.72rem !important;
        justify-content: center;
    }

    /* Slide 9 */
    .compact-pillars {
        gap: 6px !important;
    }
    .compact-pillars .pillar-card {
        padding: 8px 10px !important;
        gap: 10px !important;
        border-radius: var(--radius-sm) !important;
    }
    .compact-pillars .pillar-big-stat {
        font-size: 1.3rem !important;
        min-width: 42px !important;
        padding: 4px !important;
    }
    .compact-pillars h3 {
        font-size: 0.88rem !important;
    }
    .compact-pillars p {
        font-size: 0.72rem !important;
    }

    /* Slide 10: Data Triage */
    .triage-item-row {
        padding: 7px 10px !important;
        gap: 6px !important;
    }
    .triage-doc-icon {
        font-size: 1.1rem !important;
    }
    .triage-doc-title {
        font-size: 0.8rem !important;
    }
    .triage-doc-meta {
        font-size: 0.68rem !important;
    }
    .btn-triage {
        padding: 4px 6px !important;
        font-size: 0.68rem !important;
    }

    /* Slide 11: Collaboration Standards */
    .collab-standards-grid {
        gap: 6px !important;
        margin-bottom: 8px !important;
    }
    .collab-standard-pill {
        padding: 6px 8px !important;
    }
    .collab-standard-pill span {
        font-size: 0.78rem;
    }
    .collab-standard-pill p {
        font-size: 0.68rem !important;
    }
    .drive-toggle-row {
        padding: 8px 10px !important;
    }
    .collab-risk-meter {
        padding: 6px 10px !important;
        font-size: 0.72rem !important;
    }

    /* Slide 12: Contractor & Partner Access */
    .offboarding-audit-box {
        gap: 6px !important;
        margin-bottom: 8px !important;
    }

    /* Slide 13: Incident Response */
    .incident-steps-grid {
        grid-template-columns: 1fr !important;
        gap: 6px !important;
    }
    .incident-step-card {
        padding: 8px 10px !important;
    }

    /* Slide 14: Shared Duty */
    .action-commitments-box {
        gap: 6px !important;
    }
    .action-commitments-box .action-item-card {
        padding: 8px 10px !important;
        gap: 10px !important;
        border-radius: var(--radius-sm) !important;
    }
    .action-commitments-box .action-tag {
        font-size: 0.64rem !important;
        margin-bottom: 2px !important;
    }
    .action-commitments-box .action-title {
        font-size: 0.85rem !important;
    }
    .duty-acknowledged-box {
        padding: 10px 12px !important;
        margin-top: 6px !important;
    }
    .acknowledged-header {
        font-size: 0.82rem !important;
    }
}

