/* Why PQ Crypta? - Advanced 3D Cybersecurity Report Styles */
/* Cutting-edge CSS with unique animations never seen before */

:root {
    /* Security Theme Colors */
    --cyber-red: #ff0040;
    --cyber-orange: #ff6600;
    --cyber-yellow: #ffcc00;
    --cyber-green: #00ff88;
    --cyber-cyan: #00ffff;
    --cyber-blue: #0088ff;
    --cyber-purple: #8800ff;
    --cyber-pink: #ff0088;
    
    /* Background and Glass */
    --bg-dark: #000008;
    --bg-darker: #000004;
    --bg-quantum: #000012;
    --glass-bg: rgba(0, 255, 255, 0.03);
    --glass-border: rgba(0, 255, 255, 0.15);
    --glass-glow: 0 0 30px rgba(0, 255, 255, 0.2);
    
    /* Text Colors */
    --text-light: #ffffff;
    --text-muted: #cccccc;
    --text-danger: #ff0040;
    --text-warning: #ffcc00;
    --text-success: #00ff88;
    
    /* Security Status */
    --critical: #ff0040;
    --extreme: #ff3366;
    --high: #ff6600;
    --medium: #ffcc00;
    --low: #00ff88;
    --secure: #0088ff;
}

/* Enhanced CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: radial-gradient(ellipse at center, var(--bg-quantum) 0%, var(--bg-darker) 70%, var(--bg-dark) 100%);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    cursor: none; /* Hide default cursor for 3D quantum cursor */
}

@keyframes hexagonFade {
    0% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.5); }
}

@keyframes shieldPulse {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.2); filter: brightness(1.5); }
}

/* 3D Background Canvas */
#cyber-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Loading Screen with Security Shield */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.8s ease;
}

.loading-container {
    text-align: center;
}

.security-shield {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
}

.shield-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--cyber-cyan), var(--cyber-blue));
    border-radius: 50%;
    animation: shieldCore 2s ease-in-out infinite;
    box-shadow: 0 0 20px var(--cyber-cyan);
}

.shield-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid;
    border-radius: 50%;
    animation: shieldRing 3s linear infinite;
}

.shield-ring.ring-1 {
    width: 60px;
    height: 60px;
    border-color: var(--cyber-cyan);
    animation-delay: 0s;
}

.shield-ring.ring-2 {
    width: 80px;
    height: 80px;
    border-color: var(--cyber-blue);
    animation-delay: 0.5s;
}

.shield-ring.ring-3 {
    width: 100px;
    height: 100px;
    border-color: var(--cyber-purple);
    animation-delay: 1s;
}

@keyframes shieldCore {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

@keyframes shieldRing {
    0% { transform: translate(-50%, -50%) rotate(0deg) scale(1); opacity: 1; }
    50% { opacity: 0.3; }
    100% { transform: translate(-50%, -50%) rotate(360deg) scale(1.1); opacity: 1; }
}

.loading-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.4rem;
    color: var(--cyber-cyan);
    margin-bottom: 20px;
    text-shadow: 0 0 10px var(--cyber-cyan);
}

.typing-text {
    border-right: 2px solid var(--cyber-cyan);
    animation: typewriter 4s steps(30) infinite, blinkCursor 1s infinite;
}

.loading-progress {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--cyber-cyan), var(--cyber-blue), var(--cyber-purple));
    border-radius: 2px;
    animation: loadingProgress 3s ease-in-out infinite;
    box-shadow: 0 0 10px var(--cyber-cyan);
}

@keyframes typewriter {
    0%, 100% { width: 0; }
    50% { width: 100%; }
}

@keyframes blinkCursor {
    0%, 50% { border-right-color: var(--cyber-cyan); }
    51%, 100% { border-right-color: transparent; }
}

@keyframes loadingProgress {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* Main Container */
#main-container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

/* Hero Section with Attack Visualization */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 50px;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 0, 64, 0.05) 0%, transparent 50%, rgba(0, 255, 255, 0.05) 100%);
    text-align: center;
}

.hero-content {
    width: 100%;
    max-width: 900px;
    text-align: center;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
}

.title-line-1 {
    display: block;
    background: linear-gradient(45deg, var(--cyber-cyan), var(--cyber-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleGlow 3s ease-in-out infinite;
}

.title-line-2.danger-text {
    display: block;
    color: var(--text-danger);
    text-shadow: 0 0 20px var(--text-danger);
    animation: dangerPulse 2s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.5); text-shadow: 0 0 30px var(--cyber-cyan); }
}

@keyframes dangerPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.02); }
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.5;
}

.threat-level {
    display: block;
    color: var(--text-danger);
    font-weight: 700;
    font-family: 'Roboto Mono', monospace;
    animation: threatBlink 1.5s ease-in-out infinite;
    margin-top: 10px;
}

@keyframes threatBlink {
    0%, 90%, 100% { opacity: 1; }
    45%, 55% { opacity: 0.3; }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    animation: statSweep 3s ease-in-out infinite;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--glass-glow);
    border-color: var(--cyber-cyan);
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cyber-cyan);
    margin-bottom: 10px;
    animation: countUp 2s ease-out;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 500;
}

@keyframes statSweep {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: -100%; }
}

@keyframes countUp {
    0% { opacity: 0; transform: scale(0.5); }
    100% { opacity: 1; transform: scale(1); }
}

.hero-visual {
    margin-top: 50px;
    text-align: center;
    opacity: 0.3;
    font-style: italic;
    color: var(--text-muted);
}



/* WebGPU Neural Network Enhancement */
.neural-network-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    mix-blend-mode: screen;
}

/* Enhanced threat markers for neural network mode */
.threat-marker {
    transition: all 0.3s ease;
}

.threat-marker:hover {
    transform: scale(1.2);
    filter: brightness(1.3);
}

/* Neural connection enhancements */

/* Content Sections */
.content-section {
    padding: 100px 50px;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--cyber-cyan), var(--cyber-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
}

.threat-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: indicatorPulse 2s ease-in-out infinite;
}

.indicator-dot.critical {
    background: var(--critical);
    box-shadow: 0 0 10px var(--critical);
}

.indicator-text {
    font-family: 'Roboto Mono', monospace;
    font-weight: 600;
    color: var(--text-danger);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes indicatorPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

/* Executive Summary Cards */
.summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.summary-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.summary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cyber-cyan), var(--cyber-purple));
}

.summary-card.urgent::before {
    background: linear-gradient(90deg, var(--critical), var(--cyber-orange));
}

.summary-card.critical::before {
    background: linear-gradient(90deg, var(--cyber-orange), var(--cyber-yellow));
}

.summary-card.solution::before {
    background: linear-gradient(90deg, var(--cyber-green), var(--cyber-cyan));
}

.summary-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(2deg);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
    border-color: var(--cyber-cyan);
}

.summary-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.summary-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
}

.summary-card strong {
    color: var(--text-light);
    font-weight: 600;
}

/* Interactive Chart Container */
.chart-container {
    max-width: 1400px;
    margin: 0 auto;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: var(--glass-glow);
}

.chart-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.3);
}

.chart-btn {
    background: transparent;
    border: 2px solid var(--glass-border);
    color: var(--text-muted);
    padding: 15px 30px;
    border-radius: 25px;
    font-family: 'Orbitron', monospace;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.chart-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, var(--cyber-cyan), transparent);
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
}

.chart-btn:hover::before,
.chart-btn.active::before {
    width: 200%;
    height: 200%;
}

.chart-btn:hover,
.chart-btn.active {
    color: var(--text-light);
    border-color: var(--cyber-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    z-index: 1;
}

.interactive-chart {
    height: 533px;
    position: relative;
    padding: 20px;
    min-height: 467px;
}

#threejs-chart {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.chart-info {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 10;
}

.chart-tooltip {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--cyber-cyan);
    border-radius: 10px;
    padding: 15px;
    color: var(--text-light);
    font-family: 'Roboto Mono', monospace;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: all 0.3s ease;
}

.chart-tooltip.active {
    opacity: 1;
}

/* Chart Legend Enhancements */
.chart-legend {
    max-height: 550px;
    max-width: 400px;
    min-width: 300px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 20px;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid var(--cyber-cyan);
    border-radius: 15px;
    backdrop-filter: blur(15px);
    word-wrap: break-word;
    box-sizing: border-box;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    font-size: 0.78rem; /* Base font size reduced by 2px from default */
}

.chart-legend h4 {
    color: var(--cyber-cyan);
    font-size: 0.98rem;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
}

.legend-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
    padding: 8px;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.legend-item:hover {
    background: rgba(0, 255, 255, 0.05);
}

.legend-item.detailed {
    margin-bottom: 12px;
    padding: 12px;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 10px;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.legend-details {
    flex: 1;
    line-height: 1.4;
    max-width: 280px;
    overflow-wrap: break-word;
    word-break: break-word;
    min-width: 0; /* Allow flex item to shrink below content size */
}

.legend-details strong {
    color: var(--text-light);
    font-size: 0.83rem;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
    max-width: 100%;
    overflow-wrap: break-word;
}

.legend-stats {
    color: var(--text-muted);
    font-size: 0.73rem;
    margin-bottom: 4px;
    max-width: 100%;
    overflow-wrap: break-word;
}

.legend-reason {
    color: rgba(0, 255, 255, 0.7);
    font-size: 0.68rem;
    font-style: italic;
    max-width: 100%;
    overflow-wrap: break-word;
}

.legend-severity {
    font-size: 0.68rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 3px;
    display: inline-block;
}

.severity-critical {
    background: rgba(255, 0, 64, 0.2);
    color: #ff0040;
    border: 1px solid rgba(255, 0, 64, 0.3);
}

.severity-extreme {
    background: rgba(255, 0, 128, 0.2);
    color: #ff0080;
    border: 1px solid rgba(255, 0, 128, 0.3);
}

.severity-high {
    background: rgba(255, 102, 0, 0.2);
    color: #ff6600;
    border: 1px solid rgba(255, 102, 0, 0.3);
}

.severity-medium {
    background: rgba(255, 204, 0, 0.2);
    color: #ffcc00;
    border: 1px solid rgba(255, 204, 0, 0.3);
}

.severity-low {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

/* Chart Legend Scrollbar */
.chart-legend::-webkit-scrollbar {
    width: 6px;
}

.chart-legend::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.chart-legend::-webkit-scrollbar-thumb {
    background: var(--cyber-cyan);
    border-radius: 3px;
    opacity: 0.6;
}

.chart-legend::-webkit-scrollbar-thumb:hover {
    opacity: 1;
}

/* 3D Timeline */
.timeline-3d {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-3d::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, 
        var(--cyber-cyan) 0%, 
        var(--cyber-blue) 25%, 
        var(--cyber-purple) 50%, 
        var(--critical) 75%, 
        var(--cyber-orange) 100%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.timeline-item {
    position: relative;
    margin-bottom: 80px;
    opacity: 0;
    animation: timelineSlideIn 0.8s ease forwards;
    animation-delay: calc(var(--item-index, 0) * 0.2s);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: calc(50% + 50px);
    transform-origin: left center;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: calc(50% + 50px);
    text-align: right;
    transform-origin: right center;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 30px;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--cyber-cyan);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 0 8px rgba(0, 0, 0, 0.8), 0 0 20px var(--cyber-cyan);
}

.marker-pulse {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--cyber-cyan);
    border-radius: 50%;
    animation: markerPulse 2s ease-in-out infinite;
}

@keyframes markerPulse {
    0% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(2); }
}

.timeline-content {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.timeline-content:hover {
    transform: scale(1.02) translateZ(20px);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.15);
    border-color: var(--cyber-cyan);
}

.breach-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.breach-header h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    color: var(--text-light);
}

.severity-badge {
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.severity-badge.critical {
    background: var(--critical);
    color: white;
    box-shadow: 0 0 10px var(--critical);
}

.severity-badge.extreme {
    background: var(--extreme);
    color: white;
    box-shadow: 0 0 10px var(--extreme);
    animation: extremePulse 1s ease-in-out infinite;
}

.severity-badge.catastrophic {
    background: linear-gradient(45deg, var(--critical), var(--cyber-orange));
    color: white;
    box-shadow: 0 0 15px var(--critical);
    animation: catastrophicFlicker 0.5s ease-in-out infinite alternate;
}

@keyframes extremePulse {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

@keyframes catastrophicFlicker {
    0% { opacity: 1; filter: brightness(1); }
    100% { opacity: 0.8; filter: brightness(1.5); }
}

.breach-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.breach-stats span {
    background: rgba(0, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-family: 'Roboto Mono', monospace;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.timeline-content p {
    color: var(--text-muted);
    line-height: 1.6;
}

@keyframes timelineSlideIn {
    0% {
        opacity: 0;
        transform: translateY(50px) rotateX(-10deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

/* Sector Analysis Grid */
.sector-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.sector-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.sector-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255, 0, 64, 0.05), transparent 50%);
    opacity: 0;
    transition: all 0.3s ease;
}

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

.sector-card:hover {
    transform: translateY(-20px) rotateX(5deg) rotateY(-5deg);
    box-shadow: 0 25px 50px rgba(255, 0, 64, 0.2);
    border-color: var(--critical);
}

.sector-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: center;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
}

.sector-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-light);
}

.sector-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--critical);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sector-desc {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 20px 0 10px 0;
    line-height: 1.5;
    font-style: italic;
}

.threat-level-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.threat-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--cyber-orange), var(--critical));
    border-radius: 4px;
    position: relative;
    animation: threatBarGlow 2s ease-in-out infinite;
}

.threat-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: threatBarSweep 2s ease-in-out infinite;
}

@keyframes threatBarGlow {
    0%, 100% { box-shadow: 0 0 5px var(--critical); }
    50% { box-shadow: 0 0 15px var(--critical); }
}

@keyframes threatBarSweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Quantum Threat Section */
.quantum-bg {
    background: linear-gradient(135deg, 
        rgba(136, 0, 255, 0.05) 0%, 
        transparent 50%, 
        rgba(255, 0, 64, 0.05) 100%);
    position: relative;
}

.quantum-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%238800ff" opacity="0.1"/></svg>') repeat;
    animation: quantumParticles 20s linear infinite;
}

@keyframes quantumParticles {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100px, -100px); }
}

.quantum-title {
    color: var(--cyber-purple) !important;
    text-shadow: 0 0 30px var(--cyber-purple);
    animation: quantumFlicker 3s ease-in-out infinite;
}

@keyframes quantumFlicker {
    0%, 90%, 100% { opacity: 1; filter: brightness(1); }
    45% { opacity: 0.7; filter: brightness(1.3); }
}

.quantum-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 80px;
}

.quantum-phase {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(15px);
    position: relative;
    transition: all 0.4s ease;
    text-align: center;
}

.quantum-phase::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 22px;
    background: linear-gradient(45deg, transparent, var(--cyber-purple), transparent);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.quantum-phase:hover::before {
    opacity: 1;
    animation: quantumBorder 2s linear infinite;
}

@keyframes quantumBorder {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.quantum-phase.past {
    border-color: var(--cyber-orange);
}

.quantum-phase.present {
    border-color: var(--cyber-yellow);
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.3);
}

.quantum-phase.future {
    border-color: var(--critical);
    animation: futureWarning 2s ease-in-out infinite;
}

@keyframes futureWarning {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 0, 64, 0.3); }
    50% { box-shadow: 0 0 40px rgba(255, 0, 64, 0.6); }
}

.phase-marker {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--cyber-cyan);
    margin: 0 auto 20px;
    box-shadow: 0 0 15px var(--cyber-cyan);
    animation: phaseMarkerPulse 2s ease-in-out infinite;
}

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

.quantum-phase h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.quantum-phase p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Expert Consensus Card */
.expert-consensus-card {
    max-width: 1400px;
    margin: 60px auto;
    background: var(--glass-bg);
    border: 2px solid var(--cyber-cyan);
    border-radius: 24px;
    padding: 50px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.expert-consensus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--cyber-cyan), var(--cyber-purple), var(--cyber-cyan));
    background-size: 200% 100%;
    animation: gradientShift 3s linear infinite;
}

.expert-consensus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 255, 255, 0.25);
    border-color: var(--cyber-purple);
}

.expert-consensus h3 {
    text-align: center;
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--cyber-cyan);
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.consensus-intro {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.consensus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.consensus-item {
    background: rgba(0, 20, 40, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
}

.consensus-item:hover {
    transform: translateY(-5px);
    border-color: var(--cyber-cyan);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.15);
    background: rgba(0, 20, 40, 0.7);
}

.consensus-icon {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
}

.consensus-item h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 15px;
    text-align: center;
}

.consensus-item .estimate {
    font-size: 1.2rem;
    color: var(--cyber-cyan);
    text-align: center;
    margin-bottom: 15px;
    font-family: 'Roboto Mono', monospace;
}

.consensus-item .detail {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.consensus-warning {
    background: linear-gradient(135deg, rgba(255, 0, 64, 0.1), rgba(255, 100, 0, 0.1));
    border: 2px solid var(--critical);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
    position: relative;
    overflow: hidden;
}

.consensus-warning::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 64, 0.1), transparent);
    animation: warningPulse 3s linear infinite;
}

.consensus-warning strong {
    color: var(--critical);
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

@keyframes warningPulse {
    0% { left: -100%; }
    100% { left: 200%; }
}

@media (max-width: 768px) {
    .consensus-grid {
        grid-template-columns: 1fr;
    }

    .expert-consensus-card {
        padding: 30px 20px;
    }

    .expert-consensus h3 {
        font-size: 1.5rem;
    }
}

.vulnerability-showcase {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(15px);
}

.vulnerability-showcase h3 {
    text-align: center;
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: var(--text-light);
}

.encryption-demo {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.encryption-method {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.encryption-method.vulnerable {
    border-color: var(--critical);
    animation: vulnerablePulse 3s ease-in-out infinite;
}

.encryption-method.secure {
    border-color: var(--cyber-green);
    animation: securePulse 2s ease-in-out infinite;
}

@keyframes vulnerablePulse {
    0%, 100% { box-shadow: 0 0 10px var(--critical); }
    50% { box-shadow: 0 0 30px var(--critical); }
}

@keyframes securePulse {
    0%, 100% { box-shadow: 0 0 10px var(--cyber-green); }
    50% { box-shadow: 0 0 20px var(--cyber-green); }
}

.encryption-method h4 {
    font-family: 'Roboto Mono', monospace;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.encryption-method p {
    color: var(--text-muted);
    line-height: 1.5;
}

/* Solution Section */
.solution-bg {
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.05) 0%, 
        transparent 50%, 
        rgba(0, 136, 255, 0.05) 100%);
}

.solution-title {
    color: var(--cyber-green) !important;
    text-shadow: 0 0 30px var(--cyber-green);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto 80px;
}

.solution-feature {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(15px);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.solution-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 255, 136, 0.1), transparent 70%);
    opacity: 0;
    transition: all 0.3s ease;
}

.solution-feature:hover::before {
    opacity: 1;
}

.solution-feature:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
    border-color: var(--cyber-green);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px var(--cyber-green));
}

.solution-feature h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.solution-feature p {
    color: var(--text-muted);
    line-height: 1.6;
}

.implementation-stats {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(15px);
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.implementation-stats h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: var(--cyber-green);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.implementation-stat {
    padding: 20px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.implementation-stat:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 255, 136, 0.2);
}

.implementation-stat .stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cyber-green);
    margin-bottom: 10px;
    display: block;
}

.implementation-stat .stat-label {
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* Call to Action */
.cta-bg {
    background: linear-gradient(135deg, 
        rgba(255, 0, 64, 0.1) 0%, 
        var(--bg-darker) 50%, 
        rgba(0, 255, 255, 0.1) 100%);
    text-align: center;
}

.cta-content h2 {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    margin-bottom: 30px;
    color: var(--text-light);
    text-shadow: 0 0 20px var(--cyber-cyan);
}

.cta-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--text-muted);
    line-height: 1.7;
}

.urgency-counter {
    background: var(--glass-bg);
    border: 1px solid var(--critical);
    border-radius: 20px;
    padding: 40px;
    margin: 50px auto;
    max-width: 800px;
    backdrop-filter: blur(15px);
    box-shadow: 0 0 30px rgba(255, 0, 64, 0.3);
}

.urgency-counter h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--critical);
}

.countdown-disclaimer {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.5;
}

.consensus-link {
    color: var(--critical);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px dashed var(--critical);
}

.consensus-link:hover {
    color: #ff0066;
    border-bottom-color: #ff0066;
    text-shadow: 0 0 8px rgba(255, 0, 102, 0.6);
}

.countdown {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-bottom: 20px;
    max-width: 100%;
    overflow: visible;
}

.countdown-item {
    background: rgba(255, 0, 64, 0.1);
    border: 1px solid var(--critical);
    border-radius: 15px;
    padding: 15px 10px;
    text-align: center;
    min-width: 0;
    overflow: hidden;
}

.countdown-number {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: var(--critical);
    margin-bottom: 5px;
    transition: transform 0.3s ease, color 0.3s ease;
    animation: countdownPulse 1s ease-in-out infinite;
    word-wrap: break-word;
}

.countdown-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-ms {
    font-size: 2rem;
    letter-spacing: 1px;
    animation: none;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8), 0 0 20px rgba(0, 255, 255, 0.5);
    font-weight: 800;
}

@keyframes countdownPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.countdown-warning {
    color: var(--text-danger);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: warningBlink 2s ease-in-out infinite;
}

@keyframes warningBlink {
    0%, 90%, 100% { opacity: 1; }
    45% { opacity: 0.5; }
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 18px 36px;
    border-radius: 30px;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn.primary {
    background: linear-gradient(45deg, var(--cyber-cyan), var(--cyber-blue));
    color: white;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.cta-btn.primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.5);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--cyber-green);
    border: 2px solid var(--cyber-green);
}

.cta-btn.secondary:hover {
    background: var(--cyber-green);
    color: var(--bg-dark);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
}

/* Footer */
.report-footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--glass-border);
    padding: 50px;
    margin-top: 100px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    font-family: 'Orbitron', monospace;
    color: var(--cyber-cyan);
    margin-bottom: 20px;
}

.footer-section p,
.footer-section a {
    color: var(--text-muted);
    text-decoration: none;
    line-height: 1.6;
}

.footer-section a:hover {
    color: var(--cyber-cyan);
}

.live-status {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
}

.status-dot.online {
    background: var(--cyber-green);
    box-shadow: 0 0 10px var(--cyber-green);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-section {
        padding: 50px 30px;
    }
    
    .summary-grid,
    .solution-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .quantum-timeline {
        grid-template-columns: 1fr;
    }

    .countdown {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .countdown-item {
        padding: 12px 8px;
    }

    .countdown-number {
        font-size: 1.6rem;
    }

    .countdown-ms {
        font-size: 1.6rem;
        letter-spacing: 0.5px;
    }

    .countdown-label {
        font-size: 0.7rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .content-section {
        padding: 50px 20px;
    }
}

@media (max-width: 480px) {
    .countdown {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .countdown-item {
        padding: 10px 6px;
    }

    .countdown-number {
        font-size: 1.4rem;
    }

    .countdown-ms {
        font-size: 1.4rem;
        letter-spacing: 0px;
    }

    .countdown-label {
        font-size: 0.65rem;
    }

    .urgency-counter {
        padding: 30px 15px;
    }

    .countdown-disclaimer {
        font-size: 0.7rem;
        line-height: 1.4;
    }
}

/* Advanced Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes rotate3d {
    0% { transform: rotateX(0deg) rotateY(0deg); }
    25% { transform: rotateX(15deg) rotateY(90deg); }
    50% { transform: rotateX(0deg) rotateY(180deg); }
    75% { transform: rotateX(-15deg) rotateY(270deg); }
    100% { transform: rotateX(0deg) rotateY(360deg); }
}

@keyframes matrix {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(-100px); opacity: 0; }
}

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

/* ========================================
   PQ CRYPTA IMPERATIVE SECTION - INSPIRATIONAL STYLES  
   ======================================== */

/* Imperative Section Background */
.imperative-bg {
    background: radial-gradient(ellipse at center, 
        rgba(136, 0, 255, 0.08) 0%,
        rgba(0, 136, 255, 0.06) 35%,
        rgba(0, 0, 0, 0.95) 70%,
        #000004 100%);
    position: relative;
    overflow: hidden;
}

.imperative-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 0, 64, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 255, 255, 0.03) 0%, transparent 70%);
    animation: imperativeAura 8s ease-in-out infinite alternate;
    pointer-events: none;
}

.imperative-title {
    background: linear-gradient(135deg, 
        var(--cyber-purple) 0%,
        var(--cyber-cyan) 25%,
        var(--cyber-green) 50%,
        var(--cyber-yellow) 75%,
        var(--cyber-orange) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(136, 0, 255, 0.5);
    animation: imperativeTitlePulse 3s ease-in-out infinite;
}

/* Vision Statement */
.vision-statement {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 60px;
    padding: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    box-shadow: var(--glass-glow);
    position: relative;
}

.vision-statement::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--cyber-purple), var(--cyber-cyan), 
        var(--cyber-green), var(--cyber-yellow));
    border-radius: 22px;
    z-index: -1;
    opacity: 0.3;
    animation: visionBorder 4s linear infinite;
}

.vision-title {
    font-size: 2.2rem;
    color: var(--cyber-cyan);
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
}

.vision-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-light);
    font-weight: 300;
}

/* Transformation Grid */
.transformation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.transformation-card {
    padding: 30px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
}

.transformation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        transparent);
    transition: left 0.8s ease;
}

.transformation-card:hover::before {
    left: 100%;
}

.transformation-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(0, 255, 255, 0.2);
}

.breakthrough {
    border-color: var(--cyber-purple);
    background: rgba(136, 0, 255, 0.05);
}

.revolutionary {
    border-color: var(--cyber-cyan);
    background: rgba(0, 255, 255, 0.05);
}

.innovative {
    border-color: var(--cyber-green);
    background: rgba(0, 255, 136, 0.05);
}

.legacy {
    border-color: var(--cyber-yellow);
    background: rgba(255, 204, 0, 0.05);
}

.transform-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
    animation: float 3s ease-in-out infinite;
}

.transformation-card h4 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 600;
}

.transformation-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Confidence Meters */
.confidence-meter {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.confidence-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.confidence-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, 
        var(--cyber-green) 0%, 
        var(--cyber-cyan) 50%, 
        var(--cyber-blue) 100%);
    border-radius: 4px;
    animation: confidenceFill 2s ease-out forwards;
    width: 0;
}

.confidence-bar[data-confidence="100"]::before { animation-delay: 0.5s; width: 100%; }
.confidence-bar[data-confidence="99"]::before { animation-delay: 0.6s; width: 99%; }
.confidence-bar[data-confidence="300"]::before { animation-delay: 0.7s; width: 100%; }
.confidence-bar[data-confidence="0"]::before { animation-delay: 0.8s; width: 5%; }

.confidence-meter span {
    color: var(--cyber-cyan);
    font-weight: 500;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Paradigm Shift Section */
.paradigm-shift {
    margin: 80px 0;
    text-align: center;
}

.paradigm-title {
    font-size: 2rem;
    color: var(--cyber-orange);
    margin-bottom: 40px;
    text-shadow: 0 0 15px rgba(255, 102, 0, 0.6);
}

.shift-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.old-world, .new-world {
    padding: 30px;
    background: var(--glass-bg);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.old-world {
    border: 2px solid var(--cyber-red);
    background: rgba(255, 0, 64, 0.05);
}

.new-world {
    border: 2px solid var(--cyber-green);
    background: rgba(0, 255, 136, 0.05);
}

.old-title {
    color: var(--cyber-red);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.new-title {
    color: var(--cyber-green);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.comparison-list {
    list-style: none;
    text-align: left;
}

.comparison-list li {
    padding: 8px 0;
    font-size: 1rem;
}

.negative li {
    color: #ff6666;
}

.positive li {
    color: #66ff99;
}

.transformation-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.arrow-body {
    width: 120px;
    height: 40px;
    background: linear-gradient(90deg, 
        var(--cyber-purple), 
        var(--cyber-cyan));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

.arrow-text {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.arrow-head {
    font-size: 2rem;
    color: var(--cyber-cyan);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
    animation: arrowPulse 2s ease-in-out infinite;
}

/* Mission Critical Applications */
.mission-critical {
    margin: 80px 0;
}

.mission-title {
    text-align: center;
    font-size: 2rem;
    color: var(--cyber-red);
    margin-bottom: 40px;
    text-shadow: 0 0 15px rgba(255, 0, 64, 0.6);
}

.application-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.app-category {
    padding: 25px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
    text-align: center;
}

.app-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 255, 255, 0.15);
}

.app-category h4 {
    color: var(--cyber-cyan);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Competitive Advantage */
.competitive-advantage {
    margin: 80px 0;
}

.advantage-title {
    text-align: center;
    font-size: 2rem;
    color: var(--cyber-yellow);
    margin-bottom: 40px;
    text-shadow: 0 0 15px rgba(255, 204, 0, 0.6);
}

.advantage-matrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.advantage-item {
    padding: 25px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    text-align: center;
}

.advantage-metric {
    margin-bottom: 15px;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--cyber-green);
    display: block;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
}

.metric-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Inspiration Finale */
.inspiration-finale {
    margin: 80px 0;
    text-align: center;
}

.finale-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px;
    background: radial-gradient(ellipse at center,
        rgba(0, 255, 255, 0.1) 0%,
        rgba(136, 0, 255, 0.05) 50%,
        transparent 100%);
    border: 2px solid var(--glass-border);
    border-radius: 25px;
    backdrop-filter: blur(15px);
    position: relative;
}

.finale-content::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, 
        var(--cyber-cyan), var(--cyber-purple), 
        var(--cyber-green), var(--cyber-yellow), 
        var(--cyber-cyan));
    border-radius: 28px;
    z-index: -1;
    opacity: 0.4;
    animation: finaleBorder 6s linear infinite;
}

.finale-title {
    font-size: 2.5rem;
    color: var(--cyber-cyan);
    margin-bottom: 25px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
}

.finale-message {
    font-size: 1.4rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 30px;
}

.call-to-greatness {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, 
        var(--cyber-green) 0%,
        var(--cyber-cyan) 50%,
        var(--cyber-purple) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 25px rgba(0, 255, 136, 0.8);
    animation: greatnessPulse 3s ease-in-out infinite;
    padding: 15px;
    border-radius: 10px;
    background-color: rgba(0, 255, 136, 0.05);
}

/* Responsive Design for Inspirational Section */
@media (max-width: 768px) {
    .vision-title {
        font-size: 1.8rem;
    }
    
    .vision-text {
        font-size: 1.1rem;
    }
    
    .transformation-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .shift-comparison {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .transformation-arrow {
        transform: rotate(90deg);
    }
    
    .arrow-head {
        transform: rotate(-90deg);
    }
    
    .finale-title {
        font-size: 2rem;
    }
    
    .finale-message {
        font-size: 1.2rem;
    }
    
    .call-to-greatness {
        font-size: 1.3rem;
    }
}

/* Advanced Inspirational Animations */
@keyframes imperativeAura {
    0%, 100% { 
        opacity: 0.6; 
        transform: scale(1);
    }
    50% { 
        opacity: 0.8; 
        transform: scale(1.02);
    }
}

@keyframes imperativeTitlePulse {
    0%, 100% { 
        text-shadow: 0 0 20px rgba(136, 0, 255, 0.5);
        transform: scale(1);
    }
    50% { 
        text-shadow: 0 0 30px rgba(136, 0, 255, 0.8);
        transform: scale(1.02);
    }
}

@keyframes visionBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes confidenceFill {
    0% { width: 0; }
    100% { width: attr(data-confidence); }
}

@keyframes arrowPulse {
    0%, 100% { 
        transform: scale(1);
        text-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
    }
    50% { 
        transform: scale(1.2);
        text-shadow: 0 0 20px rgba(0, 255, 255, 0.9);
    }
}

@keyframes finaleBorder {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

@keyframes greatnessPulse {
    0%, 100% { 
        transform: scale(1);
        filter: brightness(1);
    }
    50% { 
        transform: scale(1.05);
        filter: brightness(1.2);
    }
}

/* Leaflet Map Dark Theme */
.leaflet-tile-pane {
    filter: invert(1) hue-rotate(180deg) brightness(0.7) contrast(1.2) saturate(0.5);
}

.leaflet-container {
    background: var(--bg-dark) !important;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

/* Map popup styling */
.leaflet-popup-content-wrapper {
    background: rgba(0, 0, 0, 0.9) !important;
    border: 1px solid var(--cyber-cyan);
    border-radius: 8px;
    color: white !important;
    backdrop-filter: blur(10px);
}

.leaflet-popup-content {
    color: white !important;
    font-family: 'Roboto Mono', monospace;
    margin: 10px !important;
}

.leaflet-popup-tip {
    background: rgba(0, 0, 0, 0.9) !important;
    border: 1px solid var(--cyber-cyan);
}

/* Map controls styling */
.leaflet-control-zoom {
    border: none !important;
    background: rgba(0, 0, 0, 0.8) !important;
    backdrop-filter: blur(10px);
    border-radius: 5px !important;
}

.leaflet-control-zoom a {
    background: rgba(0, 255, 255, 0.1) !important;
    color: var(--cyber-cyan) !important;
    border: 1px solid rgba(0, 255, 255, 0.3) !important;
    transition: all 0.2s ease;
}

.leaflet-control-zoom a:hover {
    background: rgba(0, 255, 255, 0.2) !important;
    color: white !important;
    border-color: var(--cyber-cyan) !important;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.leaflet-control-attribution {
    background: rgba(0, 0, 0, 0.7) !important;
    color: rgba(255, 255, 255, 0.6) !important;
    border-radius: 3px;
    font-size: 10px;
}

.leaflet-control-attribution a {
    color: var(--cyber-cyan) !important;
}

/* Quantum Music Player - Clean Working Styles */
.quantum-music-player {
    margin: 25px 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.quantum-music-player audio {
    display: none;
}

.player-display {
    background: linear-gradient(135deg, var(--glass-bg), rgba(0, 255, 255, 0.05));
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 20px 25px 15px 25px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--glass-glow), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: grid;
    grid-template-columns: 60px 1fr 80px;
    grid-template-rows: 1fr auto;
    gap: 15px 20px;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.player-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transition: left 0.8s ease;
}

.player-display:hover::before {
    left: 100%;
}

.player-display:hover {
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    border-color: var(--cyber-cyan);
}

.quantum-visualizer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.wave-bars {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 32px;
}

.wave-bars .bar {
    width: 3px;
    background: linear-gradient(to top, var(--cyber-cyan), var(--cyber-blue));
    border-radius: 2px;
    animation: quantumWave 1.5s ease-in-out infinite;
    opacity: 0.7;
    box-shadow: 0 0 6px currentColor;
}

.wave-bars .bar:nth-child(1) { height: 12px; animation-delay: -0.1s; }
.wave-bars .bar:nth-child(2) { height: 20px; animation-delay: -0.2s; }
.wave-bars .bar:nth-child(3) { height: 28px; animation-delay: -0.3s; }
.wave-bars .bar:nth-child(4) { height: 16px; animation-delay: -0.4s; }
.wave-bars .bar:nth-child(5) { height: 32px; animation-delay: -0.5s; }
.wave-bars .bar:nth-child(6) { height: 24px; animation-delay: -0.6s; }
.wave-bars .bar:nth-child(7) { height: 18px; animation-delay: -0.7s; }
.wave-bars .bar:nth-child(8) { height: 26px; animation-delay: -0.8s; }
.wave-bars .bar:nth-child(9) { height: 14px; animation-delay: -0.9s; }
.wave-bars .bar:nth-child(10) { height: 22px; animation-delay: -1.0s; }

@keyframes quantumWave {
    0%, 100% {
        transform: scaleY(0.4);
        opacity: 0.6;
    }
    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

.track-info {
    text-align: center;
    overflow: hidden;
}

.track-title {
    font-family: 'Orbitron', monospace;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 4px;
    background: linear-gradient(45deg, var(--cyber-cyan), var(--cyber-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
    white-space: nowrap;
}

.track-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    opacity: 0.8;
    animation: subtitleGlow 3s ease-in-out infinite alternate;
}

@keyframes subtitleGlow {
    0% {
        opacity: 0.6;
        text-shadow: 0 0 5px rgba(255, 0, 128, 0.2);
    }
    100% {
        opacity: 0.9;
        text-shadow: 0 0 10px rgba(255, 0, 128, 0.4);
    }
}

.player-controls {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.control-btn {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.control-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, var(--cyber-cyan), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    opacity: 0;
}

.control-btn:hover::before {
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.control-btn:hover {
    background: rgba(0, 255, 255, 0.2);
    border-color: var(--cyber-cyan);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
    transform: scale(1.1);
}

.control-btn:active {
    transform: scale(0.95);
}

.control-btn svg {
    width: 16px;
    height: 16px;
    fill: var(--cyber-cyan);
    z-index: 1;
    transition: all 0.2s ease;
}

.control-btn:hover svg {
    fill: var(--text-light);
}

.control-btn .pause-icon {
    display: none;
}

.control-btn.playing .play-icon {
    display: none;
}

.control-btn.playing .pause-icon {
    display: block;
}

.beat-spectrum-analyzer {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 95%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1px;
    padding: 6px 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.spectrum-line {
    width: 100%;
    height: 4px;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    transition: all 0.02s linear;
    opacity: 0.6;
    transform-origin: center center;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(128, 128, 128, 0.2) 40%,
        rgba(128, 128, 128, 0.3) 50%,
        rgba(128, 128, 128, 0.2) 60%,
        transparent 100%);
}

.bass-line {
    background: linear-gradient(90deg, #8B0000, #DC143C, #FF6347, #FF4500, #DC143C, #8B0000);
    box-shadow: 0 0 3px rgba(220, 20, 60, 0.5);
}

.low-mid-line {
    background: linear-gradient(90deg, #FF1493, #FF69B4, #FFB6C1, #FF69B4, #FF1493);
    box-shadow: 0 0 3px rgba(255, 20, 147, 0.5);
}

.mid-line {
    background: linear-gradient(90deg, #32CD32, #00FF7F, #98FB98, #00FF7F, #32CD32);
    box-shadow: 0 0 3px rgba(50, 205, 50, 0.5);
}

.high-mid-line {
    background: linear-gradient(90deg, #00CED1, #40E0D0, #AFEEEE, #40E0D0, #00CED1);
    box-shadow: 0 0 3px rgba(0, 206, 209, 0.5);
}

.treble-line {
    background: linear-gradient(90deg, #1E90FF, #4169E1, #87CEEB, #4169E1, #1E90FF);
    box-shadow: 0 0 3px rgba(30, 144, 255, 0.5);
}

.high-line {
    background: linear-gradient(90deg, #9370DB, #8A2BE2, #DDA0DD, #8A2BE2, #9370DB);
    box-shadow: 0 0 3px rgba(147, 112, 219, 0.5);
}

.ultra-high-line {
    background: linear-gradient(90deg, #FF8C00, #FFA500, #FFD700, #FFA500, #FF8C00);
    box-shadow: 0 0 3px rgba(255, 140, 0, 0.5);
}

.presence-line {
    background: linear-gradient(90deg, #FF00FF, #DA70D6, #EE82EE, #DA70D6, #FF00FF);
    box-shadow: 0 0 3px rgba(255, 0, 255, 0.5);
}

@keyframes promptPulse {
    0%, 100% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.05);
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}