/* --- GI-FORTRESS NAVIGATION & LOGO --- */
.brand { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
}

.nav-logo { 
    height: 150px;       /* Fixed height */
    width: 150px;        /* Fixed width */
    object-fit: contain; /* Prevents stretching */
    margin-top: -35px;   /* Pulls logo up to slim the nav */
    margin-bottom: -35px;/* Pulls logo down to slim the nav */
}

.logo-text { 
    font-size: 1.4rem; 
    font-weight: bold; 
    text-transform: uppercase; 
}

:root {
    --bg-dark: #0f172a;
    --card-bg: #1e293b;
    --accent: #38bdf8;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
}

body { 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    background-color: var(--bg-dark); 
    color: var(--text-main); 
    margin: 0; 
    line-height: 1.6;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* --- NAVIGATION --- */
header { background: rgba(15, 23, 42, 0.9); border-bottom: 1px solid #334155; padding: 10px 0; }
nav { display: flex; justify-content: space-between; align-items: center; }

.brand { display: flex; align-items: center; gap: 15px; }
.logo-text { font-size: 1.4rem; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; }
.accent-text { color: var(--accent); }

nav ul { list-style: none; display: flex; gap: 20px; padding: 0; }
nav a { color: var(--text-main); text-decoration: none; font-weight: 500; font-size: 0.9rem; }
nav a:hover { color: var(--accent); }

/* Replacement for your inline alpha link style */
.nav-accent {
    color: var(--accent) !important;
}

/* --- THREAT FEED --- */
.threat-feed { 
    background: #000; 
    color: var(--accent); 
    font-family: monospace; 
    font-size: 0.75rem; 
    padding: 5px 0; 
    overflow: hidden; 
    white-space: nowrap;
    border-bottom: 1px solid var(--accent);
}
.threat-text { display: inline-block; padding-left: 100%; animation: scroll 25s linear infinite; }
@keyframes scroll { 0% { transform: translate(0, 0); } 100% { transform: translate(-100%, 0); } }

/* --- HERO SECTION --- */
.hero { padding: 100px 0; text-align: center; background: radial-gradient(circle at center, #1e293b 0%, #0f172a 100%); }
.status-tag { display: inline-block; background: rgba(56, 189, 248, 0.1); color: var(--accent); border: 1px solid var(--accent); padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: bold; margin-bottom: 20px; }
h1 { font-size: 3.5rem; margin: 0; letter-spacing: -1px; }
.hero-strapline { color: var(--accent); font-size: 1.5rem; margin-top: 10px; font-weight: 300; }
.hero p { max-width: 700px; margin: 20px auto; color: var(--text-muted); font-size: 1.1rem; }
.btn { display: inline-block; background: var(--accent); color: #0f172a; padding: 12px 30px; border-radius: 5px; text-decoration: none; font-weight: bold; margin-top: 20px; transition: transform 0.2s; }
.btn:hover { transform: translateY(-2px); }

/* --- SERVICES --- */
.services { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 50px; font-size: 2rem; }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.card { background: var(--card-bg); padding: 30px; border-radius: 10px; border: 1px solid #334155; transition: border-color 0.3s; }
.card:hover { border-color: var(--accent); }
.card h3 { color: var(--accent); margin-top: 0; }
.card p { color: var(--text-muted); font-size: 0.95rem; }

footer { text-align: center; padding: 40px 0; border-top: 1px solid #334155; color: var(--text-muted); font-size: 0.8rem; }