/* =========================================================
   AEROFORT — OPS-ROOM DESIGN SYSTEM
   ========================================================= */

:root {
    --black: #050709;
    --panel: #0b0e12;
    --panel-alt: #0e131a;
    --border: #1b222b;
    --border-bright: #2b3540;
    --text: #d6dde3;
    --text-dim: #8b96a1;
    --text-faint: #55606b;
    --amber: #ffb020;
    --amber-dim: rgba(255, 176, 32, 0.14);
    --red: #ff3b3b;
    --red-dim: rgba(255, 59, 59, 0.14);
    --green: #2ee6a6;
    --green-dim: rgba(46, 230, 166, 0.14);
    --navy: #10202f;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;
    --font-display: 'Space Grotesk', 'Arial', sans-serif;
    --max: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-mono);
    color: var(--text);
    background-color: var(--black);
    line-height: 1.6;
    position: relative;
}

/* film-grain overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    opacity: 0.035;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* faint global scanlines */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9997;
    pointer-events: none;
    opacity: 0.25;
    background: repeating-linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.35) 0px,
        rgba(0, 0, 0, 0.35) 1px,
        transparent 1px,
        transparent 3px
    );
    mix-blend-mode: multiply;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--text);
    margin: 0;
}

a { color: inherit; }

::selection {
    background: var(--amber);
    color: #05070a;
}

/* =========================================================
   BOOT SEQUENCE
   ========================================================= */

#boot-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--black);
    color: var(--green);
    font-family: var(--font-mono);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#boot-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.boot-lines {
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
    font-size: 13px;
    letter-spacing: 0.3px;
}

.boot-line {
    opacity: 0;
    margin-bottom: 8px;
    white-space: pre-wrap;
}

.boot-line.show { opacity: 1; }

.boot-line .ok { color: var(--green); }
.boot-line .warn { color: var(--amber); }

.boot-cursor {
    display: inline-block;
    width: 8px;
    height: 14px;
    background: var(--green);
    animation: blink 1s step-end infinite;
    vertical-align: middle;
}

@keyframes blink { 50% { opacity: 0; } }

.boot-skip {
    position: absolute;
    bottom: 30px;
    right: 40px;
    background: transparent;
    border: 1px solid var(--border-bright);
    color: var(--text-dim);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 1px;
    padding: 8px 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
}

.boot-skip:hover {
    color: var(--amber);
    border-color: var(--amber);
}

/* =========================================================
   HEADER
   ========================================================= */

.classification-bar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 26px;
    z-index: 1001;
    background: linear-gradient(90deg, #7a0f0f 0%, #a11616 50%, #7a0f0f 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    font-size: 10px;
    letter-spacing: 1.5px;
    color: #ffe3e3;
    font-family: var(--font-mono);
    font-weight: 700;
}

.classification-bar span { white-space: nowrap; }

.classification-bar .clock {
    font-weight: 400;
    letter-spacing: 1px;
    opacity: 0.9;
}

header {
    position: fixed;
    top: 26px;
    width: 100%;
    background: rgba(5, 7, 9, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 14px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 8px 40px;
    background: rgba(5, 7, 9, 0.97);
    border-bottom-color: var(--border-bright);
}

.logo { display: flex; align-items: center; }

.logo img {
    height: 42px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: filter 0.2s ease, transform 0.2s ease;
}

.logo:hover img { filter: brightness(0) invert(1) drop-shadow(0 0 6px var(--amber)); }

.logo-word {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 3px;
    margin-left: 10px;
    color: var(--text);
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 4px;
}

nav ul li a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    padding: 8px 14px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
    font-family: var(--font-mono);
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

nav ul li a::before {
    content: '';
    position: absolute;
    left: 14px;
    bottom: 4px;
    width: 0;
    height: 1px;
    background: var(--amber);
    transition: width 0.25s ease;
}

nav ul li a:hover {
    color: var(--amber);
}

nav ul li a:hover::before { width: calc(100% - 28px); }

.menu-toggle {
    display: none;
    font-size: 20px;
    color: var(--text);
    cursor: pointer;
    padding: 6px 12px;
    border: 1px solid var(--border-bright);
    background: transparent;
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
    height: 100vh;
    min-height: 640px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 40px 0;
    overflow: hidden;
    background: radial-gradient(ellipse at 50% 30%, #0c1016 0%, #05070a 65%);
}

.hero canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.55;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--red) 50%, transparent 100%);
    z-index: 4;
}

.hero > * { position: relative; z-index: 3; }

.hero-eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--green);
    text-transform: uppercase;
    margin-bottom: 22px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--border-bright);
    padding: 6px 14px;
    background: rgba(46, 230, 166, 0.05);
}

.hero-eyebrow .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 8px var(--green);
    animation: pulse-dot 1.6s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero h1 {
    font-size: clamp(32px, 5vw, 58px);
    margin-bottom: 24px;
    color: #eef2f5;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.12;
    max-width: 920px;
}

.hero h1 .accent { color: var(--amber); }

.hero p.lede {
    font-size: 16px;
    margin-bottom: 44px;
    color: var(--text-dim);
    font-weight: 400;
    letter-spacing: 0.3px;
    max-width: 620px;
    font-family: var(--font-mono);
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
}

.btn {
    padding: 14px 30px;
    text-decoration: none;
    font-size: 12px;
    border-radius: 2px;
    transition: all 0.25s ease;
    font-family: var(--font-mono);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.btn-primary {
    background: var(--amber);
    color: #1a1000;
    border: 1px solid var(--amber);
}

.btn-primary:hover {
    background: #ffc555;
    box-shadow: 0 0 24px rgba(255, 176, 32, 0.35);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border-bright);
}

.btn-ghost:hover {
    border-color: var(--text);
    transform: translateY(-2px);
}

.hero-readout {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 10px;
    letter-spacing: 1.5px;
    color: var(--text-faint);
    text-transform: uppercase;
}

.hero-readout strong { color: var(--text-dim); font-weight: 500; }

.scroll-cue {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 18px;
    height: 30px;
    border: 1px solid var(--border-bright);
    border-radius: 10px;
}

.scroll-cue::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 6px;
    background: var(--amber);
    border-radius: 2px;
    animation: scroll-cue 1.6s ease-in-out infinite;
}

@keyframes scroll-cue {
    0% { opacity: 1; top: 6px; }
    70% { opacity: 0; top: 16px; }
    100% { opacity: 0; top: 6px; }
}

/* =========================================================
   TICKER
   ========================================================= */

.ticker-section {
    background: var(--panel);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
    overflow: hidden;
    position: relative;
}

.ticker-tag {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    display: flex;
    align-items: center;
    background: var(--black);
    padding: 0 16px;
    font-size: 9px;
    letter-spacing: 1.5px;
    color: var(--amber);
    font-weight: 700;
    z-index: 2;
    border-right: 1px solid var(--border-bright);
}

.ticker-wrap {
    overflow: hidden;
    white-space: nowrap;
    padding-left: 190px;
}

.ticker-track {
    display: inline-flex;
    animation: ticker 45s linear infinite;
}

.ticker-track:hover { animation-play-state: paused; }

@keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 0.5px;
    color: var(--text-dim);
    padding: 0 30px;
    border-right: 1px solid var(--border);
}

.ticker-item .tag {
    color: var(--green);
    font-weight: 700;
}

.ticker-item .tag.warn { color: var(--amber); }
.ticker-item .tag.crit { color: var(--red); }

/* =========================================================
   SECTIONS (shared)
   ========================================================= */

section {
    padding: 110px 40px;
    background-color: var(--black);
    position: relative;
}

.section-inner {
    max-width: var(--max);
    margin: 0 auto;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--text-faint);
    text-transform: uppercase;
    margin-bottom: 18px;
}

.section-label .idx { color: var(--amber); font-weight: 700; }
.section-label .line { flex: 1; height: 1px; background: var(--border-bright); }

section h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    letter-spacing: -0.3px;
    margin-bottom: 20px;
    max-width: 700px;
}

section > .section-inner > p.section-intro {
    font-size: 15px;
    color: var(--text-dim);
    max-width: 640px;
    line-height: 1.75;
    margin: 0 0 60px;
    font-family: var(--font-mono);
}

#products, #about { background: linear-gradient(180deg, #05070a 0%, #090c10 100%); }
#ops { background: var(--black); }
#solutions { background: linear-gradient(180deg, #090c10 0%, #05070a 100%); }

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   DOSSIER CARDS (AI Features)
   ========================================================= */

.dossier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.dossier-card {
    background: var(--panel);
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: background 0.25s ease;
}

.dossier-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 176, 32, 0.06) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.dossier-card:hover { background: var(--panel-alt); }
.dossier-card:hover::before { opacity: 1; }

.dossier-card__meta {
    display: flex;
    justify-content: space-between;
    font-size: 9px;
    letter-spacing: 1px;
    color: var(--text-faint);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.dossier-card__meta .stamp {
    color: var(--red);
    border: 1px solid var(--red);
    padding: 2px 6px;
    transform: rotate(-2deg);
}

.dossier-card h3 {
    color: var(--amber);
    font-size: 15px;
    margin-bottom: 14px;
    font-family: var(--font-mono);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.dossier-card p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--text-dim);
}

/* =========================================================
   OPERATIONS MAP
   ========================================================= */

.ops-wrap {
    position: relative;
    border: 1px solid var(--border);
    background: var(--panel);
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 32px 32px;
    padding: 60px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 460px;
}

.ops-disclaimer {
    text-align: center;
    font-size: 10px;
    letter-spacing: 1.5px;
    color: var(--text-faint);
    text-transform: uppercase;
    margin-top: 18px;
}

.ops-map {
    width: 100%;
    max-width: 640px;
    height: 380px;
    position: relative;
}

.ops-node {
    position: absolute;
    transform: translate(-50%, -50%);
    text-align: center;
}

.ops-node__ring {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green);
    margin: 0 auto;
    position: relative;
    box-shadow: 0 0 10px var(--green);
    cursor: pointer;
}

.ops-node__ring::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 1px solid var(--green);
    border-radius: 50%;
    opacity: 0.5;
    animation: node-pulse 2.4s ease-out infinite;
}

.ops-node:nth-child(3n)::before { animation-delay: 0.6s; }

@keyframes node-pulse {
    0% { transform: scale(0.4); opacity: 0.8; }
    100% { transform: scale(2.6); opacity: 0; }
}

.ops-node__label {
    font-size: 9px;
    letter-spacing: 1px;
    color: var(--text-dim);
    margin-top: 6px;
    white-space: nowrap;
}

.ops-core {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border: 1px solid var(--amber);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    letter-spacing: 1px;
    color: var(--amber);
    text-align: center;
    background: rgba(255, 176, 32, 0.05);
    z-index: 2;
}

.ops-core::after {
    content: '';
    position: absolute;
    inset: -14px;
    border: 1px dashed var(--border-bright);
    border-radius: 50%;
    animation: spin 40s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.ops-lines { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }

.ops-lines line {
    stroke: var(--border-bright);
    stroke-width: 1;
    stroke-dasharray: 4 4;
    animation: dash 3s linear infinite;
}

@keyframes dash { to { stroke-dashoffset: -40; } }

.ops-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: var(--black);
    border: 1px solid var(--amber);
    padding: 8px 10px;
    font-size: 9px;
    letter-spacing: 0.5px;
    color: var(--text);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 5;
}

.ops-node:hover .ops-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.ops-tooltip .g { color: var(--green); }

/* =========================================================
   STRATEGIC ADVANTAGES + STATS
   ========================================================= */

.adv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 46px;
    margin-bottom: 70px;
}

.adv-grid h3 {
    font-size: 17px;
    margin-bottom: 14px;
    font-weight: 700;
    color: var(--text);
}

.adv-grid h3 .num {
    color: var(--amber);
    font-family: var(--font-mono);
    font-size: 12px;
    margin-right: 10px;
}

.adv-grid p {
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-dim);
}

.stats-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    border: 1px solid var(--border);
    background: var(--panel);
}

.stat {
    padding: 30px;
    text-align: center;
    border-right: 1px solid var(--border);
}

.stat:last-child { border-right: none; }

.stat__value {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 700;
    color: var(--amber);
}

.stat__label {
    margin-top: 8px;
    font-size: 10px;
    letter-spacing: 1.5px;
    color: var(--text-faint);
    text-transform: uppercase;
}

/* =========================================================
   MISSION BRIEFS
   ========================================================= */

.brief-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.brief-card {
    border: 1px solid var(--border);
    background: var(--panel);
    padding: 26px;
    position: relative;
}

.brief-card__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 18px;
}

.brief-card__code {
    font-size: 10px;
    letter-spacing: 1.5px;
    color: var(--text-faint);
}

.brief-card__illustrative {
    font-size: 8.5px;
    letter-spacing: 1px;
    color: var(--red);
    border: 1px solid var(--red);
    padding: 3px 6px;
    text-transform: uppercase;
    white-space: nowrap;
}

.brief-card h3 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--text);
    font-weight: 700;
}

.brief-card p {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.7;
    margin: 0 0 16px;
}

.brief-card__stats {
    display: flex;
    gap: 18px;
    font-size: 10px;
    letter-spacing: 0.5px;
    color: var(--text-faint);
    border-top: 1px solid var(--border);
    padding-top: 14px;
}

.brief-card__stats strong { color: var(--green); display: block; font-size: 13px; font-family: var(--font-display); }

/* =========================================================
   COMMAND STRUCTURE
   ========================================================= */

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.team-card {
    text-align: left;
    padding: 26px;
    border: 1px solid var(--border);
    background: var(--panel);
}

.team-card__icon {
    width: 38px;
    height: 38px;
    border: 1px solid var(--border-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--amber);
    font-family: var(--font-display);
    font-weight: 700;
}

.team-card h3 {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.team-card p {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.7;
    margin: 0;
}

/* =========================================================
   ABOUT / MISSION
   ========================================================= */

.about-copy {
    max-width: 760px;
}

.about-copy p {
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 26px;
    color: var(--text-dim);
}

.stamp-box {
    background: var(--panel);
    padding: 32px;
    border-left: 3px solid var(--red);
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.stamp-box h3 {
    font-size: 17px;
    margin-bottom: 14px;
}

.stamp-box p {
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
    font-style: italic;
    color: var(--text);
}

.stamp-box__label {
    position: absolute;
    top: 14px;
    right: -34px;
    background: var(--red);
    color: #1a0505;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 4px 40px;
    transform: rotate(8deg);
    text-transform: uppercase;
}

/* =========================================================
   COMPLIANCE SEALS
   ========================================================= */

.compliance-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.seal {
    border: 1px solid var(--border-bright);
    padding: 16px 22px;
    text-align: center;
    min-width: 140px;
    background: var(--panel);
}

.seal__code {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
}

.seal__sub {
    font-size: 9px;
    letter-spacing: 1px;
    color: var(--text-faint);
    margin-top: 4px;
    text-transform: uppercase;
}

/* =========================================================
   CONTACT / FOOTER
   ========================================================= */

#contact {
    padding-bottom: 0;
}

.console {
    max-width: 640px;
    margin: 0 auto;
    border: 1px solid var(--border-bright);
    background: var(--panel);
}

.console__head {
    display: flex;
    justify-content: space-between;
    padding: 10px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 10px;
    letter-spacing: 1.5px;
    color: var(--text-faint);
    text-transform: uppercase;
}

.console__body {
    padding: 26px;
    text-align: left;
    font-size: 13.5px;
}

.console__line { margin-bottom: 10px; color: var(--text-dim); }
.console__line .prompt { color: var(--green); margin-right: 8px; }
.console__line a { color: var(--amber); text-decoration: none; border-bottom: 1px dotted var(--amber); }

footer {
    background: var(--black);
    padding: 40px;
    text-align: center;
    font-size: 11px;
    color: var(--text-faint);
    border-top: 1px solid var(--border);
    letter-spacing: 0.5px;
    margin-top: 100px;
}

footer .foot-row {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

footer p { margin: 6px 0 0; font-size: 10px; }

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {
    .ops-map { max-width: 100%; height: 420px; }
}

@media (max-width: 768px) {
    .classification-bar { font-size: 8px; padding: 0 12px; }
    header { padding: 10px 20px; top: 22px; }
    .logo img { height: 32px; }
    .logo-word { font-size: 13px; }

    nav ul {
        flex-direction: column;
        display: none;
        position: absolute;
        top: 60px;
        right: 20px;
        background: var(--black);
        padding: 12px;
        border: 1px solid var(--border-bright);
        gap: 0;
    }
    nav ul.active { display: flex; }
    nav ul li a { display: block; padding: 12px 16px; }
    .menu-toggle { display: block; }

    .hero { padding: 40px 20px 0; }
    .hero-readout { gap: 16px; }

    section { padding: 70px 20px; }
    .ticker-wrap { padding-left: 130px; }
    .ticker-tag { font-size: 8px; padding: 0 10px; }

    .stamp-box__label { display: none; }
    footer .foot-row { flex-direction: column; gap: 8px; }
}
