.sh-monitor {
  --sh-bg: #f7f9fc;
  --sh-surface: #ffffff;
  --sh-surface-soft: #f7f9fc;
  --sh-surface-muted: #f1f5f9;
  --sh-border: #dde5ee;
  --sh-border-strong: #cbd6e2;
  --sh-text: #122033;
  --sh-text-soft: #557089;
  --sh-accent: #1f5fae;
  --sh-accent-strong: #0f417f;
  --sh-highlight: #3da600;
  background: var(--sh-bg);
  color: var(--sh-text);
  margin: 0 auto;
  max-width: 92.5rem;
  padding: 0.75rem 0 3.25rem;
}

.sh-panel {
  background: var(--sh-surface);
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius-md);
  box-shadow: none;
}

.sh-page-header__eyebrow {
  color: var(--sh-highlight);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 0.3rem;
  text-transform: uppercase;
}

.sh-page-header__title {
  color: #1b2735;
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 0.3rem;
}

.sh-page-header__intro {
  color: var(--sh-text-soft);
  font-size: 0.96rem;
  line-height: 1.5;
  margin: 0;
  max-width: 42rem;
}

.sh-monitor__hero {
  margin-bottom: 0.45rem;
  padding-top: 0.2rem;
}

.sh-monitor__hero-inner {
  max-width: 50rem;
}

.sh-monitor__hero-note {
  color: var(--sh-text-soft);
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0.85rem 0 0;
}

.sh-monitor__topbar {
  align-items: center;
  background: var(--sh-surface);
  border: 1px solid var(--sh-border);
  border-radius: 0.85rem;
  box-shadow: none;
  display: grid;
  gap: 0.75rem 0.875rem;
  grid-template-columns: minmax(0, 1.5fr) minmax(18rem, 0.85fr);
  margin-bottom: 0.9rem;
  padding: 0.625rem 0.75rem;
}

.sh-monitor__topbar-copy,
.sh-monitor__topbar-stat {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}

.sh-monitor__topbar-meta {
  align-items: center;
  display: grid;
  gap: 0.5rem 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sh-monitor__topbar-label {
  color: #2a3d51;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.sh-monitor__topbar-text {
  color: var(--sh-text-soft);
  font-size: 0.92rem;
  line-height: 1.45;
  margin: 0;
}

.sh-monitor__topbar-stat strong {
  color: #1e2b39;
  font-size: 0.88rem;
  font-weight: 700;
}

.sh-monitor__kpis {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 1.15rem;
  overflow: hidden;
  border-radius: 0.85rem;
  border: 0;
  box-shadow: none;
}

.sh-monitor__kpi {
  min-height: 6.9rem;
  padding: 1.2rem 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sh-monitor__kpi--primary {
  background: linear-gradient(180deg, #0f5bb6 0%, #0e55aa 100%);
  color: #fff;
}

.sh-monitor__kpi--secondary {
  background: linear-gradient(180deg, #2d73cb 0%, #2a6cc0 100%);
  color: #fff;
}

.sh-monitor__kpi--meta {
  background: #d7e6fb;
  color: #173b63;
}

.sh-monitor__kpi-value {
  display: block;
  font-size: clamp(1.9rem, 3vw, 2.55rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.sh-monitor__kpi-label,
.sh-monitor__kpi-meta {
  font-size: 0.92rem;
  font-weight: 600;
}

.sh-monitor__kpi-meta {
  margin-bottom: 0.35rem;
}

.sh-monitor__kpi-meta-value {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
}

.sh-monitor__workspace {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  margin-bottom: 1.15rem;
}

.sh-monitor__column {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.sh-monitor__column--secondary .sh-monitor-card:nth-child(2),
.sh-monitor__column--secondary .sh-monitor-card:nth-child(3) {
  min-height: 0;
}

.sh-monitor-card {
  padding: 1.15rem 1.2rem;
  border-radius: var(--sh-radius-md);
  box-shadow: none;
}

.sh-monitor__card-title {
  color: var(--sh-accent);
  font-size: 1rem;
  line-height: 1.2;
  margin: 0 0 0.85rem;
}

.sh-monitor-card > .sh-monitor__card-title {
  padding-bottom: 0.15rem;
  border-bottom: 1px solid transparent;
}

.sh-monitor__table {
  width: 100%;
  border-collapse: collapse;
}

.sh-monitor__table th,
.sh-monitor__table td {
  padding: 0.62rem 0.7rem;
  border-bottom: 1px solid var(--sh-border);
  font-size: 0.94rem;
}

.sh-monitor__table th {
  background: #eaf2fb;
  color: #2e4258;
  font-size: 0.9rem;
  text-align: left;
}

.sh-monitor__table th:last-child,
.sh-monitor__table td:last-child {
  text-align: right;
  white-space: nowrap;
}

.sh-monitor__table tr:last-child td {
  border-bottom: 0;
}

.sh-monitor__ranked-list,
.sh-monitor__signal-list {
  margin: 0;
  padding-left: 1.35rem;
}

.sh-monitor__ranked-list li,
.sh-monitor__signal-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.58rem 0;
  border-bottom: 1px solid var(--sh-border);
  font-size: 0.94rem;
}

.sh-monitor__signal-list li {
  display: list-item;
  border-bottom: 1px solid var(--sh-border);
  line-height: 1.45;
}

.sh-monitor__ranked-list li:last-child,
.sh-monitor__signal-list li:last-child {
  border-bottom: 0;
}

.sh-monitor__copy,
.sh-monitor__card-empty {
  color: var(--sh-text-soft);
  font-size: 0.94rem;
  line-height: 1.55;
  margin: 0 0 0.7rem;
}

.sh-monitor__info-list {
  display: grid;
  gap: 0;
}

.sh-monitor__info-row {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: start;
  column-gap: 0.6rem;
  padding: 0.68rem 0;
  border-bottom: 1px solid var(--sh-border);
}

.sh-monitor__info-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.sh-monitor__info-label {
  color: var(--sh-text);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.45;
}

.sh-monitor__info-value {
  color: var(--sh-text-soft);
  font-size: 0.94rem;
  line-height: 1.5;
}

.sh-monitor__card-footer {
  border-top: 1px solid transparent;
  margin-top: 0.7rem;
  padding-top: 0.1rem;
}

.sh-monitor__metric-block + .sh-monitor__metric-block {
  margin-top: 0.9rem;
}

.sh-monitor__metric-title {
  color: var(--sh-text);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 0.45rem;
}

.sh-monitor__table--compact th,
.sh-monitor__table--compact td {
  padding: 0.58rem 0;
}

.sh-monitor__table--compact td:first-child {
  color: var(--sh-text);
}

.sh-monitor__card-link {
  color: var(--sh-accent);
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 700;
  margin-top: 0.55rem;
  text-decoration: none;
}

.sh-monitor__card-link:hover {
  color: var(--sh-accent-strong);
}

.sh-monitor__cta-row {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--sh-border);
  padding-top: 0.95rem;
  margin-top: 0.95rem;
}

.sh-monitor__cta-link {
  color: var(--sh-accent);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.sh-monitor__cta-link:hover {
  color: var(--sh-accent-strong);
}

.sh-monitor__footnote {
  color: var(--sh-text-soft);
  font-size: 0.88rem;
  margin: 0.9rem 0 0;
}

.sh-monitor__empty {
  padding: 1.15rem 1.2rem;
}

@media (max-width: 1024px) {
  .sh-monitor__topbar,
  .sh-monitor__cta-row {
    grid-template-columns: 1fr;
  }

  .sh-monitor__workspace {
    grid-template-columns: 1fr;
  }

  .sh-monitor__topbar-meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .sh-monitor {
    padding-top: 0.7rem;
  }

  .sh-monitor__kpis {
    grid-template-columns: 1fr;
  }

  .sh-monitor__kpi {
    min-height: 5.6rem;
  }

  .sh-monitor-card {
    padding: 1rem;
  }

  .sh-monitor__info-row {
    grid-template-columns: 1fr;
    row-gap: 0.18rem;
  }
}
