/* --- SYNAPSE LAB MASTER THEME --- */
:root {
    --bg-color: #050505;       /* Void Black */
    --card-bg: #111111;        /* Dark Grey */
    --accent: #00F0FF;         /* Synapse Blue */
    --alert: #FF2A2A;          /* Error Red */
    --text-main: #FFFFFF;
    --text-dim: #AAAAAA;
    --font-head: 'Orbitron', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
}
a { text-decoration: none; transition: 0.3s; }
ul { list-style: none; }

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(5, 5, 5, 0.95);
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.logo { font-family: var(--font-head); font-size: 24px; font-weight: 700; color: white; }
.logo span { color: var(--accent); }

.nav-links { display: flex; gap: 40px; }
.nav-links a { color: var(--text-dim); font-size: 14px; text-transform: uppercase; font-weight: 600; letter-spacing: 1px; }
.nav-links a:hover, .nav-links a.active { color: var(--accent); text-shadow: 0 0 10px rgba(0, 240, 255, 0.5); }

/* HERO BACKGROUND (CYBER GRID) */
.hero-bg {
    height: 90vh;
    display: flex; flex-direction: column; 
    justify-content: center; align-items: center; text-align: center;
    background-color: #050505;
    background-image: 
        linear-gradient(rgba(0, 240, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    position: relative;
}
.hero-bg::after {
    content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, transparent 20%, #050505 90%); pointer-events: none;
}

/* UTILITIES */
.container { max-width: 1100px; margin: auto; padding: 0 20px; }
.section { padding: 80px 0; }
.text-center { text-align: center; }
h1, h2, h3 { font-family: var(--font-head); margin-bottom: 20px; }
h1 { font-size: 3.5rem; line-height: 1.1; z-index: 10; }
.highlight { color: var(--accent); }

/* BUTTONS */
.btn {
    padding: 12px 30px;
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    font-family: var(--font-head);
    text-transform: uppercase;
    font-weight: bold;
    display: inline-block;
    z-index: 10;
}
.btn:hover { background: var(--accent); color: black; box-shadow: 0 0 20px rgba(0, 240, 255, 0.4); }

/* TEAM AVATARS (NO PHOTOS NEEDED) */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-top: 40px; }
.member-card { background: #111; padding: 30px; border: 1px solid #333; transition: 0.3s; text-align: left; }
.member-card:hover { border-color: var(--accent); transform: translateY(-5px); }

.avatar-circle {
    width: 70px; height: 70px; border-radius: 50%;
    background: linear-gradient(135deg, #111, #222);
    border: 2px solid var(--accent);
    display: flex; justify-content: center; align-items: center;
    font-family: var(--font-head); font-size: 28px; color: var(--accent);
    margin-bottom: 20px; box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}
.role { color: var(--accent); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: bold; margin-bottom: 10px;}

/* TYPEWRITER CURSOR BLINK */
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }