:root {
    --void: #030304;
    --void-deep: #000000;
    --surface: #0a0a0c;

    /* Blue Palette - For accents and highlights */
    --sky: #ADD7F6;           /* Lightest blue accent */
    --soft-blue: #87BFFF;     /* Medium blue accent */
    --blue: #3F8EFC;          /* Primary blue accent */
    --royal: #2667FF;         /* Buttons, highlights */
    --indigo: #3B28CC;        /* Deep accent, decorative */

    /* Primary accent - now blue instead of cyan */
    --neon-cyan: #3F8EFC;
    --neon-purple: #3B28CC;
    --neon-blue: #2667FF;
    --neon-red: #ff2a2a;

    /* Text colors - neutral for readability across all sections */
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;

    /* Glow effects */
    --accent-glow: rgba(63, 142, 252, 0.4);
    --accent-glow-strong: rgba(38, 103, 255, 0.5);

    --glass: rgba(255, 255, 255, 0.02);
    --glass-hover: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-display: "Syncopate", sans-serif;
    --font-body: "Space Grotesk", sans-serif;
    --easing: cubic-bezier(0.16, 1, 0.3, 1);
    --radius-lg: 2rem;
    --radius-pill: 100px;
}

/* --- UNIFIED SECTION LABELS [BRACKET STYLE] --- */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.section-label .label-bracket {
    font-family: 'SF Mono', 'Consolas', monospace;
    font-size: 0.9rem;
    color: var(--blue);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.section-label .label-text {
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--blue);
    text-transform: uppercase;
}

.section-label:hover .label-bracket {
    opacity: 1;
}

/* Threat variant - red color */
.section-label.threat .label-bracket {
    color: var(--neon-red);
}

.section-label.threat .label-text {
    color: var(--neon-red);
}

/* Sub variant - smaller, dimmer */
.section-label.sub {
    margin-bottom: 0;
    margin-top: 1rem;
}

.section-label.sub .label-bracket {
    font-size: 0.7rem;
    opacity: 0.3;
}

.section-label.sub .label-text {
    font-size: 0.6rem;
    opacity: 0.6;
}

/* --- INTELLIGENCE COMPONENTS --- */
/* Executive Brief */
.brief-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 4rem auto 8rem;
    padding: 0 8%;
    position: relative;
}

.brief-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: white;
}

.brief-visual {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem;
}

/* Stat Ribbon */
.stat-ribbon {
    width: 100%;
    background: rgba(63, 142, 252, 0.05);
    border-top: 1px solid rgba(63, 142, 252, 0.2);
    border-bottom: 1px solid rgba(63, 142, 252, 0.2);
    padding: 2rem 5%;
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 6rem;
    flex-wrap: wrap;
    backdrop-filter: blur(5px);
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--neon-cyan);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(63, 142, 252, 0.4);
}

.stat-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--text-secondary);
}

/* Method Terminal */
.method-terminal {
    max-width: 1000px;
    margin: 0 auto 8rem;
    background: #050505;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    font-family: monospace;
    position: relative;
}

.terminal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.method-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    border-left: 2px solid var(--neon-cyan);
    padding-left: 1.5rem;
}

.method-label {
    min-width: 150px;
    color: var(--neon-cyan);
    font-weight: bold;
}

/* --- CLASSIFIED ARCHIVES (CASE STUDIES) --- */
.archive-filter-bar {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    padding: 0.8rem 1.5rem;
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--neon-cyan);
    color: black;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(63, 142, 252, 0.3);
}

.study-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto 6rem;
}

/* --- CINEMATIC FIELD REPORTS (TESTIMONIALS) --- */
.reports-section {
    position: relative;
    padding: 10rem 0;
    overflow: hidden;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(0, 0, 0, 0.8) 10%,
            rgba(5, 5, 10, 0.95) 50%,
            rgba(0, 0, 0, 0.8) 90%,
            transparent 100%);
}

.reports-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(63, 142, 252, 0.01) 2px,
            rgba(63, 142, 252, 0.01) 4px);
    pointer-events: none;
    z-index: 1;
    animation: scanlineFlicker 0.1s infinite;
}

@keyframes scanlineFlicker {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.3;
    }
}

.reports-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
    z-index: 2;
}

.reports-header h2 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    position: relative;
    display: inline-block;
}

.reports-header h2::before,
.reports-header h2::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    top: 50%;
}

.reports-header h2::before {
    right: calc(100% + 2rem);
}

.reports-header h2::after {
    left: calc(100% + 2rem);
}

/* Cinematic Video Wall Grid */
.reports-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 3%;
    position: relative;
    z-index: 2;
}

/* Surveillance monitor frame */
.report-card {
    background: #000;
    border: 2px solid rgba(63, 142, 252, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--easing);
    transform-origin: center;
}

.report-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
            rgba(63, 142, 252, 0.05) 0%,
            transparent 20%,
            transparent 80%,
            rgba(63, 142, 252, 0.03) 100%);
    pointer-events: none;
    z-index: 5;
}

.report-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    animation: monitorScan 4s linear infinite;
    z-index: 10;
}

@keyframes monitorScan {
    0% {
        top: 0;
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0.3;
    }
}

.report-card:hover {
    border-color: var(--neon-cyan);
    transform: scale(1.02);
    box-shadow:
        0 0 30px rgba(63, 142, 252, 0.2),
        inset 0 0 60px rgba(63, 142, 252, 0.05);
    z-index: 10;
}

/* Featured large card */
.report-card.featured {
    grid-column: span 2;
    grid-row: span 2;
}

.report-card.featured .video-monitor {
    aspect-ratio: 16/10;
}

/* Video monitor with CRT effect */
.video-monitor {
    position: relative;
    aspect-ratio: 16/9;
    background: #000;
    overflow: hidden;
    border-bottom: 1px solid rgba(63, 142, 252, 0.1);
}

.video-monitor::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(0deg,
            rgba(0, 0, 0, 0.15),
            rgba(0, 0, 0, 0.15) 1px,
            transparent 1px,
            transparent 2px);
    pointer-events: none;
    z-index: 3;
}

.video-monitor::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center,
            transparent 0%,
            rgba(0, 0, 0, 0.3) 90%,
            rgba(0, 0, 0, 0.6) 100%);
    pointer-events: none;
    z-index: 4;
}

.monitor-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(rgba(63, 142, 252, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(63, 142, 252, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 2;
    opacity: 0.5;
}

/* Corner brackets HUD */
.monitor-hud-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: var(--neon-cyan);
    border-style: solid;
    z-index: 6;
    opacity: 0.6;
}

.monitor-hud-corner.tl {
    top: 10px;
    left: 10px;
    border-width: 2px 0 0 2px;
}

.monitor-hud-corner.tr {
    top: 10px;
    right: 10px;
    border-width: 2px 2px 0 0;
}

.monitor-hud-corner.bl {
    bottom: 10px;
    left: 10px;
    border-width: 0 0 2px 2px;
}

.monitor-hud-corner.br {
    bottom: 10px;
    right: 10px;
    border-width: 0 2px 2px 0;
}

.monitor-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--neon-red);
    font-family: var(--font-display);
    font-size: 0.65rem;
    letter-spacing: 1px;
    background: rgba(0, 0, 0, 0.8);
    padding: 0.4rem 0.8rem;
    border: 1px solid var(--neon-red);
    z-index: 7;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 10px rgba(255, 42, 42, 0.3);
    }

    50% {
        opacity: 0.7;
        box-shadow: 0 0 5px rgba(255, 42, 42, 0.1);
    }
}

.monitor-status::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--neon-red);
    border-radius: 50%;
    animation: blink 1s infinite;
}

.monitor-timestamp {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    color: rgba(63, 142, 252, 0.8);
    z-index: 7;
    text-shadow: 0 0 5px var(--neon-cyan);
}

.monitor-cam-id {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-family: var(--font-display);
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
    z-index: 7;
}

.monitor-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.4s var(--easing);
    z-index: 8;
    cursor: pointer;
}

.monitor-play-btn::before {
    content: '';
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(63, 142, 252, 0.3);
    border-radius: 50%;
    animation: playRipple 2s ease-out infinite;
}

@keyframes playRipple {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.report-card:hover .monitor-play-btn {
    background: var(--neon-cyan);
    border-color: var(--neon-cyan);
    color: black;
    box-shadow:
        0 0 30px var(--neon-cyan),
        0 0 60px rgba(63, 142, 252, 0.3);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Content panel with terminal aesthetic */
.report-content {
    padding: 1.5rem;
    background: linear-gradient(180deg, rgba(0, 20, 25, 0.9), rgba(0, 10, 15, 0.95));
    border-top: 1px solid rgba(63, 142, 252, 0.1);
    position: relative;
}

.report-content::before {
    content: '>';
    position: absolute;
    top: 1.5rem;
    left: 1rem;
    color: var(--neon-cyan);
    font-family: monospace;
    animation: cursorBlink 1s infinite;
}

@keyframes cursorBlink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

.report-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    margin-left: 1rem;
    font-family: var(--font-display);
    font-size: 0.65rem;
    color: var(--neon-cyan);
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(63, 142, 252, 0.1);
    padding-bottom: 0.75rem;
}

.report-quote {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: normal;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    margin-left: 1rem;
    font-family: var(--font-body);
    position: relative;
}

.report-quote::before {
    content: '"';
    position: absolute;
    left: -1rem;
    top: -0.5rem;
    font-size: 2rem;
    color: var(--neon-cyan);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.report-author {
    font-family: var(--font-display);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: 1rem;
    letter-spacing: 1px;
}

.report-author::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--neon-cyan);
}

/* Verification badge */
.report-verified {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.6rem;
    color: var(--neon-cyan);
    padding: 0.2rem 0.5rem;
    border: 1px solid var(--neon-cyan);
    margin-left: auto;
}

.report-verified::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--neon-cyan);
    border-radius: 50%;
}

/* ================================================================
   LAB MICROSCOPE TESTIMONIAL SECTION
   ================================================================ */
.lab-testimonial-section {
    position: relative;
    min-height: 100vh;
    padding: 8rem 0;
    overflow: hidden;
    background: linear-gradient(180deg,
            var(--void) 0%,
            rgba(5, 8, 12, 1) 20%,
            rgba(8, 12, 18, 1) 50%,
            rgba(5, 8, 12, 1) 80%,
            var(--void) 100%);
}

/* Lab environment grid */
.lab-testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(90deg, rgba(63, 142, 252, 0.02) 1px, transparent 1px),
        linear-gradient(rgba(63, 142, 252, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* Section header */
.lab-testimonial-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.lab-testimonial-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.lab-testimonial-header .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-family: monospace;
    font-size: 0.75rem;
    color: var(--neon-cyan);
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.lab-testimonial-header .section-tag::before,
.lab-testimonial-header .section-tag::after {
    content: '';
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan));
}

.lab-testimonial-header .section-tag::after {
    background: linear-gradient(90deg, var(--neon-cyan), transparent);
}

/* Main microscope container */
.microscope-stage {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 5%;
    align-items: center;
    position: relative;
    z-index: 10;
}

/* Giant microscope visual */
.microscope-apparatus {
    position: relative;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Microscope body */
.microscope-body {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Eyepiece top */
.microscope-eyepiece {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 120px;
    background: linear-gradient(180deg,
            rgba(30, 35, 45, 1) 0%,
            rgba(20, 25, 35, 1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px 8px 0 0;
}

.microscope-eyepiece::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 20px;
    background: rgba(40, 45, 55, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px 5px 0 0;
}

/* Main arm */
.microscope-arm {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 250px;
    background: linear-gradient(90deg,
            rgba(25, 30, 40, 1) 0%,
            rgba(35, 40, 50, 1) 50%,
            rgba(25, 30, 40, 1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
}

/* Objective lens housing */
.microscope-objective {
    position: absolute;
    top: 340px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 60px;
    background: rgba(20, 25, 35, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 0 50px 50px;
}

.microscope-objective::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 40px;
    background: linear-gradient(180deg,
            rgba(30, 35, 45, 1) 0%,
            rgba(15, 20, 30, 1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 0 8px 8px;
}

/* The lens with glow */
.microscope-lens {
    position: absolute;
    top: 400px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%,
            rgba(0, 60, 80, 0.3) 0%,
            rgba(0, 30, 40, 0.5) 50%,
            rgba(0, 20, 30, 0.8) 100%);
    border: 3px solid rgba(63, 142, 252, 0.2);
    box-shadow:
        0 0 60px rgba(63, 142, 252, 0.1),
        inset 0 0 40px rgba(63, 142, 252, 0.05);
    overflow: hidden;
}

/* Lens inner rings */
.microscope-lens::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    border: 1px solid rgba(63, 142, 252, 0.15);
    border-radius: 50%;
}

.microscope-lens::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 1px dashed rgba(63, 142, 252, 0.1);
    border-radius: 50%;
    animation: lensRotate 20s linear infinite;
}

@keyframes lensRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Lens light beam */
.lens-beam {
    position: absolute;
    top: 500px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 200px;
    background: linear-gradient(180deg,
            rgba(63, 142, 252, 0.15) 0%,
            rgba(63, 142, 252, 0.05) 50%,
            transparent 100%);
    clip-path: polygon(30% 0%, 70% 0%, 100% 100%, 0% 100%);
    pointer-events: none;
}

/* Stage/platform */
.microscope-platform {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 20px;
    background: linear-gradient(180deg,
            rgba(40, 45, 55, 1) 0%,
            rgba(25, 30, 40, 1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

/* Base */
.microscope-base {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 350px;
    height: 60px;
    background: linear-gradient(180deg,
            rgba(30, 35, 45, 1) 0%,
            rgba(20, 25, 35, 1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 5px;
}

/* Specimen slide in lens */
.specimen-in-lens {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.specimen-cell {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(63, 142, 252, 0.4);
    border-radius: 50%;
    position: relative;
    animation: cellPulse 3s ease-in-out infinite;
}

.specimen-cell::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;
    background: rgba(63, 142, 252, 0.3);
    border-radius: 50%;
}

@keyframes cellPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* Floating data readouts */
.microscope-readout {
    position: absolute;
    font-family: monospace;
    font-size: 0.65rem;
    color: var(--neon-cyan);
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    background: rgba(0, 20, 30, 0.8);
    border: 1px solid rgba(63, 142, 252, 0.2);
    white-space: nowrap;
}

.readout-mag {
    top: 150px;
    right: 10%;
}

.readout-focus {
    top: 300px;
    left: 5%;
}

.readout-sample {
    bottom: 120px;
    right: 15%;
}

/* ================================================================
   VIDEO TESTIMONIAL CARD
   ================================================================ */
.testimonial-viewport {
    position: relative;
}

/* Lab monitor frame */
.lab-monitor {
    position: relative;
    background: #000;
    border: 3px solid rgba(30, 35, 45, 1);
    border-radius: 8px;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 0 100px rgba(0, 0, 0, 0.3);
}

/* Monitor bezel top */
.monitor-bezel {
    background: linear-gradient(180deg,
            rgba(35, 40, 50, 1) 0%,
            rgba(25, 30, 40, 1) 100%);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.monitor-bezel-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.monitor-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan);
    animation: indicatorPulse 2s ease-in-out infinite;
}

@keyframes indicatorPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.monitor-label {
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
}

.monitor-bezel-right {
    font-family: monospace;
    font-size: 0.65rem;
    color: var(--text-secondary);
}

/* Video screen area */
.monitor-screen {
    position: relative;
    aspect-ratio: 16/9;
    background: #000;
    overflow: hidden;
}

/* CRT scanline effect */
.monitor-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.1) 2px,
            rgba(0, 0, 0, 0.1) 4px);
    pointer-events: none;
    z-index: 5;
}

/* Vignette */
.monitor-screen::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center,
            transparent 50%,
            rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
    z-index: 6;
}

/* Video placeholder/thumbnail */
.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

/* Play button overlay */
.video-play-trigger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s var(--easing);
    z-index: 10;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
}

.video-play-trigger::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent white;
    margin-left: 5px;
}

.video-play-trigger::after {
    content: '';
    position: absolute;
    inset: -10px;
    border: 1px solid rgba(63, 142, 252, 0.2);
    border-radius: 50%;
    animation: playPulse 2s ease-out infinite;
}

@keyframes playPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.lab-monitor:hover .video-play-trigger {
    background: rgba(63, 142, 252, 0.9);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 40px rgba(63, 142, 252, 0.4);
}

.lab-monitor:hover .video-play-trigger::before {
    border-color: transparent transparent transparent #000;
}

/* HUD overlay on video */
.video-hud {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 8;
}

.hud-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border-color: rgba(63, 142, 252, 0.4);
    border-style: solid;
}

.hud-corner.tl {
    top: 20px;
    left: 20px;
    border-width: 2px 0 0 2px;
}

.hud-corner.tr {
    top: 20px;
    right: 20px;
    border-width: 2px 2px 0 0;
}

.hud-corner.bl {
    bottom: 20px;
    left: 20px;
    border-width: 0 0 2px 2px;
}

.hud-corner.br {
    bottom: 20px;
    right: 20px;
    border-width: 0 2px 2px 0;
}

.video-timestamp {
    position: absolute;
    bottom: 25px;
    left: 25px;
    font-family: monospace;
    font-size: 0.7rem;
    color: rgba(63, 142, 252, 0.7);
    z-index: 9;
}

.video-subject-id {
    position: absolute;
    top: 25px;
    left: 25px;
    font-family: var(--font-display);
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    z-index: 9;
}

/* Testimonial content panel */
.testimonial-data-panel {
    padding: 2rem;
    background: linear-gradient(180deg,
            rgba(15, 20, 30, 0.95) 0%,
            rgba(10, 15, 25, 0.98) 100%);
    border-top: 1px solid rgba(63, 142, 252, 0.1);
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    position: relative;
    padding-left: 1.5rem;
    border-left: 2px solid rgba(63, 142, 252, 0.3);
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    top: -1rem;
    left: -0.5rem;
    font-size: 4rem;
    color: rgba(63, 142, 252, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-attribution {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.author-name {
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: white;
}

.author-title {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.testimonial-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(63, 142, 252, 0.05);
    border: 1px solid rgba(63, 142, 252, 0.2);
    font-family: var(--font-display);
    font-size: 0.65rem;
    letter-spacing: 1px;
    color: var(--neon-cyan);
}

.testimonial-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--neon-cyan);
}

/* Navigation dots */
.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.nav-dot:hover {
    border-color: var(--neon-cyan);
}

.nav-dot.active {
    background: var(--neon-cyan);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px var(--neon-cyan);
}

.video-feed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 6rem;
    padding: 0 5%;
}

.video-feed-item {
    position: relative;
    background: black;
    border: 1px solid rgba(255, 255, 255, 0.1);
    aspect-ratio: 16/9;
    overflow: hidden;
}

.feed-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(63, 142, 252, 0.05) 1px, transparent 1px);
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 2;
    opacity: 0.5;
}

.rec-indicator {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--neon-red);
    font-family: var(--font-display);
    font-size: 0.7rem;
    z-index: 3;
}

.rec-dot {
    width: 8px;
    height: 8px;
    background: var(--neon-red);
    border-radius: 50%;
    animation: blink 2s infinite;
}

.feed-meta {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to top, black, transparent);
    z-index: 3;
    font-family: var(--font-display);
}

.transmission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 8rem;
    padding: 0 5%;
}

.transmission-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    position: relative;
    border-left: 2px solid var(--text-secondary);
    transition: all 0.3s;
}

.transmission-card:hover {
    border-left-color: var(--neon-cyan);
    background: rgba(255, 255, 255, 0.04);
}

.trans-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    font-family: monospace;
    font-size: 0.7rem;
    color: var(--text-secondary);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.trans-body {
    font-size: 0.95rem;
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.trans-footer {
    font-family: var(--font-display);
    font-size: 0.8rem;
    color: var(--neon-cyan);
}

.study-file {
    background: rgba(10, 10, 12, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding: 2rem;
    transition: all 0.4s var(--easing);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 300px;
}

.study-file::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--neon-cyan);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--easing);
}

.study-file:hover {
    transform: translateY(-5px);
    background: rgba(20, 20, 25, 0.9);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.study-file:hover::before {
    transform: scaleX(1);
}

.file-status {
    align-self: flex-start;
    font-family: monospace;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    background: rgba(63, 142, 252, 0.1);
    color: var(--neon-cyan);
    border: 1px solid var(--neon-cyan);
    margin-bottom: 2rem;
}

.file-status.redacted {
    border-color: var(--neon-red);
    color: var(--neon-red);
    background: rgba(255, 42, 42, 0.1);
}

.study-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.study-meta {
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    justify-content: space-between;
}

/* --- VOID BREAKERS (BACKGROUNDS) --- */
.bg-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.8;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

.bg-gradient-spot {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
    mix-blend-mode: screen;
}

.spot-cyan {
    background: radial-gradient(circle, var(--neon-cyan) 0%, transparent 70%);
}

.spot-purple {
    background: radial-gradient(circle, var(--neon-purple) 0%, transparent 70%);
}

.spot-red {
    background: radial-gradient(circle, var(--neon-red) 0%, transparent 70%);
}

/* === TECH BORDER LINE - Section Divider === */
.tech-border-line {
    width: 100%;
    height: 40px;
    position: relative;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

/* Main horizontal line */
.tech-border-line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(63, 142, 252, 0.1) 10%,
            rgba(63, 142, 252, 0.3) 30%,
            rgba(63, 142, 252, 0.5) 50%,
            rgba(63, 142, 252, 0.3) 70%,
            rgba(63, 142, 252, 0.1) 90%,
            transparent 100%);
    transform: translateY(-50%);
}

/* Center energy core */
.tech-border-line::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    transform: translate(-50%, -50%);
    box-shadow:
        0 0 20px var(--neon-cyan),
        0 0 40px rgba(63, 142, 252, 0.4),
        0 0 60px rgba(63, 142, 252, 0.2);
    animation: techLinePulse 3s ease-in-out infinite;
}

@keyframes techLinePulse {

    0%,
    100% {
        opacity: 0.8;
        box-shadow:
            0 0 20px var(--neon-cyan),
            0 0 40px rgba(63, 142, 252, 0.4);
    }

    50% {
        opacity: 1;
        box-shadow:
            0 0 30px var(--neon-cyan),
            0 0 60px rgba(63, 142, 252, 0.5),
            0 0 80px rgba(63, 142, 252, 0.3);
    }
}

/* Corner brackets for tech-border-line */
.tech-border-line .tbl-bracket {
    position: absolute;
    width: 12px;
    height: 12px;
    border: 1px solid rgba(63, 142, 252, 0.4);
}

.tech-border-line .tbl-bracket.tbl-left {
    left: 3%;
    border-right: none;
    border-bottom: none;
}

.tech-border-line .tbl-bracket.tbl-right {
    right: 3%;
    border-left: none;
    border-bottom: none;
}

/* Side data markers */
.tech-border-line .tbl-marker {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'SF Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.15em;
    color: rgba(63, 142, 252, 0.4);
    text-transform: uppercase;
}

.tech-border-line .tbl-marker.tbl-marker-left {
    left: 6%;
}

.tech-border-line .tbl-marker.tbl-marker-right {
    right: 6%;
}

/* Scanning line animation */
.tech-border-line .tbl-scan {
    position: absolute;
    top: 50%;
    left: 5%;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    transform: translateY(-50%);
    animation: techLineScan 4s linear infinite;
    opacity: 0.6;
}

@keyframes techLineScan {
    0% {
        left: 5%;
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        left: calc(95% - 60px);
        opacity: 0;
    }
}

/* Extra spacing variant for major transitions */
.tech-border-line.tbl-spacious {
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .tech-border-line .tbl-marker {
        display: none;
    }

    .tech-border-line .tbl-bracket {
        display: none;
    }
}

.hud-corner-decor {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.h-tl {
    top: 2rem;
    left: 2rem;
    border-right: none;
    border-bottom: none;
}

.h-tr {
    top: 2rem;
    right: 2rem;
    border-left: none;
    border-bottom: none;
}

.h-bl {
    bottom: 2rem;
    left: 2rem;
    border-right: none;
    border-top: none;
}

.h-br {
    bottom: 2rem;
    right: 2rem;
    border-left: none;
    border-top: none;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    background-color: var(--void);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

/* --- OVERLAYS --- */
#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.overlay-vignette {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 20%, #000000 120%);
    pointer-events: none;
    z-index: 0;
    opacity: 0.7;
}

.overlay-noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.04;
    background: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="1"/%3E%3C/svg%3E');
    pointer-events: none;
    z-index: 1;
}

/* --- MORPHING NAV --- */
.hud-nav {
    position: fixed;
    top: 11vh;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1400px;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10005;
    z-index: 1000;
    background: transparent;
    border: none;
    transition: all 3.5s cubic-bezier(0.05, 0.7, 0.1, 1);
}

/* Background when away from top (both expanded and collapsed) */
.hud-nav.nav-active {
    background: rgba(5, 7, 12, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* Collapsed state */
.hud-nav.scrolled {
    width: auto;
    padding: 0.7rem 1.5rem;
    border-radius: 2px;
    transition: all 1.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.brand {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-text {
    transition: max-width 0.5s var(--easing), opacity 0.5s var(--easing);
    overflow: hidden;
    max-width: 200px;
    color: #fff;
}

.hud-nav.scrolled .brand-text {
    max-width: 200px;
    opacity: 1;
}

.brand-logo {
    display: block;
    height: 48px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(63, 142, 252, 0.3));
    transition: all 0.3s ease;
}

.hud-nav.scrolled .brand-logo {
    height: 32px;
}

.hud-nav .nav-links {
    display: flex;
    flex-direction: row !important;
    align-items: center;
    gap: 2.5rem;
    transition: all 0.5s var(--easing);
    opacity: 1;
    max-width: 800px;
    overflow: hidden;
}

.hud-nav.scrolled .nav-links {
    max-width: 0;
    opacity: 0;
    gap: 0;
    pointer-events: none;
}

.hud-nav .nav-links a {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.hud-nav .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--neon-cyan);
    transition: width 0.3s ease;
}

.hud-nav .nav-links a:hover {
    color: white;
}

.hud-nav .nav-links a:hover::after {
    width: 100%;
}

/* Hide mobile shop link on desktop */
.hud-nav .nav-links .mobile-shop-link {
    display: none;
}

@media (max-width: 1100px) {
    .hud-nav .nav-links {
        gap: 1.5rem;
    }

    .hud-nav .nav-links a {
        font-size: 0.65rem;
    }

    .hud-nav .nav-links a:nth-last-child(-n+2) {
        display: none;
    }
}

@media (max-width: 900px) {
    .hud-nav .nav-links a:nth-last-child(-n+3) {
        display: none;
    }
}

/* Hamburger Toggle Button */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    width: 36px;
    height: 36px;
    background: rgba(63, 142, 252, 0.03);
    border: 1px solid rgba(63, 142, 252, 0.2);
    border-radius: 6px;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    transition: all 0.3s ease;
    z-index: 1001;
    position: relative;
    flex-shrink: 0;
}

.nav-toggle:hover {
    background: rgba(63, 142, 252, 0.08);
    border-color: rgba(63, 142, 252, 0.4);
    box-shadow: 0 0 12px rgba(63, 142, 252, 0.15);
}

.nav-toggle.active {
    background: rgba(63, 142, 252, 0.1);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(63, 142, 252, 0.25);
}

.hamburger-line {
    display: block;
    height: 2px;
    background: var(--neon-cyan);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

.hamburger-line:nth-child(1) {
    width: 20px;
}

.hamburger-line:nth-child(2) {
    width: 14px;
}

.hamburger-line:nth-child(3) {
    width: 18px;
}

.nav-toggle:hover .hamburger-line {
    width: 20px;
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    width: 20px;
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    width: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    width: 20px;
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .hud-nav {
        top: 1rem;
        width: calc(100% - 2rem);
        max-width: none;
        left: 1rem;
        right: 1rem;
        transform: none;
        padding: 0.75rem 1rem;
        background: rgba(5, 7, 12, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-toggle {
        display: flex;
        margin-left: auto;
    }

    .hud-nav .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(5, 7, 12, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column !important;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        padding: 2rem;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                    transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                    visibility 1.2s;
        max-width: 100%;
        overflow: visible;
        z-index: 999;
    }

    .hud-nav .nav-links.mobile-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .hud-nav .nav-links a {
        display: block !important;
        font-size: 1.2rem;
        letter-spacing: 3px;
        padding: 1rem;
        text-align: center;
        opacity: 0;
        transform: translateY(15px);
        transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                    transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                    color 0.3s ease;
    }

    .hud-nav .nav-links.mobile-open a {
        opacity: 1;
        transform: translateY(0);
    }

    .hud-nav .nav-links.mobile-open a:nth-child(1) { transition-delay: 0.2s; }
    .hud-nav .nav-links.mobile-open a:nth-child(2) { transition-delay: 0.3s; }
    .hud-nav .nav-links.mobile-open a:nth-child(3) { transition-delay: 0.4s; }
    .hud-nav .nav-links.mobile-open a:nth-child(4) { transition-delay: 0.5s; }
    .hud-nav .nav-links.mobile-open a:nth-child(5) { transition-delay: 0.6s; }
    .hud-nav .nav-links.mobile-open a:nth-child(6) { transition-delay: 0.7s; }
    .hud-nav .nav-links.mobile-open a:nth-child(7) { transition-delay: 0.8s; }

    /* Hide mobile shop link in menu - shop button is in navbar */
    .hud-nav .nav-links .mobile-shop-link {
        display: none !important;
    }

    /* Show shop button in mobile navbar */
    .btn-shop {
        display: inline-flex;
        font-size: 0.55rem;
        padding: 0.4rem 0.7rem;
        margin-left: auto;
        margin-right: 0.5rem;
    }

    .hud-nav.scrolled .nav-links {
        max-width: 100%;
        opacity: 0;
        pointer-events: none;
    }

    .hud-nav.scrolled .nav-links.mobile-open {
        opacity: 1;
        pointer-events: auto;
    }
}

/* --- BUTTONS SYSTEM --- */
.btn-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.btn {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 1rem 2rem;
    border-radius: var(--radius-pill);
    transition: all 0.4s var(--easing);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-transform: uppercase;
}

/* Primary: Neon Fill */
.btn-primary {
    background: var(--neon-cyan);
    color: var(--void-deep);
    border: 1px solid var(--neon-cyan);
    box-shadow: 0 0 20px rgba(63, 142, 252, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transform: skewX(-25deg);
    transition: 0.5s;
}

.btn-primary:hover {
    box-shadow: 0 0 40px rgba(63, 142, 252, 0.6);
    transform: translateY(-2px);
}

.btn-primary:hover::before {
    left: 150%;
}

/* Secondary: Glass / Outline */
.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    background: rgba(63, 142, 252, 0.05);
    box-shadow: 0 0 20px rgba(63, 142, 252, 0.1);
}

/* Cyber: Glitchy / Tech */
.btn-cyber {
    background: transparent;
    color: var(--neon-red);
    border: 1px solid var(--neon-red);
    box-shadow: 0 0 10px rgba(255, 42, 42, 0.1);
}

.btn-cyber:hover {
    background: var(--neon-red);
    color: var(--void);
    box-shadow: 0 0 30px rgba(255, 42, 42, 0.4);
}

/* Shop Button Legacy Support (Mapped to Primary) */
.btn-shop {
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #000;
    background: #fff;
    border: 1px solid #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 2px;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3), 0 0 40px rgba(63, 142, 252, 0.2);
    animation: btn-glow-pulse 2.5s ease-in-out infinite;
}

@keyframes btn-glow-pulse {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.3), 0 0 30px rgba(63, 142, 252, 0.15);
    }

    50% {
        box-shadow: 0 0 25px rgba(255, 255, 255, 0.5), 0 0 50px rgba(63, 142, 252, 0.35);
    }
}

.btn-shop:hover {
    background: #fff;
    animation: none;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.6), 0 0 60px rgba(63, 142, 252, 0.5);
}

.hud-nav.scrolled .btn-shop {
    padding: 0.5rem 1rem;
    font-size: 0.6rem;
}

/* --- SECTIONS --- */
section {
    padding: 8rem 8%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ===========================================
   HERO SECTION - COMMAND CENTER
   =========================================== */

.section-hero {
    min-height: 100vh;
    padding: 28vh 5% 22vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Background Effects */
.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(63, 142, 252, 0.015) 1px, transparent 1px),
        linear-gradient(rgba(63, 142, 252, 0.015) 1px, transparent 1px);
    background-size: 100px 100px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 10%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 10%, transparent 70%);
    pointer-events: none;
    z-index: 2;
}

.hero-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(63, 142, 252, 0.3) 20%, rgba(63, 142, 252, 0.8) 50%, rgba(63, 142, 252, 0.3) 80%, transparent 100%);
    animation: heroScanMove 5s linear infinite;
    pointer-events: none;
    z-index: 3;
}

@keyframes heroScanMove {
    0% {
        top: 0;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

/* HUD Frame Brackets */
.hero-hud-frame {
    position: absolute;
    top: 10vh;
    left: 5%;
    right: 5%;
    bottom: 5vh;
    pointer-events: none;
    z-index: 5;
}

.hero-bracket {
    position: absolute;
    width: 60px;
    height: 60px;
}

.hero-bracket::before,
.hero-bracket::after {
    content: '';
    position: absolute;
    background: rgba(63, 142, 252, 0.4);
}

.hb-tl {
    top: 0;
    left: 0;
}

.hb-tl::before {
    top: 0;
    left: 0;
    width: 50px;
    height: 1px;
}

.hb-tl::after {
    top: 0;
    left: 0;
    width: 1px;
    height: 50px;
}

.hb-tr {
    top: 0;
    right: 0;
}

.hb-tr::before {
    top: 0;
    right: 0;
    width: 50px;
    height: 1px;
}

.hb-tr::after {
    top: 0;
    right: 0;
    width: 1px;
    height: 50px;
}

.hb-bl {
    bottom: 0;
    left: 0;
}

.hb-bl::before {
    bottom: 0;
    left: 0;
    width: 50px;
    height: 1px;
}

.hb-bl::after {
    bottom: 0;
    left: 0;
    width: 1px;
    height: 50px;
}

.hb-br {
    bottom: 0;
    right: 0;
}

.hb-br::before {
    bottom: 0;
    right: 0;
    width: 50px;
    height: 1px;
}

.hb-br::after {
    bottom: 0;
    right: 0;
    width: 1px;
    height: 50px;
}

/* Side Data Columns */
.hero-data-column {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 10;
}

.data-left {
    left: 3%;
    align-items: flex-start;
}

.data-right {
    right: 3%;
    align-items: flex-end;
    text-align: right;
}

.data-readout {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.readout-label {
    font-family: 'SF Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.4);
}

.readout-value {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--neon-cyan);
    letter-spacing: 0.1em;
}

.readout-value.warning {
    color: var(--neon-red);
}

.data-bar-vertical {
    width: 3px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    margin-top: 0.5rem;
}

.data-left .data-bar-vertical {
    margin-left: 0;
}

.data-right .data-bar-vertical {
    margin-left: auto;
}

.bar-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(to top, var(--neon-cyan), rgba(63, 142, 252, 0.3));
    animation: barPulse 2s ease-in-out infinite;
}

.bar-fill.warning {
    background: linear-gradient(to top, var(--neon-red), rgba(255, 42, 42, 0.3));
}

@keyframes barPulse {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}

/* Main Content Container */
.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-content .section-label {
    margin-bottom: 1.5rem;
}

/* Title Block */
.hero-title-block {
    margin-bottom: 2rem;
}

.title-prefix {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.prefix-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3));
}

.prefix-line:last-child {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), transparent);
}

.prefix-text {
    font-family: 'SF Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.4);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 7rem);
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

.title-word {
    display: block;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.6) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title-word.accent {
    background: linear-gradient(180deg, var(--neon-cyan) 0%, rgba(0, 150, 200, 0.8) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 40px rgba(63, 142, 252, 0.4));
}

.title-suffix {
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 0.35em;
    color: rgba(255, 255, 255, 0.5);
}

/* Description Panel */
.hero-desc-panel {
    max-width: 620px;
    margin: 0 auto 2.5rem;
}

.desc-border-top,
.desc-border-bottom {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(63, 142, 252, 0.3), transparent);
    margin: 1rem 0;
}

.hero-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.hero-description .highlight {
    color: var(--neon-cyan);
}

/* Action Buttons */
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.btn-hero-primary {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--neon-cyan);
    color: black;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    font-weight: 700;
    transition: all 0.4s var(--easing);
    position: relative;
    overflow: hidden;
}

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

.btn-hero-primary:hover {
    background: #fff;
    box-shadow: 0 0 30px rgba(63, 142, 252, 0.4), 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

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

.btn-icon {
    font-size: 1rem;
    color: black;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-hero-secondary {
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    transition: all 0.4s var(--easing);
}

.btn-hero-secondary:hover {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(63, 142, 252, 0.2);
}

/* Stats Row */
.hero-stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1.1rem;
}

.stat-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(63, 142, 252, 0.1);
    border: 1px solid rgba(63, 142, 252, 0.2);
    color: var(--neon-cyan);
    font-size: 1.3rem;
}

.stat-info {
    text-align: left;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: white;
    letter-spacing: 0.05em;
}

.stat-label {
    font-family: 'SF Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
}

/* Status Bar */
.hero-status-bar {
    position: absolute;
    bottom: 6vh;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(63, 142, 252, 0.15);
    backdrop-filter: blur(10px);
    z-index: 10;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'SF Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
}

.status-dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.status-dot.active {
    background: var(--neon-cyan);
    box-shadow: 0 0 8px var(--neon-cyan);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 1.5vh;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
}

.scroll-line {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, var(--neon-cyan), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
        height: 30px;
    }

    50% {
        opacity: 1;
        height: 40px;
    }
}

.scroll-text {
    font-family: 'SF Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.4);
}

.scroll-arrow {
    font-size: 1rem;
    color: var(--neon-cyan);
    animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}

/* ---- Hero Responsive ---- */
@media (max-width: 1200px) {
    .hero-data-column {
        display: none;
    }
}

@media (max-width: 1024px) {
    .section-hero {
        padding: 18vh 5% 12vh;
    }

    .hero-stats-row {
        gap: 2rem;
    }

    .hero-status-bar {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .section-hero {
        padding: 16vh 5% 10vh;
    }

    .hero-hud-frame {
        display: none;
    }

    .hero-content {
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: clamp(2.5rem, 14vw, 4.5rem);
    }

    .title-prefix {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .prefix-line {
        width: 30px;
    }

    .prefix-text {
        font-size: 0.55rem;
    }

    .hero-desc-panel {
        margin-bottom: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2.5rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-stats-row {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .stat-divider {
        display: none;
    }

    .hero-status-bar {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem 1.5rem;
        bottom: 5vh;
        left: 5%;
        right: 5%;
        transform: none;
    }

    .hero-scroll-indicator {
        bottom: 1vh;
    }

    .scroll-line {
        height: 20px;
    }
}

@media (max-width: 480px) {
    .section-hero {
        padding: 14vh 4% 8vh;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .title-suffix {
        font-size: 0.6rem;
        letter-spacing: 0.2em;
    }

    .hero-stats-row {
        gap: 1.25rem;
    }

    .stat-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .stat-number {
        font-size: 1.1rem;
    }

    .hero-status-bar {
        padding: 0.5rem 0.75rem;
        gap: 0.5rem 1rem;
        bottom: 6vh;
    }

    .status-item {
        font-size: 0.45rem;
    }

    .hero-scroll-indicator {
        bottom: 0.5vh;
    }

    .scroll-text {
        font-size: 0.4rem;
    }
}

/* Keep old body-text for compatibility */
.body-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===========================================
   BIO-PHOTONIC LAB - RESEARCH FACILITY
   =========================================== */

.lab-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    background: linear-gradient(180deg,
            var(--void) 0%,
            rgba(2, 6, 12, 1) 10%,
            rgba(4, 10, 18, 1) 50%,
            rgba(2, 6, 12, 1) 90%,
            var(--void) 100%);
}

/* Section Header */
.lab-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 10;
}


.lab-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    background: linear-gradient(180deg, white 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lab-header p {
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.7;
}

/* Biowell Section Header */
.biowell-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 10;
}

.biowell-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.biowell-header p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
}

/* Analysis Chamber Container */
.analysis-chamber {
    position: relative;
    max-width: 1400px;
    margin: 0 auto 5rem;
    padding: 0 5%;
}

/* Central Microscope Display */
.microscope-display {
    position: relative;
    height: 450px;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Microscope Viewport */
.microscope-viewport {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%,
            rgba(0, 40, 50, 0.3) 0%,
            rgba(0, 20, 30, 0.6) 50%,
            rgba(0, 10, 20, 0.9) 100%);
    border: 3px solid rgba(63, 142, 252, 0.15);
    box-shadow:
        0 0 80px rgba(63, 142, 252, 0.08),
        inset 0 0 60px rgba(63, 142, 252, 0.05),
        0 0 0 1px rgba(63, 142, 252, 0.1);
    overflow: hidden;
    flex-shrink: 0;
}

/* Lens glass effect */
.microscope-viewport::before {
    content: '';
    position: absolute;
    top: 5%;
    left: 10%;
    width: 30%;
    height: 20%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    border-radius: 50%;
    filter: blur(5px);
}

/* Viewport grid overlay */
.viewport-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(90deg, rgba(63, 142, 252, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(63, 142, 252, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    border-radius: 50%;
    opacity: 0.5;
}

/* Reticle crosshairs */
.viewport-reticle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.reticle-h,
.reticle-v {
    position: absolute;
    background: rgba(63, 142, 252, 0.3);
}

.reticle-h {
    top: 50%;
    left: 10%;
    right: 10%;
    height: 1px;
    transform: translateY(-50%);
}

.reticle-v {
    left: 50%;
    top: 10%;
    bottom: 10%;
    width: 1px;
    transform: translateX(-50%);
}

/* Center focus point - positioned in viewport-reticle */
.microscope-viewport .reticle-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border: 1px solid var(--neon-cyan);
    border-radius: 50%;
    animation: microscopeFocusPulse 2s ease-in-out infinite;
}

.microscope-viewport .reticle-center::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -3px;
    margin-left: -3px;
    width: 6px;
    height: 6px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--neon-cyan);
}

@keyframes microscopeFocusPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.4;
    }
}

/* Specimen visualization inside viewport */
.specimen-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 260px;
    height: 260px;
}

/* Animated cell structure */
.cell-nucleus {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%,
            rgba(63, 142, 252, 0.3) 0%,
            rgba(0, 150, 200, 0.2) 50%,
            rgba(0, 100, 150, 0.1) 100%);
    border: 1px solid rgba(63, 142, 252, 0.3);
    animation: cellPulse 4s ease-in-out infinite;
}

.cell-membrane {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 1px dashed rgba(63, 142, 252, 0.2);
    animation: membraneRotate 20s linear infinite;
}

.cell-membrane::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: rgba(63, 142, 252, 0.5);
    border-radius: 50%;
}

.cell-field {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 1px solid rgba(63, 142, 252, 0.1);
    animation: fieldExpand 3s ease-in-out infinite;
}

@keyframes cellPulse {

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

    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes membraneRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes fieldExpand {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 0.2;
    }
}

/* Orbiting particles */
.particle-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 240px;
    height: 240px;
    animation: orbitParticles 15s linear infinite;
}

.orbit-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--neon-cyan);
}

.orbit-particle:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-particle:nth-child(2) {
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
}

.orbit-particle:nth-child(3) {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
}

.orbit-particle:nth-child(4) {
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
}

@keyframes orbitParticles {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Viewport scan line */
.viewport-scan {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    animation: viewportScan 3s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes viewportScan {

    0%,
    100% {
        top: 10%;
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.4;
    }

    50% {
        top: 90%;
    }
}

/* Outer ring decorations */
.viewport-outer-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
    height: 340px;
    border: 1px solid rgba(63, 142, 252, 0.08);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.viewport-outer-ring::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    border: 1px dashed rgba(63, 142, 252, 0.05);
    border-radius: 50%;
    animation: outerRingSpin 40s linear infinite reverse;
}

@keyframes outerRingSpin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Data readouts - Pulsating dots with text */
.viewport-readout {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    z-index: 20;
}

.viewport-readout .hotspot-dot {
    width: 10px;
    height: 10px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-cyan);
    position: relative;
    flex-shrink: 0;
}

.viewport-readout .hotspot-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    margin-left: -10px;
    border: 1px solid var(--neon-cyan);
    border-radius: 50%;
    opacity: 0.5;
    animation: hotspotPulse 2s ease-out infinite;
}

.viewport-readout .hotspot-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin-top: -15px;
    margin-left: -15px;
    border: 1px solid var(--neon-cyan);
    border-radius: 50%;
    opacity: 0.2;
    animation: hotspotPulse 2s ease-out infinite 0.3s;
}

@keyframes hotspotPulse {
    0% {
        transform: scale(0.8);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.viewport-readout .hotspot-text {
    font-family: 'SF Mono', 'Consolas', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(63, 142, 252, 0.5);
    white-space: nowrap;
}

/* Left side readouts */
.readout-mag {
    top: 18%;
    left: 20px;
    flex-direction: row;
}

.readout-sample {
    bottom: 18%;
    left: 20px;
    flex-direction: row;
}

/* Right side readout */
.readout-focus {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    flex-direction: row-reverse;
}

/* Connecting lines from dots to viewport */
.viewport-readout .hotspot-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, var(--neon-cyan), transparent);
    opacity: 0.4;
}

.readout-mag .hotspot-line,
.readout-sample .hotspot-line {
    left: 100%;
    width: 60px;
    margin-left: 20px;
}

.readout-focus .hotspot-line {
    right: 100%;
    width: 60px;
    margin-right: 20px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan));
}

/* Research Cards Grid */
.lab-stage {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Specimen Analysis Card */
.specimen-slide {
    position: relative;
    background: linear-gradient(180deg,
            rgba(8, 14, 22, 0.95) 0%,
            rgba(5, 10, 18, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.5s var(--easing);
}

/* Card top glow line */
.specimen-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(63, 142, 252, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.5s;
}

.specimen-slide:hover::before {
    opacity: 1;
}

/* Card Header */
.specimen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.specimen-id {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.specimen-indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--neon-cyan);
    box-shadow: 0 0 8px var(--neon-cyan);
    animation: indicatorPulse 2s ease-in-out infinite;
}

.specimen-indicator.purple {
    background: var(--neon-purple);
    box-shadow: 0 0 8px var(--neon-purple);
}

.specimen-indicator.blue {
    background: var(--neon-blue);
    box-shadow: 0 0 8px var(--neon-blue);
}

@keyframes indicatorPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.specimen-label {
    font-family: 'SF Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
}

.specimen-fig {
    font-family: monospace;
    font-size: 0.6rem;
    color: var(--neon-cyan);
    letter-spacing: 0.05em;
}

.specimen-fig.purple {
    color: var(--neon-purple);
}

.specimen-fig.blue {
    color: var(--neon-blue);
}

/* Card Visual Area */
.specimen-visual-area {
    position: relative;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at center, rgba(63, 142, 252, 0.03) 0%, transparent 70%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.specimen-visual-area.purple {
    background: radial-gradient(circle at center, rgba(168, 85, 247, 0.03) 0%, transparent 70%);
}

.specimen-visual-area.blue {
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.03) 0%, transparent 70%);
}

/* Specimen Icons - Animated SVG style */
.specimen-icon-container {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.specimen-icon-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(63, 142, 252, 0.2);
    border-radius: 50%;
    animation: iconRingPulse 3s ease-in-out infinite;
}

.specimen-icon-ring.purple {
    border-color: rgba(168, 85, 247, 0.2);
}

.specimen-icon-ring.blue {
    border-color: rgba(59, 130, 246, 0.2);
}

@keyframes iconRingPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.specimen-icon {
    font-size: 2rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 20px currentColor;
    position: relative;
    z-index: 2;
}

.specimen-icon.purple {
    color: var(--neon-purple);
}

.specimen-icon.blue {
    color: var(--neon-blue);
}

/* Visual area scan effect */
.specimen-visual-area::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
    animation: specScan 4s ease-in-out infinite;
    opacity: 0.3;
}

@keyframes specScan {

    0%,
    100% {
        top: 0;
        opacity: 0;
    }

    10% {
        opacity: 0.3;
    }

    90% {
        opacity: 0.2;
    }

    50% {
        top: 100%;
    }
}

/* Card Content */
.slide-content {
    padding: 1.5rem 1.25rem;
}

.slide-content h3 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    color: white;
    margin-bottom: 0.75rem;
}

.slide-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Card Footer with data */
.specimen-footer {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 1.25rem;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    font-family: monospace;
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.05em;
}

.specimen-stat {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.stat-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--neon-cyan);
    opacity: 0.6;
}

.stat-dot.purple {
    background: var(--neon-purple);
}

.stat-dot.blue {
    background: var(--neon-blue);
}

/* Hover Effects */
.specimen-slide:hover {
    border-color: rgba(63, 142, 252, 0.15);
    transform: translateY(-4px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(63, 142, 252, 0.05);
}

.specimen-slide:nth-child(2):hover {
    border-color: rgba(168, 85, 247, 0.15);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(168, 85, 247, 0.05);
}

.specimen-slide:nth-child(3):hover {
    border-color: rgba(59, 130, 246, 0.15);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(59, 130, 246, 0.05);
}

/* Corner brackets on cards */
.card-corner {
    position: absolute;
    width: 12px;
    height: 12px;
}

.card-corner::before,
.card-corner::after {
    content: '';
    position: absolute;
    background: rgba(63, 142, 252, 0.3);
    transition: background 0.3s;
}

.card-corner::before {
    width: 12px;
    height: 1px;
}

.card-corner::after {
    width: 1px;
    height: 12px;
}

.card-corner.cc-tl {
    top: 8px;
    left: 8px;
}

.card-corner.cc-tl::before {
    top: 0;
    left: 0;
}

.card-corner.cc-tl::after {
    top: 0;
    left: 0;
}

.card-corner.cc-tr {
    top: 8px;
    right: 8px;
}

.card-corner.cc-tr::before {
    top: 0;
    right: 0;
}

.card-corner.cc-tr::after {
    top: 0;
    right: 0;
}

.card-corner.cc-bl {
    bottom: 8px;
    left: 8px;
}

.card-corner.cc-bl::before {
    bottom: 0;
    left: 0;
}

.card-corner.cc-bl::after {
    bottom: 0;
    left: 0;
}

.card-corner.cc-br {
    bottom: 8px;
    right: 8px;
}

.card-corner.cc-br::before {
    bottom: 0;
    right: 0;
}

.card-corner.cc-br::after {
    bottom: 0;
    right: 0;
}

.card-corner.purple::before,
.card-corner.purple::after {
    background: rgba(168, 85, 247, 0.3);
}

.card-corner.blue::before,
.card-corner.blue::after {
    background: rgba(59, 130, 246, 0.3);
}

.specimen-slide:hover .card-corner::before,
.specimen-slide:hover .card-corner::after {
    background: rgba(63, 142, 252, 0.6);
}

.specimen-slide:nth-child(2):hover .card-corner::before,
.specimen-slide:nth-child(2):hover .card-corner::after {
    background: rgba(168, 85, 247, 0.6);
}

.specimen-slide:nth-child(3):hover .card-corner::before,
.specimen-slide:nth-child(3):hover .card-corner::after {
    background: rgba(59, 130, 246, 0.6);
}

/* ===========================================
   THREAT ASSAULT SECTION
   =========================================== */

#threat {
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(15, 5, 8, 0.3) 8%,
            rgba(15, 5, 8, 0.7) 20%,
            rgba(20, 8, 12, 1) 40%,
            rgba(20, 8, 12, 1) 60%,
            rgba(15, 5, 8, 1) 85%,
            var(--void) 100%);
    padding: 8rem 0;
}

/* ============================================
   NEBULA CLOUD EFFECT
   Subtle atmospheric enhancement
   ============================================ */

.threat-nebula {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 70%);
}

/* Primary Nebula Layers - Soft ambient glow (scoped to threat section) */
.threat-nebula .nebula-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    animation: nebulaFadeIn 2s ease-out forwards;
}

.threat-nebula .nebula-layer-1 {
    background:
        radial-gradient(ellipse 60% 50% at 30% 40%, rgba(255, 42, 42, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 70% 60%, rgba(180, 20, 60, 0.05) 0%, transparent 55%);
    filter: blur(80px);
}

.threat-nebula .nebula-layer-2 {
    background:
        radial-gradient(ellipse 70% 40% at 60% 35%, rgba(255, 60, 50, 0.04) 0%, transparent 55%),
        radial-gradient(ellipse 40% 50% at 25% 65%, rgba(200, 30, 80, 0.05) 0%, transparent 50%);
    filter: blur(100px);
    animation: nebulaFloat1 40s ease-in-out infinite, nebulaFadeIn 2s ease-out 0.3s forwards;
}

.threat-nebula .nebula-layer-3 {
    background:
        radial-gradient(ellipse 50% 50% at 50% 50%, rgba(150, 25, 60, 0.04) 0%, transparent 50%);
    filter: blur(120px);
    animation: nebulaFloat2 35s ease-in-out infinite, nebulaFadeIn 2s ease-out 0.6s forwards;
}

@keyframes nebulaFadeIn {
    to { opacity: 1; }
}

@keyframes nebulaFloat1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(2%, -1%); }
}

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

/* Nebula Core - Subtle central glow (scoped to threat section) */
.threat-nebula .nebula-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 350px;
    transform: translate(-50%, -50%);
    background:
        radial-gradient(ellipse at center,
            rgba(255, 42, 42, 0.08) 0%,
            rgba(200, 30, 60, 0.04) 40%,
            transparent 70%);
    filter: blur(60px);
    animation: corePulse 12s ease-in-out infinite;
}

@keyframes corePulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

/* SVG Nebula Tendrils - Hidden for subtle effect (scoped to threat section) */
.threat-nebula .nebula-tendrils {
    display: none;
}

/* Cosmic Dust Particles - Minimal (scoped to threat section) */
.threat-nebula .nebula-dust {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.threat-nebula .dust-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 80, 60, 0.4);
    filter: blur(1px);
    animation: dustFloat 30s ease-in-out infinite;
}

.threat-nebula .dust-1 { width: 2px; height: 2px; top: 25%; left: 30%; animation-delay: 0s; }
.threat-nebula .dust-2 { width: 2px; height: 2px; top: 35%; left: 65%; animation-delay: -8s; }
.threat-nebula .dust-3 { width: 3px; height: 3px; top: 55%; left: 25%; animation-delay: -15s; }
.threat-nebula .dust-4 { width: 2px; height: 2px; top: 65%; left: 70%; animation-delay: -5s; }
.threat-nebula .dust-5,
.threat-nebula .dust-6,
.threat-nebula .dust-7,
.threat-nebula .dust-8 { display: none; }

@keyframes dustFloat {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.3;
    }
    50% {
        transform: translate(15px, -10px);
        opacity: 0.5;
    }
}

/* Nebula Star Field - Hidden for cleaner look (scoped to threat section) */
.threat-nebula .nebula-stars {
    display: none;
}

/* Red threat grid overlay */
#threat .bg-grid-overlay {
    background-image:
        linear-gradient(90deg, rgba(255, 42, 42, 0.02) 1px, transparent 1px),
        linear-gradient(rgba(255, 42, 42, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
    z-index: 2;
}

/* Section Header */
.threat-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.threat-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    letter-spacing: 0.1em;
    line-height: 1;
    margin-bottom: 1rem;
    color: white;
}

.threat-header h2 span {
    display: block;
    color: var(--neon-red);
    text-shadow: 0 0 40px rgba(255, 42, 42, 0.5);
}

/* Main Grid */
.threat-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 10;
}

/* Content Panel */
.threat-content {
    position: relative;
}

.threat-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    padding-left: 1.25rem;
    border-left: 2px solid rgba(255, 42, 42, 0.4);
}

.threat-description strong {
    color: var(--neon-red);
}

/* Threat Stats */
.threat-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.threat-stat {
    background: linear-gradient(135deg,
        rgba(255, 42, 42, 0.03) 0%,
        rgba(20, 8, 12, 0.8) 100%);
    border: 1px solid rgba(255, 42, 42, 0.12);
    padding: 1.5rem 1.25rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.threat-stat:hover {
    border-color: rgba(255, 42, 42, 0.25);
    background: linear-gradient(135deg,
        rgba(255, 42, 42, 0.06) 0%,
        rgba(20, 8, 12, 0.9) 100%);
    transform: translateY(-2px);
    cursor: pointer;
}

.threat-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg,
        var(--neon-red) 0%,
        rgba(255, 42, 42, 0.3) 50%,
        transparent 100%);
}

.threat-stat::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        rgba(255, 42, 42, 0.4) 0%,
        rgba(255, 42, 42, 0.1) 50%,
        transparent 100%);
}

#threat .stat-value {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    color: var(--neon-red);
    line-height: 1.1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(255, 42, 42, 0.25);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

#threat .stat-label {
    font-family: 'SF Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    position: relative;
    padding-left: 0.75rem;
}

#threat .stat-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--neon-red);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 42, 42, 0.6);
}

/* Warning List */
.threat-warnings {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    font-family: 'SF Mono', monospace;
    font-size: 0.7rem;
}

.warning-line {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.warning-line::before {
    content: '⚠';
    color: var(--neon-red);
    font-size: 0.8rem;
}

.warning-line .critical {
    color: var(--neon-red);
}

/* ============================================
   ASSAULT VISUALIZATION
   ============================================ */

.threat-visual {
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Central Human Figure */
.assault-victim {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 280px;
    z-index: 10;
}

/* Disrupted Biofield */
.disrupted-field {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center,
            rgba(255, 42, 42, 0.15) 0%,
            rgba(255, 42, 42, 0.05) 50%,
            transparent 70%);
    animation: fieldDisrupt 1s ease-in-out infinite;
    z-index: 5;
}

@keyframes fieldDisrupt {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    25% {
        transform: translate(-52%, -50%) scale(1.02);
    }

    50% {
        transform: translate(-50%, -50%) scale(0.98);
        opacity: 0.5;
    }

    75% {
        transform: translate(-48%, -50%) scale(1.01);
    }
}

/* Outer stress rings */
.stress-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(255, 42, 42, 0.2);
    animation: stressExpand 2s ease-out infinite;
}

.stress-ring-1 {
    width: 250px;
    height: 350px;
    animation-delay: 0s;
}

.stress-ring-2 {
    width: 280px;
    height: 380px;
    animation-delay: 0.5s;
}

.stress-ring-3 {
    width: 310px;
    height: 410px;
    animation-delay: 1s;
}

@keyframes stressExpand {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

/* Attack Sources Container */
.attack-sources {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

/* 5G Tower */
.attack-source {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.source-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 42, 42, 0.1);
    border: 1px solid rgba(255, 42, 42, 0.3);
    border-radius: 50%;
    font-size: 1.2rem;
    color: var(--neon-red);
    position: relative;
}

.source-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    margin-top: -35px;
    margin-left: -35px;
    border: 1px solid rgba(255, 42, 42, 0.2);
    border-radius: 50%;
    animation: sourceGlow 2s ease-out infinite;
}

@keyframes sourceGlow {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.source-label {
    font-family: 'SF Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.1em;
    color: var(--neon-red);
    white-space: nowrap;
}

/* Position attack sources around the visual */
.source-tower {
    top: 10%;
    left: 10%;
}

.source-phone {
    top: 15%;
    right: 15%;
}

.source-wifi {
    bottom: 20%;
    left: 8%;
}

.source-satellite {
    bottom: 15%;
    right: 10%;
}

/* Attack Waves */
.attack-wave {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-red), transparent);
    opacity: 0.6;
    transform-origin: left center;
}

/* Waves from different sources */
.wave-group {
    position: absolute;
    top: 50%;
    left: 50%;
}

.wave-from-tower {
    animation: waveAttack 1.5s ease-out infinite;
}

.wave-from-phone {
    animation: waveAttack 1.5s ease-out infinite 0.3s;
}

.wave-from-wifi {
    animation: waveAttack 1.5s ease-out infinite 0.6s;
}

.wave-from-satellite {
    animation: waveAttack 1.5s ease-out infinite 0.9s;
}

@keyframes waveAttack {
    0% {
        opacity: 0.8;
        transform: scaleX(0);
    }

    100% {
        opacity: 0;
        transform: scaleX(1);
    }
}

/* EMF Wave Lines - Animated */
.emf-waves {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.emf-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 42, 42, 0.4) 20%,
            rgba(255, 42, 42, 0.6) 50%,
            rgba(255, 42, 42, 0.4) 80%,
            transparent 100%);
    animation: emfTravel linear infinite;
}

.emf-line-1 {
    top: 20%;
    width: 150px;
    animation-duration: 2s;
    left: -150px;
}

.emf-line-2 {
    top: 35%;
    width: 120px;
    animation-duration: 1.8s;
    left: -120px;
    animation-delay: 0.3s;
}

.emf-line-3 {
    top: 50%;
    width: 180px;
    animation-duration: 1.5s;
    left: -180px;
    animation-delay: 0.6s;
}

.emf-line-4 {
    top: 65%;
    width: 140px;
    animation-duration: 2.2s;
    left: -140px;
    animation-delay: 0.9s;
}

.emf-line-5 {
    top: 80%;
    width: 160px;
    animation-duration: 1.7s;
    left: -160px;
    animation-delay: 1.2s;
}

/* Right side EMF lines */
.emf-line-6 {
    top: 25%;
    width: 130px;
    animation-duration: 1.9s;
    right: -130px;
    animation-name: emfTravelReverse;
}

.emf-line-7 {
    top: 45%;
    width: 170px;
    animation-duration: 1.6s;
    right: -170px;
    animation-delay: 0.4s;
    animation-name: emfTravelReverse;
}

.emf-line-8 {
    top: 60%;
    width: 110px;
    animation-duration: 2.1s;
    right: -110px;
    animation-delay: 0.8s;
    animation-name: emfTravelReverse;
}

.emf-line-9 {
    top: 75%;
    width: 150px;
    animation-duration: 1.8s;
    right: -150px;
    animation-delay: 1.1s;
    animation-name: emfTravelReverse;
}

@keyframes emfTravel {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(100vw + 200px));
    }
}

@keyframes emfTravelReverse {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100vw - 200px));
    }
}

/* Impact Particles */
.impact-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 350px;
    pointer-events: none;
}

.impact-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--neon-red);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--neon-red);
    animation: particleFloat 3s ease-in-out infinite;
}

.impact-particle:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.impact-particle:nth-child(2) {
    top: 25%;
    right: 15%;
    animation-delay: 0.5s;
}

.impact-particle:nth-child(3) {
    top: 40%;
    left: 10%;
    animation-delay: 1s;
}

.impact-particle:nth-child(4) {
    top: 55%;
    right: 20%;
    animation-delay: 1.5s;
}

.impact-particle:nth-child(5) {
    top: 70%;
    left: 25%;
    animation-delay: 2s;
}

.impact-particle:nth-child(6) {
    top: 85%;
    right: 10%;
    animation-delay: 2.5s;
}

@keyframes particleFloat {

    0%,
    100% {
        opacity: 0;
        transform: scale(0.5);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Threat Level Indicator */
.threat-meter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.6rem 1.2rem;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 42, 42, 0.3);
}

.meter-label {
    font-family: 'SF Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
}

.meter-bars {
    display: flex;
    gap: 3px;
}

.meter-bar {
    width: 4px;
    height: 16px;
    background: rgba(255, 42, 42, 0.2);
    position: relative;
    overflow: hidden;
}

.meter-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--neon-red);
    box-shadow: 0 0 6px var(--neon-red);
    animation: meterPulse 1s ease-in-out infinite;
}

.meter-bar:nth-child(1)::after {
    height: 100%;
    animation-delay: 0s;
}

.meter-bar:nth-child(2)::after {
    height: 90%;
    animation-delay: 0.1s;
}

.meter-bar:nth-child(3)::after {
    height: 100%;
    animation-delay: 0.2s;
}

.meter-bar:nth-child(4)::after {
    height: 85%;
    animation-delay: 0.3s;
}

.meter-bar:nth-child(5)::after {
    height: 95%;
    animation-delay: 0.4s;
}

.meter-bar:nth-child(6)::after {
    height: 100%;
    animation-delay: 0.5s;
}

.meter-bar:nth-child(7)::after {
    height: 88%;
    animation-delay: 0.6s;
}

.meter-bar:nth-child(8)::after {
    height: 100%;
    animation-delay: 0.7s;
}

@keyframes meterPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

.meter-value {
    font-family: var(--font-display);
    font-size: 0.8rem;
    color: var(--neon-red);
    text-shadow: 0 0 10px var(--neon-red);
}

/* Threat Section Responsive */
@media (max-width: 1024px) {
    .threat-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .threat-content {
        order: 2;
        text-align: center;
    }

    .threat-description {
        border-left: none;
        border-top: 2px solid rgba(255, 42, 42, 0.4);
        padding-left: 0;
        padding-top: 1.25rem;
        max-width: 600px;
        margin: 0 auto 2.5rem;
    }

    .threat-stats {
        max-width: 450px;
        margin: 0 auto 2.5rem;
        gap: 0.75rem;
    }

    .threat-stat {
        padding: 1.25rem 1rem;
        min-height: 80px;
    }

    .threat-warnings {
        align-items: center;
    }

    .threat-visual {
        order: 1;
        height: 450px;
    }

    .source-tower {
        top: 5%;
        left: 5%;
    }

    .source-phone {
        top: 5%;
        right: 5%;
    }

    .source-wifi {
        bottom: 15%;
        left: 3%;
    }

    .source-satellite {
        bottom: 15%;
        right: 3%;
    }
}

@media (max-width: 768px) {
    #threat {
        padding: 5rem 0;
    }

    .threat-header h2 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .threat-visual {
        height: 400px;
    }

    .assault-victim {
        width: 100px;
        height: 240px;
    }

    .disrupted-field {
        width: 160px;
        height: 260px;
    }

    .stress-ring-1 {
        width: 200px;
        height: 280px;
    }

    .stress-ring-2 {
        width: 230px;
        height: 310px;
    }

    .stress-ring-3 {
        width: 260px;
        height: 340px;
    }

    .source-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .source-icon::after {
        width: 56px;
        height: 56px;
        margin-top: -28px;
        margin-left: -28px;
    }

    .source-label {
        font-size: 0.5rem;
    }

    .threat-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    #threat .stat-value {
        font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    }

    .threat-stat {
        padding: 1.25rem 1rem;
        min-height: 85px;
    }

    .threat-meter {
        padding: 0.5rem 1rem;
        gap: 0.75rem;
    }

    .emf-line-1,
    .emf-line-2,
    .emf-line-3,
    .emf-line-4,
    .emf-line-5 {
        width: 100px;
    }

    .emf-line-6,
    .emf-line-7,
    .emf-line-8,
    .emf-line-9 {
        width: 100px;
    }
}

@media (max-width: 480px) {
    .threat-header {
        margin-bottom: 2rem;
    }

    .threat-visual {
        height: 350px;
    }

    .assault-victim {
        width: 80px;
        height: 200px;
    }

    .disrupted-field {
        width: 130px;
        height: 210px;
    }

    .stress-ring-1 {
        width: 160px;
        height: 230px;
    }

    .stress-ring-2 {
        width: 180px;
        height: 250px;
    }

    .stress-ring-3 {
        width: 200px;
        height: 270px;
    }

    .attack-source {
        transform: scale(0.8);
    }

    .source-tower {
        top: 0;
        left: 0;
    }

    .source-phone {
        top: 0;
        right: 0;
    }

    .source-wifi {
        bottom: 10%;
        left: 0;
    }

    .source-satellite {
        bottom: 10%;
        right: 0;
    }

    .threat-stats {
        gap: 0.5rem;
    }

    .threat-stat {
        padding: 1rem 0.75rem;
        min-height: 75px;
    }

    #threat .stat-value {
        font-size: clamp(1rem, 2.2vw, 1.25rem);
    }

    #threat .stat-label {
        font-size: 0.55rem;
        letter-spacing: 0.15em;
    }

    .warning-line {
        font-size: 0.6rem;
    }

    .threat-meter {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.75rem 1.5rem;
    }

    .meter-bars {
        order: 2;
    }
}

/* ===========================================
   PROJECT GATEWAY - CLASSIFIED INTELLIGENCE
   =========================================== */

.report-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    background: linear-gradient(180deg,
            var(--void) 0%,
            rgba(5, 3, 8, 1) 15%,
            rgba(8, 5, 12, 1) 50%,
            rgba(5, 3, 8, 1) 85%,
            var(--void) 100%);
}

/* Security Grid Background */
.report-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(90deg, rgba(255, 42, 42, 0.01) 1px, transparent 1px),
        linear-gradient(rgba(255, 42, 42, 0.01) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 20%, transparent 70%);
    pointer-events: none;
}

/* Section Header */
.gateway-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.gateway-header h2 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5rem);
    letter-spacing: 0.15em;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.gateway-header h2 .project-label {
    display: block;
    font-size: 0.35em;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.5rem;
}

.gateway-header h2 .gateway-text {
    background: linear-gradient(180deg, white 0%, rgba(255, 255, 255, 0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Main Terminal Grid */
.terminal-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3rem;
    align-items: stretch;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 10;
}

/* Intelligence Briefing Panel */
.terminal-data {
    position: relative;
    background: linear-gradient(135deg,
            rgba(10, 5, 15, 0.95) 0%,
            rgba(15, 8, 20, 0.98) 100%);
    border: 1px solid rgba(255, 42, 42, 0.15);
    border-radius: 4px;
    overflow: hidden;
}

/* Panel top glow */
.terminal-data::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 42, 42, 0.4), transparent);
}

/* Panel Header */
.briefing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 42, 42, 0.05);
    border-bottom: 1px solid rgba(255, 42, 42, 0.1);
}

.briefing-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.briefing-indicator {
    width: 6px;
    height: 6px;
    background: var(--neon-red);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--neon-red);
    animation: classifiedPulse 1.5s ease-in-out infinite;
}

.briefing-label {
    font-family: 'SF Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--neon-red);
}

.access-level {
    font-family: monospace;
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.3);
    padding: 0.3rem 0.6rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Briefing Body */
.briefing-body {
    padding: 2rem 1.5rem;
}

.project-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    color: white;
}

.project-subtitle {
    font-family: monospace;
    font-size: 0.7rem;
    color: var(--neon-red);
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.briefing-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    padding-left: 1rem;
    border-left: 2px solid rgba(255, 42, 42, 0.3);
}

/* Data Readouts */
.intel-readouts {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 2rem;
    font-family: 'SF Mono', monospace;
    font-size: 0.7rem;
}

.intel-line {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.intel-line::before {
    content: '>';
    color: var(--neon-red);
    opacity: 0.6;
}

.intel-line .value {
    color: var(--neon-cyan);
}

.intel-line .value.verified {
    color: #4ade80;
}

/* Briefing Footer */
.briefing-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.security-stamp {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: monospace;
    font-size: 0.55rem;
    color: rgba(255, 42, 42, 0.6);
    letter-spacing: 0.1em;
}

.stamp-icon {
    width: 12px;
    height: 12px;
    border: 1px solid rgba(255, 42, 42, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
}

/* Surveillance Video Frame */
.video-frame {
    position: relative;
    background: linear-gradient(180deg,
            rgba(8, 5, 12, 0.95) 0%,
            rgba(5, 3, 8, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    overflow: hidden;
}

/* Video Frame Header */
.video-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.video-header-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cam-id {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'SF Mono', monospace;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
}

.cam-dot {
    width: 6px;
    height: 6px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--neon-cyan);
}

.timestamp {
    font-family: monospace;
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.3);
}

.rec-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-display);
    font-size: 0.6rem;
    color: var(--neon-red);
    animation: recBlink 1s infinite;
}

.rec-dot {
    width: 8px;
    height: 8px;
    background: var(--neon-red);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--neon-red);
}

@keyframes recBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* Video Wrapper */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: linear-gradient(135deg, #0a0510 0%, #050308 100%);
    overflow: hidden;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

/* CRT Scanlines */
.scanlines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.15) 2px,
            rgba(0, 0, 0, 0.15) 4px);
    pointer-events: none;
    z-index: 5;
}

/* RGB Shift Effect */
.scanlines::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,
            rgba(255, 0, 0, 0.02) 0%,
            rgba(0, 255, 0, 0.01) 50%,
            rgba(0, 0, 255, 0.02) 100%);
    pointer-events: none;
}

/* Video HUD Overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 10;
}

/* Corner Targeting Brackets */
.hud-bracket {
    position: absolute;
    width: 40px;
    height: 40px;
}

.hud-bracket::before,
.hud-bracket::after {
    content: '';
    position: absolute;
    background: rgba(63, 142, 252, 0.5);
}

.hud-bracket::before {
    width: 15px;
    height: 1px;
}

.hud-bracket::after {
    width: 1px;
    height: 15px;
}

.hud-bracket.hb-tl {
    top: 1.5rem;
    left: 1.5rem;
}

.hud-bracket.hb-tl::before {
    top: 0;
    left: 0;
}

.hud-bracket.hb-tl::after {
    top: 0;
    left: 0;
}

.hud-bracket.hb-tr {
    top: 1.5rem;
    right: 1.5rem;
}

.hud-bracket.hb-tr::before {
    top: 0;
    right: 0;
}

.hud-bracket.hb-tr::after {
    top: 0;
    right: 0;
}

.hud-bracket.hb-bl {
    bottom: 1.5rem;
    left: 1.5rem;
}

.hud-bracket.hb-bl::before {
    bottom: 0;
    left: 0;
}

.hud-bracket.hb-bl::after {
    bottom: 0;
    left: 0;
}

.hud-bracket.hb-br {
    bottom: 1.5rem;
    right: 1.5rem;
}

.hud-bracket.hb-br::before {
    bottom: 0;
    right: 0;
}

.hud-bracket.hb-br::after {
    bottom: 0;
    right: 0;
}

/* Center Reticle */
.video-reticle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
}

.reticle-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.reticle-cross-h,
.reticle-cross-v {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
}

.reticle-cross-h {
    top: 50%;
    left: -10px;
    right: -10px;
    height: 1px;
    transform: translateY(-50%);
}

.reticle-cross-v {
    left: 50%;
    top: -10px;
    bottom: -10px;
    width: 1px;
    transform: translateX(-50%);
}

.reticle-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--neon-cyan);
    animation: reticlePulse 2s ease-in-out infinite;
}

@keyframes reticlePulse {

    0%,
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.5);
    }
}

/* Subject Tracking Box */
.tracking-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 160px;
    border: 1px solid rgba(63, 142, 252, 0.4);
    animation: trackingPulse 2s ease-in-out infinite;
}

.tracking-box::before {
    content: 'GARY LEFFEW';
    position: absolute;
    top: -20px;
    left: 0;
    font-family: 'SF Mono', monospace;
    font-size: 0.55rem;
    color: var(--neon-cyan);
    letter-spacing: 0.05em;
}

@keyframes trackingPulse {

    0%,
    100% {
        border-color: rgba(63, 142, 252, 0.4);
    }

    50% {
        border-color: rgba(63, 142, 252, 0.2);
    }
}

/* Data Overlay */
.video-data-overlay {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.data-line {
    font-family: 'SF Mono', monospace;
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.05em;
}

.data-line .highlight {
    color: var(--neon-cyan);
}

/* Biometric Display */
.biometric-display {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bio-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: monospace;
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.5);
}

.bio-bar {
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.bio-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--neon-cyan);
    box-shadow: 0 0 4px var(--neon-cyan);
}

.bio-bar-fill.high {
    width: 85%;
    background: #4ade80;
    box-shadow: 0 0 4px #4ade80;
}

.bio-bar-fill.medium {
    width: 60%;
}

.bio-bar-fill.low {
    width: 30%;
    background: var(--neon-red);
    box-shadow: 0 0 4px var(--neon-red);
}

/* Video Footer */
.video-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    font-family: monospace;
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.3);
}

.video-footer-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-stat {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.stat-indicator {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--neon-cyan);
    opacity: 0.6;
}

/* Scan sweep animation */
.video-scan-sweep {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    animation: videoScanSweep 4s linear infinite;
    opacity: 0.4;
    z-index: 6;
}

@keyframes videoScanSweep {
    0% {
        top: 0;
        opacity: 0;
    }

    10% {
        opacity: 0.4;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

/* Glitch effect on video */
.glitch-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
    z-index: 7;
    animation: glitchFlicker 8s infinite;
}

@keyframes glitchFlicker {

    0%,
    95%,
    100% {
        opacity: 0;
    }

    96% {
        opacity: 1;
        background: linear-gradient(90deg,
                transparent 0%,
                rgba(63, 142, 252, 0.03) 45%,
                rgba(255, 0, 100, 0.03) 55%,
                transparent 100%);
        transform: translateX(-2px);
    }

    97% {
        opacity: 1;
        transform: translateX(2px);
    }

    98% {
        opacity: 0;
        transform: translateX(0);
    }
}

/* --- PRODUCT (HOLOGRAPHIC) --- */
.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    perspective: 1000px;
}

.holo-container {
    width: 100%;
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.holo-emitter {
    position: absolute;
    bottom: 50px;
    width: 200px;
    height: 20px;
    background: radial-gradient(circle, var(--neon-cyan) 0%, transparent 70%);
    filter: blur(10px);
    opacity: 0.8;
    transform: rotateX(70deg);
}

.holo-cube {
    width: 200px;
    height: 200px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateHolo 20s linear infinite;
}

.face {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(63, 142, 252, 0.5);
    background: rgba(63, 142, 252, 0.05);
    /* Low opacity fill */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--neon-cyan);
    font-family: var(--font-display);
    box-shadow: inset 0 0 20px rgba(63, 142, 252, 0.1);
}

.face-front {
    transform: rotateY(0deg) translateZ(100px);
}

.face-back {
    transform: rotateY(180deg) translateZ(100px);
}

.face-right {
    transform: rotateY(90deg) translateZ(100px);
}

.face-left {
    transform: rotateY(-90deg) translateZ(100px);
}

.face-top {
    transform: rotateX(90deg) translateZ(100px);
}

.face-bottom {
    transform: rotateX(-90deg) translateZ(100px);
}

.holo-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(60deg);
    width: 400px;
    height: 400px;
    border: 1px dashed rgba(63, 142, 252, 0.2);
    border-radius: 50%;
    animation: spin 15s linear infinite reverse;
    pointer-events: none;
}

.holo-rings::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(63, 142, 252, 0.1);
    border-radius: 50%;
    animation: spin 10s linear infinite;
}

.spec-float {
    position: absolute;
    color: var(--neon-cyan);
    font-family: var(--font-display);
    font-size: 0.7rem;
    text-shadow: 0 0 5px var(--neon-cyan);
    white-space: nowrap;
}

.spec-1 {
    top: 20%;
    right: 10%;
    animation: float 4s ease-in-out infinite;
}

.spec-2 {
    bottom: 30%;
    left: 0%;
    animation: float 5s ease-in-out infinite reverse;
}

.spec-3 {
    top: 10%;
    left: 20%;
    animation: float 6s ease-in-out infinite 1s;
}

@keyframes rotateHolo {
    0% {
        transform: rotateY(0deg) rotateX(10deg);
    }

    100% {
        transform: rotateY(360deg) rotateX(10deg);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* --- SYSTEM ARCHITECTURE - RESEARCH LAB UPGRADE --- */

/* Main showcase container */
#product {
    background: linear-gradient(180deg,
            var(--void) 0%,
            rgba(3, 6, 12, 1) 15%,
            rgba(5, 10, 18, 1) 50%,
            rgba(3, 6, 12, 1) 85%,
            var(--void) 100%);
    padding: 6rem 0;
}

.product-showcase {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 6rem;
    align-items: center;
    perspective: 1200px;
    position: relative;
    z-index: 2;
}

/* Holographic Projection Chamber */
.holo-container {
    width: 100%;
    height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Projection Platform Base */
.holo-platform {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 350px;
    height: 350px;
}

.platform-base {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotateX(75deg);
    width: 300px;
    height: 300px;
    border: 1px solid rgba(63, 142, 252, 0.2);
    border-radius: 50%;
    background:
        radial-gradient(circle at center, rgba(63, 142, 252, 0.03) 0%, transparent 70%),
        conic-gradient(from 0deg, transparent 0deg, rgba(63, 142, 252, 0.05) 10deg, transparent 20deg);
    animation: platformSpin 30s linear infinite;
}

.platform-base::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 15%;
    right: 15%;
    bottom: 15%;
    border: 1px solid rgba(63, 142, 252, 0.15);
    border-radius: 50%;
}

.platform-base::after {
    content: '';
    position: absolute;
    top: 35%;
    left: 35%;
    right: 35%;
    bottom: 35%;
    border: 1px dashed rgba(63, 142, 252, 0.1);
    border-radius: 50%;
    animation: platformSpin 15s linear infinite reverse;
}

@keyframes platformSpin {
    from {
        transform: translateX(-50%) rotateX(75deg) rotateZ(0deg);
    }

    to {
        transform: translateX(-50%) rotateX(75deg) rotateZ(360deg);
    }
}

/* Platform Glow */
.platform-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotateX(85deg);
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(63, 142, 252, 0.15) 0%, transparent 60%);
    filter: blur(20px);
    pointer-events: none;
}

/* Projection Beam */
.projection-beam {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 250px;
    background: linear-gradient(180deg, transparent 0%, rgba(63, 142, 252, 0.1) 20%, rgba(63, 142, 252, 0.02) 100%);
    pointer-events: none;
}

.projection-beam::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(63, 142, 252, 0.03) 30%, transparent 100%);
    filter: blur(15px);
}

/* Upgraded Holographic Cube */
.holo-cube {
    width: 180px;
    height: 180px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateHolo 25s linear infinite;
    z-index: 10;
}

.face {
    position: absolute;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(63, 142, 252, 0.4);
    background:
        linear-gradient(135deg, rgba(63, 142, 252, 0.08) 0%, transparent 50%),
        linear-gradient(225deg, rgba(63, 142, 252, 0.03) 0%, transparent 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: rgba(63, 142, 252, 0.9);
    font-family: var(--font-display);
    box-shadow:
        inset 0 0 30px rgba(63, 142, 252, 0.05),
        0 0 20px rgba(63, 142, 252, 0.05);
    backdrop-filter: blur(2px);
}

.face::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(63, 142, 252, 0.5), transparent);
}

.face::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    width: 6px;
    height: 6px;
    border-left: 1px solid rgba(63, 142, 252, 0.6);
    border-top: 1px solid rgba(63, 142, 252, 0.6);
}

.face-front {
    transform: rotateY(0deg) translateZ(90px);
}

.face-back {
    transform: rotateY(180deg) translateZ(90px);
}

.face-right {
    transform: rotateY(90deg) translateZ(90px);
}

.face-left {
    transform: rotateY(-90deg) translateZ(90px);
}

.face-top {
    transform: rotateX(90deg) translateZ(90px);
}

.face-bottom {
    transform: rotateX(-90deg) translateZ(90px);
}

/* Orbital Scanner Rings */
.holo-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    pointer-events: none;
    transform-style: preserve-3d;
}

.orbital-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid transparent;
}

.orbital-ring-1 {
    border-color: rgba(63, 142, 252, 0.12);
    transform: rotateX(70deg);
    animation: orbitSpin1 20s linear infinite;
}

.orbital-ring-2 {
    width: 85%;
    height: 85%;
    top: 7.5%;
    left: 7.5%;
    border-color: rgba(63, 142, 252, 0.08);
    border-style: dashed;
    transform: rotateX(70deg) rotateZ(30deg);
    animation: orbitSpin2 25s linear infinite reverse;
}

.orbital-ring-3 {
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    border-color: rgba(63, 142, 252, 0.05);
    transform: rotateX(85deg) rotateY(15deg);
    animation: orbitSpin1 35s linear infinite;
}

/* Orbital markers */
.orbital-ring-1::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-cyan);
}

.orbital-ring-2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 20%;
    width: 4px;
    height: 4px;
    background: rgba(63, 142, 252, 0.6);
    border-radius: 50%;
}

@keyframes orbitSpin1 {
    from {
        transform: rotateX(70deg) rotateZ(0deg);
    }

    to {
        transform: rotateX(70deg) rotateZ(360deg);
    }
}

@keyframes orbitSpin2 {
    from {
        transform: rotateX(70deg) rotateZ(30deg);
    }

    to {
        transform: rotateX(70deg) rotateZ(390deg);
    }
}

/* Scanner HUD Overlay */
.scanner-hud {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 5;
}

.scanner-corner {
    position: absolute;
    width: 40px;
    height: 40px;
}

.scanner-corner::before,
.scanner-corner::after {
    content: '';
    position: absolute;
    background: rgba(63, 142, 252, 0.4);
}

.scanner-corner::before {
    width: 20px;
    height: 1px;
}

.scanner-corner::after {
    width: 1px;
    height: 20px;
}

.scanner-corner.sc-tl {
    top: 60px;
    left: 60px;
}

.scanner-corner.sc-tl::before {
    top: 0;
    left: 0;
}

.scanner-corner.sc-tl::after {
    top: 0;
    left: 0;
}

.scanner-corner.sc-tr {
    top: 60px;
    right: 60px;
}

.scanner-corner.sc-tr::before {
    top: 0;
    right: 0;
}

.scanner-corner.sc-tr::after {
    top: 0;
    right: 0;
}

.scanner-corner.sc-bl {
    bottom: 100px;
    left: 60px;
}

.scanner-corner.sc-bl::before {
    bottom: 0;
    left: 0;
}

.scanner-corner.sc-bl::after {
    bottom: 0;
    left: 0;
}

.scanner-corner.sc-br {
    bottom: 100px;
    right: 60px;
}

.scanner-corner.sc-br::before {
    bottom: 0;
    right: 0;
}

.scanner-corner.sc-br::after {
    bottom: 0;
    right: 0;
}

/* Scan Line */
.holo-scan-line {
    position: absolute;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    opacity: 0.6;
    animation: holoScan 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes holoScan {

    0%,
    100% {
        top: 15%;
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.4;
    }

    50% {
        top: 75%;
    }
}

/* Floating Data Tags */
.spec-float {
    position: absolute;
    color: var(--neon-cyan);
    font-family: 'SF Mono', 'Consolas', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.05em;
    padding: 0.4rem 0.8rem;
    background: rgba(0, 10, 20, 0.7);
    border: 1px solid rgba(63, 142, 252, 0.2);
    backdrop-filter: blur(5px);
    white-space: nowrap;
}

.spec-float::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: rgba(63, 142, 252, 0.3);
}

.spec-1 {
    top: 18%;
    right: 5%;
    animation: floatTag 5s ease-in-out infinite;
}

.spec-1::before {
    right: 100%;
    transform: translateY(-50%);
}

.spec-2 {
    bottom: 35%;
    left: 2%;
    animation: floatTag 6s ease-in-out infinite reverse;
}

.spec-2::before {
    left: 100%;
    transform: translateY(-50%);
}

.spec-3 {
    top: 8%;
    left: 15%;
    animation: floatTag 7s ease-in-out infinite 0.5s;
}

.spec-3::before {
    left: 100%;
    transform: translateY(-50%);
}

@keyframes floatTag {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Holographic emitter upgrade */
.holo-emitter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 8px;
    background: linear-gradient(90deg, transparent, rgba(63, 142, 252, 0.8), transparent);
    border-radius: 4px;
    box-shadow:
        0 0 20px rgba(63, 142, 252, 0.4),
        0 0 40px rgba(63, 142, 252, 0.2);
    z-index: 15;
}

.holo-emitter::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: var(--neon-cyan);
    border-radius: 2px;
    box-shadow: 0 0 15px var(--neon-cyan);
}

/* --- RESEARCH TERMINAL DATA PANEL --- */
.product-data-panel {
    position: relative;
    background: linear-gradient(135deg,
            rgba(5, 10, 18, 0.95) 0%,
            rgba(8, 14, 24, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    padding: 0;
    overflow: hidden;
}

/* Terminal glow effect */
.product-data-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(63, 142, 252, 0.3), transparent);
}

.product-data-panel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(180deg, rgba(63, 142, 252, 0.02) 0%, transparent 30%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.01) 0%, transparent 50%);
    pointer-events: none;
}

/* Terminal Header */
.terminal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.terminal-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.terminal-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan);
    animation: terminalPulse 2s ease-in-out infinite;
}

@keyframes terminalPulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 10px var(--neon-cyan);
    }

    50% {
        opacity: 0.5;
        box-shadow: 0 0 5px var(--neon-cyan);
    }
}

.terminal-label {
    font-family: 'SF Mono', 'Consolas', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--neon-cyan);
}

.terminal-status {
    font-family: monospace;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.05em;
}

/* System Architecture Label */
.tech-mill-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
}

.label-brackets {
    color: rgba(63, 142, 252, 0.4);
    font-family: 'SF Mono', monospace;
    font-size: 0.9rem;
}

.label-text {
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.7);
}

.scan-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--neon-cyan), transparent 50%);
    animation: scanLineMove 3s linear infinite;
}

@keyframes scanLineMove {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Terminal Body */
.terminal-body {
    padding: 2rem;
    position: relative;
    z-index: 1;
}

/* Headline styling */
.cyber-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.cyber-headline span {
    display: inline-block;
    position: relative;
}

.cyber-headline span:nth-child(2),
.cyber-headline span:nth-child(4) {
    color: var(--neon-cyan);
    text-shadow: 0 0 30px rgba(63, 142, 252, 0.3);
}

/* Data paragraph */
.data-paragraph {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.data-paragraph strong {
    color: white;
    font-weight: 500;
}

/* Spec Grid */
.spec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 2rem;
}

.spec-cell {
    background: rgba(5, 10, 18, 0.8);
    padding: 1.25rem;
    text-align: center;
    position: relative;
}

.spec-cell::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    width: 4px;
    height: 4px;
    border-left: 1px solid rgba(63, 142, 252, 0.3);
    border-top: 1px solid rgba(63, 142, 252, 0.3);
}

.spec-value {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--neon-cyan);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.spec-label {
    font-family: monospace;
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Action Buttons */
.terminal-actions {
    display: flex;
    gap: 1rem;
}

/* Terminal Footer */
.terminal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    font-family: monospace;
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.05em;
}

.terminal-footer-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-stat-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--neon-cyan);
    opacity: 0.6;
}

/* --- MEGA COMMAND CENTER FOOTER --- */
.mega-footer {
    position: relative;
    background: linear-gradient(180deg, #000 0%, #010108 50%, #020204 100%);
    overflow: hidden;
    padding: 0;
    border-top: 2px solid rgba(63, 142, 252, 0.1);
    margin-top: 0;
}

/* Animated perspective grid floor */
.footer-grid-floor {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(rgba(0, 0, 0, 0.8) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.9) 100%),
        linear-gradient(90deg, rgba(63, 142, 252, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(63, 142, 252, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 50px 50px, 50px 50px;
    transform: perspective(400px) rotateX(55deg) scale(2.5);
    transform-origin: bottom center;
    animation: gridScroll 30s linear infinite;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

@keyframes gridScroll {
    0% {
        background-position: 0 0, 0 0, 0 0;
    }

    100% {
        background-position: 0 0, 0 50px, 0 50px;
    }
}

/* Subtle nebula glow in footer */
.footer-nebula {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    background:
        radial-gradient(ellipse 60% 40% at 20% 0%, rgba(25, 35, 50, 0.4), transparent 50%),
        radial-gradient(ellipse 50% 50% at 80% 20%, rgba(0, 40, 50, 0.15), transparent 50%),
        radial-gradient(ellipse 80% 30% at 50% 0%, rgba(15, 25, 40, 0.3), transparent 40%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 1;
}

/* Horizontal scan line */
.footer-scanline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    animation: footerScan 8s linear infinite;
    opacity: 0.5;
    z-index: 2;
}

@keyframes footerScan {
    0% {
        top: 0;
        opacity: 0;
    }

    5% {
        opacity: 0.5;
    }

    95% {
        opacity: 0.3;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

.footer-content {
    position: relative;
    z-index: 10;
    padding: 0;
    background: transparent;
}

/* ===========================================
   MEGA FOOTER - COMMAND CENTER
   =========================================== */

/* Footer Header Strip */
.footer-header-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 5%;
    background: rgba(0, 12, 18, 0.95);
    border-bottom: 1px solid rgba(63, 142, 252, 0.15);
    backdrop-filter: blur(10px);
}

.fhs-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.fhs-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo {
    display: block;
    height: 36px;
    width: auto;
    filter: drop-shadow(0 0 5px rgba(63, 142, 252, 0.2));
}

.fhs-divider {
    width: 1px;
    height: 24px;
    background: rgba(63, 142, 252, 0.3);
}

.fhs-tagline {
    font-family: 'SF Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.5);
}

.fhs-status {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.fhs-status-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'SF Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
}

.fhs-dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.fhs-dot.active {
    background: var(--neon-cyan);
    box-shadow: 0 0 8px var(--neon-cyan);
}

/* Footer Mega Content */
.footer-mega-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 4rem;
    padding: 4rem 5%;
    position: relative;
    z-index: 10;
}

/* Brand Section */
.footer-brand-section {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.footer-brand-block {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.brand-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.brand-prefix {
    font-family: 'SF Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    color: var(--neon-cyan);
}

.brand-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    color: white;
    margin: 0;
}

.brand-description {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.brand-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'SF Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
}

.meta-divider {
    color: rgba(63, 142, 252, 0.4);
}

/* Research Partner Section */
.footer-partner-section {
    padding: 1.5rem;
    background: rgba(63, 142, 252, 0.03);
    border: 1px solid rgba(63, 142, 252, 0.15);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.partner-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.partner-indicator {
    width: 6px;
    height: 6px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--neon-cyan);
}

.partner-header span {
    font-family: var(--font-display);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: var(--neon-cyan);
}

.partner-badge {
    display: flex;
    justify-content: center;
    padding: 1rem;
}

.partner-image {
    max-width: 180px;
    height: auto;
    filter: brightness(1.1);
    transition: filter 0.3s ease;
}

.partner-image:hover {
    filter: brightness(1.2);
}

.partner-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
}

.partner-org {
    font-family: 'SF Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
}

.partner-status {
    font-family: 'SF Mono', monospace;
    font-size: 0.5rem;
    letter-spacing: 0.1em;
    color: var(--neon-cyan);
    opacity: 0.8;
}

/* Social Block */
.footer-social-block {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-label {
    font-family: var(--font-display);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.4);
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(63, 142, 252, 0.05);
    border: 1px solid rgba(63, 142, 252, 0.15);
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(63, 142, 252, 0.15);
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(63, 142, 252, 0.2);
}

/* Navigation Section */
.footer-nav-section {
    display: flex;
    gap: 3rem;
}

.footer-nav-col {
    flex: 1;
}

.nav-col-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(63, 142, 252, 0.1);
}

.nav-indicator {
    width: 4px;
    height: 4px;
    background: var(--neon-cyan);
    box-shadow: 0 0 6px var(--neon-cyan);
}

.nav-col-header h4 {
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--neon-cyan);
    margin: 0;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.nav-links li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'SF Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
}

.link-prefix {
    color: rgba(63, 142, 252, 0.3);
    transition: all 0.3s ease;
}

.nav-links li a:hover {
    color: var(--neon-cyan);
}

.nav-links li a:hover .link-prefix {
    color: var(--neon-cyan);
    transform: translateX(3px);
}

/* Footer Bottom Bar */
.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 5%;
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(63, 142, 252, 0.1);
    position: relative;
    z-index: 10;
}

.footer-bottom-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(63, 142, 252, 0.3), transparent);
}

.fbb-left,
.fbb-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fbb-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fbb-dot {
    width: 6px;
    height: 6px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--neon-cyan);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.fbb-status span,
.fbb-connection {
    font-family: 'SF Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
}

.fbb-divider {
    width: 1px;
    height: 16px;
    background: rgba(63, 142, 252, 0.2);
}

.fbb-center {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fbb-copyright,
.fbb-rights {
    font-family: 'SF Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
}

.fbb-separator {
    color: var(--neon-cyan);
    opacity: 0.5;
}

.fbb-encryption {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'SF Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.1em;
    color: var(--neon-cyan);
    opacity: 0.7;
}

.fbb-protocol {
    font-family: 'SF Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.3);
}

/* Footer Responsive */
@media (max-width: 1200px) {
    .footer-mega-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .footer-partner-section {
        grid-column: span 2;
        justify-self: center;
    }

    .partner-badge {
        max-width: 200px;
    }
}

@media (max-width: 1024px) {
    .fhs-tagline {
        display: none;
    }

    .fhs-divider {
        display: none;
    }

    .footer-nav-section {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-header-strip {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 5%;
    }

    .fhs-status {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .footer-mega-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 5%;
    }

    .footer-nav-section {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .footer-nav-col {
        flex: 0 0 calc(50% - 1rem);
    }

    .footer-partner-section {
        grid-column: span 1;
        justify-self: stretch;
        align-items: center;
    }

    .partner-badge {
        width: 100%;
        justify-content: center;
    }

    .footer-bottom-bar {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .fbb-left,
    .fbb-right {
        flex-wrap: wrap;
        justify-content: center;
    }

    .fbb-connection {
        display: none;
    }
}

@media (max-width: 480px) {
    .footer-nav-col {
        flex: 0 0 100%;
    }

    .fhs-status-item span {
        font-size: 0.5rem;
    }

    .partner-badge {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .partner-image {
        max-width: 140px;
        margin: 0 auto;
    }

    .fbb-center {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* --- EPIC REACTOR CORE CTA - DEPLOYMENT COMMAND CENTER --- */
.reactor-cta {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6rem 5%;
    background: linear-gradient(180deg,
            var(--void) 0%,
            rgba(0, 8, 12, 1) 20%,
            rgba(0, 12, 18, 1) 50%,
            rgba(0, 8, 12, 1) 80%,
            var(--void) 100%);
    overflow: hidden;
}

/* Grid overlay */
.cta-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(90deg, rgba(63, 142, 252, 0.02) 1px, transparent 1px),
        linear-gradient(rgba(63, 142, 252, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
    pointer-events: none;
}

/* Nebula glow */
.cta-nebula-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse at center,
            rgba(63, 142, 252, 0.08) 0%,
            rgba(0, 150, 200, 0.03) 40%,
            transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    animation: ctaNebulaFloat 10s ease-in-out infinite;
}

@keyframes ctaNebulaFloat {

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

    50% {
        transform: translate(-50%, -52%) scale(1.05);
    }
}

/* Scanline */
.cta-scanline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    opacity: 0.3;
    animation: ctaScanMove 4s linear infinite;
    pointer-events: none;
}

@keyframes ctaScanMove {
    0% {
        top: 0;
    }

    100% {
        top: 100%;
    }
}

/* HUD Frame */
.cta-hud-frame {
    position: absolute;
    top: 3rem;
    left: 3rem;
    right: 3rem;
    bottom: 3rem;
    pointer-events: none;
    z-index: 5;
}

.hud-corner-bracket {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 1px solid rgba(63, 142, 252, 0.2);
}

.hcb-tl {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.hcb-tr {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}

.hcb-bl {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.hcb-br {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.hud-corner-bracket::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan);
}

.hcb-tl::before {
    top: -4px;
    left: -4px;
}

.hcb-tr::before {
    top: -4px;
    right: -4px;
}

.hcb-bl::before {
    bottom: -4px;
    left: -4px;
}

.hcb-br::before {
    bottom: -4px;
    right: -4px;
}

/* Section Header */
.cta-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.cta-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 5rem);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.cta-label {
    display: block;
    font-size: 0.35em;
    letter-spacing: 0.35em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.5rem;
}

.cta-main-title {
    display: block;
    background: linear-gradient(180deg, #fff 0%, rgba(63, 142, 252, 0.9) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 40px rgba(63, 142, 252, 0.3));
}

/* Main Content Grid */
.cta-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 10;
}

/* ---- REACTOR VISUAL ---- */
.cta-reactor-visual {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Scanner ring */
.reactor-scanner-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    border: 1px solid rgba(63, 142, 252, 0.15);
    border-radius: 50%;
}

.reactor-scanner-ring::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    width: 40px;
    height: 4px;
    margin-left: -20px;
    background: var(--neon-cyan);
    box-shadow: 0 0 15px var(--neon-cyan);
    animation: scannerRotate 8s linear infinite;
    transform-origin: 20px calc(190px + 2px);
}

@keyframes scannerRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Orbital rings */
.reactor-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px dashed rgba(63, 142, 252, 0.15);
}

.orbit-1 {
    width: 280px;
    height: 280px;
    animation: orbitSpin 20s linear infinite;
}

.orbit-1::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    width: 10px;
    height: 10px;
    margin-left: -5px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--neon-cyan);
}

.orbit-2 {
    width: 200px;
    height: 200px;
    animation: orbitSpin 15s linear infinite reverse;
    border-style: solid;
    border-color: rgba(147, 51, 234, 0.2);
}

.orbit-2::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -5px;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    background: var(--neon-purple);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--neon-purple);
}

.orbit-3 {
    width: 340px;
    height: 340px;
    animation: orbitSpin 30s linear infinite;
    border-color: rgba(255, 255, 255, 0.05);
}

@keyframes orbitSpin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Core */
.reactor-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
}

.core-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.core-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(63, 142, 252, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: corePulseAnim 2s ease-in-out infinite;
}

@keyframes corePulseAnim {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.8;
    }
}

.core-center {
    position: relative;
    z-index: 5;
}

/* Core readouts */
.core-readout {
    position: absolute;
    font-family: 'SF Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.1em;
    color: var(--neon-cyan);
    white-space: nowrap;
    opacity: 0.8;
}

.readout-top {
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
}

.readout-right {
    top: 50%;
    right: -70px;
    transform: translateY(-50%);
}

.readout-bottom {
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
}

.readout-left {
    top: 50%;
    left: -65px;
    transform: translateY(-50%);
}

/* Reactor particles */
.reactor-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    pointer-events: none;
}

.r-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--neon-cyan);
    animation: rParticleFloat 4s ease-in-out infinite;
}

.r-particle:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.r-particle:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 0.7s;
}

.r-particle:nth-child(3) {
    top: 50%;
    left: 5%;
    animation-delay: 1.4s;
}

.r-particle:nth-child(4) {
    top: 70%;
    right: 20%;
    animation-delay: 2.1s;
}

.r-particle:nth-child(5) {
    top: 85%;
    left: 30%;
    animation-delay: 2.8s;
}

.r-particle:nth-child(6) {
    top: 40%;
    right: 5%;
    animation-delay: 3.5s;
}

@keyframes rParticleFloat {

    0%,
    100% {
        opacity: 0;
        transform: scale(0.5);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* ---- COMMAND TERMINAL ---- */
.cta-command-terminal {
    background: rgba(0, 10, 15, 0.8);
    border: 1px solid rgba(63, 142, 252, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.cta-command-terminal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
}

/* Terminal header */
.terminal-cmd-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(63, 142, 252, 0.05);
    border-bottom: 1px solid rgba(63, 142, 252, 0.1);
}

.cmd-header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cmd-indicator {
    width: 8px;
    height: 8px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-cyan);
    animation: ctaDotBlink 1.5s ease-in-out infinite;
}

.cmd-title {
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--neon-cyan);
}

.cmd-version {
    font-family: 'SF Mono', monospace;
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Terminal body */
.terminal-cmd-body {
    padding: 2rem;
}

.cmd-alert {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 42, 42, 0.1);
    border: 1px solid rgba(255, 42, 42, 0.3);
    margin-bottom: 1.5rem;
    animation: alertFlash 2s ease-in-out infinite;
}

@keyframes alertFlash {

    0%,
    100% {
        border-color: rgba(255, 42, 42, 0.3);
    }

    50% {
        border-color: rgba(255, 42, 42, 0.6);
        box-shadow: 0 0 15px rgba(255, 42, 42, 0.1);
    }
}

.alert-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--neon-red);
    color: var(--neon-red);
    font-size: 0.7rem;
    font-weight: bold;
}

.cmd-alert span {
    font-family: var(--font-display);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--neon-red);
}

.cmd-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cmd-description .highlight {
    color: var(--neon-cyan);
}

/* Specs */
.cmd-specs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(63, 142, 252, 0.03);
    border: 1px solid rgba(63, 142, 252, 0.1);
}

.cmd-spec {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.spec-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(63, 142, 252, 0.1);
    border: 1px solid rgba(63, 142, 252, 0.2);
    color: var(--neon-cyan);
    font-size: 1rem;
}

.spec-info {
    flex: 1;
}

.spec-val {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: white;
    letter-spacing: 0.05em;
}

.spec-lbl {
    font-family: 'SF Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.25rem;
}

/* Deploy button */
.btn-deploy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--neon-cyan), rgba(0, 200, 255, 0.8));
    color: black;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.15em;
    font-weight: 700;
    transition: all 0.4s var(--easing);
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

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

.btn-deploy:hover {
    background: linear-gradient(135deg, #fff, var(--neon-cyan));
    box-shadow: 0 0 30px rgba(63, 142, 252, 0.4), 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

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

.btn-deploy-text {
    position: relative;
    z-index: 2;
}

.btn-deploy-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-deploy:hover .btn-deploy-icon {
    transform: translateX(5px);
}

/* Auth line */
.cmd-auth-line {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'SF Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
}

.auth-indicator {
    width: 6px;
    height: 6px;
    background: rgba(255, 200, 50, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 200, 50, 0.5);
    animation: authBlink 1s ease-in-out infinite;
}

@keyframes authBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* Terminal footer */
.terminal-cmd-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(63, 142, 252, 0.1);
}

.cmd-footer-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-tag {
    font-family: 'SF Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.3);
}

.footer-divider {
    color: rgba(63, 142, 252, 0.3);
}

.footer-encrypt {
    font-family: 'SF Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.1em;
    color: rgba(63, 142, 252, 0.5);
}

/* ---- STATUS BAR ---- */
.cta-status-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    padding: 1.5rem 2rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(63, 142, 252, 0.1);
    position: relative;
    z-index: 10;
}

.status-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'SF Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
}

.sbi-dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.sbi-dot.active {
    background: var(--neon-cyan);
    box-shadow: 0 0 8px var(--neon-cyan);
}

/* ---- CTA RESPONSIVE ---- */
@media (max-width: 1024px) {
    .cta-main-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cta-reactor-visual {
        height: 350px;
    }

    .reactor-scanner-ring {
        width: 300px;
        height: 300px;
    }

    .reactor-scanner-ring::before {
        transform-origin: 20px calc(150px + 2px);
    }

    .orbit-1 {
        width: 220px;
        height: 220px;
    }

    .orbit-2 {
        width: 160px;
        height: 160px;
    }

    .orbit-3 {
        width: 270px;
        height: 270px;
    }

    .cta-status-bar {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .reactor-cta {
        padding: 4rem 5%;
    }

    .cta-hud-frame {
        top: 1.5rem;
        left: 1.5rem;
        right: 1.5rem;
        bottom: 1.5rem;
    }

    .hud-corner-bracket {
        width: 40px;
        height: 40px;
    }

    .cta-header h2 {
        font-size: clamp(2rem, 10vw, 3.5rem);
    }

    .cta-reactor-visual {
        height: 300px;
    }

    .reactor-scanner-ring {
        width: 250px;
        height: 250px;
    }

    .reactor-scanner-ring::before {
        transform-origin: 20px calc(125px + 2px);
    }

    .orbit-1 {
        width: 180px;
        height: 180px;
    }

    .orbit-2 {
        width: 130px;
        height: 130px;
    }

    .orbit-3 {
        width: 220px;
        height: 220px;
    }

    .reactor-core {
        width: 120px;
        height: 120px;
    }

    .core-inner {
        width: 100px;
        height: 100px;
    }

    .core-readout {
        font-size: 0.5rem;
    }

    .readout-right {
        right: -55px;
    }

    .readout-left {
        left: -50px;
    }

    .terminal-cmd-body {
        padding: 1.5rem;
    }

    .cmd-specs {
        padding: 1rem;
    }

    .cta-status-bar {
        gap: 1rem;
        padding: 1rem;
    }

    .status-bar-item {
        font-size: 0.5rem;
    }
}

@media (max-width: 480px) {
    .cta-header h2 {
        font-size: 2rem;
    }

    .cta-reactor-visual {
        height: 250px;
    }

    .reactor-scanner-ring {
        width: 200px;
        height: 200px;
    }

    .reactor-scanner-ring::before {
        transform-origin: 20px calc(100px + 2px);
    }

    .orbit-1 {
        width: 150px;
        height: 150px;
    }

    .orbit-2 {
        width: 110px;
        height: 110px;
    }

    .orbit-3 {
        width: 180px;
        height: 180px;
    }

    .reactor-core {
        width: 100px;
        height: 100px;
    }

    .core-inner {
        width: 80px;
        height: 80px;
    }

    .core-center svg {
        width: 60px;
        height: 60px;
    }

    .core-readout {
        display: none;
    }

    .cmd-alert {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .cmd-spec {
        gap: 0.75rem;
    }

    .spec-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .spec-val {
        font-size: 0.95rem;
    }

    .cta-status-bar {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
}

/* Keep old stat styles for compatibility */
.reactor-stat {
    text-align: center;
}

.reactor-stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 20px rgba(63, 142, 252, 0.3);
    line-height: 1;
    margin-bottom: 0.5rem;
}

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

/* Main footer columns grid */
.footer-main {
    padding: 5rem 5%;
    position: relative;
    z-index: 5;
}

.footer-cols {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.f-col {
    position: relative;
}

.f-col h4 {
    color: var(--neon-cyan);
    font-family: var(--font-display);
    margin-bottom: 2rem;
    font-size: 0.75rem;
    letter-spacing: 3px;
    position: relative;
    padding-bottom: 1rem;
}

.f-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan);
}

/* Brand column */
.footer-brand {
    max-width: 350px;
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-brand-mark {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 20px var(--neon-cyan);
}

.footer-brand-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 4px;
    color: white;
}

.footer-brand-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.footer-brand-tagline {
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--neon-purple);
    padding: 0.5rem 1rem;
    border: 1px solid rgba(157, 0, 255, 0.3);
    display: inline-block;
}

.f-links {
    list-style: none;
}

.f-links li {
    margin-bottom: 1rem;
}

.f-links a {
    color: var(--text-secondary);
    font-size: 0.85rem;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s var(--easing);
    padding-left: 0;
}

.f-links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--neon-cyan);
    transition: all 0.3s var(--easing);
}

.f-links a:hover {
    color: var(--neon-cyan);
    padding-left: 1rem;
}

.f-links a:hover::before {
    width: 10px;
}

/* Terminal-style links */
.f-links.terminal-links a::before {
    content: '>';
    width: auto;
    height: auto;
    background: none;
    color: var(--neon-cyan);
    opacity: 0;
    font-family: monospace;
}

.f-links.terminal-links a:hover::before {
    opacity: 1;
}

/* Newsletter Input Styling */
.newsletter-form {
    display: flex;
    margin-top: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.newsletter-input {
    background: transparent;
    border: none;
    color: white;
    font-family: var(--font-body);
    padding: 0.5rem 0;
    flex-grow: 1;
}

.newsletter-input:focus {
    outline: none;
}

.newsletter-btn {
    background: transparent;
    border: none;
    color: var(--neon-cyan);
    font-family: var(--font-display);
    cursor: pointer;
    font-size: 1.2rem;
    transition: transform 0.2s;
}

.newsletter-btn:hover {
    transform: translateX(5px);
    color: white;
}

/* --- SOCIAL ICONS --- */
.social-row {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.social-icon:hover {
    color: var(--neon-cyan);
    border-color: var(--neon-cyan);
    background: rgba(63, 142, 252, 0.1);
    transform: translateY(-3px);
}

/* --- TRUST BADGES --- */
.badge-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.trust-badge {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.trust-badge:hover {
    border-color: var(--neon-cyan);
    background: rgba(63, 142, 252, 0.05);
}

.badge-icon {
    font-size: 1.2rem;
    color: var(--neon-cyan);
    margin-bottom: 0.3rem;
}

.badge-text {
    font-family: var(--font-display);
    font-size: 0.5rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.newsletter-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.newsletter-box input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 0;
    color: white;
    margin-bottom: 1rem;
    font-family: var(--font-body);
}

.newsletter-box input:focus {
    outline: none;
    border-color: var(--neon-cyan);
}

/* Holographic data panel */
.footer-holo-panel {
    position: relative;
    padding: 2rem;
    background: rgba(0, 20, 30, 0.5);
    border: 1px solid rgba(63, 142, 252, 0.15);
    backdrop-filter: blur(10px);
}

.footer-holo-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(63, 142, 252, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.holo-title {
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.holo-title::before {
    content: '';
    width: 8px;
    height: 8px;
    border: 1px solid var(--neon-cyan);
    transform: rotate(45deg);
}

.holo-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.holo-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(63, 142, 252, 0.03);
    border: 1px solid rgba(63, 142, 252, 0.1);
}

.holo-stat-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 15px rgba(63, 142, 252, 0.5);
    line-height: 1;
    margin-bottom: 0.5rem;
}

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

/* Footer bottom bar */
.footer-bar {
    display: flex;
    justify-content: space-between;
    padding: 2rem 5%;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 5;
}

.footer-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(63, 142, 252, 0.3), transparent);
}

.status-live {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--neon-cyan);
    font-family: var(--font-display);
    letter-spacing: 1px;
}

.status-live .status-dot {
    width: 8px;
    height: 8px;
}

/* Copyright section */
.footer-copyright {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: monospace;
}

.footer-legal-links {
    display: flex;
    gap: 2rem;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--font-display);
    font-size: 0.65rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
}

.footer-legal-links a:hover {
    color: var(--neon-cyan);
}

.footer-legal-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--neon-cyan);
    transition: width 0.3s;
}

.footer-legal-links a:hover::after {
    width: 100%;
}

/* Encryption badge */
.footer-encryption {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(63, 142, 252, 0.05);
    border: 1px solid rgba(63, 142, 252, 0.2);
    font-family: monospace;
    font-size: 0.65rem;
    color: var(--neon-cyan);
}

.footer-encryption::before {
    content: '';
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233F8EFC' stroke-width='2'%3E%3Crect x='3' y='11' width='18' height='11' rx='2'/%3E%3Cpath d='M7 11V7a5 5 0 0110 0v4'/%3E%3C/svg%3E");
    background-size: contain;
}

/* ================================================================
   BIO-WELL ANALYSIS SECTION (SOPHISTICATED LAB AESTHETIC)
   ================================================================ */

/* Section container */
#evidence {
    background: linear-gradient(180deg,
            var(--void) 0%,
            rgba(5, 8, 12, 1) 15%,
            rgba(8, 12, 18, 1) 50%,
            rgba(5, 8, 12, 1) 85%,
            var(--void) 100%);
    padding: 6rem 0;
}

/* Fix grid overlay - smooth gradient blend */
#evidence .bg-grid-overlay {
    background-image:
        linear-gradient(90deg, rgba(63, 142, 252, 0.015) 1px, transparent 1px),
        linear-gradient(rgba(63, 142, 252, 0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 1;
    mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 20%, transparent 70%);
}

.evidence-wrapper {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Analysis grid */
.scan-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
    position: relative;
}

/* Lab Scanner Card */
.bio-scan-frame {
    background: linear-gradient(180deg,
            rgba(8, 12, 18, 0.95) 0%,
            rgba(5, 8, 14, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--easing);
}

/* Subtle inner glow */
.bio-scan-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

/* Scanner equipment frame effect */
.bio-scan-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
        linear-gradient(225deg, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.bio-scan-frame:hover {
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Scanner Header Bar */
.scan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 2;
}

.scan-header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.scan-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: scanIndicator 2s ease-in-out infinite;
}

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

.scan-indicator.optimal {
    background: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan);
}

@keyframes scanIndicator {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.scan-id {
    font-family: var(--font-display);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scan-status {
    font-family: monospace;
    font-size: 0.65rem;
    padding: 0.4rem 0.8rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid;
    letter-spacing: 1px;
}

.status-critical {
    color: var(--neon-red);
    border-color: rgba(255, 42, 42, 0.3);
}

.status-optimal {
    color: var(--neon-cyan);
    border-color: rgba(63, 142, 252, 0.3);
}

/* Scanner Display Area */
.scan-display {
    position: relative;
    padding: 2rem;
    min-height: 420px;
    display: flex;
    flex-direction: column;
}

/* Scan visualization container */
.scan-visual {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(ellipse at center,
            rgba(0, 10, 15, 0.5) 0%,
            transparent 70%);
    border-radius: 4px;
    overflow: hidden;
}

/* Grid lines inside scan area */
.scan-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    pointer-events: none;
}

/* Scanning beam */
.scan-beam {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    pointer-events: none;
    z-index: 5;
}

.scan-beam.critical {
    background: linear-gradient(90deg, transparent, var(--neon-red), transparent);
    box-shadow: 0 0 20px var(--neon-red);
    animation: scanBeamDown 3s linear infinite;
}

.scan-beam.optimal {
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    box-shadow: 0 0 20px var(--neon-cyan);
    animation: scanBeamDown 4s linear infinite;
}

@keyframes scanBeamDown {
    0% {
        top: 0%;
        opacity: 0;
    }

    5% {
        opacity: 0.8;
    }

    95% {
        opacity: 0.8;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

/* Body container */
.body-schematic {
    position: relative;
    width: 100%;
    height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Field status label */
.field-status-label {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 0.65rem;
    letter-spacing: 3px;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid;
    backdrop-filter: blur(5px);
    z-index: 10;
}

.field-status-label.critical {
    color: var(--neon-red);
    border-color: rgba(255, 42, 42, 0.3);
}

.field-status-label.optimal {
    color: var(--neon-cyan);
    border-color: rgba(63, 142, 252, 0.3);
}

/* Data readout panel */
.scan-data-panel {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 1.5rem;
}

.scan-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.metric-item {
    text-align: center;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.metric-value {
    font-family: var(--font-display);
    font-size: 1.25rem;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.metric-value.critical {
    color: var(--neon-red);
}

.metric-value.optimal {
    color: var(--neon-cyan);
}

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

.scan-summary {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    padding-left: 1rem;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.scan-summary strong {
    display: block;
    margin-bottom: 0.3rem;
}

.scan-summary strong.critical {
    color: var(--neon-red);
}

.scan-summary strong.optimal {
    color: var(--neon-cyan);
}

/* VS Connector */
.scan-vs {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(15, 20, 30, 1), rgba(8, 12, 20, 1));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    box-shadow:
        0 0 30px rgba(0, 0, 0, 0.5),
        inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.scan-vs span {
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
}

/* Corner Reticles - refined */
.frame-corner {
    position: absolute;
    width: 15px;
    height: 15px;
    border-color: rgba(255, 255, 255, 0.15);
    border-style: solid;
    z-index: 10;
    transition: all 0.4s var(--easing);
}

.c-tl {
    top: 1rem;
    left: 1rem;
    border-width: 1px 0 0 1px;
}

.c-tr {
    top: 1rem;
    right: 1rem;
    border-width: 1px 1px 0 0;
}

.c-bl {
    bottom: 1rem;
    left: 1rem;
    border-width: 0 0 1px 1px;
}

.c-br {
    bottom: 1rem;
    right: 1rem;
    border-width: 0 1px 1px 0;
}

.bio-scan-frame:hover .frame-corner {
    width: 25px;
    height: 25px;
}

.bio-scan-frame:hover .frame-corner.critical {
    border-color: rgba(255, 42, 42, 0.4);
}

.bio-scan-frame:hover .frame-corner.optimal {
    border-color: rgba(63, 142, 252, 0.4);
}

/* --- DETAIL PAGE --- */
.detail-header {
    margin-bottom: 4rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 2rem;
}

.detail-meta {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    font-family: var(--font-display);
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.data-viz-container {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    height: 200px;
    margin-top: 2rem;
}

.bar {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    transition: height 1s var(--easing);
}

.bar.highlight {
    background: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(63, 142, 252, 0.2);
}

.bar span {
    position: absolute;
    bottom: -25px;
    width: 100%;
    text-align: center;
    font-size: 0.7rem;
    color: var(--text-secondary);
}

/* --- MILKY WAY NEBULA SYSTEM (SUBTLE DEPTH) --- */
.milky-way-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.nebula-layer {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    pointer-events: none;
}

/* Subtle dark cloud masses for depth */
.nebula-core {
    background:
        radial-gradient(ellipse 80% 50% at 30% 40%, rgba(20, 25, 35, 0.6), transparent 50%),
        radial-gradient(ellipse 60% 80% at 70% 60%, rgba(15, 20, 30, 0.5), transparent 45%),
        radial-gradient(ellipse 100% 60% at 50% 50%, rgba(10, 15, 25, 0.4), transparent 55%);
    filter: blur(80px);
    animation: nebulaCore 30s ease-in-out infinite alternate;
}

/* Soft gradient clouds - very muted tones */
.nebula-dust {
    background:
        radial-gradient(ellipse 40% 60% at 20% 30%, rgba(0, 60, 80, 0.08), transparent 40%),
        radial-gradient(ellipse 50% 40% at 80% 70%, rgba(30, 35, 50, 0.12), transparent 45%),
        radial-gradient(ellipse 30% 50% at 60% 20%, rgba(25, 30, 45, 0.1), transparent 35%);
    filter: blur(60px);
    animation: nebulaDust 25s ease-in-out infinite alternate-reverse;
}

/* Subtle edge wisps for atmosphere */
.nebula-wisps {
    background:
        radial-gradient(ellipse 20% 80% at 15% 50%, rgba(40, 45, 60, 0.15), transparent 30%),
        radial-gradient(ellipse 15% 60% at 85% 40%, rgba(0, 50, 60, 0.08), transparent 30%),
        radial-gradient(ellipse 25% 40% at 45% 80%, rgba(35, 40, 55, 0.1), transparent 30%);
    filter: blur(50px);
    animation: nebulaWisps 20s ease-in-out infinite;
}

/* Sparse, subtle star field */
.star-field {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(1px 1px at 10% 20%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 30% 65%, rgba(255, 255, 255, 0.25), transparent),
        radial-gradient(1px 1px at 50% 10%, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1px 1px at 70% 40%, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 90% 80%, rgba(255, 255, 255, 0.35), transparent),
        radial-gradient(1px 1px at 25% 90%, rgba(255, 255, 255, 0.15), transparent),
        radial-gradient(1px 1px at 80% 15%, rgba(200, 220, 255, 0.3), transparent),
        radial-gradient(1px 1px at 45% 55%, rgba(255, 255, 255, 0.25), transparent),
        radial-gradient(1px 1px at 15% 75%, rgba(220, 230, 255, 0.2), transparent),
        radial-gradient(1px 1px at 65% 85%, rgba(255, 255, 255, 0.2), transparent);
    animation: starTwinkle 12s ease-in-out infinite;
}

/* Subtle diagonal cosmic haze */
.cosmic-stream {
    position: absolute;
    top: 30%;
    left: -10%;
    width: 120%;
    height: 40%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(30, 40, 50, 0.06) 20%,
            rgba(20, 35, 45, 0.1) 40%,
            rgba(25, 35, 50, 0.08) 60%,
            rgba(15, 30, 40, 0.05) 80%,
            transparent 100%);
    transform: rotate(-15deg) skewY(-5deg);
    filter: blur(60px);
    animation: cosmicFlow 40s linear infinite;
}

@keyframes nebulaCore {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.5;
    }

    50% {
        transform: translate(5%, 3%) rotate(2deg);
        opacity: 0.7;
    }

    100% {
        transform: translate(-3%, -2%) rotate(-1deg);
        opacity: 0.6;
    }
}

@keyframes nebulaDust {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-3%, 2%) scale(1.05);
    }

    100% {
        transform: translate(2%, -1%) scale(0.98);
    }
}

@keyframes nebulaWisps {

    0%,
    100% {
        transform: translate(0, 0);
        opacity: 0.4;
    }

    33% {
        transform: translate(2%, -2%);
        opacity: 0.6;
    }

    66% {
        transform: translate(-1%, 1%);
        opacity: 0.5;
    }
}

@keyframes starTwinkle {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.8;
    }
}

@keyframes cosmicFlow {
    0% {
        transform: rotate(-15deg) skewY(-5deg) translateX(0);
    }

    100% {
        transform: rotate(-15deg) skewY(-5deg) translateX(10%);
    }
}

/* Legacy support */
.space-cloud-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    background:
        radial-gradient(circle at 50% 50%, rgba(157, 0, 255, 0.08), transparent 60%),
        radial-gradient(circle at 20% 30%, rgba(63, 142, 252, 0.04), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 81, 255, 0.06), transparent 50%);
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
    animation: nebulaMove 20s ease-in-out infinite alternate;
    mask-image: linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
}

@keyframes nebulaMove {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

/* --- PRODUCT TYPOGRAPHY (CYBER) --- */
.tech-mill-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 0.8rem;
    color: var(--neon-cyan);
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    position: relative;
}

.label-brackets {
    opacity: 0.5;
    transition: all 0.3s;
}

.tech-mill-label:hover .label-brackets {
    opacity: 1;
    color: white;
}

.scan-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--neon-cyan);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: all 0.3s;
}

.tech-mill-label:hover .scan-line {
    opacity: 0.5;
    transform: scaleX(1);
}

.cyber-headline {
    font-family: var(--font-display);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: white;
    text-transform: uppercase;
    position: relative;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.);
}

.cyber-headline span {
    display: inline-block;
    transition: all 0.3s;
}

.cyber-headline:hover span:nth-child(odd) {
    transform: translateX(-2px);
    text-shadow: 2px 0 var(--neon-red);
}

.cyber-headline:hover span:nth-child(even) {
    transform: translateX(2px);
    text-shadow: -2px 0 var(--neon-cyan);
}

.data-paragraph {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 500px;
    border-left: 2px solid rgba(63, 142, 252, 0.3);
    padding-left: 1.5rem;
    position: relative;
}

.data-paragraph strong {
    color: white;
    font-weight: 500;
}

/* Animations */
@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.1;
        transform: translate(-50%, -50%) scale(1.05);
    }

    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes gridMove {
    0% {
        background-position: 0 0, 0 0, 0 0;
    }

    100% {
        background-position: 0 0, 0 40px, 0 40px;
    }
}


/* ===========================================
   RESPONSIVE STYLES
   =========================================== */

@media (max-width: 1024px) {
    .product-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .holo-container {
        height: 450px;
    }

    .holo-rings {
        width: 300px;
        height: 300px;
    }

    .spec-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .scan-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vs-connector {
        transform: rotate(90deg);
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .product-showcase {
        padding: 0 1rem;
    }

    .holo-container {
        height: 380px;
    }

    .holo-cube {
        width: 140px;
        height: 140px;
    }

    .face {
        width: 140px;
        height: 140px;
        font-size: 0.65rem;
    }

    .face-front {
        transform: rotateY(0deg) translateZ(70px);
    }

    .face-back {
        transform: rotateY(180deg) translateZ(70px);
    }

    .face-right {
        transform: rotateY(90deg) translateZ(70px);
    }

    .face-left {
        transform: rotateY(-90deg) translateZ(70px);
    }

    .face-top {
        transform: rotateX(90deg) translateZ(70px);
    }

    .face-bottom {
        transform: rotateX(-90deg) translateZ(70px);
    }

    .holo-rings {
        width: 250px;
        height: 250px;
    }

    .platform-base {
        width: 200px;
        height: 200px;
    }

    .scanner-corner.sc-tl,
    .scanner-corner.sc-tr {
        top: 30px;
    }

    .scanner-corner.sc-tl,
    .scanner-corner.sc-bl {
        left: 30px;
    }

    .scanner-corner.sc-tr,
    .scanner-corner.sc-br {
        right: 30px;
    }

    .scanner-corner.sc-bl,
    .scanner-corner.sc-br {
        bottom: 60px;
    }

    .spec-float {
        font-size: 0.55rem;
        padding: 0.3rem 0.6rem;
    }

    .spec-grid {
        grid-template-columns: 1fr;
        gap: 1px;
    }

    .terminal-body {
        padding: 1.5rem;
    }

    .cyber-headline {
        font-size: 1.8rem;
    }

    .terminal-footer {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .terminal-footer-left {
        flex-direction: column;
        gap: 0.5rem;
    }

    /* Bio-Well Analysis responsive */
    .bio-scan-frame {
        margin-bottom: 1rem;
    }

    .scan-display {
        flex-direction: column;
    }

    .scan-visual {
        min-height: 300px;
    }

    .scan-data-panel {
        padding: 1.25rem;
    }

    .scan-metrics {
        flex-direction: row;
        justify-content: space-between;
    }

    /* Bio-Photonic Lab responsive */
    .lab-section {
        padding: 5rem 0;
    }

    .lab-header h2 {
        font-size: 2rem;
    }

    .microscope-display {
        height: 350px;
        margin-bottom: 3rem;
        max-width: 100%;
    }

    .microscope-viewport {
        width: 200px;
        height: 200px;
    }

    .viewport-outer-ring {
        width: 230px;
        height: 230px;
    }

    .viewport-outer-ring::before {
        width: 260px;
        height: 260px;
    }

    .viewport-readout {
        gap: 0.4rem;
    }

    .viewport-readout .hotspot-dot {
        width: 8px;
        height: 8px;
    }

    .viewport-readout .hotspot-dot::before {
        width: 16px;
        height: 16px;
        margin-top: -8px;
        margin-left: -8px;
    }

    .viewport-readout .hotspot-dot::after {
        width: 24px;
        height: 24px;
        margin-top: -12px;
        margin-left: -12px;
    }

    .viewport-readout .hotspot-text {
        font-size: 0.5rem;
    }

    .viewport-readout .hotspot-line {
        display: none;
    }

    .readout-mag {
        top: 12%;
        left: 10px;
    }

    .readout-focus {
        right: 10px;
    }

    .readout-sample {
        bottom: 12%;
        left: 10px;
    }

    .lab-stage {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .specimen-visual-area {
        height: 150px;
    }

    .specimen-visual {
        width: 160px;
        height: 160px;
    }

    .cell-nucleus {
        width: 40px;
        height: 40px;
    }

    .cell-membrane {
        width: 85px;
        height: 85px;
    }

    .cell-field {
        width: 120px;
        height: 120px;
    }

    .particle-orbit {
        width: 150px;
        height: 150px;
    }

    /* Project Gateway responsive */
    .report-section {
        padding: 5rem 0;
    }

    .gateway-header h2 {
        font-size: 2.5rem;
    }

    .gateway-header h2 .project-label {
        font-size: 0.4em;
    }

    .terminal-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .briefing-body {
        padding: 1.5rem;
    }

    .project-title {
        font-size: 1.4rem;
    }

    .intel-readouts {
        font-size: 0.6rem;
    }

    .video-header {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    .hud-bracket {
        width: 25px;
        height: 25px;
    }

    .hud-bracket::before {
        width: 10px;
    }

    .hud-bracket::after {
        height: 10px;
    }

    .tracking-box {
        width: 80px;
        height: 110px;
    }

    .tracking-box::before {
        font-size: 0.45rem;
        top: -16px;
    }

    .biometric-display {
        top: 1rem;
        left: 1rem;
    }

    .bio-stat {
        font-size: 0.45rem;
    }

    .bio-bar {
        width: 30px;
    }

    .video-data-overlay {
        bottom: 1rem;
        left: 1rem;
    }

    .data-line {
        font-size: 0.45rem;
    }

    .video-footer {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
}

/* --- HUD FALLBACK ANIMATIONS --- */
.hud-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #0a0a0c 0%, #000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}

.hud-fallback-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(63, 142, 252, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(63, 142, 252, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
}

.hud-fallback-scan {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(63, 142, 252, 0.1) 50%, transparent 100%);
    animation: hudScan 4s linear infinite;
}

@keyframes hudScan {
    0% {
        top: -100%;
    }

    100% {
        top: 100%;
    }
}

.hud-fallback-content {
    position: relative;
    z-index: 2;
    text-align: center;
    font-family: var(--font-display);
    color: var(--neon-cyan);
}

.hud-fallback-title {
    font-size: 0.8rem;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.hud-fallback-circles {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.hud-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(63, 142, 252, 0.2);
    border-radius: 50%;
}

.hud-circle-1 {
    width: 100%;
    height: 100%;
    animation: hudRotate 10s linear infinite;
    border-style: dashed;
}

.hud-circle-2 {
    width: 80%;
    height: 80%;
    animation: hudRotate 15s linear reverse infinite;
    border-style: dotted;
}

.hud-circle-3 {
    width: 60%;
    height: 60%;
    animation: hudPulse 2s ease-in-out infinite;
    border-color: rgba(63, 142, 252, 0.4);
}

@keyframes hudRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes hudPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(0.95);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 1;
    }
}

.hud-fallback-label {
    margin-top: 1.5rem;
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: var(--neon-cyan);
    animation: hudBlink 1.5s steps(2) infinite;
}

@keyframes hudBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* --- ADDITIONAL PAGE CONTENT RESPONSIVE STYLES --- */

@media (max-width: 1024px) {
    .brief-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .brief-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .brief-section {
        padding: 0 5%;
        margin: 2rem auto 4rem;
    }

    .brief-content h2 {
        font-size: 1.8rem;
    }

    .detail-meta {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .detail-meta > div {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: 120px;
    }

    .video-feed-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 5%;
    }

    .video-feed-item {
        min-height: 300px;
    }

    .transmission-grid {
        padding: 0 5%;
    }

    .transmission-card {
        padding: 1.25rem;
    }

    .stat-ribbon {
        gap: 2rem;
        padding: 1.5rem 5%;
    }

    .stat-value {
        font-size: 2rem;
    }

    .method-terminal {
        margin: 0 5% 4rem;
        padding: 1.25rem;
    }

    .method-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    .method-label {
        min-width: auto;
    }

    .study-grid {
        grid-template-columns: 1fr;
    }

    .study-file {
        min-height: auto;
        padding: 1.5rem;
    }

    section {
        padding-left: 5%;
        padding-right: 5%;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 5vw) !important;
    }

    .cyber-headline {
        font-size: clamp(1.5rem, 6vw, 3rem);
    }
}

@media (max-width: 480px) {
    .detail-meta > div {
        flex: 1 1 100%;
    }

    .stat-ribbon {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .brief-content h2 {
        font-size: 1.5rem;
    }

    .method-terminal {
        padding: 1rem;
    }

    .terminal-header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}