/* Reports Showcase Section Styles */
.reports-showcase {
    padding: var(--space-3xl) 0;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-gradient-start) 100%);
    position: relative;
    overflow: hidden;
}

/* Security Theater Background */
.reports-showcase::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(0deg, 
            transparent, 
            transparent 2px, 
            rgba(201, 169, 97, 0.03) 2px, 
            rgba(201, 169, 97, 0.03) 4px
        ),
        repeating-linear-gradient(90deg, 
            transparent, 
            transparent 2px, 
            rgba(201, 169, 97, 0.03) 2px, 
            rgba(201, 169, 97, 0.03) 4px
        );
    opacity: 0.5;
    pointer-events: none;
}

.reports-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    position: relative;
    z-index: 1;
}

/* Reports Header */
.reports-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.classified-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.625rem 1.5rem;
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 4px;
    margin-bottom: var(--space-lg);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--danger);
    animation: classified-pulse 2s infinite;
}

@keyframes classified-pulse {
    0%, 100% { border-color: rgba(239, 68, 68, 0.3); }
    50% { border-color: rgba(239, 68, 68, 0.8); }
}

.reports-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    font-family: var(--font-display);
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reports-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Reports Grid */
.reports-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

/* Report Card */
.report-card {
    position: relative;
    background: linear-gradient(135deg, rgba(15,15,15,0.95) 0%, rgba(26,26,26,0.95) 100%);
    border: 2px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--transition-slow);
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-lg);
}

.report-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: scan-line 4s linear infinite;
}

.report-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 
        0 20px 40px rgba(201, 169, 97, 0.2),
        0 0 60px rgba(201, 169, 97, 0.1);
}

/* Security Stamp */
.security-stamp {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    background: rgba(239, 68, 68, 0.1);
    border: 3px solid rgba(239, 68, 68, 0.5);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--danger);
    transform: rotate(-15deg);
    z-index: 10;
    backdrop-filter: blur(5px);
}

.stamp-text {
    text-align: center;
    line-height: 1.2;
}

/* Report Header */
.report-header {
    padding: var(--space-lg);
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--glass-border);
}

.report-type {
    font-size: 0.875rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-xs);
}

.report-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.report-meta {
    display: flex;
    gap: var(--space-md);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

/* Report Body */
.report-body {
    position: relative;
    padding: var(--space-lg);
}

/* Loading State */
.report-loading {
    height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid var(--glass-border);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: var(--space-md);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Report Viewer */
.report-viewer {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.report-iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

/* Scan Line Effect */
.scan-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(201, 169, 97, 0.03) 2px,
            rgba(201, 169, 97, 0.03) 4px
        );
    animation: scan-down 8s linear infinite;
}

@keyframes scan-down {
    to { transform: translateY(4px); }
}

/* Report Caption */
.report-caption {
    padding: var(--space-lg);
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid var(--glass-border);
}

.caption-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.caption-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.caption-icon {
    color: var(--gold);
}

/* Interactive Hints */
.interaction-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: var(--space-sm);
    background: rgba(201, 169, 97, 0.1);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 8px;
    font-size: 0.875rem;
    color: var(--gold);
    margin-top: var(--space-md);
    cursor: pointer;
    transition: all var(--transition-base);
}

.interaction-hint:hover {
    background: rgba(201, 169, 97, 0.2);
    transform: translateY(-2px);
}

/* War Room Demo Card */
.warroom-demo {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(15,15,15,0.95) 100%);
    border-color: rgba(239, 68, 68, 0.3);
    margin-top: var(--space-2xl);
}

.warroom-demo:hover {
    border-color: var(--danger);
    box-shadow: 
        0 20px 40px rgba(239, 68, 68, 0.2),
        0 0 60px rgba(239, 68, 68, 0.1);
}

.warroom-iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 8px;
}

/* Fallback Dashboard */
.fallback-dashboard {
    padding: var(--space-xl);
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%);
    border-radius: 8px;
    text-align: center;
}

.fallback-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
}

.fallback-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.fallback-metric {
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
}

.metric-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-display);
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-top: var(--space-xs);
}

/* Focus Overlay */
.focus-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.focus-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Bottom CTA */
.reports-cta {
    text-align: center;
    padding: var(--space-xl);
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.05) 0%, rgba(201, 169, 97, 0.02) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.cta-text {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

/* Responsive */
@media (max-width: 768px) {
    .reports-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .report-viewer,
    .report-iframe {
        height: 300px;
    }
    
    .warroom-iframe {
        height: 400px;
    }
    
    .security-stamp {
        width: 60px;
        height: 60px;
        font-size: 0.5rem;
    }
    
    .interaction-hint {
        font-size: 0.75rem;
    }
} 