
        :root {
            --tactical-gray: #BDC3C7;
            --alert-orange: #FF7700;
            --critical-red: #E74C3C;
            --panel-bg: rgba(30, 30, 35, 0.95);
            --grid-line: rgba(255, 119, 0, 0.15);
        }
        
        body {
            background: #0a0a0f;
            color: var(--tactical-gray);
            font-family: 'Rajdhani', 'Arial Narrow', sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            background-image: 
                radial-gradient(var(--grid-line) 1px, transparent 1px),
                radial-gradient(var(--grid-line) 1px, transparent 1px);
            background-size: 40px 40px;
            background-position: 0 0, 20px 20px;
        }
        
        .command-panel {
            background: var(--panel-bg);
            border: 1px solid rgba(255, 119, 0, 0.3);
            border-radius: 4px;
            padding: 25px;
            margin: 30px auto;
            max-width: 1200px;
            position: relative;
            box-shadow: 0 0 20px rgba(255, 119, 0, 0.1);
        }
        
        .command-panel::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, transparent, var(--alert-orange), transparent);
        }
        
        h1 {
            color: var(--alert-orange);
            font-size: 2.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-align: center;
            margin-top: 0;
            text-shadow: 0 0 10px rgba(255, 119, 0, 0.4);
            position: relative;
            padding-bottom: 20px;
        }
        
        h1::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 30%;
            right: 30%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--alert-orange), transparent);
        }
        
        h2 {
            color: var(--alert-orange);
            font-size: 1.8rem;
            border-left: 4px solid var(--alert-orange);
            padding-left: 15px;
            margin-top: 40px;
            position: relative;
        }
        
        h2::before {
            content: '▶';
            position: absolute;
            left: -20px;
            color: var(--alert-orange);
        }
        
        h3 {
            color: var(--tactical-gray);
            font-size: 1.4rem;
            margin-top: 30px;
            padding-bottom: 8px;
            border-bottom: 1px dashed rgba(255, 119, 0, 0.3);
        }
        
        .target-highlight {
            animation: targetPulse 2s infinite;
            position: relative;
            padding: 0 5px;
        }
        
        @keyframes targetPulse {
            0% { text-shadow: 0 0 5px var(--alert-orange); }
            50% { text-shadow: 0 0 15px var(--alert-orange); }
            100% { text-shadow: 0 0 5px var(--alert-orange); }
        }
        
        .intro {
            background: rgba(25, 25, 30, 0.7);
            border-left: 4px solid var(--alert-orange);
            padding: 20px;
            font-size: 1.1rem;
            margin: 30px 0;
            position: relative;
        }
        
        .intro::before {
            content: 'COMMAND BRIEF';
            position: absolute;
            top: -12px;
            left: 20px;
            background: var(--panel-bg);
            color: var(--alert-orange);
            padding: 0 10px;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }
        
        .spec-table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            border: 1px solid rgba(255, 119, 0, 0.2);
        }
        
        .spec-table th {
            background: rgba(255, 119, 0, 0.1);
            color: var(--alert-orange);
            text-align: left;
            padding: 12px 15px;
            border-bottom: 1px solid rgba(255, 119, 0, 0.3);
        }
        
        .spec-table td {
            padding: 12px 15px;
            border-bottom: 1px solid rgba(255, 119, 0, 0.1);
        }
        
        .spec-table tr:last-child td {
            border-bottom: none;
        }
        
        .key-metric {
            color: var(--alert-orange);
            font-weight: bold;
        }
        
        .client-proof {
            background: rgba(25, 25, 30, 0.7);
            border: 1px solid var(--alert-orange);
            padding: 20px;
            margin: 30px 0;
            position: relative;
        }
        
        .client-proof::before {
            content: 'FIELD REPORT';
            position: absolute;
            top: -12px;
            left: 20px;
            background: var(--panel-bg);
            color: var(--alert-orange);
            padding: 0 10px;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }
        
        .cta-button {
            display: inline-block;
            background: var(--alert-orange);
            color: black;
            text-transform: uppercase;
            font-weight: bold;
            padding: 12px 25px;
            border: none;
            border-radius: 3px;
            cursor: pointer;
            transition: all 0.3s;
            letter-spacing: 1px;
            margin-top: 15px;
            text-decoration: none;
        }
        
        .cta-button:hover {
            background: #ff8c00;
            box-shadow: 0 0 15px rgba(255, 119, 0, 0.5);
        }
        
        .pipeline {
            position: relative;
            height: 4px;
            background: rgba(255, 119, 0, 0.2);
            margin: 40px 0;
            border-radius: 2px;
        }
        
        .pipeline::before {
            content: '';
            position: absolute;
            top: -5px;
            width: 14px;
            height: 14px;
            background: var(--alert-orange);
            border-radius: 50%;
            animation: particleMove 3s infinite linear;
            box-shadow: 0 0 10px var(--alert-orange);
        }
        
        @keyframes particleMove {
            0% { left: 0%; }
            100% { left: 100%; }
        }
        
        .faq-item {
            margin-bottom: 25px;
            padding-left: 20px;
            border-left: 2px solid rgba(255, 119, 0, 0.3);
        }
        
        .faq-item strong {
            color: var(--alert-orange);
        }
        
        .packaging-options {
            display: flex;
            gap: 20px;
            margin-top: 20px;
        }
        
        .packaging-option {
            flex: 1;
            background: rgba(30, 30, 35, 0.7);
            border: 1px solid rgba(255, 119, 0, 0.3);
            padding: 20px;
            border-radius: 4px;
        }
        
        .packaging-option h4 {
            color: var(--alert-orange);
            margin-top: 0;
            border-bottom: 1px dashed rgba(255, 119, 0, 0.3);
            padding-bottom: 10px;
        }
    