:root {
    --bg-color: #050505;
    --primary-green: #00ff41;
    --dark-green: #003b00;
    --text-main: #e0e0e0;
    --text-dim: #a0a0a0;
    --glass-bg: rgba(0, 255, 65, 0.05);
    --glass-border: rgba(0, 255, 65, 0.2);
    --font-family: 'JetBrains Mono', 'Inter', monospace;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-family);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #000;
}
::-webkit-scrollbar-thumb {
    background: var(--dark-green);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-green);
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--primary-green);
    color: #000;
}

.btn-primary:hover {
    background: #fff;
    box-shadow: 0 0 20px var(--primary-green);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--primary-green);
    color: var(--primary-green);
}

.btn-outline:hover {
    background: var(--glass-bg);
    box-shadow: 0 0 10px var(--primary-green);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-green);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-green);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom, rgba(5,5,5,0.7), var(--bg-color)), url('hero.png');
    background-size: cover;
    background-position: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

#matrix-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    pointer-events: none;
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
}

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

.hero p {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 2rem;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

/* Features Section */
.section {
    padding: 100px 0;
}

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

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
}

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

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 12px;
    transition: transform 0.3s, border-color 0.3s;
}

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

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #fff;
}

/* Pricing Section */
.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.pricing-card {
    background: #111;
    border: 1px solid #222;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    width: 350px;
    position: relative;
    transition: transform 0.3s;
}

.pricing-card.popular {
    border-color: var(--primary-green);
    transform: scale(1.05);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 2rem;
}

.price span {
    font-size: 1rem;
    color: var(--text-dim);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    margin-bottom: 0.8rem;
    color: var(--text-dim);
}

.pricing-features li::before {
    content: '✓';
    color: var(--primary-green);
    margin-right: 10px;
}

/* Contact Section */
.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.social-link {
    color: var(--text-main);
    font-size: 2rem;
    transition: color 0.3s;
}

.social-link:hover {
    color: var(--primary-green);
}

/* Download Section */
.download-container {
    display: flex;
    gap: 3rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.download-box {
    background: #111;
    border: 1px solid #222;
    padding: 3rem;
    border-radius: 16px;
    width: 450px;
}

.input-group {
    text-align: left;
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    font-size: 0.7rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.input-group input {
    width: 100%;
    background: #000;
    border: 1px solid #333;
    padding: 1rem;
    color: var(--primary-green);
    font-family: var(--font-family);
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.input-group input:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.2);
}

.status-msg {
    margin-top: 1rem;
    font-size: 0.85rem;
    display: none;
    padding: 0.8rem;
    border-radius: 4px;
    text-align: center;
}

.status-msg.error {
    background: rgba(255, 0, 0, 0.1);
    color: #ff4d4d;
    border: 1px solid rgba(255, 77, 77, 0.3);
}

.status-msg.success {
    background: rgba(0, 255, 65, 0.1);
    color: var(--primary-green);
    border: 1px solid var(--glass-border);
}

.download-info {
    flex: 1;
    max-width: 400px;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-green);
}

.info-item h4 {
    margin-bottom: 0.3rem;
    color: #fff;
}

.info-item p {
    font-size: 0.9rem;
    color: var(--text-dim);
}

/* Footer */
footer {
    padding: 4rem 0;
    border-top: 1px solid #222;
    text-align: center;
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    animation: fadeInUp 0.8s ease forwards;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .nav-links {
        display: none;
    }
}
