:root {
    --bg: #010306;
    --primary: #00d2ff;
    --secondary: #0066ff;
    --accent: #ff00ff;
    --warn: #ffcc00;
    --success: #00ff88;
    --hud-border: rgba(0, 210, 255, 0.3);
    --hud-bg: rgba(0, 10, 20, 0.85);
    --text: #e0f2fe;
    --text-dim: #7dd3fc;
    --glow: 0 0 15px rgba(0, 210, 255, 0.4);
}

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

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

canvas#bg-plexus {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at center, #0a1120 0%, #010306 100%);
}

.bg-noise {
    position: fixed;
    inset: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4MDAiIGhlaWdodD0iODAwIj48ZmlsdGVyIGlkPSJuIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iLjY1IiBudW1PY3RhdmVzPSIzIiBzdGl0Y2hUaWxlcz0ic3RpdGNoIi8+PC9maWx0ZXI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsdGVyPSJ1cmwoI24pIi8+PC9zdmc+');
    opacity: 0.1;
    z-index: 10;
    pointer-events: none;
}

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

/* --- HUD HEADER --- */
header {
    padding: 2rem 0;
    border-bottom: 1px solid var(--hud-border);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo h1 {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: var(--glow);
}

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

/* --- HERO SECTION --- */
.hero {
    padding: 10rem 0 6rem;
    text-align: center;
    position: relative;
}

.hero-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 210, 255, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 5px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.hero h2 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 0 0 30px rgba(0, 210, 255, 0.3);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-dim);
    max-width: 800px;
    margin: 0 auto 4rem;
}

/* --- PRICING GRID --- */
.pricing-section {
    padding: 10rem 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 210, 255, 0.05), transparent);
}

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

.hud-pricing-card {
    background: var(--hud-bg);
    border: 2px solid var(--hud-border);
    padding: 4rem 3rem;
    position: relative;
    clip-path: polygon(
        0 30px, 30px 0, 
        100% 0, 100% calc(100% - 30px), 
        calc(100% - 30px) 100%, 0 100%
    );
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.hud-pricing-card:hover {
    border-color: var(--primary);
    transform: translateY(-15px);
    box-shadow: 0 30px 100px rgba(0, 210, 255, 0.2);
}

.hud-pricing-card.featured {
    border-color: var(--accent);
    background: rgba(255, 0, 255, 0.03);
}

.card-label {
    font-size: 0.7rem;
    letter-spacing: 5px;
    color: var(--primary);
    font-weight: 900;
    margin-bottom: 1.5rem;
    display: block;
}

.pricing-val {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
}

.pricing-val span { font-size: 1rem; color: var(--text-dim); margin-bottom: 1rem; }

.feature-list {
    list-style: none;
    margin: 3rem 0;
}

.feature-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 210, 255, 0.1);
    color: var(--text-dim);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
}

.feature-list li i { color: var(--primary); margin-right: 12px; }

/* --- HUD BUTTONS --- */
.hud-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
    text-decoration: none;
}

.hud-btn:hover {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.5);
}

.hud-btn.featured {
    border-color: var(--accent);
    color: var(--accent);
}

.hud-btn.featured:hover {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
}

/* --- SPECS SECTION --- */
.specs-section {
    padding: 8rem 0;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
}

.spec-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
    display: block;
}

.spec-item h3 {
    letter-spacing: 3px;
    margin-bottom: 1rem;
    color: #fff;
}

.spec-item p { color: var(--text-dim); }

/* --- FOOTER --- */
footer {
    padding: 6rem 0;
    border-top: 1px solid var(--hud-border);
    text-align: center;
    margin-top: 10rem;
    background: rgba(0,0,0,0.5);
}

.footer-brand {
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 5px;
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-links a:hover { color: #fff; }

.copyright { color: rgba(255,255,255,0.2); font-size: 0.7rem; letter-spacing: 2px; }

@media (max-width: 768px) {
    .pricing-grid { gap: 2rem; }
    .hero { padding: 6rem 0; }
}
