/* --- ADX DEFENSE: MIL-SPEC STANDARD --- */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;700&family=Roboto+Mono:wght@400;500&display=swap');

:root {
    /* PALETTE - RESTRAINED */
    --void-black: #080808; /* Slightly lighter than pure black for depth */
    --panel-grey: #121212;
    --tungsten: #2C2C2C;
    --slate: #9CA3AF;     /* More muted text */
    --white: #F3F4F6;
    
    /* FUNCTIONAL COLORS */
    --alert-amber: #D97706; /* Darker, authoritative amber */
    --status-green: #10B981;
    --border-dim: 1px solid rgba(255, 255, 255, 0.08);
    
    /* TYPOGRAPHY */
    --font-heading: 'Rajdhani', sans-serif;
    --font-tech: 'Roboto Mono', monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: var(--void-black);
    color: var(--slate);
    font-family: var(--font-tech);
    font-size: 14px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: 0.05em; /* Tighter, cleaner */
}

h1 { font-size: 3.5rem; font-weight: 700; line-height: 1.1; }
h2 { font-size: 2rem; border-left: 3px solid var(--alert-amber); padding-left: 25px; margin-bottom: 20px; }
h3 { font-size: 1.25rem; color: var(--white); margin-bottom: 10px; }

a { text-decoration: none; color: var(--white); transition: 0.2s ease-in-out; }
a:hover { color: var(--alert-amber); }

/* --- LAYOUT --- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* --- NAVIGATION (Professional) --- */
.global-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 40px;
    border-bottom: var(--border-dim);
    background: rgba(8,8,8,0.95); /* Solid, less transparency */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.brand { 
    font-family: var(--font-heading); 
    font-size: 1.8rem; 
    font-weight: 700; 
    color: var(--white);
    letter-spacing: 0.05em;
}

.brand span { color: var(--alert-amber); }

.nav-links { display: flex; gap: 50px; }
.nav-links a { 
    font-size: 0.85rem; 
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--slate);
    position: relative;
}

.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--white); }

/* --- CONTROLS --- */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--void-black);
    padding: 14px 32px;
    font-family: var(--font-tech);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.cta-btn:hover {
    background: var(--alert-amber);
    color: white;
}

.cta-btn.secondary {
    background: transparent;
    border: 1px solid var(--slate);
    color: var(--slate);
}

.cta-btn.secondary:hover {
    border-color: var(--white);
    color: var(--white);
    background: transparent;
}

/* --- FOOTER --- */
footer {
    border-top: var(--border-dim);
    padding: 80px 0;
    margin-top: 120px;
    background: var(--panel-grey);
    text-align: left;
}