@font-face {
    font-family: 'Akira';
    src: url('akira.otf') format('opentype'), url('akira.ttf') format('truetype');
    font-weight: bold;
}

:root {
    --bg: #010805;
    --primary: #10b981; 
    --primary-glow: rgba(16, 185, 129, 0.4);
    --glass: rgba(10, 25, 18, 0.75);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text: #f8fafc;
    --text-dim: #94a3b8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    background: var(--bg); 
    color: var(--text); 
    font-family: 'Inter', sans-serif;
    overflow-x: hidden; 
    min-height: 100vh;
}

/* Moving Matrix Background */
.bg-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(16, 185, 129, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 185, 129, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
}

.scanline {
    position: fixed; top: -100%; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(16, 185, 129, 0.1) 50%, transparent);
    z-index: -1;
    animation: scan 8s linear infinite;
}

@keyframes scan { 0% { top: -100%; } 100% { top: 100%; } }

/* Typography */
h1, h2, h3, .akira-header {
    font-family: 'Akira', sans-serif !important;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.title-gradient {
    background: linear-gradient(to right, #fff, var(--primary), #34d399);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: 20px;
}

/* Nav & Mobile Menu Fix */
nav {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    backdrop-filter: blur(20px); border-bottom: 1px solid var(--glass-border);
    padding: 1.2rem 8%; display: flex; justify-content: space-between; align-items: center;
}
.logo-img { height: 45px; filter: drop-shadow(0 0 10px var(--primary-glow)); }
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--text); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; transition: 0.3s; }
.nav-links a:hover { color: var(--primary); text-shadow: 0 0 8px var(--primary); }

.menu-btn { display: none; font-size: 1.8rem; color: var(--primary); cursor: pointer; z-index: 1200; }

.side-menu {
    position: fixed; top: 0; right: -100%; width: 100%; height: 100%;
    background: rgba(1, 8, 5, 0.98); backdrop-filter: blur(30px);
    z-index: 1100; transition: 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 35px;
}
.side-menu.active { right: 0; }
.side-menu a { text-decoration: none; color: white; font-family: 'Akira'; font-size: 1.5rem; transition: 0.3s; }
.side-menu a:hover { color: var(--primary); }

/* Card Animations & Matrix Blur */
.glass-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    border-radius: 20px;
    backdrop-filter: blur(15px); /* The "Matrix Look" */
    -webkit-backdrop-filter: blur(15px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative; overflow: hidden;
}

.glass-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: var(--primary);
    box-shadow: 0 25px 50px rgba(16, 185, 129, 0.3);
}

/* Pricing Grid */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; margin-top: 60px; }
.price-card {
    background: var(--glass); border: 1px solid var(--glass-border);
    padding: 4rem 2rem; border-radius: 24px; text-align: center;
    backdrop-filter: blur(15px); transition: all 0.5s ease;
}
.price-card.featured {
    border: 2px solid var(--primary); background: rgba(16, 185, 129, 0.08);
    transform: scale(1.05);
}
.price-card:hover { transform: translateY(-20px) scale(1.08); border-color: var(--primary); box-shadow: 0 30px 60px rgba(16, 185, 129, 0.4); }

/* Buttons */
.btn-group { display: flex; flex-direction: column; gap: 15px; margin-top: 30px; }
.btn {
    padding: 18px; border-radius: 10px; font-weight: 800; cursor: pointer;
    text-decoration: none; text-transform: uppercase; font-size: 0.8rem; transition: 0.3s;
    font-family: 'Akira', sans-serif; display: flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-wa { background: #25D366; color: #000; }
.btn-ds { background: #5865F2; color: #fff; }
.btn:hover { filter: brightness(1.2); transform: translateY(-2px); }

.container { max-width: 1300px; margin: 0 auto; padding: 0 5%; }
.section { padding: 160px 0 100px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; }

@media (max-width: 768px) { 
    .nav-links { display: none; } 
    .menu-btn { display: block; } 
}
