:root {
    --ink: #f0f1ee;
    --muted: #999f9a;
    --dim: #676d68;
    --night: #101211;
    --panel: rgba(23, 25, 24, .96);
    --panel-2: #1a1d1b;
    --line: rgba(218, 224, 219, .11);
    --line-strong: rgba(218, 224, 219, .21);
    --acid: #d9ec8d;
    --mint: #72e3b2;
    --orange: #ff7048;
    --amber: #ffc65c;
    --cyan: #72dfff;
    --radius: 5px;
    --mono: "Terminus (TTF)", Terminus, "DejaVu Sans Mono", "Liberation Mono", "Ubuntu Mono", ui-monospace, monospace;
    --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

html {
    scroll-behavior: smooth;
    scrollbar-color: #344038 var(--night);
}

body {
    margin: 0;
    min-width: 320px;
    background:
        radial-gradient(circle at 48% 16%, rgba(215, 225, 218, .045), transparent 30rem),
        linear-gradient(180deg, #121413 0%, #0d0f0e 100%);
    color: var(--ink);
    font-family: var(--sans);
    -webkit-font-smoothing: antialiased;
}

button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }

::selection { color: #07100b; background: var(--acid); }

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 1rem;
    left: 1rem;
    padding: .75rem 1rem;
    color: #061009;
    background: var(--acid);
    transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.ambient-grid {
    position: fixed;
    z-index: -2;
    inset: 0;
    opacity: .19;
    background-image:
        linear-gradient(rgba(220, 226, 221, .024) 1px, transparent 1px),
        linear-gradient(90deg, rgba(220, 226, 221, .024) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 90%);
}

.noise {
    position: fixed;
    z-index: 20;
    inset: 0;
    pointer-events: none;
    opacity: .025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}

.site-header {
    position: sticky;
    z-index: 30;
    top: 0;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    min-height: 74px;
    padding: 0 clamp(1rem, 2.6vw, 3.25rem);
    border-bottom: 1px solid var(--line);
    background: rgba(15, 17, 16, .9);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    gap: .72rem;
    align-items: center;
    text-decoration: none;
}

.brand-mark {
    display: grid;
    flex: 0 0 auto;
    width: 37px;
    height: 37px;
    place-items: center;
    color: var(--mint);
}

.brand-mark svg { width: 100%; overflow: visible; }
.brand-mark svg circle, .brand-mark svg path { fill: none; stroke: currentColor; stroke-width: 1.25; }
.brand-mark svg .brand-ping { fill: var(--acid); stroke: #071009; stroke-width: 1; }

.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font-family: var(--mono); font-size: .92rem; letter-spacing: -.035em; }
.brand-copy strong span { color: var(--mint); }
.brand-copy small { margin-top: .36rem; color: var(--dim); font-family: var(--mono); font-size: .48rem; letter-spacing: .17em; }

.main-nav {
    display: flex;
    justify-content: center;
    gap: clamp(1.1rem, 2.6vw, 2.8rem);
}
.main-nav a {
    position: relative;
    padding: 1.75rem 0;
    color: #727c75;
    font-family: var(--mono);
    font-size: .63rem;
    letter-spacing: .1em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .2s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--ink); }
.main-nav a.active::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 2px;
    background: var(--acid);
    box-shadow: 0 0 12px var(--acid);
    content: "";
}

.header-tools { display: flex; align-items: center; gap: .65rem; }
.network-state {
    display: flex;
    gap: .45rem;
    align-items: center;
    margin-right: .4rem;
    color: var(--muted);
    font-family: var(--mono);
    font-size: .6rem;
    text-transform: uppercase;
}
.network-state b { color: var(--mint); font-weight: 500; }
.pulse-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 0 rgba(104, 251, 195, .45); animation: pulse 2s infinite; }

.icon-button, .compact-search {
    display: grid;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 3px;
    color: var(--muted);
    background: rgba(255,255,255,.015);
    cursor: pointer;
    place-items: center;
}
.icon-button:hover, .compact-search:hover { color: var(--acid); border-color: rgba(223, 255, 114, .4); }
.icon-button[aria-pressed="true"] { color: var(--acid); background: rgba(223,255,114,.07); }
.icon-button svg, .compact-search svg { width: 16px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-width: 1.5; }

.search-trigger {
    display: flex;
    gap: .55rem;
    align-items: center;
    min-width: 154px;
    height: 34px;
    padding: 0 .55rem 0 .7rem;
    border: 1px solid var(--line);
    border-radius: 3px;
    color: var(--dim);
    background: rgba(255,255,255,.015);
    cursor: pointer;
}
.search-trigger:hover { border-color: var(--line-strong); color: var(--muted); }
.search-trigger svg { width: 14px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.search-trigger span { flex: 1; text-align: left; font-size: .68rem; }
kbd {
    padding: .18rem .33rem;
    border: 1px solid var(--line);
    border-radius: 2px;
    color: #657168;
    background: #111713;
    font: .57rem var(--mono);
}
.utc-clock {
    margin-left: .35rem;
    color: var(--ink);
    font: .74rem var(--mono);
    letter-spacing: .04em;
}
.utc-clock small { color: var(--mint); font-size: .5rem; }

.briefing-bar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
    min-height: 44px;
    padding: .5rem clamp(1rem, 2.6vw, 3.25rem);
    border-bottom: 1px solid rgba(223,255,114,.13);
    background: linear-gradient(90deg, rgba(223,255,114,.05), rgba(104,251,195,.012));
}
.briefing-kicker, .eyebrow {
    display: flex;
    gap: .5rem;
    align-items: center;
    color: var(--acid);
    font: .57rem var(--mono);
    letter-spacing: .12em;
    text-transform: uppercase;
}
.briefing-kicker > span { width: 5px; height: 5px; background: var(--acid); box-shadow: 0 0 10px var(--acid); transform: rotate(45deg); }
.briefing-bar > p { margin: 0; overflow: hidden; color: #aab3ab; font-size: .7rem; text-overflow: ellipsis; white-space: nowrap; }
.refresh-state { display: flex; gap: .5rem; align-items: center; color: var(--dim); font: .55rem var(--mono); text-transform: uppercase; }
.refresh-state svg { width: 26px; height: 26px; transform: rotate(-90deg); }
.refresh-state circle { fill: none; stroke: var(--line); stroke-width: 2; }
.refresh-state #refresh-ring { stroke: var(--mint); stroke-dasharray: 88; stroke-dashoffset: 0; transition: stroke-dashoffset 1s linear; }
.refresh-state b { color: var(--muted); font-weight: 500; }

.signal-ticker {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    min-height: 34px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: #111312;
}
.ticker-label { display: flex; gap: .45rem; align-items: center; height: 100%; padding: 0 1rem 0 clamp(1rem, 2.6vw, 3.25rem); border-right: 1px solid var(--line); color: var(--ink); font: .48rem var(--mono); letter-spacing: .09em; text-transform: uppercase; }
.ticker-label span { width: 5px; height: 5px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 8px var(--orange); }
.ticker-viewport { min-width: 0; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent); }
.ticker-track { display: flex; width: max-content; will-change: transform; animation: ticker-scroll var(--ticker-duration, 58s) linear infinite; }
.ticker-track:hover { animation-play-state: paused; }
.ticker-set { display: flex; align-items: center; }
.ticker-set a { display: flex; gap: .55rem; align-items: center; padding: 0 1rem; color: #979e98; font-size: .53rem; text-decoration: none; white-space: nowrap; }
.ticker-set a:hover span { color: var(--ink); }
.ticker-set time { color: #59605b; font: .43rem var(--mono); }
.ticker-set b { color: var(--mint); font: .43rem var(--mono); font-weight: 500; text-transform: uppercase; }
.ticker-set i { margin-left: .4rem; color: #39403b; font-size: .35rem; font-style: normal; }
.signal-ticker > a { height: 100%; padding: 0 clamp(1rem, 2.6vw, 3.25rem) 0 .9rem; border-left: 1px solid var(--line); color: #7e8680; font: .46rem var(--mono); line-height: 34px; text-decoration: none; text-transform: uppercase; white-space: nowrap; }
.signal-ticker > a:hover { color: var(--acid); }

.dashboard-shell, .deep-dive {
    width: min(1920px, 100%);
    margin: 0 auto;
    padding: clamp(2.4rem, 4vw, 4.5rem) clamp(1rem, 2.6vw, 3.25rem);
}

.section-heading {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: flex-end;
    margin-bottom: 1.65rem;
}
.eyebrow { margin-bottom: .85rem; color: var(--muted); }
.eyebrow span { color: var(--acid); }
.section-heading h1, .section-heading h2, .methodology-strip h2 {
    margin: 0;
    font-size: clamp(2rem, 3.5vw, 4.2rem);
    font-weight: 430;
    letter-spacing: -.06em;
    line-height: .95;
}
.section-heading h1 em, .section-heading h2 em, .methodology-strip h2 em { color: var(--mint); font-family: Georgia, serif; font-weight: 400; }
.section-heading > div > p { max-width: 670px; margin: 1rem 0 0; color: var(--muted); font-size: .84rem; line-height: 1.65; }

.view-controls { display: flex; gap: .7rem; align-items: center; }
.view-controls > span { color: var(--dim); font: .54rem var(--mono); letter-spacing: .12em; }
.segmented { display: flex; padding: 3px; border: 1px solid var(--line); border-radius: 3px; background: #090d0b; }
.segmented button, .filter-row button {
    border: 0;
    color: var(--dim);
    background: transparent;
    cursor: pointer;
    font: .58rem var(--mono);
    letter-spacing: .05em;
    text-transform: uppercase;
}
.segmented button { min-width: 40px; padding: .48rem .55rem; border-radius: 2px; }
.segmented button:hover, .segmented button.active { color: #061009; background: var(--acid); }
.refresh-button {
    display: flex;
    gap: .45rem;
    align-items: center;
    min-height: 35px;
    padding: 0 .8rem;
    border: 1px solid var(--line);
    border-radius: 3px;
    color: var(--muted);
    background: transparent;
    cursor: pointer;
    font: .58rem var(--mono);
    text-transform: uppercase;
}
.refresh-button:hover { color: var(--acid); border-color: rgba(223,255,114,.35); }
.refresh-button.loading svg { animation: spin .8s linear infinite; }
.refresh-button svg { width: 14px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-width: 1.4; }

.dashboard-grid {
    display: grid;
    grid-template-columns: minmax(230px, 272px) minmax(510px, 1fr) minmax(330px, 405px);
    gap: 10px;
    align-items: stretch;
}
.left-rail, .center-stage { display: flex; flex-direction: column; gap: 10px; min-width: 0; }

.panel {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(27,29,28,.97), rgba(19,21,20,.98));
    box-shadow: inset 0 1px rgba(255,255,255,.018), 0 18px 60px rgba(0,0,0,.11);
}
.panel::before {
    position: absolute;
    z-index: 2;
    top: -1px;
    left: 18px;
    width: 32px;
    height: 1px;
    background: var(--mint);
    content: "";
    opacity: .42;
}
.panel-header {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    min-height: 54px;
    padding: .85rem 1rem;
    border-bottom: 1px solid var(--line);
}
.panel-header > div:first-child { display: flex; gap: .65rem; align-items: baseline; min-width: 0; }
.panel-header h2 { margin: 0; font-size: .7rem; font-weight: 570; letter-spacing: .02em; text-transform: uppercase; white-space: nowrap; }
.panel-index { color: var(--mint); font: .52rem var(--mono); letter-spacing: .08em; }
.panel-header.compact { min-height: 48px; padding-top: .7rem; padding-bottom: .7rem; }
.tiny-label { color: var(--dim); font: .48rem var(--mono); letter-spacing: .1em; }
.live-chip, .stream-state {
    display: inline-flex;
    gap: .4rem;
    align-items: center;
    color: var(--mint);
    font: .5rem var(--mono);
    letter-spacing: .08em;
    text-transform: uppercase;
}
.live-chip i, .stream-state i { width: 5px; height: 5px; border-radius: 50%; background: currentColor; box-shadow: 0 0 8px currentColor; }

.index-panel { min-height: 314px; }
.index-gauge { position: relative; height: 148px; padding: 1rem .8rem 0; }
.index-gauge svg { width: 100%; height: 132px; overflow: visible; }
.gauge-track, .gauge-value { fill: none; stroke-width: 10; stroke-linecap: round; }
.gauge-track { stroke: rgba(255,255,255,.06); }
.gauge-value { stroke: url(#gauge-gradient); stroke-dasharray: 267; stroke-dashoffset: 267; filter: drop-shadow(0 0 7px rgba(223,255,114,.2)); transition: stroke-dashoffset 1.2s cubic-bezier(.2,.8,.2,1); }
.gauge-ticks path { fill: none; stroke: rgba(226,238,225,.25); stroke-width: 1.5; }
.gauge-number { position: absolute; inset: 68px 0 auto; text-align: center; }
.gauge-number strong { font: 2.7rem var(--mono); font-weight: 360; letter-spacing: -.09em; }
.gauge-number span { margin-left: .18rem; color: var(--dim); font: .57rem var(--mono); }
.index-level { display: flex; justify-content: space-between; align-items: center; margin: 0 1rem; padding: .72rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.index-level span { color: var(--dim); font: .52rem var(--mono); letter-spacing: .05em; text-transform: uppercase; }
.index-level strong { color: var(--acid); font: .65rem var(--mono); letter-spacing: .08em; }
.microcopy { margin: .75rem 1rem 1rem; color: #606b63; font-size: .6rem; line-height: 1.5; }

.metric-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mini-metric { position: relative; min-height: 105px; padding: .85rem; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
.mini-metric::after { position: absolute; right: -16px; bottom: -22px; width: 60px; height: 60px; border: 1px solid rgba(104,251,195,.07); border-radius: 50%; box-shadow: 0 0 0 12px rgba(104,251,195,.025); content: ""; }
.mini-metric > span { display: block; color: var(--dim); font: .49rem var(--mono); letter-spacing: .09em; text-transform: uppercase; }
.mini-metric strong { display: block; margin: .55rem 0 .3rem; font: 1.55rem var(--mono); font-weight: 400; letter-spacing: -.07em; }
.mini-metric small { color: #68736b; font: .48rem var(--mono); }
.mini-metric.hot strong { color: var(--orange); }

.regions-panel { flex: 1; min-height: 245px; }
.region-list { display: flex; flex-direction: column; gap: .78rem; padding: 1rem; }
.region-item { display: grid; grid-template-columns: 1fr auto; gap: .42rem .65rem; align-items: center; }
.region-item > span { overflow: hidden; font-family: var(--mono); font-size: .67rem; text-overflow: ellipsis; white-space: nowrap; }
.region-item > b { color: var(--muted); font: .57rem var(--mono); font-weight: 400; }
.region-bar { grid-column: 1 / -1; height: 3px; overflow: hidden; background: rgba(255,255,255,.05); }
.region-bar i { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--mint), var(--acid)); box-shadow: 0 0 8px rgba(104,251,195,.4); transition: width .9s ease; }

.radar-panel { min-height: 570px; }
.radar-header { min-height: 62px; }
.radar-header > div:first-child { flex-wrap: wrap; }
.map-subtitle { flex-basis: 100%; margin-left: 1.55rem; color: var(--dim); font: .48rem var(--mono); }
.map-legend { display: flex; gap: 1rem; align-items: center; color: var(--dim); font: .49rem var(--mono); text-transform: uppercase; }
.map-legend > span { display: flex; gap: .35rem; align-items: center; }
.dot { width: 5px; height: 5px; border-radius: 50%; }
.dot.conflict { background: var(--mint); }
.dot.hazard { background: var(--cyan); }
.dot.critical { background: var(--orange); }

.radar-map { position: relative; height: 455px; overflow: hidden; background: #07100b; isolation: isolate; }
.radar-map::after { position: absolute; z-index: 9; inset: 0; border: 1px solid rgba(104,251,195,.04); box-shadow: inset 0 0 90px rgba(0,0,0,.55); pointer-events: none; content: ""; }
.world-map { position: absolute; z-index: 1; inset: 0; width: 100%; height: 100%; }
.map-grid-fill { opacity: .38; }
#map-grid path, .lat-lines path { stroke: rgba(113, 219, 159, .08); stroke-width: 1; vector-effect: non-scaling-stroke; }
.lat-lines path { stroke-dasharray: 3 9; }
.continents path { fill: rgba(77, 130, 99, .13); stroke: rgba(114, 211, 154, .28); stroke-width: 1; vector-effect: non-scaling-stroke; }
.radar-rings ellipse, .axis { fill: none; stroke: rgba(104,251,195,.08); stroke-width: 1; stroke-dasharray: 4 7; vector-effect: non-scaling-stroke; }
.axis { stroke: rgba(104,251,195,.1); stroke-dasharray: 2 7; }
.scan-glow { position: absolute; z-index: 0; top: 50%; left: 50%; width: 450px; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(104,251,195,.06), transparent 67%); transform: translate(-50%,-50%); }
.radar-sweep {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    width: min(60vw, 500px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: conic-gradient(from 230deg, transparent 0 76%, rgba(111,255,190,.015) 82%, rgba(111,255,190,.14) 99.6%, rgba(202,255,119,.55) 100%);
    transform: translate(-50%,-50%);
    animation: sweep 7s linear infinite;
    transform-origin: center;
    pointer-events: none;
}
.blip-layer { position: absolute; z-index: 5; inset: 0; }
.map-blip {
    --blip-color: var(--mint);
    position: absolute;
    width: 12px;
    height: 12px;
    padding: 0;
    border: 1px solid #07100b;
    border-radius: 50%;
    background: var(--blip-color);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--blip-color) 18%, transparent), 0 0 15px var(--blip-color);
    cursor: pointer;
    transform: translate(-50%,-50%);
    transition: transform .2s ease, z-index 0s;
}
.map-blip::after { position: absolute; inset: -7px; border: 1px solid var(--blip-color); border-radius: 50%; content: ""; opacity: .5; animation: blip 2.8s ease-out infinite; }
.map-blip:hover, .map-blip.active { z-index: 4; transform: translate(-50%,-50%) scale(1.35); }
.map-blip.natural { --blip-color: var(--cyan); }
.map-blip.priority { --blip-color: var(--orange); width: 14px; height: 14px; }
.map-coordinate { position: absolute; z-index: 6; color: rgba(152,184,163,.34); font: .42rem var(--mono); pointer-events: none; }
.map-coordinate.top-left { top: 10px; left: 10px; }
.map-coordinate.top-right { top: 10px; right: 10px; }
.map-coordinate.bottom-left { bottom: 10px; left: 10px; }
.map-coordinate.bottom-right { right: 10px; bottom: 10px; }
.scan-status { position: absolute; z-index: 7; top: 14px; left: 50%; display: flex; gap: .4rem; align-items: center; padding: .38rem .55rem; border: 1px solid rgba(104,251,195,.13); color: rgba(147,194,165,.6); background: rgba(4,10,6,.58); font: .44rem var(--mono); letter-spacing: .08em; text-transform: uppercase; transform: translateX(-50%); }
.scan-status span { width: 4px; height: 4px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 7px var(--mint); }
.map-tooltip { position: absolute; z-index: 12; width: min(250px, 70%); padding: .7rem; border: 1px solid rgba(104,251,195,.25); border-radius: 3px; color: #bec9c0; background: rgba(6,11,8,.96); box-shadow: 0 12px 30px rgba(0,0,0,.35); pointer-events: none; }
.map-tooltip b { display: block; margin-bottom: .35rem; color: var(--ink); font-size: .65rem; line-height: 1.35; }
.map-tooltip span { color: var(--mint); font: .47rem var(--mono); text-transform: uppercase; }
.map-footer { display: flex; justify-content: space-between; gap: 1rem; padding: .65rem 1rem; border-top: 1px solid var(--line); color: var(--dim); font: .47rem var(--mono); text-transform: uppercase; }
.map-footer b { color: var(--muted); font-weight: 500; }

.velocity-panel { flex: 1; min-height: 170px; }
.velocity-key { display: flex; gap: .5rem; align-items: center; color: var(--dim); font: .45rem var(--mono); text-transform: uppercase; }
.velocity-key i { width: 5px; height: 5px; background: var(--mint); }
.velocity-key i:nth-of-type(2) { margin-left: .4rem; background: var(--orange); }
.timeline-chart { display: flex; gap: 6px; align-items: stretch; height: 124px; padding: 1rem 1rem .6rem; }
.time-column { position: relative; display: flex; flex: 1; flex-direction: column; justify-content: flex-end; min-width: 6px; border-bottom: 1px solid var(--line); }
.time-column .bars { position: relative; display: flex; align-items: flex-end; height: 82px; }
.time-column i { position: absolute; right: 18%; bottom: 0; left: 18%; min-height: 2px; background: linear-gradient(to top, rgba(104,251,195,.3), var(--mint)); transform: scaleY(0); transform-origin: bottom; animation: bar-in .65s ease forwards; }
.time-column i.high { right: 30%; left: 30%; z-index: 1; background: var(--orange); opacity: .75; }
.time-column span { height: 16px; padding-top: .3rem; color: #4d5850; font: .39rem var(--mono); text-align: center; }

.right-rail, .feed-panel { min-width: 0; height: 100%; }
.feed-panel { display: flex; flex-direction: column; min-height: 750px; max-height: 750px; }
.feed-tools { display: flex; gap: .5rem; align-items: center; padding: .7rem .8rem; border-bottom: 1px solid var(--line); }
.filter-row { display: flex; flex: 1; gap: .15rem; overflow-x: auto; }
.filter-row button { padding: .42rem .55rem; border: 1px solid transparent; border-radius: 2px; font-size: .49rem; white-space: nowrap; }
.filter-row button:hover, .filter-row button.active { border-color: var(--line-strong); color: var(--ink); background: rgba(255,255,255,.035); }
.compact-search { width: 29px; height: 29px; }
.event-feed { flex: 1; overflow: auto; scrollbar-width: thin; }
.event-card { position: relative; display: grid; grid-template-columns: 42px 1fr; gap: .75rem; padding: 1rem .9rem; border: 0; border-bottom: 1px solid var(--line); color: inherit; background: transparent; cursor: pointer; font-family: var(--mono); font-variant-ligatures: none; text-align: left; transition: background .18s ease; }
.event-card:hover, .event-card.active { background: rgba(104,251,195,.035); }
.event-card.active::after { position: absolute; top: 0; bottom: 0; left: 0; width: 2px; background: var(--acid); content: ""; }
.event-time { padding-top: .15rem; color: #68756c; font: .52rem var(--mono); }
.event-time small { display: block; margin-top: .25rem; color: #424b45; font-size: .4rem; }
.event-copy { min-width: 0; }
.event-labels { display: flex; justify-content: space-between; gap: .5rem; align-items: center; margin-bottom: .42rem; }
.event-category { padding: .22rem .35rem; border: 1px solid rgba(104,251,195,.16); border-radius: 2px; color: var(--mint); font: .43rem var(--mono); letter-spacing: .06em; text-transform: uppercase; }
.event-category.climate, .event-category.seismic { color: var(--cyan); border-color: rgba(114,223,255,.2); }
.event-category.high { color: var(--orange); border-color: rgba(255,112,72,.25); }
.severity-dots { display: flex; gap: 2px; }
.severity-dots i { width: 3px; height: 8px; background: rgba(255,255,255,.08); }
.severity-dots i.on { background: var(--muted); }
.severity-dots.high i.on { background: var(--orange); }
.event-card h3 { margin: 0; color: #d7ddd5; font-size: .78rem; font-weight: 520; line-height: 1.5; }
.event-byline { display: flex; gap: .4rem; align-items: center; margin-top: .58rem; color: #667069; font: .5rem var(--mono); text-transform: uppercase; }
.event-byline span:first-child { max-width: 52%; overflow: hidden; color: #758178; text-overflow: ellipsis; white-space: nowrap; }
.event-byline i { width: 2px; height: 2px; border-radius: 50%; background: #49524b; }
.event-location { max-width: 43%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.load-more { min-height: 44px; border: 0; border-top: 1px solid var(--line); color: var(--muted); background: rgba(255,255,255,.015); cursor: pointer; font: .53rem var(--mono); letter-spacing: .05em; text-transform: uppercase; }
.load-more:hover { color: var(--acid); background: rgba(223,255,114,.025); }
.load-more span { margin-left: .3rem; color: var(--mint); }
.load-more[hidden] { display: none; }

.data-skeleton, .feed-skeleton b, .feed-skeleton i { display: block; height: 8px; border-radius: 10px; background: linear-gradient(90deg, rgba(255,255,255,.035), rgba(255,255,255,.075), rgba(255,255,255,.035)); background-size: 200% 100%; animation: shimmer 1.5s infinite; }
.data-skeleton.short { width: 55%; }
.data-skeleton.medium { width: 75%; }
.data-skeleton.chart { width: 100%; height: 100%; border-radius: 3px; }
.feed-skeleton { display: grid; grid-template-columns: 40px 1fr; gap: .8rem; padding: 1rem; border-bottom: 1px solid var(--line); }
.feed-skeleton > span { width: 28px; height: 10px; background: rgba(255,255,255,.035); }
.feed-skeleton div { display: flex; flex-direction: column; gap: .55rem; }
.feed-skeleton b { width: 35%; }
.feed-skeleton i { width: 95%; }
.feed-skeleton i:last-child { width: 64%; }

.deep-dive { padding-top: 1rem; }
.section-heading.secondary { align-items: end; padding-top: 2rem; border-top: 1px solid var(--line); }
.section-heading.secondary h2 { font-size: clamp(1.8rem, 3vw, 3.3rem); }
.section-heading.secondary > p { max-width: 480px; margin: 0; color: var(--muted); font-size: .72rem; line-height: 1.65; }
.analysis-grid { display: grid; grid-template-columns: 1fr 1.15fr .9fr; gap: 10px; }
.analysis-grid > .panel { min-height: 405px; }
.trend-cloud { display: flex; flex-wrap: wrap; gap: .55rem; align-content: flex-start; min-height: 95px; padding: 1rem; }
.trend-chip { display: inline-flex; gap: .45rem; align-items: center; padding: .5rem .65rem; border: 1px solid var(--line); border-radius: 2px; color: #b2bbb4; background: rgba(255,255,255,.017); font: .66rem var(--mono); font-variant-ligatures: none; }
.trend-chip:hover { border-color: rgba(104,251,195,.32); }
.trend-chip b { color: var(--mint); font: .48rem var(--mono); font-weight: 400; }
.panel-rule { height: 1px; margin: 0 1rem; background: var(--line); }
.trend-panel > h3 { margin: 1rem 1rem .6rem; color: var(--dim); font: .49rem var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.category-bars { display: flex; flex-direction: column; gap: .6rem; padding: .4rem 1rem 1rem; }
.category-row { display: grid; grid-template-columns: 86px 1fr 24px; gap: .55rem; align-items: center; }
.category-row span { overflow: hidden; color: #879189; font: .54rem var(--mono); text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.category-row > i { height: 4px; overflow: hidden; background: rgba(255,255,255,.045); }
.category-row > i b { display: block; height: 100%; background: var(--mint); transform: scaleX(0); transform-origin: left; animation: scale-in .8s ease forwards; }
.category-row > b { color: var(--muted); font: .54rem var(--mono); font-weight: 400; text-align: right; }

.focus-panel { background: radial-gradient(circle at 50% 35%, rgba(104,251,195,.055), transparent 48%), var(--panel); }
.focus-status, .source-summary { color: var(--dim); font: .46rem var(--mono); letter-spacing: .08em; }
.focus-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 335px; padding: 2rem; text-align: center; }
.focus-reticle { position: relative; width: 70px; height: 70px; margin-bottom: 1.2rem; border: 1px solid rgba(104,251,195,.2); border-radius: 50%; box-shadow: 0 0 0 12px rgba(104,251,195,.025), 0 0 0 24px rgba(104,251,195,.015); }
.focus-reticle::before, .focus-reticle::after { position: absolute; background: rgba(104,251,195,.22); content: ""; }
.focus-reticle::before { top: 50%; left: -18px; width: 106px; height: 1px; }
.focus-reticle::after { top: -18px; left: 50%; width: 1px; height: 106px; }
.focus-reticle span { position: absolute; top: 50%; left: 50%; width: 6px; height: 6px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 12px var(--acid); transform: translate(-50%,-50%); }
.focus-empty h3 { margin: .5rem 0; font-size: .78rem; font-weight: 540; }
.focus-empty p { max-width: 360px; margin: .2rem 0 0; color: #747d76; font: .69rem/1.6 var(--mono); }
.focus-content { padding: 1.2rem; }
.focus-meta { display: flex; justify-content: space-between; gap: 1rem; color: var(--muted); font: .49rem var(--mono); text-transform: uppercase; }
.focus-meta span { color: var(--mint); }
.focus-content h3 { margin: 1.1rem 0 .7rem; font-size: 1.15rem; font-weight: 480; line-height: 1.35; }
.focus-content > p { min-height: 56px; margin: 0; color: #929b94; font: .74rem/1.65 var(--mono); font-variant-ligatures: none; }
.focus-stats { display: grid; grid-template-columns: 1fr 1fr; margin: 1rem 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.focus-stats > div { min-width: 0; padding: .72rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.focus-stats dt { color: var(--dim); font: .49rem var(--mono); text-transform: uppercase; }
.focus-stats dd { margin: .35rem 0 0; overflow: hidden; color: #bac2bc; font: .64rem var(--mono); text-overflow: ellipsis; white-space: nowrap; }
.focus-content > a { display: flex; justify-content: space-between; padding: .7rem .8rem; border: 1px solid rgba(223,255,114,.25); color: var(--acid); text-decoration: none; font: .54rem var(--mono); text-transform: uppercase; }
.focus-content > a:hover { color: #071009; background: var(--acid); }

.source-list { display: flex; flex-direction: column; padding: .5rem 1rem; }
.source-row { display: grid; grid-template-columns: 8px 1fr auto; gap: .65rem; align-items: center; padding: .72rem 0; border-bottom: 1px solid var(--line); }
.source-row > i { width: 6px; height: 6px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 7px rgba(104,251,195,.5); }
.source-row > div { min-width: 0; }
.source-row.degraded > i { background: var(--orange); box-shadow: 0 0 7px rgba(255,112,72,.4); }
.source-row b { display: block; font: 520 .66rem var(--mono); }
.source-row small { display: block; margin-top: .25rem; overflow: hidden; color: #737c75; font: .49rem var(--mono); text-overflow: ellipsis; white-space: nowrap; }
.source-row > span { color: #7a857d; font: .5rem var(--mono); }
.integrity-note { display: flex; gap: .7rem; align-items: flex-start; margin: .5rem 1rem 1rem; padding: .75rem; border: 1px solid rgba(104,251,195,.1); background: rgba(104,251,195,.025); }
.integrity-note svg { flex: 0 0 auto; width: 18px; fill: none; stroke: var(--mint); stroke-width: 1.3; }
.integrity-note p { margin: 0; color: #727d75; font: .59rem/1.55 var(--mono); }
.integrity-note b { display: block; margin-bottom: .17rem; color: #9ca79f; font: .46rem var(--mono); text-transform: uppercase; }

.methodology-strip {
    display: grid;
    grid-template-columns: .9fr 1fr 1.35fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
    padding: clamp(2.5rem, 5vw, 5rem) clamp(1rem, 4vw, 5rem);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: linear-gradient(105deg, rgba(104,251,195,.045), transparent 45%, rgba(223,255,114,.025));
}
.methodology-strip h2 { margin-top: .7rem; font-size: clamp(1.55rem, 2.5vw, 2.8rem); }
.methodology-strip > p { color: var(--muted); font-size: .72rem; line-height: 1.7; }
.method-cards { display: flex; align-items: center; justify-content: flex-end; }
.method-cards span { display: flex; flex-direction: column; gap: .4rem; min-width: 68px; color: #7c877f; font: .52rem var(--mono); text-transform: uppercase; }
.method-cards span b { color: var(--mint); font-size: .65rem; font-weight: 500; }
.method-cards i { width: clamp(12px, 2vw, 38px); height: 1px; margin: 0 .45rem; background: linear-gradient(90deg, var(--line-strong), transparent); }

.site-footer { display: flex; justify-content: space-between; gap: 2rem; align-items: center; padding: 1.5rem clamp(1rem, 2.6vw, 3.25rem); color: var(--dim); font: .5rem var(--mono); text-transform: uppercase; }
.footer-brand { opacity: .65; }
.brand-mark.mini { width: 8px; height: 8px; border: 1px solid var(--mint); border-radius: 50%; box-shadow: 0 0 7px var(--mint); }
.site-footer p { margin: 0; text-align: center; }
.site-footer > div { display: flex; gap: .5rem; }
#data-mode { color: var(--mint); }

.command-dialog {
    width: min(720px, calc(100% - 2rem));
    max-height: min(680px, calc(100vh - 3rem));
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(104,251,195,.25);
    border-radius: 5px;
    color: var(--ink);
    background: #090e0b;
    box-shadow: 0 25px 100px rgba(0,0,0,.7);
}
.command-dialog::backdrop { background: rgba(1,4,2,.78); backdrop-filter: blur(5px); }
.command-shell { margin: 0; }
.command-input-wrap { display: flex; gap: .75rem; align-items: center; padding: .8rem 1rem; border-bottom: 1px solid var(--line); }
.command-input-wrap svg { width: 18px; fill: none; stroke: var(--mint); stroke-width: 1.5; }
.command-input-wrap input { flex: 1; min-width: 0; border: 0; outline: 0; color: var(--ink); background: transparent; font-size: .78rem; }
.command-input-wrap input::placeholder { color: #4e5951; }
.command-input-wrap button { padding: .28rem .4rem; border: 1px solid var(--line); border-radius: 2px; color: var(--dim); background: #111713; cursor: pointer; font: .48rem var(--mono); }
.command-meta { display: flex; justify-content: space-between; padding: .55rem 1rem; border-bottom: 1px solid var(--line); color: var(--dim); font: .44rem var(--mono); }
.command-results { max-height: 520px; overflow: auto; }
.command-result { display: grid; grid-template-columns: 70px 1fr auto; gap: .8rem; align-items: center; width: 100%; padding: .8rem 1rem; border: 0; border-bottom: 1px solid var(--line); color: inherit; background: transparent; cursor: pointer; text-align: left; }
.command-result:hover { background: rgba(104,251,195,.04); }
.command-result > span { color: var(--mint); font: .45rem var(--mono); text-transform: uppercase; }
.command-result div { min-width: 0; }
.command-result b { display: block; overflow: hidden; font-size: .66rem; font-weight: 500; text-overflow: ellipsis; white-space: nowrap; }
.command-result small { display: block; margin-top: .3rem; color: var(--dim); font: .45rem var(--mono); }
.command-result > time { color: #677169; font: .46rem var(--mono); }
.command-empty { padding: 3rem 1rem; color: var(--dim); font-size: .67rem; text-align: center; }

.toast {
    position: fixed;
    z-index: 100;
    right: 1.2rem;
    bottom: 1.2rem;
    max-width: 340px;
    padding: .75rem 1rem;
    border: 1px solid var(--line-strong);
    border-left: 2px solid var(--mint);
    border-radius: 3px;
    color: #aeb7af;
    background: rgba(8,13,10,.96);
    box-shadow: 0 14px 40px rgba(0,0,0,.4);
    font-size: .63rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity .2s ease, transform .2s ease;
}
.toast.show { opacity: 1; transform: translateY(0); }

/* Live ranking */
.top-stories {
    margin-bottom: 10px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(22, 24, 23, .92);
}
.top-stories > header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 42px;
    padding: .65rem .9rem;
    border-bottom: 1px solid var(--line);
}
.top-stories > header > div { display: flex; gap: .55rem; align-items: center; }
.top-stories h2 { margin: 0; font-size: .62rem; font-weight: 580; letter-spacing: .055em; text-transform: uppercase; }
.top-stories > header > span { color: var(--dim); font: .46rem var(--mono); letter-spacing: .07em; text-transform: uppercase; }
.hot-pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 0 rgba(255,112,72,.45); animation: pulse-hot 2.2s infinite; }
.top-story-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.top-story, .top-story-skeleton {
    position: relative;
    min-width: 0;
    min-height: 154px;
    padding: 1rem;
    border-right: 1px solid var(--line);
}
.top-story:last-child, .top-story-skeleton:last-child { border-right: 0; }
.top-story { display: flex; flex-direction: column; color: inherit; text-decoration: none; transition: background .2s ease; }
.top-story:hover { background: rgba(255,255,255,.025); }
.story-rank { position: absolute; top: .75rem; right: .85rem; color: rgba(230,235,231,.08); font: 2.1rem var(--mono); letter-spacing: -.1em; }
.story-meta { position: relative; z-index: 1; display: flex; gap: .6rem; align-items: center; color: var(--dim); font: .44rem var(--mono); text-transform: uppercase; }
.story-meta span { color: var(--mint); }
.top-story h3 { position: relative; z-index: 1; margin: .8rem 1.2rem .85rem 0; font-size: .72rem; font-weight: 530; line-height: 1.42; }
.story-footer { display: flex; justify-content: space-between; gap: .5rem; align-items: center; margin-top: auto; color: var(--dim); font: .43rem var(--mono); text-transform: uppercase; }
.story-footer span { max-width: 65%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.story-footer b { color: #8e9690; font-weight: 500; }
.top-story-skeleton { background: linear-gradient(100deg, rgba(255,255,255,.015), rgba(255,255,255,.04), rgba(255,255,255,.015)); background-size: 200% 100%; animation: shimmer 1.5s infinite; }

.ad-placement {
    position: relative;
    display: grid;
    width: 100%;
    min-height: 92px;
    margin: 10px 0;
    overflow: hidden;
    border: 1px solid rgba(218,224,219,.08);
    border-radius: var(--radius);
    background: rgba(18,20,19,.72);
    place-items: center;
}
.ad-placement .ad-label { position: absolute; z-index: 1; top: 7px; left: 9px; color: #4b514d; font: .38rem var(--mono); letter-spacing: .09em; text-transform: uppercase; }
.ad-placement.ad-reserved::before { width: min(70%, 760px); height: 1px; background: linear-gradient(90deg, transparent, rgba(225,230,226,.08), transparent); content: ""; }
.ad-placement .adsbygoogle { width: 100%; min-height: 90px; }
.ad-article { max-width: 970px; margin: 4rem auto 0; }

/* Real map and transport layers */
.radar-panel { min-height: 715px; }
.radar-map.map-host { height: 600px; background: #111312; }
.radar-map.map-host::before { position: absolute; z-index: 3; top: -22%; right: 0; left: 0; height: 18%; background: linear-gradient(to bottom, transparent, rgba(114,227,178,.035), rgba(217,236,141,.09), transparent); content: ""; pointer-events: none; animation: map-scan 9s ease-in-out infinite; }
.intel-map { position: absolute; z-index: 1; inset: 0; }
.intel-map .maplibregl-canvas { filter: grayscale(1) brightness(.62) contrast(1.15); }
.intel-map .maplibregl-ctrl-bottom-left { bottom: 25px; }
.intel-map .maplibregl-ctrl-bottom-right { right: 7px; bottom: 31px; }
.intel-map .maplibregl-ctrl-group { overflow: hidden; border: 1px solid rgba(230,235,231,.16); border-radius: 3px; background: rgba(20,23,21,.9); box-shadow: none; }
.intel-map .maplibregl-ctrl-group button { border-color: var(--line); filter: invert(1) opacity(.58); }
.intel-map .maplibregl-ctrl-attrib { color: #808681; background: rgba(16,18,17,.78); font-size: 9px; }
.intel-map .maplibregl-ctrl-attrib a { color: #a5aaa6; }
.globe-marker { display: grid; margin: 0; padding: 0; border: 0; outline: 0; background: transparent; cursor: pointer; place-items: center; }
.signal-marker { --marker-color: var(--mint); width: 11px; height: 11px; border: 1.5px solid #111412; border-radius: 50%; background: var(--marker-color); box-shadow: 0 0 0 3px color-mix(in srgb, var(--marker-color) 17%, transparent), 0 0 13px color-mix(in srgb, var(--marker-color) 72%, transparent); }
.signal-marker::after { position: absolute; width: 18px; height: 18px; border: 1px solid var(--marker-color); border-radius: 50%; content: ""; opacity: 0; }
.signal-marker:hover, .signal-marker.active { z-index: 4; transform: scale(1.35); }
.signal-marker.active::after { opacity: .8; animation: marker-ring 1.7s ease-out infinite; }
.signal-marker.natural { --marker-color: var(--cyan); }
.signal-marker.priority { --marker-color: var(--orange); width: 13px; height: 13px; }
.signal-marker.priority::after { opacity: .55; animation: marker-ring 2.5s ease-out infinite; }
.flight-marker { width: 9px; height: 9px; color: #82ddff; filter: drop-shadow(0 0 3px rgba(114,215,255,.65)); opacity: .82; }
.flight-marker span { display: block; font-size: 7px; line-height: 1; transform: rotate(var(--heading, 0deg)); }
.flight-marker:hover { color: #d8f4ff; opacity: 1; transform: scale(1.6); }
.ship-marker { width: 9px; height: 9px; color: var(--amber); filter: drop-shadow(0 0 3px rgba(255,198,92,.55)); }
.ship-marker span { font-size: 7px; line-height: 1; }
.ship-marker:hover { color: #ffe4ad; transform: scale(1.55); }
.map-loading, .map-fallback {
    position: absolute;
    z-index: 5;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, #202321, #111312 68%);
}
.map-loading[hidden], .map-fallback[hidden] { display: none; }
.map-loading > span { width: 56px; height: 56px; margin-bottom: 1rem; border: 1px solid rgba(114,227,178,.18); border-top-color: var(--mint); border-radius: 50%; box-shadow: 0 0 28px rgba(114,227,178,.08); animation: spin 1.3s linear infinite; }
.map-loading b, .map-fallback b { font: .62rem var(--mono); font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.map-loading small, .map-fallback span { margin-top: .45rem; color: var(--dim); font-size: .54rem; }
.map-fallback { z-index: 9; padding: 2rem; text-align: center; }
.map-layer-switcher {
    position: absolute;
    z-index: 4;
    top: 13px;
    left: 13px;
    display: flex;
    gap: 4px;
    align-items: center;
    padding: 4px;
    border: 1px solid rgba(225,230,226,.14);
    border-radius: 3px;
    background: rgba(19,21,20,.88);
    box-shadow: 0 8px 30px rgba(0,0,0,.22);
    backdrop-filter: blur(10px);
}
.map-layer-switcher > span { padding: 0 .35rem; color: #636a65; font: .43rem var(--mono); letter-spacing: .08em; }
.map-layer-switcher button {
    display: flex;
    gap: .35rem;
    align-items: center;
    min-height: 29px;
    padding: 0 .55rem;
    border: 1px solid transparent;
    border-radius: 2px;
    color: #747b76;
    background: transparent;
    cursor: pointer;
    font: .47rem var(--mono);
    text-transform: uppercase;
}
.map-layer-switcher button:hover { color: #aeb5b0; }
.map-layer-switcher button.active { border-color: rgba(225,230,226,.13); color: #d7dcd8; background: rgba(255,255,255,.055); }
.map-layer-switcher button > i { width: 5px; height: 5px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 8px currentColor; }
.map-layer-switcher button > i.aircraft { background: var(--cyan); }
.map-layer-switcher button > i.vessel { border-radius: 0; background: var(--amber); transform: rotate(45deg); }
.map-layer-switcher button b { color: #555c57; font-size: .42rem; font-weight: 500; }
.rotation-control {
    position: absolute;
    z-index: 4;
    top: 13px;
    right: 13px;
    display: flex;
    gap: .4rem;
    align-items: center;
    min-height: 31px;
    padding: 0 .6rem;
    border: 1px solid rgba(225,230,226,.14);
    border-radius: 3px;
    color: #767d78;
    background: rgba(19,21,20,.88);
    cursor: pointer;
    font: .45rem var(--mono);
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}
.rotation-control span { width: 5px; height: 5px; border-radius: 50%; background: #555b57; }
.rotation-control.active { color: var(--mint); }
.rotation-control.active span { background: var(--mint); box-shadow: 0 0 8px var(--mint); }
.map-readout {
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    padding: .45rem 4.1rem .45rem .75rem;
    border-top: 1px solid rgba(225,230,226,.08);
    color: #5c635e;
    background: rgba(16,18,17,.82);
    font: .4rem var(--mono);
    pointer-events: none;
    backdrop-filter: blur(6px);
}
.dot.aircraft { background: var(--cyan); }
.dot.vessel { border-radius: 0; background: var(--amber); transform: rotate(45deg); }
.maplibregl-popup-content { padding: 0 !important; border: 1px solid rgba(225,230,226,.18); border-radius: 3px !important; color: var(--ink); background: rgba(21,24,22,.97) !important; box-shadow: 0 15px 45px rgba(0,0,0,.45) !important; }
.maplibregl-popup-tip { border-top-color: rgba(21,24,22,.97) !important; border-bottom-color: rgba(21,24,22,.97) !important; }
.maplibregl-popup-close-button { z-index: 2; padding: .35rem .5rem !important; color: #828985 !important; font-size: 1rem !important; }
.intel-popup { min-width: 230px; padding: .85rem; }
.intel-popup > span { color: var(--mint); font: .45rem var(--mono); letter-spacing: .05em; text-transform: uppercase; }
.intel-popup h3 { margin: .55rem 1.2rem .5rem 0; font-size: .72rem; font-weight: 540; line-height: 1.4; }
.intel-popup p, .intel-popup small { margin: 0; color: #7d857f; font: .47rem var(--mono); line-height: 1.45; }
.intel-popup a { display: block; margin: .75rem -.85rem -.85rem; padding: .65rem .85rem; border-top: 1px solid var(--line); color: var(--acid); text-decoration: none; font: .47rem var(--mono); text-transform: uppercase; }
.intel-popup a:hover { background: rgba(217,236,141,.06); }
.intel-popup.transport > span { color: var(--cyan); }

.transport-panel { min-height: 190px; }
.transport-metrics { display: flex; flex-direction: column; padding: .35rem 1rem; }
.transport-metrics > div { display: grid; grid-template-columns: 28px 1fr auto; gap: .6rem; align-items: center; padding: .7rem 0; border-bottom: 1px solid var(--line); }
.transport-icon { display: grid; width: 26px; height: 26px; border: 1px solid rgba(114,215,255,.18); border-radius: 50%; color: var(--cyan); background: rgba(114,215,255,.04); font-size: .65rem; place-items: center; }
.transport-icon.vessel { border-radius: 3px; color: var(--amber); border-color: rgba(255,198,92,.18); background: rgba(255,198,92,.04); }
.transport-metrics p { margin: 0; }
.transport-metrics p b { display: block; font: .83rem var(--mono); font-weight: 450; }
.transport-metrics p small { display: block; margin-top: .2rem; color: var(--dim); font: .42rem var(--mono); text-transform: uppercase; }
.transport-metrics > div > i { color: var(--dim); font: .4rem var(--mono); font-style: normal; text-align: right; }
.transport-metrics > div > i.online { color: var(--mint); }
.transport-metrics > div > i.degraded { color: var(--amber); }
.transport-note { margin: .2rem 1rem 1rem; color: #747b75; font: .57rem/1.55 var(--mono); }
.event-byline .event-brief { margin-left: auto; color: #7e8880; text-decoration: none; }
.event-byline .event-brief:hover { color: var(--acid); }
.focus-content > a + a { margin-top: .45rem; }
.focus-content > a.brief-link { color: #111411; border-color: var(--acid); background: var(--acid); }
.focus-content > a.brief-link:hover { background: #eefba9; }

/* Signal detail pages */
.signal-page { min-height: 100vh; }
.signal-header { grid-template-columns: 1fr auto 1fr; }
.signal-header .utc-clock { justify-self: end; }
.back-link { color: #8a918c; font: .52rem var(--mono); text-decoration: none; text-transform: uppercase; }
.back-link:hover { color: var(--acid); }
.signal-main { width: min(1260px, calc(100% - 2rem)); min-height: calc(100vh - 150px); margin: 0 auto; padding: 3rem 0 5rem; }
.signal-breadcrumb { display: flex; gap: .55rem; align-items: center; margin-bottom: 2.5rem; color: var(--dim); font: .48rem var(--mono); text-transform: uppercase; }
.signal-breadcrumb a { color: #818883; text-decoration: none; }
.signal-breadcrumb a:hover { color: var(--mint); }
.signal-breadcrumb b { max-width: 240px; overflow: hidden; color: var(--mint); font-weight: 500; text-overflow: ellipsis; white-space: nowrap; }
.signal-article { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: clamp(2.5rem, 7vw, 7rem); align-items: start; }
.signal-copy { padding-top: .7rem; }
.signal-flags { display: flex; gap: .5rem; }
.signal-flags span { padding: .3rem .48rem; border: 1px solid rgba(114,227,178,.22); border-radius: 2px; color: var(--mint); font: .46rem var(--mono); letter-spacing: .06em; text-transform: uppercase; }
.signal-flags span.stale { color: var(--amber); border-color: rgba(255,198,92,.23); }
.signal-copy h1 { max-width: 840px; margin: 1.5rem 0 1.25rem; font-size: clamp(2.2rem, 5vw, 4.9rem); font-weight: 430; letter-spacing: -.06em; line-height: 1.02; }
.signal-deck { max-width: 790px; margin: 0; color: #a1a7a2; font-size: clamp(.85rem, 1.2vw, 1.05rem); line-height: 1.75; }
.signal-origin { display: flex; gap: .7rem; align-items: center; margin-top: 1.7rem; color: #747b76; font: .57rem var(--mono); text-transform: uppercase; }
.signal-origin b { color: #afb5b0; font-weight: 500; }
.signal-origin i { width: 3px; height: 3px; border-radius: 50%; background: #565c58; }
.original-link { display: flex; justify-content: space-between; max-width: 600px; margin-top: 2rem; padding: 1rem 1.1rem; border: 1px solid rgba(217,236,141,.28); color: var(--acid); text-decoration: none; font: .56rem var(--mono); text-transform: uppercase; transition: background .18s ease; }
.original-link:hover { color: #111411; background: var(--acid); }
.signal-caveat { max-width: 690px; margin-top: 2.5rem; padding: 1rem; border-left: 2px solid #626a64; background: rgba(255,255,255,.018); }
.signal-caveat b { color: #959c97; font: .49rem var(--mono); text-transform: uppercase; }
.signal-caveat p { margin: .5rem 0 0; color: #747b76; font: .68rem/1.6 var(--mono); }
.signal-facts { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(23,25,24,.95); }
.facts-heading { display: flex; justify-content: space-between; gap: 1rem; padding: .85rem 1rem; border-bottom: 1px solid var(--line); color: #737b75; font: .5rem var(--mono); text-transform: uppercase; }
.facts-heading b { color: var(--mint); font-weight: 500; }
.signal-facts dl { margin: 0; }
.signal-facts dl > div { display: grid; grid-template-columns: 1fr 1.4fr; gap: 1rem; padding: .85rem 1rem; border-bottom: 1px solid var(--line); }
.signal-facts dt { color: #737b75; font: .5rem var(--mono); text-transform: uppercase; }
.signal-facts dd { margin: 0; color: #bec4bf; font: .65rem var(--mono); text-align: right; }
.status-live { display: flex; justify-content: flex-end; gap: .4rem; align-items: center; }
.status-live i { width: 5px; height: 5px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 8px var(--mint); }
.map-return { display: flex; justify-content: space-between; gap: 1rem; padding: .9rem 1rem; color: var(--acid); text-decoration: none; font: .54rem var(--mono); text-transform: uppercase; }
.map-return:hover { background: rgba(217,236,141,.04); }
.map-return span { color: var(--dim); }
.related-signals { margin-top: 6rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.related-signals > header span { color: var(--mint); font: .48rem var(--mono); text-transform: uppercase; }
.related-signals > header h2 { margin: .6rem 0 1.5rem; font-size: 1.6rem; font-weight: 470; }
.related-signals > div { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.related-signals a { display: flex; flex-direction: column; min-height: 180px; padding: 1rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); color: inherit; text-decoration: none; }
.related-signals a:hover { background: rgba(255,255,255,.02); }
.related-signals a span { color: #747b76; font: .49rem var(--mono); text-transform: uppercase; }
.related-signals a h3 { margin: .8rem 0; font: 520 .78rem/1.5 var(--mono); }
.related-signals a b { margin-top: auto; color: var(--acid); font: .45rem var(--mono); font-weight: 500; text-transform: uppercase; }
.signal-not-found { max-width: 780px; margin: 9vh auto; text-align: center; }
.signal-not-found > span { color: var(--orange); font: .52rem var(--mono); }
.signal-not-found h1 { margin: 1rem 0; font-size: clamp(2rem, 5vw, 4rem); font-weight: 450; letter-spacing: -.05em; }
.signal-not-found p { color: var(--muted); }
.signal-not-found a { display: inline-block; margin-top: 1.5rem; color: var(--acid); font: .55rem var(--mono); text-transform: uppercase; }

@keyframes pulse-hot { 70% { box-shadow: 0 0 0 7px rgba(255,112,72,0); } 100% { box-shadow: 0 0 0 0 rgba(255,112,72,0); } }
@keyframes ticker-scroll { to { transform: translateX(-50%); } }
@keyframes map-scan { 0%,12% { transform: translateY(0); opacity: 0; } 24% { opacity: .65; } 68% { opacity: .35; } 84%,100% { transform: translateY(690%); opacity: 0; } }
@keyframes marker-ring { from { transform: scale(.35); opacity: .75; } to { transform: scale(1.75); opacity: 0; } }
@keyframes panel-enter { from { opacity: 0; transform: translateY(9px); } to { opacity: 1; transform: translateY(0); } }
@keyframes feed-enter { from { opacity: 0; transform: translateX(5px); } to { opacity: 1; transform: translateX(0); } }

.top-stories { animation: panel-enter .55s .08s both; }
.ad-placement { animation: panel-enter .55s .14s both; }
.dashboard-grid > :nth-child(1) { animation: panel-enter .6s .18s both; }
.dashboard-grid > :nth-child(2) { animation: panel-enter .6s .26s both; }
.dashboard-grid > :nth-child(3) { animation: panel-enter .6s .34s both; }
.event-card { animation: feed-enter .32s both; }
.event-card:nth-child(2) { animation-delay: .035s; }
.event-card:nth-child(3) { animation-delay: .07s; }
.event-card:nth-child(4) { animation-delay: .105s; }
.event-card:nth-child(5) { animation-delay: .14s; }

@keyframes pulse { 70% { box-shadow: 0 0 0 7px rgba(104,251,195,0); } 100% { box-shadow: 0 0 0 0 rgba(104,251,195,0); } }
@keyframes sweep { to { transform: translate(-50%,-50%) rotate(360deg); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes blip { 0% { transform: scale(.3); opacity: .8; } 80%,100% { transform: scale(2.2); opacity: 0; } }
@keyframes shimmer { to { background-position: -200% 0; } }
@keyframes bar-in { to { transform: scaleY(1); } }
@keyframes scale-in { to { transform: scaleX(1); } }

@media (max-width: 1300px) {
    .main-nav { display: none; }
    .site-header { grid-template-columns: 1fr auto; }
    .dashboard-grid { grid-template-columns: 235px minmax(480px, 1fr) 350px; }
    .network-state { display: none; }
    .radar-panel { min-height: 540px; }
    .radar-map { height: 425px; }
}

@media (max-width: 1080px) {
    .dashboard-grid { grid-template-columns: 235px 1fr; }
    .right-rail { grid-column: 1 / -1; }
    .feed-panel { min-height: 580px; max-height: 680px; }
    .event-feed { display: grid; grid-template-columns: 1fr 1fr; align-content: start; }
    .event-card:nth-child(odd) { border-right: 1px solid var(--line); }
    .analysis-grid { grid-template-columns: 1fr 1fr; }
    .sources-panel { grid-column: 1 / -1; min-height: 320px !important; }
    .source-list { display: grid; grid-template-columns: 1fr 1fr; column-gap: 1.5rem; }
    .methodology-strip { grid-template-columns: 1fr 1fr; }
    .method-cards { grid-column: 1 / -1; justify-content: flex-start; }
}

@media (max-width: 760px) {
    .site-header { min-height: 62px; }
    .brand-copy small, .search-trigger span, .search-trigger kbd, .utc-clock { display: none; }
    .search-trigger { min-width: 34px; width: 34px; padding: 0; justify-content: center; }
    .search-trigger svg { width: 16px; }
    .briefing-bar { grid-template-columns: 1fr auto; gap: .75rem; }
    .briefing-bar > p { grid-row: 2; grid-column: 1 / -1; padding-bottom: .25rem; }
    .dashboard-shell, .deep-dive { padding-right: .75rem; padding-left: .75rem; }
    .section-heading { display: block; }
    .view-controls { margin-top: 1.25rem; justify-content: space-between; }
    .view-controls > span { display: none; }
    .dashboard-grid { grid-template-columns: 1fr; }
    .left-rail { display: grid; grid-template-columns: 1fr 1fr; }
    .index-panel, .regions-panel { min-height: 300px; }
    .metric-grid { grid-column: 1 / -1; grid-row: 2; grid-template-columns: repeat(4, 1fr); }
    .mini-metric { min-height: 90px; }
    .mini-metric strong { font-size: 1.25rem; }
    .center-stage, .right-rail { grid-column: 1; }
    .radar-map { height: 390px; }
    .radar-sweep { width: 440px; }
    .map-legend { display: none; }
    .analysis-grid { grid-template-columns: 1fr; }
    .sources-panel { grid-column: auto; }
    .source-list { display: flex; }
    .methodology-strip { grid-template-columns: 1fr; gap: 1.4rem; }
    .method-cards { grid-column: auto; overflow-x: auto; padding-bottom: .5rem; }
    .site-footer { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 520px) {
    .header-tools { gap: .4rem; }
    .icon-button { display: none; }
    .briefing-kicker { font-size: .5rem; }
    .refresh-state span { display: none; }
    .section-heading h1 { font-size: 2.45rem; }
    .left-rail { display: flex; }
    .metric-grid { grid-template-columns: 1fr 1fr; }
    .radar-panel { min-height: 470px; }
    .radar-map { height: 365px; }
    .radar-sweep { width: 390px; }
    .radar-header { min-height: 58px; }
    .map-subtitle { display: none; }
    .map-footer span:nth-child(2) { display: none; }
    .event-feed { display: block; }
    .event-card:nth-child(odd) { border-right: 0; }
    .feed-panel { max-height: 650px; }
    .section-heading.secondary > p { margin-top: 1rem; }
    .method-cards span { min-width: 56px; }
    .method-cards i { margin: 0 .25rem; }
    .command-result { grid-template-columns: 56px 1fr; }
    .command-result > time { display: none; }
}

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

@media (max-width: 1300px) {
    .radar-panel { min-height: 650px; }
    .radar-map.map-host { height: 535px; }
    .top-story { min-height: 165px; }
}

@media (max-width: 1080px) {
    .top-story-grid { grid-template-columns: 1fr 1fr; }
    .top-story:nth-child(2), .top-story-skeleton:nth-child(2) { border-right: 0; }
    .top-story:nth-child(-n+2), .top-story-skeleton:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .signal-article { grid-template-columns: 1fr 290px; gap: 2.5rem; }
    .related-signals > div { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
    .signal-ticker { grid-template-columns: auto minmax(0, 1fr); }
    .signal-ticker > a { display: none; }
    .ticker-label { padding-left: .8rem; }
    .radar-panel { min-height: 600px; }
    .radar-map.map-host { height: 500px; }
    .map-layer-switcher { right: 13px; max-width: calc(100% - 26px); overflow-x: auto; }
    .rotation-control { top: auto; right: 11px; bottom: 34px; }
    .map-readout span:last-child { display: none; }
    .signal-header { grid-template-columns: 1fr auto; }
    .signal-header .back-link { display: none; }
    .signal-header .utc-clock { display: block; }
    .signal-main { padding-top: 2rem; }
    .signal-article { grid-template-columns: 1fr; }
    .signal-facts { order: -1; }
    .signal-copy h1 { font-size: clamp(2rem, 10vw, 3.4rem); }
}

@media (max-width: 520px) {
    .ticker-label { padding: 0 .65rem; font-size: .42rem; }
    .ticker-set a { padding: 0 .7rem; }
    .ad-placement { min-height: 102px; }
    .top-stories > header > span { display: none; }
    .top-story-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; }
    .top-story, .top-story-skeleton { flex: 0 0 84%; min-height: 145px; border-right: 1px solid var(--line); border-bottom: 0; scroll-snap-align: start; }
    .radar-panel { min-height: 555px; }
    .radar-map.map-host { height: 455px; }
    .map-layer-switcher > span { display: none; }
    .map-layer-switcher button { padding: 0 .43rem; }
    .map-layer-switcher button b { display: none; }
    .map-readout { padding-right: .75rem; }
    .signal-main { width: min(100% - 1.5rem, 1260px); }
    .signal-origin { flex-wrap: wrap; }
    .related-signals > div { grid-template-columns: 1fr; }
    .signal-facts dl > div { grid-template-columns: 1fr 1.3fr; }
}

/* Expanded intelligence layers and controls */
.region-item { padding: .12rem 0; text-decoration: none; }
.region-item:hover > span { color: var(--acid); }
.space-panel > a { display: flex; gap: .8rem; align-items: center; padding: 1rem; color: inherit; text-decoration: none; }
.space-panel > a:hover { background: rgba(255,255,255,.018); }
.space-panel p { min-width: 0; margin: 0; }
.space-panel p b { display: block; overflow: hidden; color: #cbd1cc; font: .66rem/1.45 var(--mono); text-overflow: ellipsis; }
.space-panel p small { display: block; margin-top: .3rem; color: var(--dim); font: .44rem var(--mono); text-transform: uppercase; }
.space-orbit { position: relative; flex: 0 0 38px; width: 38px; height: 38px; border: 1px solid rgba(195,149,255,.22); border-radius: 50%; }
.space-orbit::before { position: absolute; inset: 7px -4px; border: 1px solid rgba(195,149,255,.35); border-radius: 50%; content: ""; transform: rotate(-28deg); }
.space-orbit i { position: absolute; top: 3px; right: 5px; width: 4px; height: 4px; border-radius: 50%; background: #c395ff; box-shadow: 0 0 8px #c395ff; animation: pulse 2.2s infinite; }

.map-layer-switcher button > i.fire { background: #ff7849; }
.map-layer-switcher button > i.outage { background: #e7d16b; box-shadow: 0 0 8px #e7d16b; }
.map-layer-switcher button > i.infrastructure { border-radius: 0; background: #a68bdf; transform: rotate(45deg); }
.signal-marker.outage { --marker-color: #e7d16b; border-radius: 2px; transform: rotate(45deg); }
.signal-marker.outage:hover { transform: rotate(45deg) scale(1.35); }

.replay-controls { display: grid; grid-template-columns: auto 1fr auto; gap: .75rem; align-items: center; padding: 0 1rem .9rem; }
.replay-controls button { min-width: 76px; padding: .42rem .55rem; border: 1px solid var(--line); border-radius: 2px; color: #8b948d; background: rgba(255,255,255,.018); cursor: pointer; font: .46rem var(--mono); text-transform: uppercase; }
.replay-controls button:hover, .replay-controls button[aria-pressed="true"] { color: var(--acid); border-color: rgba(217,236,141,.28); }
.replay-controls input { width: 100%; height: 2px; accent-color: var(--mint); cursor: ew-resize; }
.replay-controls time { min-width: 110px; color: #737c76; font: .43rem var(--mono); text-align: right; text-transform: uppercase; }

.fusion-chip { padding: .2rem .32rem; border: 1px solid rgba(195,149,255,.2); color: #b89ae6; font: .4rem var(--mono); letter-spacing: .04em; }
.story-why { display: block; margin-top: .65rem; overflow: hidden; color: #555e58; font: .39rem var(--mono); text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.intelligence-ribbon { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; margin-top: 10px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.intelligence-ribbon article { min-width: 0; padding: .75rem .85rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(19,22,20,.72); }
.intelligence-ribbon article > span { display: block; margin-bottom: .45rem; color: var(--mint); font: .4rem var(--mono); letter-spacing: .07em; }
.intelligence-ribbon a { display: block; min-width: 0; text-decoration: none; }
.intelligence-ribbon a:hover b { color: var(--acid); }
.intelligence-ribbon b { display: block; overflow: hidden; color: #b8c0ba; font: 500 .57rem/1.4 var(--mono); text-overflow: ellipsis; white-space: nowrap; }
.intelligence-ribbon b i { color: var(--acid); font-style: normal; }
.intelligence-ribbon small { display: block; margin-top: .35rem; overflow: hidden; color: #59625c; font: .37rem var(--mono); text-overflow: ellipsis; white-space: nowrap; }
.focus-reasons { display: flex; flex-wrap: wrap; gap: .35rem; margin: -.35rem 0 .9rem; }
.focus-reasons span { padding: .26rem .4rem; border: 1px solid rgba(195,149,255,.15); color: #9483ae; font: .42rem var(--mono); text-transform: uppercase; }

.watch-dialog, .report-dialog { width: min(520px, calc(100% - 1.5rem)); padding: 0; border: 1px solid var(--line-strong); border-radius: var(--radius); color: var(--ink); background: #171a18; box-shadow: 0 30px 100px rgba(0,0,0,.75); }
.watch-dialog::backdrop, .report-dialog::backdrop { background: rgba(4,6,5,.8); backdrop-filter: blur(5px); }
.watch-shell, .report-dialog form { padding: 1.2rem; }
.watch-shell > header, .report-dialog header { display: flex; justify-content: space-between; gap: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.watch-shell header span, .report-dialog header span { color: var(--mint); font: .43rem var(--mono); letter-spacing: .08em; }
.watch-shell h2, .report-dialog h2 { margin: .35rem 0 0; font-size: 1.1rem; font-weight: 520; }
.watch-shell header button, .report-dialog header button { display: grid; place-items: center; align-self: start; min-width: 40px; min-height: 32px; margin: -.35rem -.35rem 0 0; border: 1px solid transparent; border-radius: 2px; color: var(--dim); background: none; cursor: pointer; font: .48rem var(--mono); }
.watch-shell header button:hover, .watch-shell header button:focus-visible, .report-dialog header button:hover, .report-dialog header button:focus-visible { border-color: var(--line-strong); color: var(--acid); outline: none; }
.watch-shell > p { color: #7d867f; font: .66rem/1.6 var(--mono); }
.watch-shell label, .report-dialog label { display: grid; gap: .38rem; margin: .85rem 0; color: #858e87; font: .49rem var(--mono); text-transform: uppercase; }
.watch-shell input, .watch-shell select, .report-dialog input, .report-dialog select, .report-dialog textarea { width: 100%; padding: .72rem; border: 1px solid var(--line); border-radius: 2px; outline: none; color: #d7dcd8; background: #101311; font: .67rem var(--mono); }
.watch-shell input:focus, .watch-shell select:focus, .report-dialog input:focus, .report-dialog select:focus, .report-dialog textarea:focus { border-color: rgba(114,227,178,.42); }
.watch-center { padding: .6rem; border: 1px dashed var(--line); color: var(--dim); font: .45rem var(--mono); text-align: center; }
.watch-save, .notification-enable, .report-submit { width: 100%; margin-top: .75rem; padding: .8rem; border: 1px solid rgba(217,236,141,.25); color: #101411; background: var(--acid); cursor: pointer; font: .5rem var(--mono); text-transform: uppercase; }
.notification-enable { color: var(--acid); background: transparent; }
.watch-list { display: grid; gap: .35rem; margin-top: 1rem; }
.watch-list > div { display: flex; justify-content: space-between; gap: 1rem; align-items: center; padding: .65rem; border: 1px solid var(--line); }
.watch-list span b, .watch-list span small { display: block; font: .52rem var(--mono); }
.watch-list span small { margin-top: .25rem; color: var(--dim); font-size: .42rem; }
.watch-list button { border: 0; color: var(--orange); background: none; cursor: pointer; font: .42rem var(--mono); text-transform: uppercase; }
.watch-list > p { color: var(--dim); font: .53rem var(--mono); text-align: center; }
.low-bandwidth .radar-map.map-host { background: #121513; }
.low-bandwidth .rotation-control, .low-bandwidth .map-layer-switcher { display: none; }

/* Region, country, status, and digest pages */
.intel-subpage { min-height: 100vh; }
.subpage-nav { display: flex; justify-content: end; gap: 1.5rem; }
.subpage-nav a { color: #7c847e; font: .5rem var(--mono); text-decoration: none; text-transform: uppercase; }
.subpage-nav a:hover, .subpage-nav a.active { color: var(--acid); }
.scope-main, .status-main, .digest-main { width: min(1260px, calc(100% - 2rem)); min-height: calc(100vh - 150px); margin: 0 auto; padding: 3rem 0 5rem; }
.scope-hero { display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: end; }
.scope-kicker, .status-hero > span, .digest-hero > span { color: var(--mint); font: .47rem var(--mono); letter-spacing: .09em; }
.scope-hero h1, .digest-hero h1 { margin: .8rem 0; font-size: clamp(2.7rem, 6vw, 5.4rem); font-weight: 430; letter-spacing: -.065em; line-height: 1; }
.scope-hero h1 em, .digest-hero h1 em { color: var(--mint); font-family: Georgia, serif; font-weight: 400; }
.scope-hero > div > p, .digest-hero > p { max-width: 740px; color: #8f9791; font: .76rem/1.7 var(--mono); }
.scope-stats, .status-summary { display: grid; grid-template-columns: repeat(4, minmax(82px, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.scope-stats div { min-width: 92px; padding: 1rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.scope-stats b { display: block; font: 1.25rem var(--mono); font-weight: 400; }
.scope-stats span { display: block; margin-top: .35rem; color: var(--dim); font: .42rem var(--mono); text-transform: uppercase; }
.scope-pills { display: flex; gap: .4rem; margin: 2rem 0; overflow-x: auto; }
.scope-pills a { flex: 0 0 auto; padding: .55rem .7rem; border: 1px solid var(--line); color: #818a83; text-decoration: none; font: .47rem var(--mono); text-transform: uppercase; }
.scope-pills a:hover, .scope-pills a.active { color: var(--acid); border-color: rgba(217,236,141,.3); }
.scope-layout { display: grid; grid-template-columns: 280px 1fr; gap: 1rem; align-items: start; }
.scope-side { padding-bottom: 1rem; }
.scope-side .category-row { margin: .75rem 1rem; }
.scope-wire > header { margin-bottom: 1rem; }
.scope-wire > header > span { color: var(--dim); font: .43rem var(--mono); }
.scope-wire > header h2 { margin: .4rem 0; font-size: 1.35rem; font-weight: 500; }
.scope-card { display: grid; grid-template-columns: 105px 1fr; gap: 1rem; padding: 1.25rem 0; border-top: 1px solid var(--line); }
.scope-card > time { color: #69736c; font: .48rem var(--mono); }
.scope-card > div > span { color: var(--mint); font: .43rem var(--mono); text-transform: uppercase; }
.scope-card h3 { margin: .55rem 0; font: 520 1rem/1.45 var(--mono); }
.scope-card h3 a { text-decoration: none; }
.scope-card h3 a:hover { color: var(--acid); }
.scope-card p { margin: 0; color: #7f8881; font: .67rem/1.6 var(--mono); }
.scope-card footer { display: flex; gap: .8rem; align-items: center; margin-top: .75rem; color: var(--dim); font: .44rem var(--mono); text-transform: uppercase; }
.scope-card footer b { color: #929a94; font-weight: 500; }
.scope-card footer i { color: #a68bdf; font-style: normal; }
.scope-card footer a { margin-left: auto; color: var(--acid); text-decoration: none; }
.scope-empty { padding: 3rem; border: 1px solid var(--line); color: var(--dim); font: .65rem var(--mono); text-align: center; }

.status-hero { padding: 2rem 0 3rem; }
.status-hero h1 { margin: .75rem 0; font-size: clamp(2.7rem, 6vw, 5rem); font-weight: 430; letter-spacing: -.06em; }
.status-hero > p { max-width: 680px; color: var(--muted); font: .7rem/1.7 var(--mono); }
.status-summary { grid-template-columns: auto 1fr auto 1fr auto 1fr; max-width: 760px; margin-top: 2rem; }
.status-summary > * { padding: .85rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.status-summary b { color: var(--mint); font: .9rem var(--mono); font-weight: 500; }
.status-summary span { color: var(--dim); font: .45rem var(--mono); }
.status-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 1rem; }
.status-services { padding: .6rem 1rem; }
.status-services article { display: flex; gap: .7rem; align-items: center; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.status-services article > i { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }
.status-services article > i.online, .status-services article > i.stale { background: var(--mint); box-shadow: 0 0 8px rgba(114,227,178,.5); }
.status-services b, .status-services span { display: block; font: .58rem var(--mono); }
.status-services span { margin-top: .3rem; color: var(--dim); font-size: .47rem; }

.digest-hero { max-width: 900px; padding: 2rem 0 3rem; }
.digest-future { display: grid; gap: .4rem; max-width: 650px; margin-top: 2rem; padding: 1rem; border: 1px solid var(--line); background: rgba(255,255,255,.015); }
.digest-future span { color: var(--acid); font: .47rem var(--mono); letter-spacing: .08em; }
.digest-future b { color: var(--ink); font-size: .78rem; font-weight: 540; }
.digest-future p { margin: 0; color: var(--dim); font: .54rem/1.65 var(--mono); }
.report-dialog input[name="website"] { position: absolute; left: -10000px; width: 1px; height: 1px; opacity: 0; }
.digest-list { border-top: 1px solid var(--line); }
.digest-list article { display: grid; grid-template-columns: 70px 1fr; gap: 1rem; padding: 1.6rem 0; border-bottom: 1px solid var(--line); }
.digest-rank { color: rgba(240,241,238,.15); font: 1.5rem var(--mono); }
.digest-meta, .digest-list footer { display: flex; justify-content: space-between; gap: .75rem; color: var(--dim); font: .45rem var(--mono); text-transform: uppercase; }
.digest-meta span { color: var(--mint); }
.digest-list h2 { margin: .65rem 0; font-size: 1.25rem; font-weight: 500; }
.digest-list h2 a { text-decoration: none; }
.digest-list h2 a:hover { color: var(--acid); }
.digest-list article p { max-width: 850px; margin: 0; color: #858d87; font: .68rem/1.65 var(--mono); }
.digest-list footer { justify-content: start; margin-top: 1rem; }
.digest-list footer b { color: #a0a7a2; font-weight: 500; }
.digest-list footer a { margin-left: auto; color: var(--acid); text-decoration: none; }
.policy-main { width: min(820px, calc(100% - 2rem)); min-height: calc(100vh - 150px); margin: 0 auto; padding: 5rem 0; }
.policy-main > span { color: var(--mint); font: .45rem var(--mono); letter-spacing: .08em; }
.policy-main h1 { margin: .8rem 0 2rem; font-size: clamp(2.8rem, 7vw, 5rem); font-weight: 430; letter-spacing: -.06em; }
.policy-main h2 { margin: 2.1rem 0 .55rem; font: 520 .82rem var(--mono); text-transform: uppercase; }
.policy-main p { margin: 0; color: #89928b; font: .72rem/1.8 var(--mono); }

/* Incident provenance and corrections */
.incident-sources { max-width: 760px; margin-top: 2.5rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.incident-sources > span { color: #a68bdf; font: .44rem var(--mono); letter-spacing: .08em; }
.incident-sources h2 { margin: .5rem 0 1rem; font-size: 1rem; font-weight: 520; }
.incident-sources a { display: grid; grid-template-columns: 110px 1fr auto; gap: .75rem; align-items: center; padding: .7rem 0; border-top: 1px solid rgba(218,224,219,.07); color: inherit; text-decoration: none; }
.incident-sources a:hover span { color: var(--acid); }
.incident-sources a b, .incident-sources a time { color: var(--dim); font: .44rem var(--mono); text-transform: uppercase; }
.incident-sources a span { font: .61rem/1.4 var(--mono); }
.report-signal { margin-top: 1.5rem; padding: .7rem 0; border: 0; border-bottom: 1px solid var(--line); color: #737c76; background: none; cursor: pointer; font: .47rem var(--mono); text-transform: uppercase; }
.report-signal:hover { color: var(--acid); }
.report-dialog textarea { min-height: 130px; resize: vertical; }
.report-dialog label small { color: var(--dim); }
.report-dialog form > p { color: var(--dim); font: .45rem var(--mono); text-align: center; }

.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--acid); }

@media (max-width: 900px) {
    .intelligence-ribbon { grid-template-columns: 1fr 1fr; }
    .scope-hero { grid-template-columns: 1fr; }
    .scope-layout, .status-grid { grid-template-columns: 1fr; }
    .scope-side { display: none; }
    .status-summary { grid-template-columns: auto 1fr; }
}

@media (max-width: 760px) {
    .subpage-nav { gap: .7rem; }
    .scope-main, .status-main, .digest-main { padding-top: 2rem; }
    .scope-stats { grid-template-columns: 1fr 1fr; }
    .scope-card { grid-template-columns: 1fr; }
    .scope-card > time { order: 2; }
    .replay-controls { grid-template-columns: auto 1fr; }
    .replay-controls time { grid-column: 1 / -1; text-align: left; }
    .incident-sources a { grid-template-columns: 1fr auto; }
    .incident-sources a span { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 520px) {
    .intelligence-ribbon { display: flex; overflow-x: auto; }
    .intelligence-ribbon article { flex: 0 0 78%; }
    .header-tools .icon-button#watch-trigger, .header-tools .icon-button#share-map, .header-tools .icon-button#data-mode-toggle { display: grid; }
    .header-tools .icon-button#sound-toggle { display: none; }
    .scope-hero h1, .digest-hero h1 { font-size: 2.7rem; }
    .digest-list article { grid-template-columns: 42px 1fr; }
    .digest-list footer { flex-wrap: wrap; }
}
