/* System status page */
.st-page {
  --st-green: #88C038;
  --st-slate: #386870;
  --st-ink: #0f172a;
  --st-muted: #64748b;
  --st-line: #e2e8f0;
  --st-soft: #f1f5f4;
  --st-ok: #16a34a;
  --st-warn: #ca8a04;
  color: var(--st-ink);
  background:
    radial-gradient(900px 380px at 85% -5%, rgba(136, 192, 56, 0.14), transparent 55%),
    radial-gradient(700px 320px at 0% 20%, rgba(56, 104, 112, 0.1), transparent 50%),
    linear-gradient(180deg, #f7faf8 0%, #fff 42%, #f5f8f6 100%);
  padding: 0 0 72px;
}

.st-hero {
  padding: 44px 0 28px;
}
.st-hero-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.st-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(136, 192, 56, 0.14);
  color: #4a7a18;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.04em;
}
.st-eyebrow i { font-size: 11px; }
.st-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4.2vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--st-ink);
  line-height: 1.15;
}
.st-hero-lead {
  margin: 0 auto 22px;
  max-width: 560px;
  color: var(--st-muted);
  font-size: 15.5px;
  line-height: 1.65;
  font-weight: 550;
}

.st-overall {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(22, 163, 74, 0.22);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}
.st-overall-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--st-ok);
  box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.45);
  animation: st-pulse 2s ease-out infinite;
  flex: 0 0 auto;
}
.st-overall-copy {
  text-align: start;
}
.st-overall-copy strong {
  display: block;
  font-size: 14.5px;
  font-weight: 800;
  color: #166534;
  letter-spacing: -0.01em;
}
.st-overall-copy span {
  display: block;
  margin-top: 2px;
  font-size: 12.5px;
  color: var(--st-muted);
  font-weight: 550;
}

@keyframes st-pulse {
  0% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.45); }
  70% { box-shadow: 0 0 0 10px rgba(22, 163, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

.st-board {
  max-width: 820px;
  margin: 8px auto 0;
  background: #fff;
  border: 1px solid var(--st-line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
}
.st-board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 16px 20px;
  border-bottom: 1px solid var(--st-line);
  background: linear-gradient(180deg, #fafbfc, #fff);
}
.st-board-head h2 {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  color: var(--st-ink);
  letter-spacing: -0.01em;
}
.st-updated {
  font-size: 12.5px;
  color: var(--st-muted);
  font-weight: 600;
}

.st-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid #f1f5f9;
}
.st-row:last-child { border-bottom: 0; }
.st-row-main {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
}
.st-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: var(--st-soft);
  color: var(--st-slate);
  font-size: 16px;
}
.st-row-copy h3 {
  margin: 0 0 4px;
  font-size: 14.5px;
  font-weight: 750;
  color: var(--st-ink);
  letter-spacing: -0.01em;
}
.st-row-copy p {
  margin: 0;
  font-size: 13px;
  color: var(--st-muted);
  line-height: 1.45;
  font-weight: 550;
}

.st-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
  flex: 0 0 auto;
}
.st-badge i { font-size: 11px; }
.st-badge-ok {
  background: rgba(22, 163, 74, 0.1);
  color: #166534;
}
.st-badge-info {
  background: rgba(56, 104, 112, 0.1);
  color: var(--st-slate);
}

.st-support {
  max-width: 820px;
  margin: 28px auto 0;
  padding: 22px 24px;
  border-radius: 18px;
  background: linear-gradient(115deg, #23444b 0%, #386870 48%, #5f8a22 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  box-shadow: 0 18px 36px rgba(35, 68, 75, 0.2);
}
.st-support h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.st-support p {
  margin: 0;
  font-size: 13.5px;
  opacity: 0.9;
  font-weight: 550;
  line-height: 1.5;
}
.st-support-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.st-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 750;
  text-decoration: none !important;
  transition: transform 0.15s ease, background 0.15s ease;
}
.st-btn:hover { transform: translateY(-1px); }
.st-btn-primary {
  background: #88C038;
  color: #fff !important;
}
.st-btn-primary:hover { background: #74A82E; color: #fff !important; }
.st-btn-ghost {
  background: transparent;
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,0.5);
}
.st-btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  color: #fff !important;
}

.st-wrap { max-width: 880px; margin: 0 auto; }
.st-wrap-wide { max-width: 1080px; }

.st-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 18px;
}
.st-kpi {
  background: #fff;
  border: 1px solid var(--st-line);
  border-radius: 16px;
  padding: 16px 16px 14px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}
.st-kpi span {
  display: block;
  font-size: 12px;
  font-weight: 750;
  color: var(--st-muted);
}
.st-kpi strong {
  display: block;
  margin: 8px 0 4px;
  font-size: 26px;
  font-weight: 850;
  letter-spacing: -0.03em;
  color: #166534;
  font-variant-numeric: tabular-nums;
}
.st-kpi em {
  font-style: normal;
  font-size: 12px;
  color: var(--st-muted);
  font-weight: 550;
}

.st-legend-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}
.st-key {
  font-size: 11.5px;
  font-weight: 750;
  padding: 5px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--st-line);
}
.st-key-ok { color: #166534; border-color: rgba(22,163,74,.28); }
.st-key-degraded { color: #a16207; }
.st-key-partial { color: #c2410c; }
.st-key-major { color: #b91c1c; }
.st-key-maint { color: #1d4ed8; }

.st-board-head h2 i { margin-inline-end: 8px; color: var(--st-slate); }
.st-board-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.st-uptime-chip {
  font-size: 12px;
  font-weight: 800;
  color: var(--st-slate);
  background: var(--st-soft);
  border-radius: 999px;
  padding: 5px 10px;
  font-variant-numeric: tabular-nums;
}
.st-row-side {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}
.st-mini-up {
  font-size: 12.5px;
  font-weight: 800;
  color: #166534;
  font-variant-numeric: tabular-nums;
}

.st-region-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}
.st-region {
  border: 1px solid var(--st-line);
  border-radius: 14px;
  padding: 12px;
  background: #fbfdff;
}
.st-region-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.st-region-top strong {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #3b9fe8;
}
.st-region h3 { margin: 0 0 4px; font-size: 14px; font-weight: 800; }
.st-region p { margin: 0 0 8px; font-size: 12px; color: var(--st-muted); font-weight: 550; min-height: 32px; }
.st-region b { color: #166534; font-variant-numeric: tabular-nums; }

.st-lat-block { padding-top: 8px; border-top: 1px dashed var(--st-line); }

.st-monitor-table { display: flex; flex-direction: column; gap: 0; }
.st-mon {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
}
.st-mon:last-child { border-bottom: 0; }
.st-mon strong { display: block; font-size: 13.5px; }
.st-mon code {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  color: var(--st-muted);
  background: transparent;
  font-weight: 600;
}
.st-mon span { font-size: 12.5px; color: var(--st-muted); font-weight: 650; }

.st-sla { border: 1px solid var(--st-line); border-radius: 12px; overflow: hidden; }
.st-sla-h, .st-sla-r {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) 0.7fr 0.7fr;
  gap: 10px;
  padding: 10px 14px;
  font-size: 13px;
}
.st-sla-h {
  background: #f8fafc;
  font-weight: 800;
  color: var(--st-muted);
  font-size: 12px;
}
.st-sla-r { border-top: 1px solid #f1f5f9; font-weight: 650; }
.st-sla-r strong { color: #166534; font-variant-numeric: tabular-nums; }
.st-sla-note {
  margin: 12px 0 0;
  font-size: 12.5px;
  color: var(--st-muted);
  line-height: 1.55;
  font-weight: 550;
}

.st-subscribe {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 0 0 16px;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid var(--st-line);
  background: #fff;
}
.st-subscribe h3 { margin: 0 0 4px; font-size: 15px; font-weight: 800; }
.st-subscribe p { margin: 0; font-size: 13px; color: var(--st-muted); font-weight: 550; }
.st-btn-dark {
  background: #0f172a;
  color: #fff !important;
}

@media (max-width: 900px) {
  .st-kpis { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .st-mon { grid-template-columns: 1fr; }
}
.st-hero-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
  font-size: 13px;
  color: var(--st-muted);
  font-weight: 600;
}
.st-hero-links a {
  color: var(--st-slate);
  font-weight: 750;
  text-decoration: none !important;
}
.st-hero-links a:hover { color: #4a7a18; }

.st-uptime-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin: 0 0 22px;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--st-line);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
}
.st-uptime-num strong {
  display: block;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #166534;
}
.st-uptime-num span,
.st-uptime-note {
  color: var(--st-muted);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.5;
}
.st-uptime-num span { display: block; margin-top: 8px; }
.st-uptime-note { max-width: 360px; }

.st-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--st-ok);
  display: inline-block;
}

.st-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 14px;
}
.st-tabs a {
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--st-line);
  color: var(--st-ink) !important;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none !important;
}
.st-tabs a:hover { border-color: #88C038; color: #4a7a18 !important; }

.st-panel {
  background: #fff;
  border: 1px solid var(--st-line);
  border-radius: 18px;
  padding: 20px 22px 22px;
  margin: 0 0 16px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}
.st-panel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.st-panel-head h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.st-panel-head span {
  font-size: 12.5px;
  color: var(--st-muted);
  font-weight: 650;
}

.st-empty {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 2px 4px;
  color: var(--st-muted);
}
.st-empty i {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(22, 163, 74, 0.1);
  color: #166534;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.st-empty strong {
  display: block;
  color: var(--st-ink);
  font-size: 14px;
  margin-bottom: 2px;
}
.st-empty p { margin: 0; font-size: 13px; line-height: 1.5; font-weight: 550; }

.st-bars {
  display: flex;
  gap: 3px;
  height: 42px;
  align-items: stretch;
}
.st-bar {
  flex: 1 1 0;
  min-width: 2px;
  border-radius: 2px;
  background: #22c55e;
}
.st-bar:hover { filter: brightness(0.9); }
.st-bars-legend {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 12px;
  color: var(--st-muted);
  font-weight: 600;
}

.nw-map-card {
  background: radial-gradient(120% 80% at 50% 0%, #123445 0%, #081820 55%, #061318 100%);
  border-radius: 20px;
  overflow: hidden;
  margin: 0 0 22px;
  border: 1px solid rgba(125, 211, 252, 0.12);
  box-shadow: 0 22px 50px rgba(11, 31, 42, 0.28);
}
.nw-map-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  color: #e2e8f0;
}
.nw-map-head h2 { margin: 0; font-size: 15px; font-weight: 800; color: #fff; }
.nw-map-head span { font-size: 12.5px; color: #94a3b8; font-weight: 600; }
.nw-map-stage {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2 / 1;
  background: #07161d;
  direction: ltr;
  border-radius: 0 0 20px 20px;
}
.nw-map-stage::before,
.nw-map-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.nw-map-stage::before {
  background:
    radial-gradient(ellipse at 58% 48%, rgba(251, 191, 36, 0.16) 0%, transparent 28%),
    radial-gradient(ellipse at 50% 40%, transparent 42%, rgba(4, 12, 18, 0.55) 100%);
}
.nw-map-stage::after {
  box-shadow: inset 0 0 80px rgba(4, 12, 18, 0.45);
}
.nw-map-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  filter: saturate(1.05) contrast(1.12) brightness(0.88);
}
.nw-map-routes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  overflow: visible;
}
.nw-arc {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.nw-arc-spine.nw-arc-base {
  stroke: rgba(125, 211, 252, 0.22);
  stroke-width: 1.7;
}
.nw-arc-mesh.nw-arc-base {
  stroke: rgba(136, 192, 56, 0.18);
  stroke-width: 1.15;
}
.nw-arc-spine.nw-arc-flow {
  stroke: url(#nwArcGrad);
  stroke-width: 2.15;
  stroke-dasharray: 10 22;
  filter: url(#nwGlow);
  animation: nw-flow 4s linear infinite;
}
.nw-arc-mesh.nw-arc-flow {
  stroke: url(#nwMeshGrad);
  stroke-width: 1.35;
  stroke-dasharray: 6 16;
  animation: nw-flow 3.4s linear infinite;
  opacity: 0.85;
}
.nw-packet {
  fill: #fff;
}
.nw-packet.is-spine {
  fill: #fde68a;
  stroke: #fbbf24;
  stroke-width: 0.7;
  filter: url(#nwGlow);
}
.nw-packet.is-mesh {
  fill: #bbf7d0;
  stroke: #88C038;
  stroke-width: 0.5;
}
@keyframes nw-flow {
  to { stroke-dashoffset: -64; }
}
.nw-map-stage.is-focus .nw-arc-base.is-dim,
.nw-map-stage.is-focus .nw-arc-flow.is-dim {
  opacity: 0.18;
}
.nw-map-stage.is-focus .nw-arc-flow.is-hot {
  opacity: 1;
  stroke-width: 2.6;
}
.nw-map-stage.is-focus .nw-marker:not(.is-on) {
  opacity: 0.38;
}
.nw-map-stage.is-focus .nw-marker.is-on {
  z-index: 8;
  opacity: 1;
}
.nw-marker {
  position: absolute;
  width: 22px;
  height: 22px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  transform: translate(-50%, -50%);
  z-index: 3;
  cursor: pointer;
  outline: none;
}
.nw-marker-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border-radius: 50%;
  border: 1px solid rgba(136, 192, 56, 0.45);
  opacity: 0.65;
  animation: nw-ring-feed var(--feed-dur, 4s) var(--feed-delay, 0s) ease-out infinite;
  pointer-events: none;
}
.nw-marker.is-origin .nw-marker-ring {
  width: 26px;
  height: 26px;
  margin: -13px 0 0 -13px;
  border-color: rgba(251, 191, 36, 0.55);
}
.nw-marker-pulse {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
  border-radius: 50%;
  background: rgba(136, 192, 56, 0.28);
  animation: nw-pulse 2.2s ease-out infinite;
  pointer-events: none;
}
.nw-marker.is-origin .nw-marker-pulse {
  background: rgba(251, 191, 36, 0.32);
}
.nw-marker-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 11px;
  height: 11px;
  margin: -5.5px 0 0 -5.5px;
  border-radius: 50%;
  background: #88C038;
  border: 2px solid #fff;
  box-shadow: 0 0 10px rgba(136, 192, 56, 0.65), 0 0 0 3px rgba(136, 192, 56, 0.22);
  animation: nw-dot-feed var(--feed-dur, 4s) var(--feed-delay, 0s) ease-in-out infinite;
  pointer-events: none;
  transform-origin: center;
}
.nw-marker.is-origin .nw-marker-dot {
  width: 13px;
  height: 13px;
  margin: -6.5px 0 0 -6.5px;
  background: #fbbf24;
  box-shadow: 0 0 14px rgba(251, 191, 36, 0.75), 0 0 0 3px rgba(251, 191, 36, 0.28);
}
.nw-marker-label {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  white-space: nowrap;
  padding: 3px 8px;
  border-radius: 8px;
  background: rgba(8, 24, 32, 0.92);
  color: #f8fafc;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.01em;
  border: 1px solid rgba(125, 211, 252, 0.22);
  backdrop-filter: blur(6px);
  pointer-events: none;
  opacity: 1;
  box-shadow: 0 6px 16px rgba(0,0,0,0.28);
}
.nw-marker.is-pop .nw-marker-label {
  opacity: 1;
}
.nw-marker.is-left .nw-marker-label {
  left: auto;
  right: 16px;
}
.nw-marker.is-below .nw-marker-label {
  top: 16px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}
.nw-marker.is-above .nw-marker-label {
  top: auto;
  bottom: 16px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}
.nw-marker:hover .nw-marker-label,
.nw-marker:focus .nw-marker-label,
.nw-marker.is-on .nw-marker-label {
  opacity: 0.35;
}
.nw-tip {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%) translateY(6px);
  width: 228px;
  padding: 12px 12px 10px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(12, 28, 36, 0.98), rgba(7, 18, 24, 0.96));
  border: 1px solid rgba(125, 211, 252, 0.28);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
  color: #e2e8f0;
  text-align: start;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 9;
}
.nw-marker.is-left .nw-tip {
  left: auto;
  right: 18px;
}
.nw-marker.is-below .nw-tip {
  top: 18px;
  left: 50%;
  right: auto;
  transform: translateX(-50%) translateY(6px);
}
.nw-marker.is-above .nw-tip {
  top: auto;
  bottom: 18px;
  left: 50%;
  right: auto;
  transform: translateX(-50%) translateY(-6px);
}
.nw-marker:hover .nw-tip,
.nw-marker:focus .nw-tip,
.nw-marker:focus-within .nw-tip,
.nw-marker.is-on .nw-tip {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(-50%);
}
.nw-marker.is-below:hover .nw-tip,
.nw-marker.is-below:focus .nw-tip,
.nw-marker.is-below.is-on .nw-tip {
  transform: translateX(-50%);
}
.nw-marker.is-above:hover .nw-tip,
.nw-marker.is-above:focus .nw-tip,
.nw-marker.is-above.is-on .nw-tip {
  transform: translateX(-50%);
}
.nw-tip-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.nw-tip-code {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #7dd3fc;
}
.nw-tip-live {
  font-size: 10px;
  font-weight: 800;
  color: #86efac;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(134, 239, 172, 0.28);
  border-radius: 99px;
  padding: 2px 7px;
}
.nw-tip-title {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
.nw-tip-sub {
  display: block;
  margin: 3px 0 8px;
  font-size: 11.5px;
  color: #94a3b8;
  font-weight: 600;
  line-height: 1.35;
}
.nw-tip-sites {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: -2px 0 8px;
}
.nw-tip-sites i {
  font-style: normal;
  font-size: 10.5px;
  font-weight: 700;
  color: #e2e8f0;
  background: rgba(125, 211, 252, 0.1);
  border-radius: 99px;
  padding: 3px 8px;
}
.nw-tip-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  padding: 7px 8px;
  margin-bottom: 8px;
  border-radius: 9px;
  background: rgba(125, 211, 252, 0.08);
}
.nw-tip-meta em {
  font-style: normal;
  font-size: 11px;
  color: #bae6fd;
  font-weight: 700;
}
.nw-tip-meta b {
  font-size: 12px;
  color: #fde68a;
  font-variant-numeric: tabular-nums;
}
.nw-tip-svcs {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
}
.nw-tip-svcs li {
  position: relative;
  padding: 3px 0 3px 12px;
  font-size: 12px;
  font-weight: 650;
  color: #dbeafe;
}
.nw-tip-svcs li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #88C038;
  box-shadow: 0 0 8px rgba(136, 192, 56, 0.8);
}
.nw-tip-link {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 800;
  color: #fbbf24;
  text-decoration: none;
}
.nw-tip-link:hover { color: #fff; }
@keyframes nw-pulse {
  0% { transform: scale(0.7); opacity: 0.9; }
  100% { transform: scale(2.1); opacity: 0; }
}
@keyframes nw-dot-feed {
  0%, 78% { transform: scale(1); filter: brightness(1); }
  86% { transform: scale(1.55); filter: brightness(1.45); box-shadow: 0 0 18px rgba(255,255,255,0.55), 0 0 0 5px rgba(136, 192, 56, 0.28); }
  100% { transform: scale(1); filter: brightness(1); }
}
@keyframes nw-ring-feed {
  0%, 78% { transform: scale(1); opacity: 0.55; }
  86% { transform: scale(1.35); opacity: 1; }
  100% { transform: scale(1); opacity: 0.55; }
}
.nw-map-caption {
  margin: 0;
  padding: 12px 20px 16px;
  color: #94a3b8;
  font-size: 12.5px;
  font-weight: 550;
}
@media (prefers-reduced-motion: reduce) {
  .nw-arc-flow, .nw-marker-pulse, .nw-marker-dot, .nw-marker-ring { animation: none; }
  .nw-packet { display: none; }
}

.nw-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}
.nw-loc {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--st-line);
  border-radius: 16px;
}
.nw-loc-flag {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #f1f5f4;
  color: var(--st-slate);
  font-weight: 850;
  font-size: 12px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.nw-loc h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.nw-loc ul { list-style: none; margin: 0; padding: 0; }
.nw-loc li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  color: var(--st-muted);
  font-weight: 600;
  padding: 3px 0;
}
.nw-loc li strong { color: var(--st-ink); font-variant-numeric: tabular-nums; }

.nw-lat { margin: 0 0 14px; }
.nw-lat-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13.5px;
  margin-bottom: 6px;
}
.nw-lat-meta strong { font-weight: 750; }
.nw-lat-meta span { color: #166534; font-weight: 800; font-variant-numeric: tabular-nums; }
.nw-lat-track {
  height: 8px;
  border-radius: 99px;
  background: #eef2f1;
  overflow: hidden;
}
.nw-lat-track i {
  display: block;
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, #88C038, #386870);
}
.nw-lat-note {
  margin: 8px 0 0;
  font-size: 12.5px;
  color: var(--st-muted);
  line-height: 1.55;
  font-weight: 550;
}

@media (max-width: 767px) {
  .st-hero { padding: 28px 0 18px; }
  .st-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .st-support { padding: 18px; }
  .st-support-actions { width: 100%; }
  .st-btn { flex: 1 1 auto; justify-content: center; }
  .st-kpis { grid-template-columns: 1fr; }
  .st-sla-h, .st-sla-r { grid-template-columns: 1fr; }
  .nw-pin text { font-size: 11px; }
}
