:root {
    --deep-navy: #001B3A;
    --turbine-white: #FDFDFD;
    --rescue-orange: #FF6B00;
    --grid-gold: #FFD700;
    --glass-bg: rgba(255, 255, 255, 0.1);
}

body {
    background-color: var(--deep-navy);
    color: var(--turbine-white);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    overflow-x: hidden;
}

.mono-font {
    font-family: 'JetBrains Mono', 'Courier New', monospace;
}

/* Navbar Styling */
.navbar {
    background: rgba(0, 27, 58, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
}

.navbar-brand {
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--turbine-white) !important;
}

.nav-link {
    color: rgba(253, 253, 253, 0.8) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s;
}

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

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(0,27,58,0.7) 0%, rgba(0,27,58,1) 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--deep-navy) 90%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 4px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--rescue-orange);
    letter-spacing: 8px;
    margin-bottom: 3rem;
}

/* Metric Cards */
.metric-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 2rem;
}

.metric-card {
    background: var(--glass-bg);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 15px 25px;
    border-radius: 4px;
    text-align: left;
}

.metric-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: rgba(253,253,253,0.6);
}

.metric-value {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--grid-gold);
}

/* Content Sections */
.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    position: relative;
    padding-left: 20px;
    border-left: 5px solid var(--rescue-orange);
}

.card-custom {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.card-custom:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.07);
    border-color: var(--rescue-orange);
}

/* Tech Specs */
.equation-box {
    background: #000;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--grid-gold);
    margin: 2rem 0;
    font-family: 'JetBrains Mono', monospace;
    color: var(--grid-gold);
}

/* Footer */
footer {
    background: #000c1a;
    padding: 50px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--turbine-white);
}

/* Animations */
@keyframes jackingUp {
    0% { transform: translateY(50px); }
    100% { transform: translateY(0); }
}

.wtiv-anim {
    animation: jackingUp 4s ease-out infinite alternate;
}
