@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@200;300;400;500;600&family=Italianno&family=JetBrains+Mono:wght@300;400;500&display=swap');

:root {
    /* Color Palette - Luminous Cyber Obsidian */
    --bg-void: #020205;
    --bg-slate: #06060f;
    --bg-indigo: #0a0a1a;
    --bg-violet: #120922;

    --bg-card: rgba(12, 12, 24, 0.45);
    --bg-card-hover: rgba(18, 18, 38, 0.65);

    --border-chrome: rgba(255, 255, 255, 0.07);
    --border-glow: rgba(0, 122, 255, 0.25);
    --border-glow-purple: rgba(142, 45, 226, 0.25);

    /* Iridescent accents */
    --cyber-blue: #007aff;
    --cyber-blue-rgb: 0, 122, 255;
    --cyber-purple: #8e2de2;
    --cyber-purple-rgb: 142, 45, 226;
    --cyber-magenta: #f000ff;
    --cyber-magenta-rgb: 240, 0, 255;
    --cyber-silver: #e2e2e7;
    --cyber-emerald: #00ff66;

    /* Typography */
    --font-serif: 'Playfair Display', 'Georgia', serif;
    --font-cursive: 'Italianno', cursive;
    --font-sans: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --transition-cinematic: all 1.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-quick: all 0.3s ease;
}

/* Global Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    background-color: var(--bg-void);
    color: #ffffff;
    font-family: var(--font-serif);
    overflow-x: hidden;
    scroll-behavior: smooth;
    height: 100%;
}

/* Hide scrollbars */
body::-webkit-scrollbar {
    display: none;
}

body {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Ambient Grain Overlay */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 80;
    mix-blend-mode: overlay;
    opacity: 0.06;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.8 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* Widescreen Content Container */
.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 48px;
    position: relative;
    z-index: 10;
    box-sizing: border-box;
}

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

/* ------------------------------------------------------------- */
/* Luminous Background Void & Dot Matrix Grid Canvas             */
/* ------------------------------------------------------------- */
/* ─────────────────────────────────────────────────────────
   VOID BACKGROUND — Live Threat Matrix container
   ───────────────────────────────────────────────────────── */
.void-background {
    position: fixed;
    inset: 0;
    z-index: 0;
    background: radial-gradient(ellipse 120% 80% at 50% 10%, rgba(0, 20, 60, 0.22) 0%, transparent 65%),
        radial-gradient(ellipse 80% 60% at 80% 80%, rgba(60, 0, 80, 0.12) 0%, transparent 55%),
        #020205;
    overflow: hidden;
}

#void-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}


/* Dot matrix is now fully handled by void-canvas (app.js) */
.dot-matrix-overlay {
    display: none;
}

/* ─────────────────────────────────────────────────────────
   NEBULA GLOWS — ambient blue/purple haze
   ───────────────────────────────────────────────────────── */
.nebula-glow {
    position: absolute;
    top: -15%;
    left: -10%;
    width: 65%;
    height: 65%;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(0, 60, 160, 0.05) 0%, transparent 70%);
    filter: blur(60px);
    animation: nebulaDrift 18s ease-in-out infinite alternate;
    pointer-events: none;
}

.nebula-glow-2 {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 60%;
    height: 60%;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(100, 0, 160, 0.04) 0%, transparent 70%);
    filter: blur(70px);
    animation: nebulaDrift2 22s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes nebulaDrift {
    0% {
        transform: translate(-2%, -2%) scale(1);
    }

    100% {
        transform: translate(2%, 2%) scale(1.1);
    }
}

@keyframes nebulaDrift2 {
    0% {
        transform: translate(2%, 2%) scale(1.1);
    }

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

/* ------------------------------------------------------------- */
/* Interactive Spot/Glow Border tracking                         */
/* ------------------------------------------------------------- */
.glow-border-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-chrome);
    border-radius: 12px;
    backdrop-filter: blur(12px);
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                background-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.glow-border-card::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 122, 255, 0.18) 0%, transparent 70%);
    top: var(--my, 0);
    left: var(--mx, 0);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow-border-card:hover::before {
    opacity: 1;
}

.glow-border-card:hover {
    border-color: rgba(0, 122, 255, 0.45);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8),
                0 0 25px rgba(0, 122, 255, 0.12);
}

/* ------------------------------------------------------------- */
/* Symmetrical Heads-Up Display (HUD) Navigation                */
/* ------------------------------------------------------------- */
.hud-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 32px 48px;
}

.hud-header,
.hud-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: auto;
    width: 100%;
}

.hud-logo {
    font-family: var(--font-serif);
    font-size: 19px;
    font-weight: 300;
    letter-spacing: 4px;
    color: var(--cyber-silver);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.hud-logo-icon {
    display: none; /* Hide the diamond logo icon */
    width: 22px;
    height: 22px;
    border: 1px solid var(--cyber-silver);
    transform: rotate(45deg);
    position: relative;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.15);
}

.hud-logo-icon::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    background-color: var(--cyber-blue);
    box-shadow: 0 0 10px var(--cyber-blue);
}

.hud-nav {
    display: flex;
    gap: 36px;
}

.hud-link {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition-quick);
}

.hud-link:hover,
.hud-link.active {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

/* Audio Control System */
.audio-controller {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.audio-label {
    font-family: var(--font-mono);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
}

.audio-bars {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 16px;
}

.audio-bar {
    width: 2px;
    height: 4px;
    background-color: var(--cyber-blue);
    transition: height 0.3s ease;
}

.audio-active .audio-bar {
    animation: equalizer 1.2s ease infinite alternate;
}

.audio-active .audio-bar:nth-child(2) {
    animation-delay: 0.2s;
}

.audio-active .audio-bar:nth-child(3) {
    animation-delay: 0.4s;
}

.audio-active .audio-bar:nth-child(4) {
    animation-delay: 0.1s;
}

@keyframes equalizer {
    0% {
        height: 4px;
    }

    100% {
        height: 16px;
    }
}

.hud-status {
    font-family: var(--font-mono);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

@keyframes statusPulse {
    0% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.3;
    }
}

/* ------------------------------------------------------------- */
/* Redesigned 3D Cybernetic Shield-Wall (Colossal Central Asset)   */
/* ------------------------------------------------------------- */
.monolith-viewport-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
}

.cybernetic-wall-structure {
    width: 480px;
    height: 480px;
    transform-style: preserve-3d;
    transform: rotateX(var(--rot-x, 15deg)) rotateY(var(--rot-y, -25deg)) translateZ(var(--trans-z, 0px)) scale(var(--monolith-scale, 1));
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.wall-plate {
    position: absolute;
    background: rgba(14, 14, 28, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: var(--transition-cinematic);
}

.wall-plate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.05) 0%, transparent 60%);
    border-radius: 12px;
    pointer-events: none;
}

.plate-center {
    width: 240px;
    height: 380px;
    top: 50px;
    left: 120px;
    transform: translateZ(50px);
    border-color: rgba(0, 122, 255, 0.3);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.9),
        0 0 30px rgba(0, 122, 255, 0.1);
}

.plate-left-wing {
    width: 140px;
    height: 300px;
    top: 90px;
    left: -40px;
    transform: translateZ(0px) rotateY(15deg);
}

.plate-right-wing {
    width: 140px;
    height: 300px;
    top: 90px;
    right: -40px;
    transform: translateZ(0px) rotateY(-15deg);
}

.plate-back-shield {
    width: 320px;
    height: 320px;
    top: 80px;
    left: 80px;
    transform: translateZ(-60px);
    background: rgba(22, 13, 38, 0.3);
    border-color: rgba(240, 0, 255, 0.15);
}

.radar-grid-line {
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(240, 0, 255, 0.25), transparent);
    top: 50%;
    animation: waveScan 8s infinite ease-in-out;
}

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

    50% {
        opacity: 0.8;
    }

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

.orbit-ring {
    position: absolute;
    width: 600px;
    height: 600px;
    border: 1px dashed rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(75deg);
    transform-style: preserve-3d;
    animation: rotateRing 30s linear infinite;
}

.orbit-ring.purple-mesh {
    width: 460px;
    height: 460px;
    border: 1px solid rgba(142, 45, 226, 0.12);
    animation: rotateRingBack 20s linear infinite;
}

@keyframes rotateRing {
    from {
        transform: translate(-50%, -50%) rotateX(75deg) rotateZ(0deg);
    }

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

@keyframes rotateRingBack {
    from {
        transform: translate(-50%, -50%) rotateX(75deg) rotateZ(360deg);
    }

    to {
        transform: translate(-50%, -50%) rotateX(75deg) rotateZ(0deg);
    }
}

/* ------------------------------------------------------------- */
/* Typography Gradients & Editorial Styles                      */
/* ------------------------------------------------------------- */
.huge-editorial-title {
    font-family: var(--font-serif);
    font-size: 72px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

/* Premium metallic grey-to-obsidian/black editorial gradients */
.gradient-text-blue {
    /* Silver → Mid-Grey → Light-Grey: Legible metallic gradient */
    background: linear-gradient(0deg,
            #7a7a85 0%,
            #a4a4ac 30%,
            #d4d4d8 65%,
            #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 24px rgba(200, 200, 210, 0.08));
}

.gradient-text-purple {
    /* Titanium White → Battleship Grey → Light-Grey */
    background: linear-gradient(0deg,
            #80808a 0%,
            #acacb4 30%,
            #dcdcdf 65%,
            #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 20px rgba(190, 190, 205, 0.07));
}

.gradient-text-magenta {
    /* Platinum → Ash → Light-Grey */
    background: linear-gradient(0deg,
            #888890 0%,
            #b4b4bc 35%,
            #e2e2e5 70%,
            #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 18px rgba(210, 210, 220, 0.06));
}

.huge-editorial-title span.cursive {
    font-family: var(--font-serif);
    font-style: italic;
    text-transform: none;
    font-size: 1.15em;
    display: inline-block;
    font-weight: 400;
    /* Soft metallic silver-white gradient */
    background: linear-gradient(0deg,
            #7a7a85 0%,
            #a4a4ac 30%,
            #d4d4d8 65%,
            #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-right: 16px;
    filter: drop-shadow(0 0 28px rgba(255, 255, 255, 0.12));
}

.scene-description {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    max-width: 640px;
    margin: 0 auto 40px auto;
}

/* ------------------------------------------------------------- */
/* Multi-page Common Content Scenes                             */
/* ------------------------------------------------------------- */
.story-scene {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 120px;
    padding-bottom: 120px;
    box-sizing: border-box;
}

/* Premium Buttons Styling */
.btn-premium {
    position: relative;
    padding: 16px 36px;
    border-radius: 6px;
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-quick);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    outline: none;
}

.btn-premium.primary {
    background-color: #ffffff;
    color: #030307;
    border: 1px solid #ffffff;
}

.btn-premium.primary:hover {
    background-color: #e2e2e7;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.25);
}

.btn-premium.secondary {
    background-color: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    border: 1px solid var(--border-chrome);
    backdrop-filter: blur(8px);
}

.btn-premium.secondary:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-premium.glow {
    background: linear-gradient(0deg, rgba(142, 45, 226, 0.15) 0%, rgba(0, 122, 255, 0.15) 100%);
    color: #ffffff;
    border: 1px solid rgba(0, 122, 255, 0.35);
    box-shadow: 0 0 20px rgba(0, 122, 255, 0.15);
}

.btn-premium.glow:hover {
    border-color: var(--cyber-blue);
    box-shadow: 0 0 30px rgba(0, 122, 255, 0.4);
}

/* ------------------------------------------------------------- */
/* NEW SPECULAR HOMEPAGE ANIMATION SECTIONS                       */
/* ------------------------------------------------------------- */

/* 1. Cyber Threat Sentinel Grid (Canvas based threat map) */
.threat-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 64px;
    align-items: center;
    width: 100%;
}

.threat-canvas-panel {
    background-color: rgba(10, 10, 24, 0.8);
    border: 1px solid var(--border-chrome);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 45px 90px rgba(0, 0, 0, 0.85);
    position: relative;
    overflow: hidden;
}

#threat-map-canvas {
    width: 100%;
    height: 320px;
    background-color: #030308;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.threat-monitor-logs {
    background-color: #020204;
    border-radius: 6px;
    padding: 16px;
    font-family: var(--font-mono);
    font-size: 11px;
    height: 120px;
    overflow-y: hidden;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.02);
}

/* 2. Holographic Exploit Tree Node Diagram */
.exploit-tree-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 48px;
}

.exploit-nodes-row {
    display: flex;
    justify-content: center;
    gap: 120px;
    position: relative;
    width: 100%;
    margin-bottom: 64px;
}

.exploit-node-card {
    background-color: rgba(14, 14, 32, 0.6);
    border: 1px solid var(--border-chrome);
    border-radius: 10px;
    padding: 24px;
    width: 280px;
    text-align: left;
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                background-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 10;
}

.exploit-node-card:hover {
    border-color: var(--cyber-blue);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.75), 0 0 30px rgba(0, 122, 255, 0.22);
}

.exploit-node-card.mitigated:hover {
    border-color: var(--cyber-emerald) !important;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.75), 0 0 30px rgba(0, 255, 102, 0.22);
}

.exploit-node-card.mitigated {
    border-color: var(--cyber-emerald) !important;
    box-shadow: 0 0 25px rgba(0, 255, 102, 0.15) !important;
}

/* Icon hover animations */
.exploit-node-card:hover .exploit-icon {
    transform: scale(1.15) rotate(8deg);
}

#node-admin:hover .exploit-icon {
    transform: scale(1.15) rotate(180deg);
}

.node-status-badge {
    font-family: var(--font-mono);
    font-size: 9px;
    padding: 2px 8px;
    border-radius: 4px;
    background-color: rgba(240, 0, 255, 0.12);
    color: var(--cyber-magenta);
    float: right;
}

.exploit-node-card.mitigated .node-status-badge {
    background-color: rgba(0, 255, 102, 0.12);
    color: var(--cyber-emerald);
}

.exploit-node-card h4 {
    font-family: var(--font-serif);
    font-size: 20px;
    margin-top: 8px;
    margin-bottom: 8px;
}

.exploit-node-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

.mitigation-code-block {
    display: none;
    background-color: #020204;
    padding: 12px;
    border-radius: 6px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--cyber-emerald);
    margin-top: 12px;
    border: 1px solid rgba(0, 255, 102, 0.1);
    animation: fadeIn 0.4s ease;
}

.tree-connector-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* 3. Cryptographic Certificate Scanner card */
.crypto-scanner-box {
    max-width: 640px;
    width: 100%;
    margin: 48px auto 0 auto;
    background: linear-gradient(135deg, rgba(14, 14, 32, 0.7) 0%, rgba(8, 8, 18, 0.7) 100%);
    border: 1px solid var(--border-chrome);
    border-radius: 16px;
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.scanner-matrix-screen {
    position: relative;
    height: 180px;
    background-color: #030308;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    margin-bottom: 24px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scanner-binary-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-family: var(--font-mono);
    font-size: 10px;
    color: rgba(0, 122, 255, 0.08);
    line-height: 1.2;
    pointer-events: none;
    word-break: break-all;
    overflow: hidden;
}

.scanner-laser-bar {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyber-blue), transparent);
    box-shadow: 0 0 15px var(--cyber-blue);
    top: 0;
    opacity: 0;
}

.scanning .scanner-laser-bar {
    opacity: 1;
    animation: laserSweep 2s infinite ease-in-out;
}

@keyframes laserSweep {
    0% {
        top: 0%;
    }

    50% {
        top: 100%;
    }

    100% {
        top: 0%;
    }
}

.scanner-badge {
    font-family: var(--font-serif);
    font-size: 32px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.15);
    z-index: 5;
    transition: var(--transition-quick);
}

.scanning .scanner-badge {
    color: var(--cyber-blue);
    text-shadow: 0 0 20px rgba(0, 122, 255, 0.6);
}

.verified .scanner-badge {
    color: var(--cyber-emerald);
    text-shadow: 0 0 20px rgba(0, 255, 102, 0.6);
}

.decrypted-block-output {
    background-color: #020204;
    border-radius: 6px;
    padding: 20px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    height: 120px;
    overflow-y: hidden;
    border: 1px solid rgba(255, 255, 255, 0.02);
    text-align: left;
    display: none;
}

/* ------------------------------------------------------------- */
/* ORANO INSPIRED SPECTACULAR 3D INTERACTIVE CAROUSEL SLIDER      */
/* ------------------------------------------------------------- */
.immersive-carousel-section {
    position: relative;
    min-height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: 10;
}

.carousel-slide-content {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 500px;
    position: relative;
    z-index: 5;
}

.carousel-text-area {
    width: 45%;
    text-align: left;
    animation: slideUpContent 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUpContent {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-nav-controls {
    display: flex;
    gap: 16px;
    margin-top: 40px;
}

.carousel-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid var(--border-chrome);
    background-color: rgba(255, 255, 255, 0.02);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition-quick);
}

.carousel-btn:hover {
    background-color: #ffffff;
    color: var(--bg-void);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Grid Curtain wipe transition overlay */
.grid-curtain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
    pointer-events: none;
    z-index: 999;
}

.curtain-tile {
    background-color: #030308;
    transform: scale(0);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.grid-curtain-overlay.active .curtain-tile {
    transform: scale(1.05);
}

/* Sequential delay tiles */
.curtain-tile:nth-child(1) {
    transition-delay: 0.05s;
}

.curtain-tile:nth-child(2) {
    transition-delay: 0.1s;
}

.curtain-tile:nth-child(3) {
    transition-delay: 0.15s;
}

.curtain-tile:nth-child(4) {
    transition-delay: 0.2s;
}

.curtain-tile:nth-child(5) {
    transition-delay: 0.1s;
}

.curtain-tile:nth-child(6) {
    transition-delay: 0.15s;
}

.curtain-tile:nth-child(7) {
    transition-delay: 0.2s;
}

.curtain-tile:nth-child(8) {
    transition-delay: 0.25s;
}

.curtain-tile:nth-child(9) {
    transition-delay: 0.15s;
}

.curtain-tile:nth-child(10) {
    transition-delay: 0.2s;
}

.curtain-tile:nth-child(11) {
    transition-delay: 0.25s;
}

.curtain-tile:nth-child(12) {
    transition-delay: 0.3s;
}

.curtain-tile:nth-child(13) {
    transition-delay: 0.2s;
}

.curtain-tile:nth-child(14) {
    transition-delay: 0.25s;
}

.curtain-tile:nth-child(15) {
    transition-delay: 0.3s;
}

.curtain-tile:nth-child(16) {
    transition-delay: 0.35s;
}

/* ------------------------------------------------------------- */
/* Existing Page Styles (Maintained for Multi-page)              */
/* ------------------------------------------------------------- */
.carved-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    width: 100%;
    margin-top: 48px;
}

.carved-item {
    padding: 40px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-chrome);
    border-radius: 12px;
    text-align: left;
    backdrop-filter: blur(12px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                background-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.02);
    position: relative;
    overflow: hidden;
}

.carved-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.04) 0%, rgba(142, 45, 226, 0.04) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.carved-item:hover::after {
    opacity: 1;
}

.carved-item:hover {
    background-color: rgba(18, 18, 38, 0.7);
    border-color: rgba(0, 122, 255, 0.45);
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.85),
                0 0 30px rgba(0, 122, 255, 0.18),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.carved-item h3 {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--cyber-silver);
    position: relative;
    z-index: 2;
}

.carved-item p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.immersive-panel {
    background-color: rgba(10, 10, 22, 0.85);
    border: 1px solid var(--border-chrome);
    border-radius: 12px;
    padding: 32px;
    backdrop-filter: blur(25px);
    box-shadow: 0 45px 90px rgba(0, 0, 0, 0.85);
    width: 100%;
}

.panel-hdr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 16px;
    margin-bottom: 24px;
}

.panel-title {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cyber-silver);
}

.pentest-console-box {
    background-color: #030307;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 24px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    height: 200px;
    overflow-y: hidden;
    position: relative;
}

.console-line {
    margin-bottom: 8px;
    animation: consoleSlideIn 0.3s forwards;
}

.console-success {
    color: var(--cyber-emerald);
}

.console-warning {
    color: var(--cyber-blue);
}

.console-alert {
    color: var(--cyber-magenta);
}

.emerging-container {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    width: 100%;
}

.emerging-card {
    flex: 1;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--border-chrome);
    padding: 48px 40px;
    border-radius: 12px;
    backdrop-filter: blur(12px);
    transition: var(--transition-cinematic);
    position: relative;
    overflow: hidden;
    text-align: left;
}

.emerging-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(125deg,
            rgba(0, 122, 255, 0.08) 0%,
            rgba(142, 45, 226, 0.08) 40%,
            rgba(240, 0, 255, 0.08) 80%,
            transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.emerging-card:hover {
    transform: translateY(-12px) translateZ(40px);
    border-color: var(--border-glow);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.75),
        0 0 40px rgba(0, 122, 255, 0.2);
}

.emerging-card:hover::after {
    opacity: 1;
}

.card-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--cyber-blue);
    letter-spacing: 2px;
    margin-bottom: 24px;
    display: block;
}

.emerging-card h3 {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.emerging-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

.threat-monitor-shield {
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.45);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
}

.pulse-node {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid var(--cyber-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 122, 255, 0.05);
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 0 25px rgba(0, 122, 255, 0.3);
    transition: var(--transition-quick);
}

.pulse-node:hover {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(0, 122, 255, 0.6);
}

.pulse-node:hover .purge-shield-icon {
    transform: scale(1.2);
}

.node-pulse-ring {
    position: absolute;
    width: 160px;
    height: 160px;
    border: 1px solid rgba(0, 122, 255, 0.2);
    border-radius: 50%;
    animation: ripple 2s infinite ease-out;
    pointer-events: none;
}

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

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

.compliance-checklist {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    margin-top: 48px;
}

.check-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-chrome);
    border-radius: 8px;
    padding: 32px;
    text-align: left;
}

.check-hdr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.check-title {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--cyber-silver);
}

.check-badge {
    font-family: var(--font-mono);
    font-size: 9px;
    padding: 3px 8px;
    background-color: rgba(0, 255, 102, 0.12);
    color: var(--cyber-emerald);
    border-radius: 4px;
}

.flat-alignment-card {
    max-width: 720px;
    background: linear-gradient(0deg, transparent 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--border-chrome);
    border-radius: 16px;
    padding: 64px;
    backdrop-filter: blur(25px);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.9);
    margin: 0 auto;
}

.liquid-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
    text-align: left;
}

.liquid-input-group {
    position: relative;
}

.liquid-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 0;
    color: #ffffff;
    font-size: 16px;
    outline: none;
    transition: var(--transition-quick);
}

.liquid-input:focus {
    border-color: var(--cyber-blue);
}

.liquid-input-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--cyber-blue), var(--cyber-magenta));
    transition: width 0.4s ease;
}

.liquid-input:focus~.liquid-input-bar {
    width: 100%;
}

.liquid-label {
    position: absolute;
    top: 12px;
    left: 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.4);
    pointer-events: none;
    transition: var(--transition-quick);
}

.liquid-input:focus~.liquid-label,
.liquid-input:valid~.liquid-label {
    top: -16px;
    font-size: 11px;
    color: var(--cyber-blue);
}

.slider-custom {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    outline: none;
    border-radius: 2px;
    margin: 20px 0;
}

.slider-custom::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: var(--transition-quick);
}

.slider-custom::-webkit-slider-thumb:hover {
    background: var(--cyber-blue);
    transform: scale(1.2);
}

.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1), transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ------------------------------------------------------------- */
/* STICKY LIVE BAR (Shield-inspired bottom status strip)         */
/* ------------------------------------------------------------- */
.sticky-live-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: rgba(6, 6, 15, 0.92);
    border-top: 1px solid rgba(0, 122, 255, 0.18);
    backdrop-filter: blur(20px);
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.sticky-live-bar.visible {
    transform: translateY(0);
    opacity: 1;
}

.sticky-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.sticky-bar-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sticky-pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyber-emerald);
    box-shadow: 0 0 8px var(--cyber-emerald);
    flex-shrink: 0;
    animation: statusPulse 2s infinite;
}

.sticky-bar-text {
    font-family: var(--font-mono);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
}

.sticky-bar-text strong {
    color: rgba(255, 255, 255, 0.9);
}

.sticky-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.sticky-bar-hint {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    white-space: nowrap;
}

/* ------------------------------------------------------------- */
/* HERO LIVE BADGE                                               */
/* ------------------------------------------------------------- */
.hero-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(0, 122, 255, 0.25);
    background: rgba(0, 122, 255, 0.06);
    margin-bottom: 20px;
    margin-top: -8px;
}

.hero-live-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyber-blue);
    box-shadow: 0 0 6px var(--cyber-blue);
    animation: statusPulse 2s infinite;
    flex-shrink: 0;
}

.hero-live-label {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--cyber-blue);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* ------------------------------------------------------------- */
/* FLEET MONITOR CARD (Shield-inspired node network panel)       */
/* ------------------------------------------------------------- */
.fleet-monitor-card {
    background: rgba(8, 8, 18, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.9);
}

/* Title bar */
.fleet-monitor-titlebar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: rgba(4, 4, 10, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.fleet-monitor-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.fmd {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.fmd-red {
    background: rgba(255, 59, 48, 0.75);
}

.fmd-yellow {
    background: rgba(255, 184, 0, 0.75);
}

.fmd-green {
    background: rgba(0, 200, 80, 0.6);
}

.fleet-monitor-engine {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}

.fleet-monitor-stats {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 11px;
}

.fleet-stat-num {
    color: var(--cyber-blue);
    font-weight: 600;
}

.fleet-stat-lbl {
    color: rgba(255, 255, 255, 0.35);
}

.fleet-stat-sep {
    color: rgba(255, 255, 255, 0.12);
    margin: 0 4px;
}

/* Body */
.fleet-monitor-body {
    display: flex;
    min-height: 340px;
}

/* Node Map */
.fleet-node-map {
    flex: 1;
    position: relative;
    min-height: 340px;
    background: rgba(5, 5, 14, 0.6);
}

.fleet-connections-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.fleet-conn-line {
    stroke: rgba(0, 122, 255, 0.55) !important;
    stroke-width: 2 !important;
    stroke-dasharray: 6 4 !important;
    animation: flowLine 1.5s linear infinite;
    transition: stroke 0.3s ease, stroke-width 0.3s ease;
}

.fleet-conn-line.active-threat {
    stroke: var(--cyber-magenta) !important;
    stroke-width: 3.5px !important;
    animation: flowLine 0.2s linear infinite, threatPulse 0.4s ease-in-out infinite alternate;
}

.fleet-conn-line.active-secured {
    stroke: var(--cyber-emerald) !important;
    stroke-width: 2.5 !important;
    animation: flowLine 1s linear infinite;
}

@keyframes flowLine {
    to {
        stroke-dashoffset: -20;
    }
}

@keyframes threatPulse {
    0% {
        stroke-opacity: 0.6;
    }
    100% {
        stroke-opacity: 1;
    }
}

/* Central engine */
.fleet-engine-node {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.fleet-engine-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 122, 255, 0.15);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.fleet-engine-ring-1 {
    width: 70px;
    height: 70px;
    animation: statusPulse 2s infinite;
}

.fleet-engine-ring-2 {
    width: 52px;
    height: 52px;
    animation: statusPulse 2s infinite;
    animation-delay: 0.5s;
    border-color: rgba(0, 122, 255, 0.22);
}

.fleet-engine-core {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid rgba(0, 122, 255, 0.45);
    background: rgba(0, 10, 28, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 122, 255, 0.2), inset 0 0 12px rgba(0, 122, 255, 0.06);
    animation: engineGlow 3s ease infinite alternate;
}

@keyframes engineGlow {
    0% {
        box-shadow: 0 0 20px rgba(0, 122, 255, 0.2);
    }

    100% {
        box-shadow: 0 0 35px rgba(0, 122, 255, 0.45), 0 0 60px rgba(142, 45, 226, 0.15);
    }
}

.fleet-engine-label {
    font-family: var(--font-mono);
    font-size: 9px;
    color: rgba(0, 122, 255, 0.55);
    letter-spacing: 1px;
    margin-top: 28px;
    white-space: nowrap;
}

/* Device nodes */
.fleet-device-node {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.fleet-node-icon {
    position: relative; /* Enabled relative positioning for animated pseudo-elements */
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(12, 12, 26, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

/* Pseudo-element for radar ping ring animation */
.fleet-node-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 10px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fleet-node-icon svg {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.fleet-device-node:hover .fleet-node-icon {
    border-color: var(--cyber-blue);
    box-shadow: 0 0 20px rgba(0, 122, 255, 0.35);
}

.fleet-device-node:hover .fleet-node-icon svg {
    color: var(--cyber-blue);
}

.fleet-device-node.threat-detected .fleet-node-icon {
    border-color: var(--cyber-magenta) !important;
    box-shadow: 0 0 24px rgba(240, 0, 255, 0.6) !important;
    animation: threatNodePulse 0.5s ease infinite alternate, threatNodeVibrate 0.15s linear infinite;
}

.fleet-device-node.threat-detected .fleet-node-icon::after {
    border: 2px solid var(--cyber-magenta);
    animation: threatPing 1.5s cubic-bezier(0.1, 0.8, 0.3, 1) infinite;
}

.fleet-device-node.threat-detected .fleet-node-icon svg {
    color: var(--cyber-magenta) !important;
}

.fleet-device-node.secured .fleet-node-icon {
    border-color: var(--cyber-emerald) !important;
    box-shadow: 0 0 16px rgba(0, 255, 102, 0.35) !important;
}

.fleet-device-node.secured .fleet-node-icon::after {
    border: 2px solid var(--cyber-emerald);
    animation: securedPing 1s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}

.fleet-device-node.secured .fleet-node-icon svg {
    color: var(--cyber-emerald) !important;
}

@keyframes threatNodePulse {
    0% {
        box-shadow: 0 0 15px rgba(240, 0, 255, 0.4);
    }
    100% {
        box-shadow: 0 0 35px rgba(240, 0, 255, 0.75);
    }
}

@keyframes threatPing {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

@keyframes securedPing {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

@keyframes threatNodeVibrate {
    0% { transform: translate(0, 0) scale(1.06); }
    20% { transform: translate(-1.5px, 0.5px) scale(1.06); }
    40% { transform: translate(1.5px, -0.5px) scale(1.06); }
    60% { transform: translate(-1px, -1.0px) scale(1.06); }
    80% { transform: translate(1px, 1.0px) scale(1.06); }
    100% { transform: translate(0, 0) scale(1.06); }
}

.fleet-node-label {
    font-family: var(--font-mono);
    font-size: 9px;
    color: rgba(255, 255, 255, 0.35);
    white-space: nowrap;
    transition: color 0.3s ease;
}

.fleet-device-node:hover .fleet-node-label {
    color: rgba(255, 255, 255, 0.75);
}

/* Threat Feed Sidebar */
.fleet-threat-feed {
    width: 280px;
    flex-shrink: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(4, 4, 12, 0.7);
    display: flex;
    flex-direction: column;
    padding: 16px;
    overflow: hidden; /* Hide overflow scrollbars */
}

.fleet-feed-hdr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.fleet-feed-title {
    font-family: var(--font-mono);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.fleet-feed-live {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--cyber-emerald);
    font-weight: 600;
    letter-spacing: 1px;
}

.fleet-feed-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyber-emerald);
    box-shadow: 0 0 6px var(--cyber-emerald);
    animation: statusPulse 1.5s infinite;
}

.fleet-feed-body {
    flex: 1;
    overflow: hidden; /* Hide all scrollbars */
    display: flex;
    flex-direction: column;
    gap: 8px;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
}

.fleet-feed-body::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
}

.fleet-feed-idle {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    text-align: center;
    margin-top: 24px;
}

.fleet-feed-event {
    padding: 8px 10px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.025);
    border-left: 2px solid var(--cyber-blue);
    animation: feedSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fleet-feed-event.threat {
    border-left-color: var(--cyber-magenta);
    background: rgba(240, 0, 255, 0.04);
}

.fleet-feed-event.resolved {
    border-left-color: var(--cyber-emerald);
    background: rgba(0, 255, 102, 0.04);
}

@keyframes feedSlideIn {
    from {
        opacity: 0;
        transform: translateX(12px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fleet-feed-event-time {
    font-family: var(--font-mono);
    font-size: 9px;
    color: rgba(255, 255, 255, 0.25);
    margin-bottom: 3px;
}

.fleet-feed-event-text {
    font-family: var(--font-mono);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.4;
}

.fleet-feed-event-text .fev-highlight {
    color: var(--cyber-blue);
    font-weight: 600;
}

.fleet-feed-event.threat .fev-highlight {
    color: var(--cyber-magenta);
}

.fleet-feed-event.resolved .fev-highlight {
    color: var(--cyber-emerald);
}

/* Fleet Monitor Footer */
.fleet-monitor-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background: rgba(4, 4, 10, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-family: var(--font-mono);
    font-size: 11px;
}

.fleet-footer-left {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.35);
}

.fleet-footer-sep {
    color: rgba(255, 255, 255, 0.12);
}

.fleet-footer-active {
    color: var(--cyber-blue);
}

.fleet-footer-right {
    color: rgba(255, 255, 255, 0.3);
}

.fleet-footer-ms {
    color: var(--cyber-blue);
    font-weight: 600;
}

/* ------------------------------------------------------------- */
/* STATS & METRICS SECTION                                       */
/* ------------------------------------------------------------- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stats-card {
    padding: 24px;
}

.stats-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.stats-card-label {
    font-family: var(--font-mono);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.stats-big-num {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 700;
    color: var(--cyber-magenta);
    letter-spacing: -1px;
    line-height: 1;
}

.stats-big-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

.stats-badge-threat {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    color: var(--cyber-magenta);
    background: rgba(240, 0, 255, 0.1);
    border: 1px solid rgba(240, 0, 255, 0.25);
    border-radius: 4px;
    padding: 4px 8px;
    white-space: nowrap;
}

/* Animated bench bars */
.bench-bars {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
}

.bench-row-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.bench-name {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
}

.bench-val {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 700;
}

.bench-val-good {
    color: var(--cyber-blue);
}

.bench-val-bad {
    color: var(--cyber-magenta);
}

.bench-val-worst {
    color: var(--cyber-purple);
}

.bench-track {
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.bench-fill {
    height: 100%;
    border-radius: 4px;
    width: 0%;
    transition: width 1.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.bench-fill-blue {
    background: var(--cyber-blue);
    box-shadow: 0 0 10px rgba(0, 122, 255, 0.5);
}

.bench-fill-magenta {
    background: var(--cyber-magenta);
    box-shadow: 0 0 10px rgba(240, 0, 255, 0.5);
}

.bench-fill-purple {
    background: var(--cyber-purple);
    box-shadow: 0 0 10px rgba(142, 45, 226, 0.5);
}

.bench-footnote {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid rgba(240, 0, 255, 0.1);
    background: rgba(240, 0, 255, 0.04);
    line-height: 1.5;
}

.bench-alert-text {
    color: var(--cyber-magenta);
    font-weight: 600;
}

/* SVG Chart */
.stats-chart-svg {
    width: 100%;
    height: 60px;
    margin-top: 4px;
}

.chart-line {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    transition: stroke-dashoffset 2s cubic-bezier(0.23, 1, 0.32, 1) 0.3s;
}

.chart-line.animated {
    stroke-dashoffset: 0;
}

.stats-chart-label {
    font-family: var(--font-mono);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 8px;
}

/* Fleet stat grid */
.fleet-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 16px;
}



.fleet-stat-big {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: -0.5px;
}

.fleet-stat-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
    margin-top: 2px;
}

.fleet-stat-sub {
    font-family: var(--font-mono);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
}

.fleet-stat-source {
    font-family: var(--font-mono);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 12px;
}

/* Attack vectors */
.attack-vectors {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.av-row-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.av-name {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.av-pct {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
}

.av-track {
    height: 5px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.av-fill {
    height: 100%;
    border-radius: 3px;
    width: 0%;
    transition: width 1.4s cubic-bezier(0.23, 1, 0.32, 1) 0.2s;
}

/* ------------------------------------------------------------- */
/* PLATFORM CAPABILITIES (Badge-card grid)                       */
/* ------------------------------------------------------------- */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.cap-card {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cap-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 122, 255, 0.1);
}

.cap-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(12, 12, 28, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.5);
}

.cap-icon svg {
    width: 20px;
    height: 20px;
}

.cap-badge {
    display: inline-flex;
    align-self: flex-start;
    padding: 3px 10px;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.cap-badge-blue {
    color: var(--cyber-blue);
    border: 1px solid rgba(0, 122, 255, 0.3);
    background: rgba(0, 122, 255, 0.06);
}

.cap-badge-purple {
    color: var(--cyber-purple);
    border: 1px solid rgba(142, 45, 226, 0.3);
    background: rgba(142, 45, 226, 0.06);
}

.cap-badge-magenta {
    color: var(--cyber-magenta);
    border: 1px solid rgba(240, 0, 255, 0.3);
    background: rgba(240, 0, 255, 0.06);
}

.cap-title {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
}

.cap-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    flex: 1;
}

/* Responsive Grid breaks */
@media (max-width: 1024px) {
    .huge-editorial-title {
        font-size: 56px;
    }

    .huge-editorial-title span.cursive {
        font-size: 1.15em;
    }

    .carved-grid,
    .compliance-checklist,
    .threat-grid-layout,
    .exploit-nodes-row {
        grid-template-columns: 1fr;
        flex-direction: column;
        gap: 32px;
    }

    .emerging-container {
        flex-direction: column;
    }

    .hud-layer {
        padding: 24px;
    }

    .hud-nav {
        display: none;
    }

    .carousel-slide-content {
        flex-direction: column;
        text-align: center;
    }

    .carousel-text-area {
        width: 100%;
    }

    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .fleet-monitor-body {
        flex-direction: column;
    }

    .fleet-threat-feed {
        width: 100%;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .sticky-bar-inner {
        padding: 0 24px;
    }

    .sticky-bar-hint {
        display: none;
    }
}

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

    .fleet-stat-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================================= */
/* IMPORTED SECTIONS FROM ALTERNATE.HTML                        */
/* ============================================================= */

/* ============ SERVICES ECOSYSTEM ============ */
#services {
    background: linear-gradient(180deg, var(--bg-void) 0%, var(--bg-slate) 100%);
    padding: 100px 0;
}
.eco {
    position: relative;
    display: grid;
    grid-template-columns: 340px 1fr 340px;
    gap: 48px;
    align-items: stretch;
    min-height: 760px;
    margin-top: 48px;
}
.eco .col-l, .eco .col-r {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.eco .svc {
    padding: 22px 20px;
    border: 1px solid var(--border-chrome);
    background: rgba(16, 20, 28, 0.4);
    border-radius: 8px;
    backdrop-filter: blur(8px);
    cursor: pointer;
    position: relative;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.eco .svc::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--cyber-blue);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.35s;
    border-radius: 8px 0 0 8px;
}
.eco .svc:hover, .eco .svc.active {
    background: rgba(0, 122, 255, 0.06);
    border-color: rgba(0, 122, 255, 0.45);
}
.eco .svc:hover::before, .eco .svc.active::before {
    transform: scaleY(1);
}
.eco .svc .id {
    font: 400 9px/1 var(--font-mono);
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: .24em;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}
.eco .svc .id .dot {
    width: 6px;
    height: 6px;
    background: var(--cyber-blue);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.25s;
    box-shadow: 0 0 10px var(--cyber-blue);
}
.eco .svc:hover .id .dot, .eco .svc.active .id .dot {
    opacity: 1;
}
.eco .svc h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 22px;
    letter-spacing: -.02em;
    color: #ffffff;
    margin-bottom: 6px;
}
.eco .svc p {
    font: 400 12px/1.5 var(--font-sans);
    color: rgba(255, 255, 255, 0.6);
}
.eco .core {
    position: relative;
    border: 1px solid var(--border-chrome);
    border-radius: 12px;
    background: radial-gradient(ellipse at center, rgba(0, 122, 255, 0.08) 0%, transparent 70%);
    overflow: hidden;
}
.eco .core canvas {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}
.eco .core .label {
    position: absolute;
    top: 24px;
    left: 24px;
    font: 400 10px/1.4 var(--font-mono);
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: .22em;
    text-transform: uppercase;
    z-index: 2;
}
.eco .core .label b {
    color: var(--cyber-blue);
    font-weight: 500;
}
.eco .core .readout {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    display: flex;
    justify-content: space-between;
    font: 400 10px/1.4 var(--font-mono);
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: .16em;
    text-transform: uppercase;
    z-index: 2;
}
.eco .core .readout .stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.eco .core .readout .stat b {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 22px;
    color: #ffffff;
    letter-spacing: -.02em;
    font-weight: 400;
    text-transform: none;
}

/* ============ PRODUCTS NETWORK ============ */
#products {
    background: var(--bg-void);
    position: relative;
    padding: 100px 0;
}
.prod-wrap {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 88px;
    align-items: start;
    margin-top: 48px;
}
.prod-left h3 {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 64px;
    line-height: 1.02;
    letter-spacing: -.035em;
    margin-bottom: 32px;
}
.prod-left h3 em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--cyber-purple);
}
.prod-left p.body {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 18px;
    line-height: 1.55;
    color: var(--cyber-silver);
    max-width: 480px;
    margin-bottom: 48px;
}
.prod-left .quote {
    padding: 28px 0;
    border-top: 1px solid var(--border-chrome);
    border-bottom: 1px solid var(--border-chrome);
    margin-bottom: 48px;
}
.prod-left .quote .q {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 24px;
    line-height: 1.4;
    color: #ffffff;
    margin-bottom: 14px;
}
.prod-left .quote .a {
    font: 400 10px/1 var(--font-mono);
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: .2em;
    text-transform: uppercase;
}
.prod-network {
    position: sticky;
    top: 120px;
    height: 680px;
    border: 1px solid var(--border-chrome);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(142, 45, 226, 0.04), transparent);
    overflow: hidden;
}
.prod-network canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.prod-network .lab {
    position: absolute;
    font: 400 9px/1.3 var(--font-mono);
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: .2em;
    text-transform: uppercase;
    pointer-events: none;
    z-index: 2;
}
.prod-network .lab b {
    color: #ffffff;
    font-weight: 500;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 13px;
    letter-spacing: 0;
    text-transform: none;
    display: block;
}
.prod-list {
    margin-top: 48px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}
.prod-list .item {
    padding: 24px 0;
    border-top: 1px solid var(--border-chrome);
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 24px;
    align-items: baseline;
    cursor: pointer;
    transition: padding 0.35s;
}
.prod-list .item:last-child {
    border-bottom: 1px solid var(--border-chrome);
}
.prod-list .item:hover {
    padding-left: 12px;
}
.prod-list .item .num {
    font: 400 11px/1 var(--font-mono);
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: .18em;
}
.prod-list .item h5 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 24px;
    letter-spacing: -.015em;
    color: #ffffff;
}
.prod-list .item h5 em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--cyber-blue);
    font-weight: 400;
}
.prod-list .item .arrow {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.35s, color 0.35s;
}
.prod-list .item:hover .arrow {
    transform: translateX(8px);
    color: var(--cyber-blue);
}

/* ============ RESEARCH LAB ============ */
#lab {
    background: var(--bg-void);
    padding: 100px 0;
}
.lab-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
    align-items: start;
    margin-top: 48px;
}
.lab-h {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 72px;
    line-height: 1;
    letter-spacing: -.035em;
    margin-bottom: 24px;
}
.lab-h em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--cyber-emerald);
}
.lab-sub {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 18px;
    line-height: 1.55;
    color: var(--cyber-silver);
    max-width: 560px;
    margin-bottom: 56px;
}
.papers {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid var(--border-chrome);
}
.paper {
    padding: 28px 0;
    border-bottom: 1px solid var(--border-chrome);
    display: grid;
    grid-template-columns: 80px 1fr 120px 28px;
    gap: 24px;
    align-items: baseline;
    cursor: pointer;
}
.paper .date {
    font: 400 10px/1 var(--font-mono);
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: .16em;
}
.paper .ttl {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 22px;
    line-height: 1.25;
    letter-spacing: -.015em;
    color: #ffffff;
}
.paper .tag {
    font: 400 9px/1 var(--font-mono);
    color: var(--cyber-blue);
    letter-spacing: .22em;
    text-transform: uppercase;
}
.paper .ar {
    font-family: var(--font-serif);
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
    text-align: right;
}
.lab-visual {
    position: relative;
    border: 1px solid var(--border-chrome);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(0, 255, 102, 0.04), transparent);
    height: 680px;
    overflow: hidden;
}
.lab-visual canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.lab-visual .stat-grid {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-rows: auto 1fr auto;
    padding: 24px;
    pointer-events: none;
}
.lab-visual .stat-grid .top {
    font: 400 10px/1 var(--font-mono);
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: .22em;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
}
.lab-visual .stat-grid .bot {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.lab-visual .stat-grid .bot .s b {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 34px;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: -.02em;
    display: block;
}
.lab-visual .stat-grid .bot .s span {
    font: 400 9px/1.3 var(--font-mono);
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: .2em;
    text-transform: uppercase;
    display: block;
    margin-top: 4px;
}

/* ============ ENTERPRISE TRUST ============ */
#trust {
    background: linear-gradient(180deg, var(--bg-void), var(--bg-slate));
    padding: 100px 0;
}
.trust-h {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: clamp(48px, 6.5vw, 96px);
    line-height: 1;
    letter-spacing: -.035em;
    max-width: 1100px;
    margin-bottom: 80px;
    margin-top: 48px;
}
.trust-h em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--cyber-blue);
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border: 1px solid var(--border-chrome);
    background: rgba(16, 20, 28, 0.4);
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}
.trust-grid .cell {
    aspect-ratio: 5/3;
    border-right: 1px solid var(--border-chrome);
    border-bottom: 1px solid var(--border-chrome);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 18px;
    letter-spacing: .04em;
    color: var(--cyber-silver);
    position: relative;
    transition: all 0.3s;
    text-align: center;
}
.trust-grid .cell:hover {
    background: rgba(0, 122, 255, 0.05);
    color: #ffffff;
}
.trust-grid .cell:nth-child(6n) {
    border-right: none;
}
.trust-grid .cell:nth-last-child(-n+6) {
    border-bottom: none;
}
.trust-grid .cell .num {
    position: absolute;
    top: 10px;
    left: 12px;
    font: 400 9px/1 var(--font-mono);
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: .18em;
}
.trust-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--border-chrome);
    border-top: none;
    background: rgba(10, 12, 17, 0.6);
    border-radius: 0 0 12px 12px;
    overflow: hidden;
}
.trust-stats .s {
    padding: 36px 28px;
    border-right: 1px solid var(--border-chrome);
}
.trust-stats .s:last-child {
    border-right: none;
}
.trust-stats .s b {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 64px;
    line-height: 1;
    letter-spacing: -.03em;
    color: #ffffff;
    display: block;
    margin-bottom: 10px;
}
.trust-stats .s b em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--cyber-blue);
}
.trust-stats .s span {
    font: 400 10px/1.4 var(--font-mono);
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: .18em;
    text-transform: uppercase;
}

/* ============ CASE STUDIES ============ */
#cases {
    background: var(--bg-void);
    padding: 100px 0;
}
.case {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--border-chrome);
    margin-bottom: 32px;
    min-height: 480px;
    background: rgba(16, 20, 28, 0.4);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 48px;
}
.case:nth-child(odd) .case-visual {
    order: 2;
}
.case-visual {
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at 30% 40%, rgba(0, 122, 255, 0.18), transparent 60%);
    border-left: 1px solid var(--border-chrome);
}
.case:nth-child(odd) .case-visual {
    border-left: none;
    border-right: 1px solid var(--border-chrome);
}
.case-visual canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.case-visual .vlab {
    position: absolute;
    top: 20px;
    left: 20px;
    font: 400 9px/1.3 var(--font-mono);
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: .22em;
    text-transform: uppercase;
}
.case-visual .vlab b {
    color: var(--cyber-blue);
    font-weight: 500;
}
.case-body {
    padding: 48px;
}
.case-body .meta {
    display: flex;
    gap: 16px;
    font: 400 10px/1 var(--font-mono);
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: .2em;
    text-transform: uppercase;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-chrome);
}
.case-body .meta .sep {
    color: rgba(255, 255, 255, 0.15);
}
.case-body .meta b {
    color: var(--cyber-blue);
    font-weight: 500;
}
.case-body h4 {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 44px;
    line-height: 1.05;
    letter-spacing: -.025em;
    color: #ffffff;
    margin-bottom: 20px;
}
.case-body h4 em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--cyber-blue);
}
.case-body p {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.55;
    color: var(--cyber-silver);
    margin-bottom: 32px;
    max-width: 520px;
}
.case-body .kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}
.case-body .kpis .k b {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 32px;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: -.02em;
    display: block;
}
.case-body .kpis .k span {
    font: 400 9px/1.3 var(--font-mono);
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: .18em;
    text-transform: uppercase;
    display: block;
    margin-top: 4px;
}
.case-body .read {
    font: 500 10px/1 var(--font-mono);
    color: var(--cyber-blue);
    letter-spacing: .24em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--cyber-blue);
    padding-bottom: 6px;
    display: inline-block;
    cursor: pointer;
    transition: all 0.25s;
}
.case-body .read:hover {
    padding-bottom: 10px;
    border-color: #ffffff;
    color: #ffffff;
}

/* ============ SECTION HEADER UTILS (for new sections) ============ */
.section-tag {
    display: flex;
    align-items: baseline;
    gap: 22px;
    font: 400 10px/1 var(--font-mono);
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: .28em;
    text-transform: uppercase;
    margin-bottom: 48px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-chrome);
}
.section-tag .idx {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 32px;
    color: var(--cyber-blue);
    letter-spacing: -.02em;
    line-height: 1;
    font-weight: 300;
}
.section-tag .ttl {
    font-weight: 500;
    color: #ffffff;
}
.section-tag .sub {
    margin-left: auto;
    color: rgba(255, 255, 255, 0.4);
}
.section-h {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: clamp(40px, 5.4vw, 88px);
    line-height: 1;
    letter-spacing: -.035em;
    margin-bottom: 48px;
}
.section-h em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--cyber-blue);
}

/* ============ RESPONSIVE BREAKPOINTS FOR IMPORTED SECTIONS ============ */
@media (max-width: 1100px) {
    .eco {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .eco .core {
        height: 520px;
    }
    .prod-wrap, .lab-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .prod-network {
        position: relative;
        top: 0;
        height: 520px;
    }
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .trust-grid .cell:nth-child(6n) {
        border-right: 1px solid var(--border-chrome);
    }
    .trust-grid .cell:nth-child(3n) {
        border-right: none;
    }
    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .trust-stats .s:nth-child(2) {
        border-right: none;
    }
    .case {
        grid-template-columns: 1fr;
    }
    .case:nth-child(odd) .case-visual {
        order: 1;
        border-right: none;
        border-bottom: 1px solid var(--border-chrome);
    }
    .case-visual {
        min-height: 340px;
        border-left: none;
        border-bottom: 1px solid var(--border-chrome);
    }
}

/* ============ ASYMMETRICAL GRID ARCHITECTURE SECTION ============ */
#scene-architecture {
    background: var(--bg-void);
    border-bottom: 1px solid var(--border-chrome);
}
.inside-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.inside-card {
    background: rgba(12, 13, 18, 0.6);
    border: 1px solid var(--border-chrome);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.inside-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
}
.inside-card.wide {
    grid-column: span 2;
}
.inside-card.narrow {
    grid-column: span 1;
}
.inside-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    position: relative;
}
.inside-content {
    margin-top: 24px;
}
.inside-content h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}
.inside-content p {
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--cyber-silver);
    margin: 0;
}

/* Tag tracks (Modules scrolling) */
.tag-track-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, white 20%, white 80%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, white 20%, white 80%, transparent);
}
.tag-track {
    display: flex;
    gap: 12px;
    width: max-content;
    white-space: nowrap;
}
.tag-track.scroll-left {
    animation: scrollLeft 25s linear infinite;
}
.tag-track.scroll-right {
    animation: scrollRight 25s linear infinite;
}
.tag-pill {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 8px 16px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
}
@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes scrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Orchestration Node visual */
.orchestration-visual {
    width: 100%;
}
.flow-path-1 { animation: flowDash 3s linear infinite; }
.flow-path-2 { animation: flowDash 3s linear infinite reverse; }
.flow-path-3 { animation: flowDash 2s linear infinite; }
@keyframes flowDash {
    to { stroke-dashoffset: -50; }
}
.node-glow {
    animation: nodePulse 2s ease-in-out infinite alternate;
}
@keyframes nodePulse {
    0% { r: 12; fill-opacity: 0.15; }
    100% { r: 16; fill-opacity: 0.35; }
}

/* Orbit visual */
.orbit-visual {
    width: 100%;
}
.orbiting-dot {
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
.dot-1 {
    offset-path: path('M 30,75 a 70,25 0 1,0 140,0 a 70,25 0 1,0 -140,0');
    animation-name: orbitMove;
    animation-duration: 8s;
}
.dot-2 {
    offset-path: path('M 40,75 a 60,20 0 1,0 120,0 a 60,20 0 1,0 -120,0');
    animation-name: orbitMove;
    animation-duration: 6s;
    animation-direction: reverse;
}
.dot-3 {
    offset-path: path('M 20,75 a 80,30 0 1,0 160,0 a 80,30 0 1,0 -160,0');
    animation-name: orbitMove;
    animation-duration: 10s;
}
@keyframes orbitMove {
    0% { offset-distance: 0%; }
    100% { offset-distance: 100%; }
}
.core-pulse-fast {
    animation: corePulseF 1s infinite alternate;
}
@keyframes corePulseF {
    0% { r: 3; fill: #ffffff; }
    100% { r: 5.5; fill: var(--cyber-blue); }
}

/* Adaptive stack lists */
.stack-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}
.stack-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.stack-info {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.5px;
}
.stack-info span { color: rgba(255,255,255,0.45); }
.stack-info b { color: rgba(255,255,255,0.85); font-weight: 500; }
.stack-bar-track {
    height: 4px;
    background: rgba(255,255,255,0.05);
    border-radius: 2px;
    overflow: hidden;
}
.stack-bar-fill {
    height: 100%;
    border-radius: 2px;
    box-shadow: 0 0 8px currentColor;
    width: 0% !important;
    transition: width 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal-up.active .stack-bar-fill {
    width: var(--w) !important;
}
.stack-fill-blue { background: var(--cyber-blue); color: var(--cyber-blue); }
.stack-fill-purple { background: var(--cyber-purple); color: var(--cyber-purple); }
.stack-fill-magenta { background: var(--cyber-magenta); color: var(--cyber-magenta); }
.stack-fill-emerald { background: var(--cyber-emerald); color: var(--cyber-emerald); }

/* Sovereign LLM Terminal mock */
.terminal-mock {
    background: #06070a;
    border: 1px solid var(--border-chrome);
    border-radius: 12px;
    padding: 16px;
    height: 150px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.8);
}
.terminal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.terminal-dots {
    display: flex;
    gap: 6px;
}
.terminal-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.terminal-dots span:nth-child(1) { background: #ff5f56; }
.terminal-dots span:nth-child(2) { background: #ffbd2e; }
.terminal-dots span:nth-child(3) { background: #27c93f; }
.terminal-title {
    font-family: var(--font-mono);
    font-size: 9px;
    color: rgba(255,255,255,0.3);
}
.terminal-body {
    font-family: var(--font-mono);
    font-size: 11px;
    line-height: 1.6;
    color: rgba(255,255,255,0.75);
    flex: 1;
    overflow-y: hidden;
    text-align: left;
}
.terminal-body .text-magenta {
    color: var(--cyber-magenta);
}
.terminal-body .text-emerald {
    color: var(--cyber-emerald);
}

/* Mitigation Growth Stats card */
.stats-growth-visual {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.growth-stats-header {
    display: flex;
    flex-direction: column;
}
.growth-big-num {
    font-size: 42px;
    font-weight: 700;
    color: var(--cyber-emerald);
    line-height: 1.1;
    margin-top: 4px;
    letter-spacing: -0.5px;
}
.growth-big-sub {
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.growth-chart-line {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    transition: stroke-dashoffset 2s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal-up.active .growth-chart-line {
    stroke-dashoffset: 0;
}

/* Responsive grid layouts */
@media (max-width: 1100px) {
    .inside-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .inside-card.wide, .inside-card.narrow {
        grid-column: span 2;
    }
}
@media (max-width: 600px) {
    .inside-grid {
        grid-template-columns: 1fr;
    }
}