
        :root {
            --tactical-gray: #BDC3C7;
            --alert-orange: #FF7700;
            --crisis-red: #E74C3C;
            --panel-bg: linear-gradient(135deg, #2c3e50 0%, #1a1a1a 100%);
            --text-light: #ECF0F1;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #0a0f16;
            color: var(--text-light);
            line-height: 1.6;
            margin: 0;
            padding: 20px;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(255, 119, 0, 0.1) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(255, 119, 0, 0.1) 0%, transparent 20%);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            border: 1px solid rgba(255, 119, 0, 0.3);
            background: var(--panel-bg);
            box-shadow: 0 0 30px rgba(255, 119, 0, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .radar-grid {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(189, 195, 199, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(189, 195, 199, 0.1) 1px, transparent 1px);
            background-size: 40px 40px;
            pointer-events: none;
            z-index: 0;
        }
        
        header {
            text-align: center;
            padding: 40px 20px;
            border-bottom: 1px solid var(--alert-orange);
            position: relative;
        }
        
        h1 {
            font-size: 2.8rem;
            color: var(--alert-orange);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
            text-shadow: 0 0 10px rgba(255, 119, 0, 0.7);
        }
        
        .intro {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            position: relative;
            z-index: 2;
        }
        
        .cta-button {
            display: inline-block;
            background: var(--alert-orange);
            color: #000;
            padding: 12px 30px;
            text-decoration: none;
            font-weight: bold;
            border-radius: 4px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }
        
        .cta-button:hover {
            background: #ff9a44;
            box-shadow: 0 0 15px var(--alert-orange);
            transform: translateY(-2px);
        }
        
        section {
            padding: 40px;
            border-bottom: 1px solid rgba(255, 119, 0, 0.2);
            position: relative;
        }
        
        h2 {
            color: var(--alert-orange);
            font-size: 1.8rem;
            border-left: 4px solid var(--alert-orange);
            padding-left: 15px;
            margin-top: 0;
            position: relative;
        }
        
        h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100px;
            height: 2px;
            background: var(--alert-orange);
        }
        
        h3 {
            color: var(--alert-orange);
            font-size: 1.4rem;
            margin-top: 30px;
        }
        
        .spec-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            position: relative;
            z-index: 2;
        }
        
        .spec-table th {
            background: rgba(255, 119, 0, 0.1);
            color: var(--alert-orange);
            padding: 15px;
            text-align: left;
            border: 1px solid rgba(255, 119, 0, 0.3);
        }
        
        .spec-table td {
            padding: 15px;
            border: 1px solid rgba(255, 119, 0, 0.3);
            color: var(--tactical-gray);
        }
        
        .spec-table tr:nth-child(even) {
            background: rgba(30, 30, 40, 0.5);
        }
        
        .highlight {
            color: var(--alert-orange);
            font-weight: bold;
        }
        
        .client-proof {
            background: rgba(30, 40, 50, 0.7);
            border-left: 4px solid var(--alert-orange);
            padding: 20px;
            margin: 25px 0;
            position: relative;
        }
        
        .client-proof::before {
            content: '✓';
            position: absolute;
            left: -25px;
            top: 15px;
            width: 40px;
            height: 40px;
            background: var(--alert-orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000;
            font-weight: bold;
        }
        
        .faq-item {
            margin-bottom: 25px;
        }
        
        .faq-question {
            color: var(--alert-orange);
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .target-animation {
            position: absolute;
            top: 50%;
            right: 5%;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            border: 2px solid var(--alert-orange);
            animation: pulse 2s infinite;
        }
        
        .target-animation::before, .target-animation::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border-radius: 50%;
            border: 2px solid var(--alert-orange);
        }
        
        .target-animation::before {
            width: 70px;
            height: 70px;
        }
        
        .target-animation::after {
            width: 40px;
            height: 40px;
            background: var(--alert-orange);
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(255, 119, 0, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(255, 119, 0, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 119, 0, 0); }
        }
        
        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--alert-orange);
            border-radius: 50%;
            animation: particleMove 5s linear infinite;
            opacity: 0.7;
        }
        
        @keyframes particleMove {
            0% { transform: translateY(0) translateX(0); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(-100vh) translateX(100px); opacity: 0; }
        }
    