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

        body {
            font-family: 'Courier New', monospace;
            background: #0a0a0a;
            color: #00ff00;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .terminal-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                repeating-linear-gradient(0deg, rgba(0,255,0,0.03) 0px, transparent 1px, transparent 2px, rgba(0,255,0,0.03) 3px),
                radial-gradient(ellipse at center, rgba(0,20,0,0.9) 0%, rgba(0,0,0,1) 100%);
            pointer-events: none;
            z-index: 0;
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 20px;
            position: relative;
            z-index: 1;
        }

        .terminal-header {
            background: #1a1a1a;
            border: 2px solid #00ff00;
            border-radius: 8px 8px 0 0;
            padding: 10px 15px;
            margin-top: 40px;
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .terminal-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ff5f56;
        }
        .terminal-dot:nth-child(2) { background: #ffbd2e; }
        .terminal-dot:nth-child(3) { background: #27c93f; }

        .terminal-window {
            background: rgba(0, 0, 0, 0.85);
            border: 2px solid #00ff00;
            border-top: none;
            border-radius: 0 0 8px 8px;
            padding: 30px;
            box-shadow: 0 0 50px rgba(0, 255, 0, 0.3);
        }

        .glitch {
            font-size: 2.5rem;
            font-weight: bold;
            text-transform: uppercase;
            position: relative;
            color: #00ff00;
            letter-spacing: 3px;
            animation: glitch 3s infinite;
        }

        @keyframes glitch {
            0%, 100% { text-shadow: 2px 2px #ff00de, -2px -2px #00ffff; }
            25% { text-shadow: -2px 2px #ff00de, 2px -2px #00ffff; }
            50% { text-shadow: 2px -2px #ff00de, -2px 2px #00ffff; }
            75% { text-shadow: -2px -2px #ff00de, 2px 2px #00ffff; }
        }

        .command-line {
            color: #ffbd2e;
            margin: 20px 0;
            font-size: 1.1rem;
        }

        .output {
            color: #ff5f56;
            margin: 10px 0;
            padding-left: 20px;
        }

        .cursor {
            display: inline-block;
            width: 10px;
            height: 20px;
            background: #00ff00;
            animation: blink 1s infinite;
            margin-left: 5px;
        }

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

        .hero-text {
            font-size: 1.3rem;
            margin: 30px 0;
            color: #fff;
            text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }

        .stat-box {
            background: rgba(0, 255, 0, 0.05);
            border: 1px solid #00ff00;
            padding: 20px;
            text-align: center;
            transition: all 0.3s;
        }

        .stat-box:hover {
            background: rgba(0, 255, 0, 0.1);
            box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: 2.5rem;
            color: #ff5f56;
            font-weight: bold;
        }

        .stat-label {
            color: #00ff00;
            margin-top: 10px;
        }

        .pain-points {
            margin: 50px 0;
        }

        .pain-item {
            background: rgba(255, 95, 86, 0.1);
            border-left: 4px solid #ff5f56;
            padding: 15px 20px;
            margin: 15px 0;
            transition: all 0.3s;
        }

        .pain-item:hover {
            background: rgba(255, 95, 86, 0.15);
            transform: translateX(10px);
        }

        .pain-check {
            color: #ff5f56;
            margin-right: 10px;
        }

        .cta-section {
            background: linear-gradient(135deg, rgba(0, 255, 0, 0.1) 0%, rgba(0, 255, 0, 0.05) 100%);
            border: 2px solid #00ff00;
            padding: 40px;
            margin: 50px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 255, 0, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

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

        .cta-button {
            background: #00ff00;
            color: #000;
            border: none;
            padding: 20px 50px;
            font-size: 1.3rem;
            font-weight: bold;
            text-transform: uppercase;
            cursor: pointer;
            position: relative;
            z-index: 2;
            transition: all 0.3s;
            font-family: 'Courier New', monospace;
            box-shadow: 0 0 30px rgba(0, 255, 0, 0.5);
        }

        .cta-button:hover {
            background: #fff;
            transform: scale(1.05);
            box-shadow: 0 0 50px rgba(0, 255, 0, 0.8);
        }

        .value-prop {
            color: #ffbd2e;
            font-size: 1.1rem;
            margin: 20px 0;
            position: relative;
            z-index: 2;
        }

        .guarantee {
            background: rgba(255, 189, 46, 0.1);
            border: 1px dashed #ffbd2e;
            padding: 20px;
            margin: 30px 0;
            text-align: center;
        }

        .social-proof {
            margin: 50px 0;
            text-align: center;
        }

        .proof-stat {
            display: inline-block;
            margin: 0 30px;
            color: #27c93f;
        }

        .footer {
            text-align: center;
            padding: 30px;
            color: #666;
            border-top: 1px solid #333;
            margin-top: 50px;
        }

        .urgency {
            background: rgba(255, 95, 86, 0.2);
            border: 2px solid #ff5f56;
            padding: 20px;
            margin: 30px 0;
            text-align: center;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { box-shadow: 0 0 20px rgba(255, 95, 86, 0.3); }
            50% { box-shadow: 0 0 40px rgba(255, 95, 86, 0.6); }
        }

        .bullet-list {
            list-style: none;
            margin: 20px 0;
        }

        .bullet-list li {
            padding: 10px 0;
            padding-left: 30px;
            position: relative;
        }

        .bullet-list li::before {
            content: '>';
            position: absolute;
            left: 0;
            color: #00ff00;
            font-weight: bold;
        }

        .lead-form {
            max-width: 500px;
            margin: 30px auto;
            position: relative;
            z-index: 2;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .terminal-input {
            width: 100%;
            background: rgba(0, 0, 0, 0.7);
            border: 2px solid #00ff00;
            color: #00ff00;
            padding: 15px 20px;
            font-size: 1.1rem;
            font-family: 'Courier New', monospace;
            transition: all 0.3s;
        }

        .terminal-input:focus {
            outline: none;
            background: rgba(0, 0, 0, 0.9);
            box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
            border-color: #00ff00;
        }

        .terminal-input::placeholder {
            color: #006600;
        }

        .form-success {
            background: rgba(0, 255, 0, 0.1);
            border: 2px solid #00ff00;
            padding: 30px;
            text-align: center;
            display: none;
        }

        .form-success.show {
            display: block;
            animation: slideIn 0.5s ease-out;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .glitch {
                font-size: 1.8rem;
            }
            
            .hero-text {
                font-size: 1.1rem;
            }
            
            .terminal-window {
                padding: 20px;
            }

            .cta-button {
                padding: 15px 30px;
                font-size: 1.1rem;
            }

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