/* 
   Aero-Sovereign Brand Identity CSS
   Colors:
   - Obsidian Deep Space Black: #000305
   - Truth Rational White: #F9FAFB
   - Symbol Premium Gold: #DEC28B
   - Visual Dispute Red: #FF3A30
*/

:root {
    --obsidian-black: #000305;
    --rational-white: #F9FAFB;
    --premium-gold: #DEC28B;
    --dispute-red: #FF3A30;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

body {
    background-color: var(--obsidian-black);
    color: var(--rational-white);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.text-gold { color: var(--premium-gold); }
.text-red { color: var(--dispute-red); }
.font-mono { font-family: var(--font-mono); }

/* Navigation */
.navbar {
    background-color: rgba(0, 3, 5, 0.95);
    border-bottom: 1px solid rgba(222, 194, 139, 0.2);
    padding: 1.5rem 0;
}

.navbar-brand {
    font-weight: 800;
    color: var(--rational-white) !important;
    font-size: 1.2rem;
    line-height: 1.2;
}

.nav-link {
    color: var(--rational-white) !important;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin: 0 10px;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--premium-gold) !important;
}

/* Common Layout Elements */
.section-padding {
    padding: 100px 0;
}

.border-gold {
    border: 1px solid var(--premium-gold);
}

.bg-darker {
    background-color: #05080a;
}

/* Cards & Components */
.card-as {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(222, 194, 139, 0.1);
    padding: 2rem;
    transition: all 0.3s;
}

.card-as:hover {
    border-color: var(--premium-gold);
    background: rgba(255, 255, 255, 0.05);
}

/* Hero Text Animation */
.glitch-text {
    position: relative;
    display: inline-block;
}

/* Footer */
footer {
    border-top: 1px solid rgba(222, 194, 139, 0.2);
    padding: 60px 0;
    font-size: 0.8rem;
}

/* Math Display */
.math-container {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
    margin: 2rem 0;
    overflow-x: auto;
}
