:root {
    --bg: #05080c;
    --card-bg: #0c121d;
    --green: #00ff66;
    --cyan: #00f0ff;
    --red: #ff3355;
    --text: #e2e8f0;
    --font: 'Fira Code', monospace;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--bg); color: var(--text); font-family: var(--font); line-height: 1.6; }

.nav { position: fixed; top: 0; width: 100%; padding: 1.5rem 4rem; display: flex; justify-content: space-between; align-items: center; background: rgba(5,8,12,0.9); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(0,255,102,0.2); z-index: 100; }
.logo { font-size: 1.2rem; font-weight: 700; color: var(--green); }
.nav-links a { color: var(--text); text-decoration: none; margin-left: 2rem; font-size: 0.9rem; transition: 0.3s; }
.nav-links a:hover { color: var(--green); }

.hero { height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 0 2rem; }
.hero-badge { color: var(--green); border: 1px solid var(--green); padding: 6px 16px; border-radius: 100px; font-size: 0.8rem; margin-bottom: 1.5rem; background: rgba(0,255,102,0.05); }
h1 { font-size: 3.2rem; color: #fff; margin-bottom: 1.5rem; max-width: 900px; text-shadow: 0 0 20px rgba(0,255,102,0.3); }
p { font-size: 1.1rem; color: #94a3b8; max-width: 650px; margin-bottom: 2.5rem; }

.btn-group { display: flex; gap: 1.5rem; }
.btn { padding: 0.9rem 2rem; text-decoration: none; font-weight: 700; font-size: 0.9rem; transition: 0.3s; cursor: pointer; }
.btn-primary { background: var(--green); color: #000; }
.btn-primary:hover { background: var(--cyan); box-shadow: 0 0 25px rgba(0,240,255,0.6); }
.btn-outline { border: 1px solid var(--green); color: var(--green); }
.btn-outline:hover { background: rgba(0,255,102,0.1); }

.section { padding: 6rem 4rem; max-width: 1200px; margin: 0 auto; }
.section-title { font-size: 1.8rem; color: var(--green); margin-bottom: 3rem; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.box, .card { background: var(--card-bg); border: 1px solid rgba(0,255,102,0.15); padding: 2.5rem; border-radius: 8px; transition: 0.3s; }
.card:hover { border-color: var(--green); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,255,102,0.1); }
.card-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.card h3, .box h3 { color: #fff; margin-bottom: 1rem; font-size: 1.2rem; }

.table-container { background: var(--card-bg); border: 1px solid rgba(0,255,102,0.2); border-radius: 8px; overflow: hidden; }
table { width: 100%; border-collapse: collapse; text-align: left; }
th, td { padding: 1.2rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
th { background: rgba(0,255,102,0.05); color: var(--green); }
.code { color: var(--cyan); }
.badge { padding: 4px 10px; border-radius: 4px; font-size: 0.8rem; font-weight: 700; }
.badge.critical { background: rgba(255,51,85,0.2); color: var(--red); border: 1px solid var(--red); }
.badge.high { background: rgba(255,170,0,0.2); color: #ffaa00; border: 1px solid #ffaa00; }

.terminal-window { background: #000; border: 1px solid var(--green); border-radius: 8px; overflow: hidden; box-shadow: 0 0 40px rgba(0,255,102,0.15); }
.terminal-header { background: #111; padding: 0.8rem 1rem; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid #222; }
.dot { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.dot.red { background: #ff5f56; } .dot.yellow { background: #ffbd2e; } .dot.green { background: #27c93f; }
.terminal-header .title { font-size: 0.85rem; color: #888; margin-left: auto; }
.terminal-body { padding: 1.5rem; min-height: 200px; max-height: 350px; overflow-y: auto; font-size: 0.95rem; }
.terminal-input-row { display: flex; align-items: center; padding: 1rem 1.5rem; background: #050505; border-top: 1px solid #111; }
.prompt { color: var(--green); margin-right: 10px; font-weight: 700; }
#termInput { background: transparent; border: none; outline: none; color: #fff; font-family: var(--font); font-size: 0.95rem; width: 100%; }

.footer { text-align: center; padding: 3rem; border-top: 1px solid rgba(255,255,255,0.05); color: #666; font-size: 0.85rem; }