:root {
  --bg-shell: #0c0f1a;
  --bg-center: #000000;
  --surface: rgba(10, 14, 24, 0.82);
  --surface-strong: rgba(7, 10, 18, 0.94);
  --surface-soft: rgba(18, 24, 39, 0.76);
  --border: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(52, 152, 251, 0.24);
  --text: #f4f7ff;
  --muted: #9da9c3;
  --muted-strong: #c8d2e8;
  --accent: #3498fb;
  --accent-strong: #63b4ff;
  --accent-soft: rgba(52, 152, 251, 0.16);
  --warning: #ff9c6b;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
  --card-shadow: 0 18px 48px rgba(0, 0, 0, 0.36);
  --radius-xl: 18px;
  --radius-lg: 14px;
  --radius-md: 10px;
  --radius-sm: 8px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  color-scheme: dark;
}

body {
  min-height: 100vh;
  font-family: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 34%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.98) 18%, rgba(2, 4, 10, 0.95) 34%, rgba(12, 15, 26, 0.98) 72%, rgba(8, 10, 17, 1) 100%),
    radial-gradient(circle at 16% 14%, rgba(52, 152, 251, 0.18) 0%, rgba(52, 152, 251, 0) 24%),
    radial-gradient(circle at 88% 16%, rgba(52, 152, 251, 0.14) 0%, rgba(52, 152, 251, 0) 20%),
    linear-gradient(180deg, #101524 0%, #080a11 100%);
  display: flex;
  justify-content: center;
  padding: 32px 32px 48px;
  overflow-x: hidden;
}

html:has(body.is-embed-featured) {
  height: 100%;
  overflow: hidden;
}

body.is-embed-featured {
  height: 100dvh;
  padding: 0;
  background: transparent;
  overflow: hidden;
}

body.is-embed-featured .page {
  width: 100vw;
  height: 100dvh;
  min-height: 100dvh;
  gap: 0;
  overflow: hidden;
}

body.is-embed-featured .hero,
body.is-embed-featured .panel-controls {
  display: none;
}

body.is-featured-timeline {
  height: 100dvh;
  padding: 0;
  overflow: hidden;
}

body.is-featured-timeline .page {
  width: 100vw;
  height: 100dvh;
  min-height: 100dvh;
  gap: 0;
  overflow: hidden;
}

body.is-featured-timeline .hero,
body.is-featured-timeline .panel-controls {
  display: none;
}

body.is-featured-timeline .layout {
  grid-template-columns: minmax(0, 1fr);
  grid-auto-rows: 1fr;
  gap: 0;
  padding: 0;
  align-items: stretch;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

body.is-featured-timeline .globe-card {
  grid-column: 1;
  max-width: none;
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  overflow: hidden;
  justify-self: stretch;
  align-self: stretch;
}

body.is-featured-timeline #globe {
  height: 100%;
  min-height: 0;
}

body.is-featured-timeline .globe-copy {
  top: 24px;
  left: 24px;
  right: auto;
  max-width: 320px;
}

body.is-featured-timeline .status-bar {
  left: 24px;
  right: 24px;
  bottom: 24px;
}

body.is-featured-timeline .country-flows {
  display: none;
}

body.is-embed-featured .layout {
  grid-template-columns: minmax(0, 1fr);
  grid-auto-rows: 1fr;
  gap: 0;
  padding: 0;
  align-items: stretch;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

body.is-embed-featured .globe-card {
  max-width: none;
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  overflow: hidden;
  align-self: stretch;
}

body.is-embed-featured #globe {
  height: 100%;
  min-height: 0;
}

body.is-embed-featured .globe-copy {
  top: 24px;
  left: 24px;
  right: auto;
  max-width: 320px;
}

body.is-embed-featured .status-bar {
  left: 24px;
  right: 24px;
  bottom: 24px;
}

body.is-embed-featured .country-flows {
  display: none;
}

body.is-embed-featured .kill-feed,
body.is-embed-featured .timeline-scrubber {
  display: none !important;
}

body.is-embed-featured .page,
body.is-featured-timeline .page {
  transition: opacity 0.6s ease-out, filter 0.6s ease-out;
}

body.is-embed-featured:not(.embed-loaded) .page,
body.is-featured-timeline:not(.embed-loaded) .page {
  opacity: 0;
  filter: blur(10px);
  pointer-events: none;
}

@media (max-width: 1180px) {
  body.is-featured-timeline .layout,
  body.is-embed-featured .layout {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    height: auto;
    overflow: visible;
  }

  body.is-featured-timeline .globe-card,
  body.is-featured-timeline #globe,
  body.is-embed-featured .globe-card,
  body.is-embed-featured #globe {
    min-height: min(72vh, 860px);
  }
}

.page {
  width: min(1520px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.page.is-loading {
  filter: blur(2px);
  opacity: 0.62;
  pointer-events: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
}

.panel,
.globe-card {
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(18px);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 4px 0;
  max-width: none;
}

.eyebrow,
.section-kicker,
.brand-label {
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.title {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.title h1 {
  font-family: "Space Grotesk", "IBM Plex Sans", sans-serif;
  font-size: clamp(32px, 4.3vw, 50px);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.title p {
  max-width: 760px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.logo-meta {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
  margin-top: 8px;
}

.brand-card {
  width: min(380px, 100%);
  padding: 6px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
}

.logo {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  transition: transform 140ms ease, opacity 140ms ease;
}

.logo:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.logo img {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
}

.layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 360px) minmax(0, 1fr) minmax(320px, 380px);
  gap: 24px;
  align-items: start;
}

.layout > * {
  min-width: 0;
}

.panel {
  height: auto;
  align-self: start;
  overflow: hidden;
  padding: 20px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    var(--surface);
}

.panel-controls {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  width: 100%;
  max-height: none;
}

.panel-intro {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.panel-intro-secondary {
  margin-top: 6px;
}

.panel h2 {
  font-family: "Space Grotesk", "IBM Plex Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.section-description {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
  padding: 10px 6px 10px 14px;
  border-radius: 0;
  border: 0;
  background:
    radial-gradient(circle at top left, rgba(52, 152, 251, 0.18), rgba(52, 152, 251, 0) 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
  min-height: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, rgba(52, 152, 251, 0.95), rgba(52, 152, 251, 0.1));
  box-shadow: 0 0 18px rgba(52, 152, 251, 0.35);
}

.stat span {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.stat strong {
  font-family: "Space Grotesk", "IBM Plex Sans", sans-serif;
  font-size: clamp(22px, 2.3vw, 28px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.stat-detail {
  color: rgba(200, 210, 232, 0.72);
  font-size: 10px;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.control-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.control {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

label {
  color: var(--muted-strong);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

select,
input[type="range"] {
  width: 100%;
}

select {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
    rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 11px 14px;
  font: inherit;
  outline: none;
  transition: border-color 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

select option {
  color: #0c0f1a;
  background: #d7e6f7;
}

select:focus,
input[type="range"]:focus {
  border-color: rgba(52, 152, 251, 0.48);
  box-shadow: 0 0 0 4px rgba(52, 152, 251, 0.14);
}

.legend {
  display: grid;
  gap: 8px;
  padding: 10px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
}

.legend-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.legend-swatch {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  flex: 0 0 auto;
}

.range-value {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

input[type="range"] {
  appearance: none;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(52, 152, 251, 0.2), rgba(255, 255, 255, 0.06));
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #6cc0ff 0%, #3498fb 100%);
  box-shadow: 0 0 0 4px rgba(52, 152, 251, 0.18), 0 8px 18px rgba(52, 152, 251, 0.38);
  cursor: pointer;
}

input[type="range"]::-moz-range-track {
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(52, 152, 251, 0.2), rgba(255, 255, 255, 0.06));
}

input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #6cc0ff 0%, #3498fb 100%);
  box-shadow: 0 0 0 4px rgba(52, 152, 251, 0.18), 0 8px 18px rgba(52, 152, 251, 0.38);
  cursor: pointer;
}

.globe-card {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 920px;
  min-height: 0;
  justify-self: center;
  align-self: start;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.globe-card::before {
  content: "";
  position: absolute;
  inset: -3%;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.96) 28%, rgba(5, 8, 15, 0.9) 46%, rgba(12, 15, 26, 0.72) 64%, rgba(12, 15, 26, 0.08) 82%, rgba(12, 15, 26, 0) 100%),
    radial-gradient(circle at 50% 50%, rgba(52, 152, 251, 0.12) 0%, rgba(52, 152, 251, 0.06) 34%, rgba(52, 152, 251, 0) 68%);
  pointer-events: none;
  z-index: 0;
}

.globe-copy {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
  max-width: 420px;
}

.globe-copy p {
  max-width: 340px;
  color: rgba(244, 247, 255, 0.72);
  font-size: 11px;
  line-height: 1.5;
}

#globe {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  background: transparent;
  filter: drop-shadow(0 22px 46px rgba(0, 0, 0, 0.34));
}

.globe-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0) 34%, rgba(0, 0, 0, 0.26) 58%, rgba(0, 0, 0, 0.58) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0) 18%, rgba(0, 0, 0, 0) 78%, rgba(0, 0, 0, 0.24) 100%);
}

.status-bar {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 28px;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(5, 8, 14, 0.52);
  backdrop-filter: blur(12px);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #57adff 0%, #3498fb 100%);
  color: #03101d;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.status-text {
  color: rgba(244, 247, 255, 0.74);
  font-size: 11px;
}

.globe-tooltip {
  position: fixed;
  z-index: 40;
  pointer-events: none;
  opacity: 0;
  transition: opacity 120ms ease;
}

.globe-tooltip.is-visible {
  opacity: 1;
}

.panel.panel-table {
  padding: 0;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    var(--surface-strong);
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--text);
  font-family: "Space Grotesk", "IBM Plex Sans", sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.button {
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(52, 152, 251, 0.32);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(52, 152, 251, 0.2), rgba(52, 152, 251, 0.08));
  color: #d9edff;
  font: inherit;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}

.button:hover {
  transform: translateY(-1px);
  border-color: rgba(52, 152, 251, 0.52);
  box-shadow: 0 12px 24px rgba(52, 152, 251, 0.16);
}

.button:active {
  transform: translateY(0);
}

.panel-note {
  padding: 0 18px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.table-wrap {
  margin-top: 0;
  flex: 1;
  overflow: auto;
}

.table-scroll {
  max-height: 70vh;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  background: transparent;
}

thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  text-align: left;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--accent-strong);
  background: rgba(6, 9, 16, 0.92);
  backdrop-filter: blur(12px);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
}

tbody tr {
  transition: background 120ms ease;
}

tbody tr:nth-child(odd) {
  background: rgba(255, 255, 255, 0.015);
}

tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.03);
}

tbody tr:hover {
  background: rgba(52, 152, 251, 0.08);
}

td {
  padding: 12px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--muted-strong);
  font-size: 12px;
}

.table-empty {
  text-align: center;
  color: var(--muted);
  padding: 20px;
}

.error {
  color: var(--warning);
  font-size: 13px;
  margin-top: 14px;
}

.country-flows {
  display: flex;
  flex-direction: column;
  min-height: 0;
  width: 100%;
  max-height: none;
  align-self: start;
}

.country-flows .table-wrap {
  scrollbar-width: thin;
  scrollbar-color: rgba(52, 152, 251, 0.4) rgba(255, 255, 255, 0.04);
}

.country-flows .table-wrap::-webkit-scrollbar {
  width: 10px;
}

.country-flows .table-wrap::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
}

.country-flows .table-wrap::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(52, 152, 251, 0.36);
}

.country-flows .table-wrap::-webkit-scrollbar-thumb:hover {
  background: rgba(52, 152, 251, 0.52);
}

@media (max-width: 1280px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .globe-card {
    width: 100%;
    min-height: 0;
    max-height: none;
  }

  .panel-controls,
  .country-flows {
    height: auto;
    max-height: 60vh;
  }

  .country-flows .table-wrap,
  .country-flows .table-scroll {
    max-height: 60vh;
  }
}

/* ── Kill feed ─────────────────────────────────────────────────────────────── */

.kill-feed {
  display: none;
  flex-direction: column;
  background: #070a12;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 8px 6px;
  font-family: "IBM Plex Mono", "Fira Mono", monospace;
  font-size: 11px;
  color: var(--muted);
  gap: 0;
  align-self: stretch;
  min-height: 0;
}

.kill-feed-hint {
  display: block;
  text-align: center;
  color: var(--muted);
  opacity: 0.5;
  font-size: 10px;
  letter-spacing: 0.06em;
  margin-top: auto;
  margin-bottom: auto;
  padding: 8px 4px;
}

@keyframes kill-slide-in {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.kill-entry {
  padding: 3px 4px;
  border-radius: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--muted-strong);
  transition: opacity 0.28s ease-out, transform 0.28s ease-out;
  animation: kill-slide-in 0.28s ease-out both;
}

.kill-entry--entering {
  opacity: 0;
  transform: translateY(-16px);
}

/* ── Timeline scrubber ─────────────────────────────────────────────────────── */

.timeline-scrubber {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  min-height: 40px;
}

.timeline-btn {
  flex-shrink: 0;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 12px;
  padding: 4px 10px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  font-family: inherit;
  white-space: nowrap;
}

.timeline-btn:hover {
  background: var(--accent-soft);
  border-color: var(--border-accent);
}

.scrubber-track {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}

.day-row {
  display: flex;
  gap: 3px;
  width: 100%;
}

.scrubber-day {
  flex: 1;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 10px;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
  white-space: nowrap;
  overflow: hidden;
  user-select: none;
}

.scrubber-day:hover {
  background: var(--accent-soft);
  border-color: var(--border-accent);
  box-shadow: 0 0 8px rgba(52, 152, 251, 0.4);
  color: var(--accent-strong);
}

.scrubber-day--no-data {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.tick-row {
  display: flex;
  gap: 2px;
  width: 100%;
  align-items: flex-end;
}

.tick {
  flex: 1;
  height: 20px;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  transition: background 0.1s, border-color 0.1s;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.tick:hover,
.tick--active {
  background: var(--accent-soft);
  border-color: var(--border-accent);
}

.tick--active {
  box-shadow: 0 0 6px rgba(52, 152, 251, 0.5);
}

.tick-label {
  position: absolute;
  bottom: -14px;
  font-size: 9px;
  color: var(--muted);
  pointer-events: none;
  white-space: nowrap;
}

.timeline-bucket-label {
  flex-shrink: 0;
  font-size: 11px;
  color: var(--accent-strong);
  font-family: "IBM Plex Mono", "Fira Mono", monospace;
  min-width: 56px;
  text-align: right;
}

body.is-featured-timeline .kill-feed {
  position: absolute;
  top: 24px;
  left: 24px;
  bottom: 88px;
  width: 180px;
  display: flex;
  z-index: 4;
  pointer-events: none;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  padding: 0;
}

body.is-featured-timeline .kill-feed-hint {
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  color: rgba(236, 242, 255, 0.7);
  opacity: 1;
}

body.is-featured-timeline .timeline-scrubber {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 76px;
  z-index: 4;
  display: none;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  min-height: auto;
}

body.is-featured-timeline .timeline-btn {
  background: rgba(7, 10, 18, 0.56);
}

body.is-featured-timeline .scrubber-track {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

body.is-featured-timeline .day-row {
  width: max-content;
  min-width: 100%;
  gap: 8px;
}

body.is-featured-timeline .scrubber-day {
  flex: 0 0 auto;
  min-width: 72px;
  height: 34px;
  padding: 0 12px;
  background: rgba(7, 10, 18, 0.5);
  border-color: rgba(118, 156, 219, 0.28);
  color: rgba(236, 242, 255, 0.82);
}

body.is-featured-timeline .scrubber-day:hover {
  background: rgba(19, 38, 79, 0.7);
}

body.is-featured-timeline .timeline-bucket-label {
  color: rgba(236, 242, 255, 0.88);
}

/* Keep timeline chrome hidden outside featured routes; JS reveals it on the active featured view. */
body:not(.is-embed-featured):not(.is-featured-timeline) .kill-feed,
body:not(.is-embed-featured):not(.is-featured-timeline) .timeline-scrubber {
  display: none !important;
}

@media (max-width: 1180px) {
  body.is-featured-timeline .kill-feed,
  body.is-embed-featured .kill-feed {
    display: none !important;
  }
}

@media (max-width: 920px) {
  body {
    padding: 20px 18px 32px;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .brand-card {
    min-width: 0;
    align-items: flex-start;
  }

  .panel {
    padding: 18px;
  }

  .hero-copy,
  .brand-card {
    padding: 4px 0;
  }

  .globe-copy,
  .status-bar {
    left: 14px;
    right: 14px;
  }

  .globe-copy {
    top: 10px;
  }

  .status-bar {
    bottom: 12px;
  }
}

@media (max-width: 640px) {
  .title h1 {
    font-size: 34px;
  }

  .panel-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .status-bar {
    gap: 10px;
  }

  .status-text,
  .globe-copy p,
  .title p {
    font-size: 11px;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  thead th,
  td {
    padding-left: 14px;
    padding-right: 14px;
  }
}
