:root {
    --bg-color: #050505;
    --card-bg: #0f0f0f;
    --primary: #00ff41;
    /* Matrix/Tech Green */
    --primary-glow: rgba(0, 255, 65, 0.3);
    --secondary: #00d4ff;
    /* Cyan accent */
    --text-main: #ffffff;
    --text-dim: #a0a0a0;
    --accent-red: #ff3e3e;
    --font-heading: 'Orbitron', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --font-body: 'Outfit', sans-serif;
    --transition: cubic-bezier(0.23, 1, 0.32, 1);
    --nav-height: 84px;
    --hero-top-space: 2.5rem;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
    /* For custom cursor */
}

/* Custom Cursor */
#custom-cursor {
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s;
    box-shadow: 0 0 15px var(--primary);
}

/* Typography & Links */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.highlight {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

/* Buttons */
.btn-primary {
    background: var(--primary);
    color: #000;
    padding: 1rem 2rem;
    font-weight: 700;
    border-radius: 4px;
    display: inline-block;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-family: var(--font-heading);
    box-shadow: 0 4px 20px rgba(0, 255, 65, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 255, 65, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-family: var(--font-heading);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
}

.logo span {
    color: var(--primary);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

nav ul a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    padding: calc(var(--nav-height) + var(--hero-top-space)) 10% 3rem;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 70% 50%, rgba(0, 255, 65, 0.05) 0%, transparent 60%);
}

section {
    scroll-margin-top: calc(var(--nav-height) + 1rem);
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.badge {
    color: var(--primary);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    border-left: 3px solid var(--primary);
    padding-left: 10px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero p {
    font-size: 1.25rem;
    color: #cfd6d1;
    max-width: 600px;
    margin-bottom: 3rem;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.pc-silhouette {
    width: 400px;
    height: 500px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    z-index: -1;
    filter: blur(20px);
}

/* Comparison Section */
.comparison {
    padding: 100px 5%;
    background: #080808;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.comparison-card {
    padding: 3rem;
    border-radius: 12px;
    position: relative;
    transition: var(--transition);
}

.card-dark {
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.card-bright {
    background: rgba(0, 255, 65, 0.03);
    border: 1px solid rgba(0, 255, 65, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.tag-red {
    background: rgba(255, 62, 62, 0.2);
    color: var(--accent-red);
}

.tag-green {
    background: rgba(0, 255, 65, 0.2);
    color: var(--primary);
}

.status-bar {
    height: 30px;
    background: rgba(255, 255, 255, 0.05);
    margin-top: 2rem;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.status-bar span {
    position: absolute;
    width: 100%;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    line-height: 30px;
    z-index: 1;
}

.status-bar.red::after {
    content: '';
    display: block;
    height: 100%;
    width: 25%;
    background: var(--accent-red);
}

.status-bar.green::after {
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    background: var(--primary);
}

/* Pricing Section */
.pricing {
    padding: 100px 5%;
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.warning-msg {
    color: var(--secondary);
    font-family: var(--font-mono);
    background: rgba(0, 212, 255, 0.1);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    margin-top: 1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.pricing-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
}

.featured {
    border: 1px solid var(--primary);
    position: relative;
    scale: 1.05;
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
}

.price {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    margin: 2rem 0;
}

.price span {
    font-size: 1.5rem;
    color: var(--primary);
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.pricing-card li strong {
    color: var(--primary);
}

/* CTA Final */
.cta-final {
    padding: 100px 5%;
}

.cta-box {
    background: linear-gradient(135deg, #111 0%, #050505 100%);
    padding: 5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-box h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

#lead-form {
    max-width: 600px;
    margin: 3rem auto 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    gap: 1rem;
}

input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    color: #fff;
    border-radius: 4px;
}

input:focus {
    outline: none;
    border-color: var(--primary);
}

.large {
    width: 100%;
    font-size: 1.2rem;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #111;
    width: 90%;
    max-width: 500px;
    padding: 3rem;
    border-radius: 12px;
    position: relative;
    border: 1px solid var(--primary);
    text-align: center;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s forwards;
}

.fade-in-delayed {
    animation: fadeIn 1s 0.5s forwards;
    opacity: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3.2rem;
    }
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: calc(var(--nav-height) + 1rem);
        padding-bottom: 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-visual {
        display: none;
    }

    .form-group {
        flex-direction: column;
    }

    #custom-cursor {
        display: none;
    }

    body {
        cursor: auto;
    }
}
