.elementor-14901 .elementor-element.elementor-element-f68dcbf{--display:flex;}/* Start custom CSS for html, class: .elementor-element-39be36d *//* ============================================
           CSS RESET &amp; BASE
           ============================================ */

        :root {
            --primary: #f97316;
            --primary-light: #fdba74;
            --primary-dark: #c2410c;
            --bg: #0a0a0f;
            --bg-card: rgba(20, 20, 30, 0.7);
            --bg-card-solid: #14141e;
            --text: #e8e8ed;
            --text-dim: #a0a0b0;
            --text-bright: #ffffff;
            --glass-border: rgba(249, 115, 22, 0.15);
            --glass-bg: rgba(15, 15, 25, 0.6);
            --success: #22c55e;
            --danger: #ef4444;
            --warning: #eab308;
            --info: #3b82f6;
            --radius: 12px;
            --radius-lg: 20px;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
            --shadow-glow: 0 0 20px rgba(249, 115, 22, 0.15);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background:
				radial-gradient(ellipse at 20% 50%, rgba(0,240,255,.04) 0%, transparent 60%),
				radial-gradient(ellipse at 80% 50%, rgba(0,255,65,.03) 0%, transparent 60%),
				linear-gradient(180deg,#0a0e17 0%,#0d1525 50%,#0a0e17 100%);
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--primary-light);
            text-decoration: underline;
        }

        a:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
            border-radius: 2px;
        }

        /* ============================================
           MATRIX BACKGROUND
           ============================================ */
        .matrix-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        .matrix-column {
            position: absolute;
            top: -100%;
            width: 2px;
            height: 100%;
            opacity: 0.06;
            background: linear-gradient(to bottom, transparent, var(--primary), transparent);
            animation: matrixFall linear infinite;
        }

        .matrix-column:nth-child(1) { left: 3%; animation-duration: 18s; animation-delay: 0s; }
        .matrix-column:nth-child(2) { left: 8%; animation-duration: 22s; animation-delay: 2s; }
        .matrix-column:nth-child(3) { left: 15%; animation-duration: 16s; animation-delay: 4s; }
        .matrix-column:nth-child(4) { left: 22%; animation-duration: 25s; animation-delay: 1s; }
        .matrix-column:nth-child(5) { left: 30%; animation-duration: 19s; animation-delay: 6s; }
        .matrix-column:nth-child(6) { left: 37%; animation-duration: 21s; animation-delay: 3s; }
        .matrix-column:nth-child(7) { left: 44%; animation-duration: 17s; animation-delay: 5s; }
        .matrix-column:nth-child(8) { left: 52%; animation-duration: 24s; animation-delay: 7s; }
        .matrix-column:nth-child(9) { left: 60%; animation-duration: 20s; animation-delay: 2s; }
        .matrix-column:nth-child(10) { left: 67%; animation-duration: 23s; animation-delay: 4s; }
        .matrix-column:nth-child(11) { left: 75%; animation-duration: 18s; animation-delay: 8s; }
        .matrix-column:nth-child(12) { left: 82%; animation-duration: 26s; animation-delay: 1s; }
        .matrix-column:nth-child(13) { left: 90%; animation-duration: 19s; animation-delay: 3s; }
        .matrix-column:nth-child(14) { left: 96%; animation-duration: 22s; animation-delay: 6s; }

        @keyframes matrixFall {
            0% { top: -100%; }
            100% { top: 200%; }
        }

        /* ============================================
           LAYOUT CONTAINERS
           ============================================ */
        .page-wrapper {
            position: relative;
            z-index: 1;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .glass-card {
            background: var(--glass-bg);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-lg);
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: var(--shadow);
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .glass-card:hover {
            border-color: rgba(249, 115, 22, 0.3);
            box-shadow: var(--shadow-glow);
        }

        /* ============================================
           HEADER / HERO
           ============================================ */
        .hero-header {
            text-align: center;
            padding: 60px 20px 40px;
        }

        .tactic-badge {
            display: inline-block;
            background: rgba(249, 115, 22, 0.12);
            color: var(--primary);
            border: 1px solid rgba(249, 115, 22, 0.3);
            padding: 6px 18px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 16px;
            animation: fadeSlideIn 0.8s ease-out;
        }

        .hero-title {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--text-bright);
            margin-bottom: 8px;
            line-height: 1.2;
            animation: fadeSlideIn 0.8s ease-out 0.1s both;
        }

        .hero-title .technique-id {
            color: var(--primary);
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: var(--text-dim);
            max-width: 700px;
            margin: 16px auto 0;
            animation: fadeSlideIn 0.8s ease-out 0.2s both;
        }

        .hero-divider {
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--primary), transparent);
            margin: 24px auto;
            animation: fadeSlideIn 0.8s ease-out 0.3s both;
        }

        .hero-meta {
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
            margin-top: 20px;
            animation: fadeSlideIn 0.8s ease-out 0.4s both;
        }

        .hero-meta-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.85rem;
            color: var(--text-dim);
        }

        .meta-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--primary);
            animation: metaPulse 2s ease-in-out infinite;
        }

        /* ============================================
           SECTION HEADINGS
           ============================================ */
        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.75rem;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .section-label::before {
            content: '';
            width: 24px;
            height: 2px;
            background: var(--primary);
        }

        .section-title1 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--text-bright);
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .section-desc {
            font-size: 1.05rem;
            color: var(--text-dim);
            line-height: 1.8;
            margin-bottom: 24px;
        }

        /* ============================================
           SECTION 1: SIMULATION
           ============================================ */
        .sim-container {
            position: relative;
            width: 100%;
            height: 600px;
            background: radial-gradient(ellipse at center, rgba(249, 115, 22, 0.04) 0%, transparent 70%);
            border: 1px solid rgba(249, 115, 22, 0.1);
            border-radius: var(--radius-lg);
            overflow: hidden;
        }

        /* Radar background */
        .radar-bg {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 400px;
            height: 400px;
            transform: translate(-50%, -50%);
            border-radius: 50%;
            border: 1px solid rgba(249, 115, 22, 0.08);
        }

        .radar-bg::before,
        .radar-bg::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            border: 1px solid rgba(249, 115, 22, 0.06);
        }

        .radar-bg::before {
            top: 20%;
            left: 20%;
            width: 60%;
            height: 60%;
        }

        .radar-bg::after {
            top: 40%;
            left: 40%;
            width: 20%;
            height: 20%;
        }

        .radar-sweep {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 200px;
            height: 200px;
            transform-origin: 0 0;
            animation: radarSweep 4s linear infinite;
        }

        .radar-sweep::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), transparent);
            transform-origin: 0 0;
        }

        .radar-sweep::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 200px;
            height: 200px;
            background: conic-gradient(from 0deg, rgba(249, 115, 22, 0.1) 0deg, transparent 30deg);
            transform-origin: 0 0;
            border-radius: 0 200px 0 0;
        }

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

        /* Database Hub Center */
        .db-hub {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90px;
            height: 90px;
            background: rgba(249, 115, 22, 0.1);
            border: 2px solid var(--primary);
            border-radius: 16px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 10;
            animation: hubPulse 3s ease-in-out infinite;
        }

        .db-hub-icon {
            font-size: 1.8rem;
            margin-bottom: 2px;
        }

        .db-hub-label {
            font-size: 0.6rem;
            color: var(--primary);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-align: center;
        }

        @keyframes hubPulse {
            0%, 100% { box-shadow: 0 0 10px rgba(249, 115, 22, 0.2); }
            50% { box-shadow: 0 0 30px rgba(249, 115, 22, 0.5), 0 0 60px rgba(249, 115, 22, 0.15); }
        }

        /* Database Nodes - 5 radiating */
        .db-node {
            position: absolute;
            width: 70px;
            height: 70px;
            background: var(--glass-bg);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(249, 115, 22, 0.25);
            border-radius: 14px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 5;
            animation: nodeFloat 4s ease-in-out infinite;
        }

        .db-node-icon {
            font-size: 1.3rem;
            margin-bottom: 2px;
        }

        .db-node-label {
            font-size: 0.55rem;
            color: var(--primary-light);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-align: center;
        }

        /* Position nodes in a circle around hub */
        .db-node:nth-child(1) {
            top: 8%;
            left: 50%;
            transform: translateX(-50%);
            animation-delay: 0s;
        }

        .db-node:nth-child(2) {
            top: 25%;
            right: 10%;
            animation-delay: 0.8s;
        }

        .db-node:nth-child(3) {
            bottom: 25%;
            right: 10%;
            animation-delay: 1.6s;
        }

        .db-node:nth-child(4) {
            bottom: 8%;
            left: 50%;
            transform: translateX(-50%);
            animation-delay: 2.4s;
        }

        .db-node:nth-child(5) {
            top: 25%;
            left: 10%;
            animation-delay: 3.2s;
        }

        @keyframes nodeFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }

        .db-node:nth-child(1) { animation-name: nodeFloat1; }
        .db-node:nth-child(2) { animation-name: nodeFloat2; }
        .db-node:nth-child(3) { animation-name: nodeFloat3; }
        .db-node:nth-child(4) { animation-name: nodeFloat4; }
        .db-node:nth-child(5) { animation-name: nodeFloat5; }

        @keyframes nodeFloat1 {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(-10px); }
        }
        @keyframes nodeFloat2 {
            0%, 100% { transform: translateY(0) translateX(0); }
            50% { transform: translateY(-10px) translateX(5px); }
        }
        @keyframes nodeFloat3 {
            0%, 100% { transform: translateY(0) translateX(0); }
            50% { transform: translateY(-10px) translateX(-5px); }
        }
        @keyframes nodeFloat4 {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(10px); }
        }
        @keyframes nodeFloat5 {
            0%, 100% { transform: translateY(0) translateX(0); }
            50% { transform: translateY(-10px) translateX(5px); }
        }

        /* Connection lines from hub to nodes */
        .connection-line {
            position: absolute;
            top: 50%;
            left: 50%;
            height: 1px;
            background: linear-gradient(90deg, rgba(249, 115, 22, 0.4), rgba(249, 115, 22, 0.05));
            transform-origin: 0 0;
            z-index: 1;
        }

        .connection-line:nth-child(6) { width: 180px; transform: rotate(-90deg); animation: linePulse1 3s ease-in-out infinite; }
        .connection-line:nth-child(7) { width: 200px; transform: rotate(-35deg); animation: linePulse2 3s ease-in-out infinite 0.5s; }
        .connection-line:nth-child(8) { width: 200px; transform: rotate(35deg); animation: linePulse3 3s ease-in-out infinite 1s; }
        .connection-line:nth-child(9) { width: 180px; transform: rotate(90deg); animation: linePulse4 3s ease-in-out infinite 1.5s; }
        .connection-line:nth-child(10) { width: 200px; transform: rotate(-145deg); animation: linePulse5 3s ease-in-out infinite 2s; }

        @keyframes linePulse1 {
            0%, 100% { opacity: 0.3; } 50% { opacity: 1; }
        }
        @keyframes linePulse2 {
            0%, 100% { opacity: 0.3; } 50% { opacity: 1; }
        }
        @keyframes linePulse3 {
            0%, 100% { opacity: 0.3; } 50% { opacity: 1; }
        }
        @keyframes linePulse4 {
            0%, 100% { opacity: 0.3; } 50% { opacity: 1; }
        }
        @keyframes linePulse5 {
            0%, 100% { opacity: 0.3; } 50% { opacity: 1; }
        }

        /* Attacker icon */
        .attacker-icon {
            position: absolute;
            bottom: 30px;
            left: 30px;
            width: 60px;
            height: 60px;
            background: rgba(239, 68, 68, 0.15);
            border: 2px solid var(--danger);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 15;
            animation: attackerGlow 2s ease-in-out infinite;
        }

        .attacker-icon span {
            font-size: 1.5rem;
        }

        @keyframes attackerGlow {
            0%, 100% { box-shadow: 0 0 10px rgba(239, 68, 68, 0.3); }
            50% { box-shadow: 0 0 25px rgba(239, 68, 68, 0.6), 0 0 50px rgba(239, 68, 68, 0.2); }
        }

        /* Query data dots flowing from attacker to hub */
        .query-dot {
            position: absolute;
            width: 6px;
            height: 6px;
            background: var(--primary);
            border-radius: 50%;
            z-index: 12;
            box-shadow: 0 0 8px var(--primary);
        }

        .query-dot:nth-child(11) {
            bottom: 60px;
            left: 60px;
            animation: queryFlow1 3s linear infinite;
        }
        .query-dot:nth-child(12) {
            bottom: 65px;
            left: 55px;
            animation: queryFlow1 3s linear infinite 0.6s;
        }
        .query-dot:nth-child(13) {
            bottom: 55px;
            left: 65px;
            animation: queryFlow1 3s linear infinite 1.2s;
        }
        .query-dot:nth-child(14) {
            bottom: 62px;
            left: 58px;
            animation: queryFlow1 3s linear infinite 1.8s;
        }
        .query-dot:nth-child(15) {
            bottom: 58px;
            left: 62px;
            animation: queryFlow1 3s linear infinite 2.4s;
        }

        @keyframes queryFlow1 {
            0% { transform: translate(0, 0); opacity: 1; }
            30% { transform: translate(150px, -150px); opacity: 0.8; }
            100% { transform: translate(440px, -220px); opacity: 0; }
        }

        /* Intelligence dots flowing from hub to attacker (return path) */
        .intel-dot {
            position: absolute;
            width: 5px;
            height: 5px;
            background: var(--primary-light);
            border-radius: 50%;
            z-index: 12;
            box-shadow: 0 0 6px var(--primary-light);
        }

        .intel-dot:nth-child(16) {
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: intelFlow 4s linear infinite;
        }
        .intel-dot:nth-child(17) {
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: intelFlow 4s linear infinite 0.8s;
        }
        .intel-dot:nth-child(18) {
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: intelFlow 4s linear infinite 1.6s;
        }
        .intel-dot:nth-child(19) {
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: intelFlow 4s linear infinite 2.4s;
        }

        @keyframes intelFlow {
            0% { transform: translate(-200px, 200px); opacity: 0; }
            20% { opacity: 1; }
            100% { transform: translate(-240px, 240px); opacity: 0; }
        }

        /* Floating data cards */
        .data-card {
            position: absolute;
            background: rgba(249, 115, 22, 0.08);
            border: 1px solid rgba(249, 115, 22, 0.2);
            border-radius: 8px;
            padding: 8px 12px;
            font-size: 0.65rem;
            color: var(--primary-light);
            z-index: 8;
            animation: dataCardFloat 6s ease-in-out infinite;
            backdrop-filter: blur(4px);
        }

        .data-card:nth-child(20) {
            top: 15%;
            left: 15%;
            animation-delay: 0s;
        }
        .data-card:nth-child(21) {
            top: 20%;
            right: 20%;
            animation-delay: 1.2s;
        }
        .data-card:nth-child(22) {
            bottom: 20%;
            right: 18%;
            animation-delay: 2.4s;
        }
        .data-card:nth-child(23) {
            bottom: 15%;
            left: 15%;
            animation-delay: 3.6s;
        }
        .data-card:nth-child(24) {
            top: 40%;
            right: 5%;
            animation-delay: 4.8s;
        }

        .data-card-label {
            font-weight: 700;
            font-size: 0.6rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 2px;
        }

        .data-card-value {
            font-family: 'Courier New', monospace;
            font-size: 0.6rem;
            color: var(--text-dim);
        }

        @keyframes dataCardFloat {
            0%, 100% { opacity: 0.4; transform: translateY(0); }
            25% { opacity: 0.9; transform: translateY(-5px); }
            50% { opacity: 1; transform: translateY(-10px); }
            75% { opacity: 0.7; transform: translateY(-5px); }
        }

        /* Search bars with typing animation */
        .search-bar-sim {
            position: absolute;
            top: 50px;
            right: 40px;
            width: 200px;
            background: rgba(10, 10, 15, 0.8);
            border: 1px solid rgba(249, 115, 22, 0.3);
            border-radius: 8px;
            padding: 8px 12px;
            z-index: 14;
            overflow: hidden;
        }

        .search-bar-icon {
            display: inline;
            font-size: 0.75rem;
            color: var(--primary);
            margin-right: 6px;
        }

        .search-bar-text {
            display: inline;
            font-family: 'Courier New', monospace;
            font-size: 0.7rem;
            color: var(--text);
            animation: typeText 5s steps(30) infinite;
            overflow: hidden;
            white-space: nowrap;
            max-width: 160px;
        }

        @keyframes typeText {
            0% { width: 0; }
            10% { width: 80px; }
            20% { width: 120px; }
            30% { width: 120px; }
            35% { width: 0; }
            45% { width: 60px; }
            55% { width: 100px; }
            65% { width: 100px; }
            70% { width: 0; }
            80% { width: 90px; }
            90% { width: 140px; }
            100% { width: 140px; }
        }

        .search-cursor {
            display: inline-block;
            width: 1px;
            height: 12px;
            background: var(--primary);
            animation: cursorBlink 0.7s step-end infinite;
            vertical-align: middle;
            margin-left: 2px;
        }

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

        /* Data aggregation panel */
        .aggregation-panel {
            position: absolute;
            bottom: 20px;
            right: 20px;
            width: 220px;
            background: rgba(10, 10, 15, 0.85);
            border: 1px solid rgba(249, 115, 22, 0.25);
            border-radius: 10px;
            padding: 12px;
            z-index: 14;
            backdrop-filter: blur(8px);
        }

        .agg-title {
            font-size: 0.65rem;
            font-weight: 700;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
            padding-bottom: 4px;
            border-bottom: 1px solid rgba(249, 115, 22, 0.15);
        }

        .agg-item {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 6px;
            font-size: 0.6rem;
            color: var(--text-dim);
            animation: aggItemAppear 8s ease-in-out infinite;
        }

        .agg-item:nth-child(2) { animation-delay: 0s; }
        .agg-item:nth-child(3) { animation-delay: 1.6s; }
        .agg-item:nth-child(4) { animation-delay: 3.2s; }
        .agg-item:nth-child(5) { animation-delay: 4.8s; }
        .agg-item:nth-child(6) { animation-delay: 6.4s; }

        .agg-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .agg-dot.dns { background: #3b82f6; }
        .agg-dot.whois { background: #22c55e; }
        .agg-dot.cert { background: #eab308; }
        .agg-dot.cdn { background: #a855f7; }
        .agg-dot.scan { background: #ef4444; }

        .agg-tag {
            display: inline-block;
            padding: 1px 6px;
            border-radius: 4px;
            font-size: 0.5rem;
            font-weight: 600;
            text-transform: uppercase;
            margin-left: auto;
        }

        .agg-tag.high { background: rgba(239, 68, 68, 0.2); color: #ef4444; }
        .agg-tag.med { background: rgba(234, 179, 8, 0.2); color: #eab308; }
        .agg-tag.low { background: rgba(34, 197, 94, 0.2); color: #22c55e; }

        @keyframes aggItemAppear {
            0%, 100% { opacity: 0.3; }
            20%, 80% { opacity: 1; }
        }

        /* Pulsing target reticles */
        .reticle {
            position: absolute;
            width: 30px;
            height: 30px;
            border: 1px solid var(--primary);
            border-radius: 50%;
            z-index: 3;
            animation: reticlePulse 3s ease-in-out infinite;
        }

        .reticle::before,
        .reticle::after {
            content: '';
            position: absolute;
            background: var(--primary);
        }

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

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

        .reticle:nth-child(25) {
            top: 42%;
            left: 35%;
            animation-delay: 0s;
        }

        .reticle:nth-child(26) {
            top: 35%;
            left: 62%;
            animation-delay: 1s;
        }

        .reticle:nth-child(27) {
            top: 60%;
            left: 55%;
            animation-delay: 2s;
        }

        @keyframes reticlePulse {
            0% { transform: scale(0.8); opacity: 0.2; }
            50% { transform: scale(1.2); opacity: 0.8; }
            100% { transform: scale(0.8); opacity: 0.2; }
        }

        /* Classification tags */
        .class-tag {
            position: absolute;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 0.55rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 9;
            animation: tagAppear 6s ease-in-out infinite;
        }

        .class-tag.recon { background: rgba(59, 130, 246, 0.15); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.3); }
        .class-tag.infra { background: rgba(168, 85, 247, 0.15); color: #c084fc; border: 1px solid rgba(168, 85, 247, 0.3); }
        .class-tag.exposed { background: rgba(239, 68, 68, 0.15); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.3); }
        .class-tag.osint { background: rgba(249, 115, 22, 0.15); color: var(--primary-light); border: 1px solid rgba(249, 115, 22, 0.3); }

        .class-tag:nth-child(28) { top: 12%; left: 35%; animation-delay: 0s; }
        .class-tag:nth-child(29) { top: 70%; right: 22%; animation-delay: 1.5s; }
        .class-tag:nth-child(30) { top: 45%; left: 8%; animation-delay: 3s; }
        .class-tag:nth-child(31) { bottom: 35%; left: 30%; animation-delay: 4.5s; }

        @keyframes tagAppear {
            0%, 100% { opacity: 0.2; transform: translateY(2px); }
            40%, 60% { opacity: 1; transform: translateY(0); }
        }

        /* Network node connections */
        .net-node {
            position: absolute;
            width: 10px;
            height: 10px;
            background: var(--primary);
            border-radius: 50%;
            z-index: 4;
            animation: netNodeGlow 4s ease-in-out infinite;
        }

        .net-node:nth-child(32) { top: 30%; left: 20%; animation-delay: 0s; }
        .net-node:nth-child(33) { top: 70%; left: 75%; animation-delay: 1s; }
        .net-node:nth-child(34) { top: 55%; left: 85%; animation-delay: 2s; }
        .net-node:nth-child(35) { top: 80%; left: 40%; animation-delay: 3s; }

        @keyframes netNodeGlow {
            0%, 100% { box-shadow: 0 0 4px var(--primary); opacity: 0.4; }
            50% { box-shadow: 0 0 15px var(--primary); opacity: 1; }
        }

        /* Scan line overlay */
        .scan-line-h {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.15), transparent);
            animation: scanLineH 6s linear infinite;
            z-index: 2;
        }

        .scan-line-v {
            position: absolute;
            top: 0;
            left: 0;
            width: 1px;
            height: 100%;
            background: linear-gradient(180deg, transparent, rgba(249, 115, 22, 0.1), transparent);
            animation: scanLineV 8s linear infinite;
            z-index: 2;
        }

        @keyframes scanLineH {
            0% { top: 0; }
            100% { top: 100%; }
        }

        @keyframes scanLineV {
            0% { left: 0; }
            100% { left: 100%; }
        }

        /* Sim label */
        .sim-label {
            position: absolute;
            top: 12px;
            left: 16px;
            font-size: 0.6rem;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 700;
            opacity: 0.7;
            z-index: 16;
        }

        .sim-status {
            position: absolute;
            top: 12px;
            right: 16px;
            font-size: 0.6rem;
            color: var(--success);
            display: flex;
            align-items: center;
            gap: 4px;
            z-index: 16;
        }

        .sim-status-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--success);
            animation: statusBlink 2s ease-in-out infinite;
        }

        @keyframes statusBlink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

        /* ============================================
           COMMON SECTION STYLES
           ============================================ */
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 16px;
            margin: 24px 0;
        }

        .stat-card {
            background: rgba(249, 115, 22, 0.06);
            border: 1px solid rgba(249, 115, 22, 0.15);
            border-radius: var(--radius);
            padding: 20px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            background: rgba(249, 115, 22, 0.1);
            border-color: rgba(249, 115, 22, 0.3);
            transform: translateY(-2px);
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 4px;
        }

        .stat-label {
            font-size: 0.8rem;
            color: var(--text-dim);
        }

        .link-list {
            list-style: none;
            padding: 0;
        }

        .link-list li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(249, 115, 22, 0.08);
        }

        .link-list li:last-child {
            border-bottom: none;
        }

        .link-list li a {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
        }

        .link-arrow {
            color: var(--primary);
            font-size: 0.8rem;
        }

        /* Terms table */
        .terms-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }

        .terms-table th {
            text-align: left;
            padding: 12px 16px;
            background: rgba(249, 115, 22, 0.08);
            border-bottom: 2px solid rgba(249, 115, 22, 0.2);
            color: var(--primary);
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
        }

        .terms-table td {
            padding: 14px 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            font-size: 0.9rem;
            vertical-align: top;
        }

        .terms-table tr:hover td {
            background: rgba(249, 115, 22, 0.03);
        }

        .term-name {
            color: var(--primary-light);
            font-weight: 700;
        }

        .analogy {
            color: var(--text-dim);
            font-style: italic;
            font-size: 0.85rem;
        }

        /* Scenario card */
        .scenario-narrative {
            position: relative;
            padding: 30px;
            background: rgba(249, 115, 22, 0.04);
            border-left: 4px solid var(--primary);
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 20px 0;
            line-height: 1.9;
        }

        .scenario-narrative .character {
            color: var(--primary-light);
            font-weight: 700;
        }

        .scenario-narrative .org {
            color: var(--warning);
            font-weight: 600;
        }

        .before-after {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin: 24px 0;
        }

        .before-card, .after-card {
            padding: 20px;
            border-radius: var(--radius);
            border: 1px solid;
        }

        .before-card {
            background: rgba(239, 68, 68, 0.06);
            border-color: rgba(239, 68, 68, 0.2);
        }

        .after-card {
            background: rgba(34, 197, 94, 0.06);
            border-color: rgba(34, 197, 94, 0.2);
        }

        .before-card h4, .after-card h4 {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .before-card h4 { color: var(--danger); }
        .after-card h4 { color: var(--success); }

        /* Steps */
        .step-list {
            counter-reset: step-counter;
            list-style: none;
            padding: 0;
        }

        .step-item {
            counter-increment: step-counter;
            position: relative;
            padding: 24px 24px 24px 70px;
            margin-bottom: 16px;
            background: rgba(249, 115, 22, 0.04);
            border: 1px solid rgba(249, 115, 22, 0.1);
            border-radius: var(--radius);
            transition: all 0.3s ease;
        }

        .step-item:hover {
            background: rgba(249, 115, 22, 0.08);
            border-color: rgba(249, 115, 22, 0.25);
        }

        .step-item::before {
            content: counter(step-counter);
            position: absolute;
            top: 24px;
            left: 20px;
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.95rem;
            font-weight: 800;
            color: white;
        }

        .step-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-bright);
            margin-bottom: 8px;
        }

        .step-bullets {
            list-style: none;
            padding: 0;
            margin-bottom: 10px;
        }

        .step-bullets li {
            position: relative;
            padding-left: 20px;
            margin-bottom: 4px;
            font-size: 0.9rem;
            color: var(--text-dim);
        }

        .step-bullets li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: var(--primary);
        }

        .step-links {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-top: 8px;
        }

        .step-links a {
            display: inline-block;
            padding: 3px 10px;
            background: rgba(249, 115, 22, 0.08);
            border: 1px solid rgba(249, 115, 22, 0.15);
            border-radius: 6px;
            font-size: 0.75rem;
            color: var(--primary-light);
            transition: all 0.3s ease;
        }

        .step-links a:hover {
            background: rgba(249, 115, 22, 0.2);
            text-decoration: none;
        }

        .protection-tag {
            display: inline-block;
            padding: 2px 10px;
            border-radius: 50px;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .protection-tag.prevent {
            background: rgba(34, 197, 94, 0.15);
            color: #22c55e;
            border: 1px solid rgba(34, 197, 94, 0.3);
        }

        .protection-tag.detect {
            background: rgba(59, 130, 246, 0.15);
            color: #60a5fa;
            border: 1px solid rgba(59, 130, 246, 0.3);
        }

        .protection-tag.respond {
            background: rgba(249, 115, 22, 0.15);
            color: var(--primary-light);
            border: 1px solid rgba(249, 115, 22, 0.3);
        }

        /* Mistakes &amp; Best Practices */
        .mistakes-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .mistake-list, .practice-list {
            list-style: none;
            padding: 0;
        }

        .mistake-list li, .practice-list li {
            padding: 14px 16px;
            margin-bottom: 10px;
            border-radius: var(--radius);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .mistake-list li {
            background: rgba(239, 68, 68, 0.06);
            border-left: 3px solid var(--danger);
        }

        .practice-list li {
            background: rgba(34, 197, 94, 0.06);
            border-left: 3px solid var(--success);
        }

        .list-header {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .list-header.mistake { color: var(--danger); }
        .list-header.practice { color: var(--success); }

        /* Red vs Blue */
        .team-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .team-panel {
            padding: 24px;
            border-radius: var(--radius-lg);
            border: 1px solid;
        }

        .team-panel.red {
            background: rgba(239, 68, 68, 0.06);
            border-color: rgba(239, 68, 68, 0.2);
        }

        .team-panel.blue {
            background: rgba(59, 130, 246, 0.06);
            border-color: rgba(59, 130, 246, 0.2);
        }

        .team-header {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .team-panel.red .team-header { color: var(--danger); }
        .team-panel.blue .team-header { color: var(--info); }

        .team-tactic {
            padding: 12px;
            margin-bottom: 10px;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.04);
        }

        .team-tactic-title {
            font-size: 0.85rem;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .team-panel.red .team-tactic-title { color: #f87171; }
        .team-panel.blue .team-tactic-title { color: #60a5fa; }

        .team-tactic-desc {
            font-size: 0.85rem;
            color: var(--text-dim);
            line-height: 1.6;
        }

        /* Threat Hunter */
        .hunter-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 16px;
            margin: 20px 0;
        }

        .hunter-card {
            padding: 20px;
            background: rgba(249, 115, 22, 0.04);
            border: 1px solid rgba(249, 115, 22, 0.12);
            border-radius: var(--radius);
            transition: all 0.3s ease;
        }

        .hunter-card:hover {
            background: rgba(249, 115, 22, 0.08);
            border-color: rgba(249, 115, 22, 0.25);
        }

        .hunter-card-title {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--primary-light);
            margin-bottom: 6px;
        }

        .hunter-card-desc {
            font-size: 0.85rem;
            color: var(--text-dim);
            line-height: 1.7;
        }

        .hunter-query {
            font-family: 'Courier New', monospace;
            font-size: 0.78rem;
            background: rgba(0, 0, 0, 0.3);
            padding: 8px 12px;
            border-radius: 6px;
            margin-top: 8px;
            color: var(--primary);
            border-left: 2px solid var(--primary);
        }

        /* CTA */
        .cta-section {
            text-align: center;
            padding: 50px 20px;
            background: linear-gradient(135deg, rgba(249, 115, 22, 0.08), rgba(249, 115, 22, 0.02));
            border: 1px solid rgba(249, 115, 22, 0.15);
            border-radius: var(--radius-lg);
            margin-top: 20px;
        }

        .cta-title {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--text-bright);
            margin-bottom: 12px;
        }

        .cta-text {
            font-size: 1rem;
            color: var(--text-dim);
            max-width: 600px;
            margin: 0 auto 24px;
            line-height: 1.8;
        }

        .cta-button {
            display: inline-block;
            padding: 12px 32px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(249, 115, 22, 0.5);
            text-decoration: none;
            color: white;
        }

        /* Additional utility animations */
        @keyframes fadeSlideIn {
            from { opacity: 0; transform: translateY(15px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes metaPulse {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        @keyframes subtleGlow {
            0%, 100% { box-shadow: 0 0 5px rgba(249, 115, 22, 0.1); }
            50% { box-shadow: 0 0 15px rgba(249, 115, 22, 0.25); }
        }

        /* TOC */
        .toc-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 12px;
            margin: 20px 0;
        }

        .toc-item {
            display: block;
            padding: 14px 18px;
            background: rgba(249, 115, 22, 0.04);
            border: 1px solid rgba(249, 115, 22, 0.1);
            border-radius: var(--radius);
            transition: all 0.3s ease;
        }

        .toc-item:hover {
            background: rgba(249, 115, 22, 0.1);
            border-color: rgba(249, 115, 22, 0.3);
            transform: translateX(4px);
            text-decoration: none;
            color: var(--primary-light);
        }

        .toc-item-num {
            display: inline-block;
            width: 24px;
            height: 24px;
            background: rgba(249, 115, 22, 0.15);
            border-radius: 6px;
            text-align: center;
            line-height: 24px;
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--primary);
            margin-right: 8px;
        }

        .toc-item-text {
            font-size: 0.9rem;
            font-weight: 500;
        }

        /* Alert box */
        .alert-box {
            padding: 16px 20px;
            border-radius: var(--radius);
            margin: 16px 0;
            font-size: 0.9rem;
            line-height: 1.7;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .alert-box.warning {
            background: rgba(234, 179, 8, 0.08);
            border: 1px solid rgba(234, 179, 8, 0.25);
            color: #fbbf24;
        }

        .alert-box.info {
            background: rgba(59, 130, 246, 0.08);
            border: 1px solid rgba(59, 130, 246, 0.25);
            color: #60a5fa;
        }

        .alert-box.danger {
            background: rgba(239, 68, 68, 0.08);
            border: 1px solid rgba(239, 68, 68, 0.25);
            color: #f87171;
        }

        .alert-icon {
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        /* ============================================
           RESPONSIVE DESIGN
           ============================================ */
        @media (max-width: 768px) {
            .page-wrapper {
                padding: 12px;
            }

            .glass-card {
                padding: 24px;
                margin-bottom: 24px;
            }

            .hero-title {
                font-size: 2rem;
            }

            .section-title1 {
                font-size: 1.5rem;
            }

            .sim-container {
                height: 500px;
            }

            .db-hub {
                width: 70px;
                height: 70px;
            }

            .db-hub-icon {
                font-size: 1.4rem;
            }

            .db-node {
                width: 55px;
                height: 55px;
            }

            .db-node-icon {
                font-size: 1rem;
            }

            .db-node-label {
                font-size: 0.5rem;
            }

            .before-after,
            .mistakes-grid,
            .team-grid {
                grid-template-columns: 1fr;
            }

            .search-bar-sim {
                width: 160px;
            }

            .aggregation-panel {
                width: 180px;
            }

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

            .hero-meta {
                gap: 12px;
            }

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

        @media (max-width: 480px) {
            .hero-title {
                font-size: 1.6rem;
            }

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

            .glass-card {
                padding: 16px;
            }

            .sim-container {
                height: 420px;
            }

            .db-hub {
                width: 55px;
                height: 55px;
            }

            .db-node {
                width: 45px;
                height: 45px;
            }

            .db-node-icon {
                font-size: 0.85rem;
            }

            .db-node-label {
                font-size: 0.45rem;
            }

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

            .terms-table th,
            .terms-table td {
                padding: 10px;
                font-size: 0.8rem;
            }

            .step-item {
                padding: 16px 16px 16px 56px;
            }

            .step-item::before {
                width: 30px;
                height: 30px;
                font-size: 0.8rem;
                top: 16px;
                left: 14px;
            }

            .search-bar-sim {
                width: 130px;
                right: 20px;
            }

            .aggregation-panel {
                width: 150px;
                bottom: 10px;
                right: 10px;
            }

            .data-card {
                display: none;
            }

            .class-tag {
                display: none;
            }
        }/* End custom CSS */