:root {
    --neon-green: #00ff41;
    --dark-bg: #050505;
    --card-bg: rgba(20, 20, 20, 0.8);
    --text-main: #e0e0e0;
    --primary-font: 'Rajdhani', sans-serif;
    --header-font: 'Orbitron', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-main);
    font-family: var(--primary-font);
    overflow-x: hidden;
}

/* VIDEO/CANVAS BG */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 255, 65, 0.2);
}

.logo {
    font-family: var(--header-font);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.highlight {
    color: var(--neon-green);
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: 0.3s;
}

nav a:hover {
    color: var(--neon-green);
}

.cta-btn-nav {
    border: 1px solid var(--neon-green);
    padding: 8px 16px;
    border-radius: 4px;
}

.cta-btn-nav:hover {
    background: var(--neon-green);
    color: #000;
    box-shadow: 0 0 15px var(--neon-green);
}

/* HERO SECTION */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    position: relative;
    padding-top: 80px;
}

.hero-content {
    max-width: 50%;
}

.badge {
    background: rgba(0, 255, 65, 0.1);
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 20px;
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--neon-green);
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 0 rgba(0, 255, 65, 0.4);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 65, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 255, 65, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 65, 0);
    }
}

h1 {
    font-family: var(--header-font);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.glitch {
    position: relative;
    color: #fff;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
}

.glitch::before {
    left: 2px;
    text-shadow: -1px 0 red;
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim-1 2.5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -1px 0 blue;
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
    0% {
        clip: rect(20px, 9999px, 15px, 0);
    }

    20% {
        clip: rect(60px, 9999px, 70px, 0);
    }

    40% {
        clip: rect(10px, 9999px, 85px, 0);
    }

    60% {
        clip: rect(30px, 9999px, 10px, 0);
    }

    80% {
        clip: rect(80px, 9999px, 5px, 0);
    }

    100% {
        clip: rect(50px, 9999px, 90px, 0);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip: rect(120px, 9999px, 15px, 0);
    }

    20% {
        clip: rect(80px, 9999px, 70px, 0);
    }

    40% {
        clip: rect(10px, 9999px, 85px, 0);
    }

    60% {
        clip: rect(50px, 9999px, 10px, 0);
    }

    80% {
        clip: rect(100px, 9999px, 5px, 0);
    }

    100% {
        clip: rect(30px, 9999px, 90px, 0);
    }
}

.subtitle {
    font-size: 1.2rem;
    color: #aaa;
    margin-bottom: 40px;
    line-height: 1.6;
}

.primary-btn {
    background: var(--neon-green);
    color: #000;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
    transition: 0.3s;
    font-family: var(--header-font);
}

.primary-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.6);
}

.social-proof {
    display: flex;
    align-items: center;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #888;
}

.avatars {
    display: flex;
    margin-right: 10px;
}

.avatars img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--dark-bg);
    margin-left: -10px;
}

.avatars img:first-child {
    margin-left: 0;
}

/* MOCKUP VISUAL */
.hero-visual {
    width: 45%;
    position: relative;
    perspective: 1000px;
}

.glass-mockup {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid #333;
    border-radius: 12px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: rotateY(-10deg) rotateX(5deg);
    transition: 0.5s;
    overflow: hidden;
}

.glass-mockup:hover {
    transform: rotateY(0) rotateX(0);
}

.mockup-header {
    background: #111;
    padding: 10px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #333;
}

.dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #333;
    border-radius: 50%;
    margin-right: 5px;
}

.dots span:nth-child(1) {
    background: #ff5f56;
}

.dots span:nth-child(2) {
    background: #ffbd2e;
}

.dots span:nth-child(3) {
    background: #27c93f;
}

.address-bar {
    background: #000;
    color: #444;
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-left: 15px;
    width: 100%;
    font-family: monospace;
}

.mockup-body {
    display: flex;
    height: 300px;
}

.sidebar {
    width: 50px;
    background: #0a0a0a;
    border-right: 1px solid #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
}

.sidebar .icon {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 20px;
}

.sidebar .icon.active {
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
}

.main-view {
    flex: 1;
    padding: 20px;
    font-family: monospace;
    color: var(--neon-green);
}

.agent-status {
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.status-indicator {
    width: 10px;
    height: 10px;
    background: var(--neon-green);
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
}

.log-item {
    margin-bottom: 8px;
    font-size: 0.8rem;
    color: #aaa;
}

.log-item .cmd {
    margin-left: 10px;
}

.log-item .success {
    color: var(--neon-green);
}

.log-item .processing {
    color: #f39c12;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: #333;
    margin-top: 5px;
}

.progress-bar .fill {
    height: 100%;
    background: var(--neon-green);
    width: 40%;
    animation: load 2s infinite;
}

@keyframes load {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: var(--neon-green);
    filter: blur(100px);
    opacity: 0.1;
    z-index: -1;
}

/* FEATURES */
.features {
    padding: 100px 10%;
    background: #080808;
}

.features h2 {
    text-align: center;
    font-family: var(--header-font);
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #111;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #222;
    transition: 0.3s;
}

.feature-card:hover {
    border-color: var(--neon-green);
    transform: translateY(-10px);
}

.icon-box {
    font-size: 2.5rem;
    color: var(--neon-green);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: var(--header-font);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.feature-card p {
    color: #888;
    line-height: 1.6;
}

/* PRICING */
.pricing {
    padding: 100px 10%;
    display: flex;
    justify-content: center;
}

.pricing-card {
    background: #111;
    border: 2px solid var(--neon-green);
    border-radius: 16px;
    padding: 50px;
    text-align: center;
    position: relative;
    max-width: 500px;
    box-shadow: 0 0 50px rgba(0, 255, 65, 0.1);
}

.ribbon {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--neon-green);
    color: #000;
    padding: 5px 20px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    border-radius: 20px;
}

.pricing-card h3 {
    font-family: var(--header-font);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.price {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}

.price .currency {
    font-size: 2rem;
    vertical-align: top;
}

.price .period {
    font-size: 1rem;
    color: #888;
    font-weight: 400;
}

.benefits {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
}

.benefits li {
    margin-bottom: 15px;
    color: #ccc;
}

.benefits li i {
    color: var(--neon-green);
    margin-right: 10px;
}

.buy-btn {
    width: 100%;
    background: var(--neon-green);
    color: #000;
    border: none;
    padding: 15px;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    border-radius: 8px;
    text-transform: uppercase;
    transition: 0.3s;
}

.buy-btn:hover {
    box-shadow: 0 0 20px var(--neon-green);
}

.guarantee {
    margin-top: 20px;
    font-size: 0.8rem;
    color: #666;
}

footer {
    text-align: center;
    padding: 40px;
    color: #555;
    font-size: 0.8rem;
    border-top: 1px solid #111;
}

.trust-mrr i {
    color: #3498db;
    margin-right: 5px;
}