:root {
    --bg: #000000;
    --card-bg: #050505;
    --accent: #ffffff;
    --success: #00ff00;
    --text: #ffffff;
    --text-dim: #888888;
    --border: #111111;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'JetBrains Mono', monospace;
    overflow-x: hidden;
}

h1, h2, h3, .logo {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* NAVIGATION */
nav {
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent);
}

/* HERO SECTION */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
}

.video-container {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    overflow: hidden;
}

#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.2) grayscale(1);
}

/* TACTICAL GRIDS */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 80px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

/* SPECIFIC FIX FOR OPERATIVES (PREVENTS THEM BEING TOO BIG) */
.employee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 300px)); /* Limits width */
    justify-content: center;
    gap: 30px;
    padding: 80px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.card, .employee-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 30px;
    transition: 0.4s;
    cursor: pointer;
    text-align: center;
}

.card:hover, .employee-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.employee-card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    filter: grayscale(1);
    transition: 0.5s;
    border: 1px solid var(--border);
    margin-bottom: 20px;
}

.employee-card:hover img { filter: grayscale(0); border-color: var(--success); }

/* BUTTONS */
.cta-btn {
    background: var(--accent);
    color: var(--bg);
    border: none;
    padding: 15px 40px;
    font-family: 'Orbitron';
    font-weight: 900;
    cursor: pointer;
    letter-spacing: 2px;
    transition: 0.3s;
}

.cta-btn:hover { background: var(--success); letter-spacing: 4px; }

/* DASHBOARD SIDEBAR */
.dashboard-body { display: flex; }
.sidebar {
    width: 280px; height: 100vh;
    border-right: 1px solid var(--border);
    padding: 40px;
    position: fixed;
    background: #020202;
    display: flex;
    flex-direction: column;
}

.main-content { margin-left: 280px; padding: 60px; width: 100%; }

input, textarea {
    width: 100%; background: #0a0a0a; border: 1px solid var(--border);
    color: white; padding: 15px; margin-bottom: 15px; outline: none;
    font-family: 'JetBrains Mono';
}