:root {
  --zsm-bg: #060d17;
  --zsm-bg-soft: #091321;
  --zsm-sidebar: #07111f;
  --zsm-surface: #0d1928;
  --zsm-surface-2: #111f31;
  --zsm-surface-3: #17283c;
  --zsm-border: #1d3046;
  --zsm-border-light: #29415f;
  --zsm-text: #eaf2fc;
  --zsm-muted: #8fa3bb;
  --zsm-faint: #63778f;
  --zsm-blue: #2387f5;
  --zsm-blue-light: #5ba9ff;
  --zsm-blue-soft: rgba(35, 135, 245, .13);
  --zsm-green: #31d18b;
  --zsm-green-soft: rgba(49, 209, 139, .12);
  --zsm-yellow: #f3bd4f;
  --zsm-yellow-soft: rgba(243, 189, 79, .13);
  --zsm-red: #ff6577;
  --zsm-red-soft: rgba(255, 101, 119, .13);
  --zsm-gray-soft: rgba(143, 163, 187, .12);
  --zsm-radius: 18px;
  --zsm-radius-sm: 13px;
  --zsm-shadow: 0 18px 50px rgba(0, 0, 0, .22);
  --zsm-font: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  scrollbar-color: #29415f #091321;
}

html {
  min-height: 100%;
  background: var(--zsm-bg);
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--zsm-text);
  background:
    radial-gradient(circle at 78% -10%, rgba(28, 105, 196, .1), transparent 29rem),
    var(--zsm-bg);
  font-family: var(--zsm-font);
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
}

button,
input {
  font: inherit;
}

.app-shell {
  min-height: 100vh;
}

.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 1040;
  display: flex;
  width: 272px;
  flex-direction: column;
  border-right: 1px solid var(--zsm-border);
  background:
    radial-gradient(circle at 0 0, rgba(35, 135, 245, .1), transparent 16rem),
    var(--zsm-sidebar);
}

.sidebar-head {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
}

.brand,
.mobile-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.brand > span:last-child {
  display: flex;
  flex-direction: column;
}

.brand strong {
  font-size: 18px;
  letter-spacing: -.02em;
}

.brand small {
  margin-top: 2px;
  color: var(--zsm-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(91, 169, 255, .48);
  border-radius: 15px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .14), transparent 45%),
    linear-gradient(145deg, #1c8bff, #0c4fa5);
  box-shadow: 0 10px 28px rgba(22, 117, 224, .28);
  color: #fff;
}

.brand-mark::after {
  position: absolute;
  right: -9px;
  bottom: -11px;
  width: 30px;
  height: 30px;
  border: 6px dotted rgba(255, 255, 255, .24);
  border-radius: 50%;
  content: "";
}

.brand-mark span {
  position: relative;
  z-index: 1;
  font-size: 23px;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
}

.brand-mark-small {
  width: 34px;
  height: 34px;
  border-radius: 11px;
}

.brand-mark-small span {
  font-size: 17px;
}

.sidebar-nav {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 5px;
  padding: 12px 14px 24px;
}

.sidebar-caption {
  margin: 20px 13px 7px;
  color: var(--zsm-faint);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.sidebar-link {
  display: flex;
  min-height: 47px;
  align-items: center;
  gap: 13px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 13px;
  color: var(--zsm-muted);
  font-weight: 600;
  transition: .18s ease;
}

.sidebar-link i {
  width: 21px;
  color: #7890ab;
  font-size: 18px;
  text-align: center;
}

.sidebar-link:hover {
  background: rgba(255, 255, 255, .035);
  color: var(--zsm-text);
}

.sidebar-link.active {
  border-color: rgba(61, 149, 250, .2);
  background: var(--zsm-blue-soft);
  box-shadow: inset 3px 0 var(--zsm-blue);
  color: #f4f9ff;
}

.sidebar-link.active i {
  color: var(--zsm-blue-light);
}

.sidebar-foot {
  padding: 16px;
  border-top: 1px solid var(--zsm-border);
}

.user-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--zsm-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, .025);
}

.user-avatar {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(145deg, #278df8, #1257ad);
  color: white;
  font-size: 16px;
  font-weight: 800;
}

.user-copy {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
}

.user-copy strong,
.user-copy small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.user-copy strong {
  font-size: 13px;
}

.user-copy small {
  color: var(--zsm-muted);
  font-size: 11px;
}

.icon-button {
  display: inline-grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border: 1px solid var(--zsm-border);
  border-radius: 11px;
  background: rgba(255, 255, 255, .025);
  color: var(--zsm-muted);
  transition: .18s ease;
}

button.icon-button {
  padding: 0;
}

.icon-button:hover {
  border-color: var(--zsm-border-light);
  background: var(--zsm-surface-3);
  color: var(--zsm-text);
}

.content-shell {
  min-height: 100vh;
  margin-left: 272px;
}

.main-content {
  width: min(1500px, 100%);
  margin: 0 auto;
  padding: 42px 42px 64px;
}

.page-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.page-heading h1 {
  margin: 6px 0 0;
  color: #f3f8ff;
  font-size: clamp(27px, 3vw, 39px);
  font-weight: 760;
  letter-spacing: -.04em;
}

.page-lead {
  max-width: 730px;
  margin: 9px 0 0;
  color: var(--zsm-muted);
  font-size: 15px;
  line-height: 1.6;
}

.eyebrow {
  color: var(--zsm-blue-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.eyebrow-link:hover {
  color: #8fc3ff;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.btn {
  border-radius: 12px;
  font-weight: 700;
}

.btn-primary {
  border-color: #2387f5;
  background: linear-gradient(135deg, #2791ff, #166dd0);
  box-shadow: 0 9px 25px rgba(26, 121, 228, .2);
}

.btn-primary:hover,
.btn-primary:focus {
  border-color: #50a7ff;
  background: linear-gradient(135deg, #3da0ff, #1b79e5);
}

.btn-outline-light {
  border-color: var(--zsm-border-light);
  background: rgba(255, 255, 255, .02);
  color: var(--zsm-text);
}

.btn-outline-light:hover {
  border-color: #3e5b7a;
  background: var(--zsm-surface-3);
}

.health-hero,
.server-hero,
.backup-overview,
.service-overview {
  position: relative;
  display: flex;
  align-items: center;
  gap: 22px;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--zsm-border);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(20, 37, 57, .94), rgba(10, 23, 38, .96));
  box-shadow: var(--zsm-shadow);
}

.health-hero::after,
.server-hero::after {
  position: absolute;
  top: -100px;
  right: -70px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(35, 135, 245, .14), transparent 68%);
  content: "";
  pointer-events: none;
}

.health-orb,
.server-hero-state {
  display: grid;
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 22px;
  font-size: 30px;
}

.hero-ok .health-orb {
  background: var(--zsm-green-soft);
  box-shadow: inset 0 0 30px rgba(49, 209, 139, .08);
  color: var(--zsm-green);
}

.hero-warning .health-orb {
  background: var(--zsm-yellow-soft);
  color: var(--zsm-yellow);
}

.hero-critical .health-orb {
  background: var(--zsm-red-soft);
  color: var(--zsm-red);
}

.hero-unknown .health-orb {
  background: var(--zsm-gray-soft);
  color: var(--zsm-muted);
}

.health-copy {
  position: relative;
  z-index: 1;
  flex: 1;
}

.health-copy h2,
.server-hero-copy h2,
.backup-overview h2,
.service-overview h2 {
  margin: 4px 0 5px;
  color: #f4f8fd;
  font-size: clamp(20px, 2.1vw, 28px);
  font-weight: 740;
  letter-spacing: -.025em;
}

.health-copy p,
.server-hero-copy p,
.backup-overview p,
.service-overview p {
  margin: 0;
  color: var(--zsm-muted);
}

.health-updated {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  color: var(--zsm-muted);
  font-size: 11px;
}

.health-updated strong {
  color: var(--zsm-text);
  font-size: 12px;
}

.status-badge {
  display: inline-flex;
  min-height: 27px;
  align-items: center;
  gap: 7px;
  padding: 4px 9px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .01em;
  line-height: 1;
  white-space: nowrap;
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 3px color-mix(in srgb, currentColor 14%, transparent);
}

.status-ok {
  color: var(--zsm-green);
}

.status-warning {
  color: var(--zsm-yellow);
}

.status-critical {
  color: var(--zsm-red);
}

.status-unknown,
.status-pending {
  color: var(--zsm-muted);
}

.status-badge.status-ok {
  border-color: rgba(49, 209, 139, .27);
  background: var(--zsm-green-soft);
}

.status-badge.status-warning {
  border-color: rgba(243, 189, 79, .28);
  background: var(--zsm-yellow-soft);
}

.status-badge.status-critical {
  border-color: rgba(255, 101, 119, .28);
  background: var(--zsm-red-soft);
}

.status-badge.status-unknown,
.status-badge.status-pending {
  border-color: rgba(143, 163, 187, .22);
  background: var(--zsm-gray-soft);
}

.status-surface-ok {
  background: var(--zsm-green-soft) !important;
  color: var(--zsm-green) !important;
}

.status-surface-warning {
  background: var(--zsm-yellow-soft) !important;
  color: var(--zsm-yellow) !important;
}

.status-surface-critical {
  background: var(--zsm-red-soft) !important;
  color: var(--zsm-red) !important;
}

.status-surface-unknown,
.status-surface-pending {
  background: var(--zsm-gray-soft) !important;
  color: var(--zsm-muted) !important;
}

.status-edge-ok {
  --edge-color: var(--zsm-green);
}

.status-edge-warning {
  --edge-color: var(--zsm-yellow);
}

.status-edge-critical {
  --edge-color: var(--zsm-red);
}

.status-edge-unknown,
.status-edge-pending {
  --edge-color: #60758d;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.stat-card {
  position: relative;
  display: grid;
  min-height: 130px;
  grid-template-columns: auto 1fr;
  grid-template-rows: 1fr auto;
  gap: 7px 13px;
  align-items: center;
  padding: 20px;
  overflow: hidden;
  border: 1px solid var(--zsm-border);
  border-radius: var(--zsm-radius);
  background: var(--zsm-surface);
  transition: .2s ease;
}

.stat-card:hover {
  transform: translateY(-2px);
  border-color: var(--zsm-border-light);
  background: var(--zsm-surface-2);
}

.stat-icon {
  display: grid;
  width: 43px;
  height: 43px;
  grid-row: 1 / 3;
  place-items: center;
  border-radius: 13px;
  background: var(--zsm-blue-soft);
  color: var(--zsm-blue-light);
  font-size: 19px;
}

.stat-ok .stat-icon {
  background: var(--zsm-green-soft);
  color: var(--zsm-green);
}

.stat-warning .stat-icon {
  background: var(--zsm-yellow-soft);
  color: var(--zsm-yellow);
}

.stat-critical .stat-icon {
  background: var(--zsm-red-soft);
  color: var(--zsm-red);
}

.stat-value {
  align-self: end;
  color: #f2f7fd;
  font-size: 32px;
  font-weight: 760;
  letter-spacing: -.04em;
  line-height: 1;
}

.stat-label {
  align-self: start;
  color: var(--zsm-muted);
  font-size: 12px;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin: 40px 2px 17px;
}

.section-heading h2,
.panel-card-head h2 {
  margin: 4px 0 0;
  color: #edf4fc;
  font-size: 21px;
  font-weight: 730;
  letter-spacing: -.025em;
}

.section-heading h2 a:hover {
  color: var(--zsm-blue-light);
}

.section-note {
  color: var(--zsm-muted);
  font-size: 12px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--zsm-blue-light);
  font-size: 12px;
  font-weight: 700;
}

.text-link:hover {
  color: #91c6ff;
}

.server-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.server-card {
  position: relative;
  min-height: 218px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid var(--zsm-border);
  border-radius: var(--zsm-radius);
  background: linear-gradient(145deg, var(--zsm-surface-2), var(--zsm-surface));
  box-shadow: inset 0 3px var(--edge-color);
  transition: .2s ease;
}

.server-card::after {
  position: absolute;
  right: -50px;
  bottom: -65px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--edge-color) 9%, transparent), transparent 67%);
  content: "";
}

.server-card:hover {
  z-index: 1;
  transform: translateY(-3px);
  border-color: var(--zsm-border-light);
  box-shadow: inset 0 3px var(--edge-color), 0 18px 34px rgba(0, 0, 0, .19);
}

.server-card-top,
.volume-head,
.application-head,
.backup-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.server-symbol {
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  place-items: center;
  border: 1px solid rgba(83, 157, 244, .17);
  border-radius: 13px;
  background: var(--zsm-blue-soft);
  color: var(--zsm-blue-light);
  font-size: 18px;
}

.server-card h3 {
  margin: 18px 0 4px;
  color: #f1f6fc;
  font-size: 17px;
  font-weight: 720;
  letter-spacing: -.02em;
}

.server-hostname {
  margin: 0;
  color: var(--zsm-faint);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .02em;
}

.server-summary {
  min-height: 42px;
  margin: 14px 0 15px;
  color: var(--zsm-muted);
  font-size: 12px;
  line-height: 1.55;
}

.mini-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.mini-metrics span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
  color: #aabbd0;
  font-size: 10px;
  font-weight: 650;
}

.dashboard-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 40px;
}

.panel-card {
  padding: 22px;
  border: 1px solid var(--zsm-border);
  border-radius: var(--zsm-radius);
  background: var(--zsm-surface);
}

.panel-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 17px;
}

.compact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.compact-row {
  display: flex;
  min-height: 67px;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 13px;
  transition: .18s ease;
}

.compact-row:hover {
  border-color: var(--zsm-border);
  background: rgba(255, 255, 255, .025);
}

.compact-icon {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  border-radius: 12px;
}

.compact-copy {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  gap: 2px;
}

.compact-copy strong {
  font-size: 12px;
}

.compact-copy small {
  overflow: hidden;
  color: var(--zsm-muted);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.all-clear {
  display: flex;
  min-height: 245px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--zsm-muted);
  text-align: left;
}

.all-clear > span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 17px;
  background: var(--zsm-green-soft);
  color: var(--zsm-green);
  font-size: 24px;
}

.all-clear strong {
  color: var(--zsm-text);
  font-size: 16px;
}

.all-clear p {
  margin: 4px 0 0;
  font-size: 12px;
}

.alert-panel {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 13px 15px;
  border: 1px solid var(--zsm-border);
  border-radius: 13px;
  color: var(--zsm-muted);
  font-size: 12px;
  line-height: 1.55;
}

.alert-panel i {
  margin-top: 1px;
  font-size: 16px;
}

.alert-panel-warning {
  border-color: rgba(243, 189, 79, .25);
  background: var(--zsm-yellow-soft);
  color: #efc96f;
}

.alert-panel-danger {
  border-color: rgba(255, 101, 119, .27);
  background: var(--zsm-red-soft);
  color: #ff9ba8;
}

.alert-panel-success {
  border-color: rgba(49, 209, 139, .25);
  background: var(--zsm-green-soft);
  color: #76e6b5;
}

.toolbar-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
  padding: 13px 15px;
  border: 1px solid var(--zsm-border);
  border-radius: 15px;
  background: var(--zsm-surface);
}

.toolbar-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--zsm-muted);
  font-size: 12px;
}

.search-box {
  display: flex;
  width: min(310px, 100%);
  min-height: 40px;
  align-items: center;
  gap: 9px;
  padding: 0 12px;
  border: 1px solid var(--zsm-border);
  border-radius: 11px;
  background: var(--zsm-bg-soft);
  color: var(--zsm-faint);
}

.search-box:focus-within {
  border-color: #386998;
  box-shadow: 0 0 0 3px rgba(35, 135, 245, .1);
}

.search-box input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--zsm-text);
  font-size: 12px;
}

.search-box input::placeholder {
  color: var(--zsm-faint);
}

.server-list,
.service-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.server-row,
.service-row {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(250px, 1.5fr) minmax(160px, .9fr) auto auto;
  gap: 17px;
  align-items: center;
  min-height: 100px;
  padding: 15px 17px;
  overflow: hidden;
  border: 1px solid var(--zsm-border);
  border-radius: 16px;
  background: var(--zsm-surface);
  box-shadow: inset 3px 0 var(--edge-color);
  transition: .18s ease;
}

.server-row:hover,
.service-row:hover {
  transform: translateX(2px);
  border-color: var(--zsm-border-light);
  background: var(--zsm-surface-2);
}

.server-row-main {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.server-title-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
}

.server-title-line strong {
  color: #eef5fd;
  font-size: 15px;
}

.server-row-main small {
  color: var(--zsm-faint);
  font-size: 10px;
}

.server-row-main > span:last-child {
  overflow: hidden;
  color: var(--zsm-muted);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.server-row-role {
  color: var(--zsm-muted);
  font-size: 11px;
  line-height: 1.45;
}

.server-row-metrics {
  display: flex;
  gap: 7px;
}

.server-row-metrics > span {
  display: flex;
  min-width: 68px;
  flex-direction: column;
  gap: 2px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .03);
}

.server-row-metrics small {
  color: var(--zsm-faint);
  font-size: 9px;
}

.server-row-metrics strong {
  font-size: 11px;
}

.server-chevron {
  color: var(--zsm-faint);
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 16px;
  align-items: start;
}

.form-card {
  padding: 28px;
}

.form-label {
  margin-bottom: 8px;
  color: #dce8f5;
  font-size: 12px;
  font-weight: 700;
}

.form-control {
  border-color: var(--zsm-border-light);
  background: #091523;
  color: var(--zsm-text);
  border-radius: 12px;
}

.form-control:focus {
  border-color: var(--zsm-blue);
  background: #0a1727;
  box-shadow: 0 0 0 4px rgba(35, 135, 245, .11);
  color: white;
}

.form-control::placeholder {
  color: #536a82;
}

.input-icon {
  position: relative;
}

.input-icon > i {
  position: absolute;
  top: 50%;
  left: 16px;
  z-index: 2;
  transform: translateY(-50%);
  color: var(--zsm-blue-light);
  font-size: 17px;
}

.input-icon .form-control {
  padding-left: 46px;
}

.form-hint {
  margin: 9px 0 22px;
  color: var(--zsm-muted);
  font-size: 11px;
  line-height: 1.5;
}

.explanation-card {
  position: relative;
  overflow: hidden;
  padding: 27px;
  background:
    radial-gradient(circle at 95% 5%, rgba(35, 135, 245, .12), transparent 15rem),
    var(--zsm-surface);
}

.explanation-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
  background: var(--zsm-blue-soft);
  color: var(--zsm-blue-light);
  font-size: 21px;
}

.explanation-card h2 {
  margin: 18px 0;
  font-size: 20px;
}

.process-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.process-list li > span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  border: 1px solid #28527f;
  border-radius: 9px;
  background: #0a1929;
  color: var(--zsm-blue-light);
  font-size: 11px;
  font-weight: 800;
}

.process-list li > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.process-list strong {
  font-size: 12px;
}

.process-list small {
  color: var(--zsm-muted);
  font-size: 10px;
}

.security-note,
.inventory-callout {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 22px;
  padding: 13px;
  border: 1px solid rgba(49, 209, 139, .17);
  border-radius: 12px;
  background: var(--zsm-green-soft);
  color: #94c9b5;
  font-size: 10px;
  line-height: 1.55;
}

.security-note i {
  color: var(--zsm-green);
  font-size: 16px;
}

.server-hero {
  box-shadow: inset 4px 0 var(--edge-color), var(--zsm-shadow);
}

.server-hero-copy {
  z-index: 1;
  min-width: 250px;
  flex: 1;
}

.server-hero-copy .status-badge {
  margin-bottom: 7px;
}

.server-hero-facts {
  z-index: 1;
  display: grid;
  width: min(430px, 43%);
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.server-hero-facts > span {
  display: flex;
  min-height: 67px;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, .055);
  border-radius: 12px;
  background: rgba(4, 11, 19, .25);
}

.server-hero-facts small {
  color: var(--zsm-faint);
  font-size: 9px;
  text-transform: uppercase;
}

.server-hero-facts strong {
  font-size: 10px;
  line-height: 1.4;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.metric-box {
  display: flex;
  min-height: 110px;
  flex-direction: column;
  justify-content: center;
  padding: 17px;
  border: 1px solid var(--zsm-border);
  border-radius: 15px;
  background: var(--zsm-surface);
}

.metric-box > span {
  color: var(--zsm-muted);
  font-size: 10px;
}

.metric-box > strong {
  margin-top: 5px;
  color: #f0f6fd;
  font-size: 22px;
  letter-spacing: -.03em;
}

.metric-box > small {
  margin-top: 6px;
  color: var(--zsm-faint);
  font-size: 9px;
}

progress {
  width: 100%;
  height: 5px;
  margin-top: 10px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  appearance: none;
  background: #1a2a3d;
}

progress::-webkit-progress-bar {
  border-radius: 999px;
  background: #1a2a3d;
}

progress::-webkit-progress-value {
  border-radius: 999px;
  background: linear-gradient(90deg, #1c78df, #53a8ff);
}

progress::-moz-progress-bar {
  border-radius: 999px;
  background: linear-gradient(90deg, #1c78df, #53a8ff);
}

.inventory-callout {
  margin-top: 12px;
  border-color: rgba(35, 135, 245, .2);
  background: var(--zsm-blue-soft);
  color: #9cb8d5;
}

.inventory-callout > span {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  place-items: center;
  border-radius: 11px;
  background: rgba(35, 135, 245, .15);
  color: var(--zsm-blue-light);
  font-size: 17px;
}

.inventory-callout strong {
  color: #d8eaff;
  font-size: 12px;
}

.inventory-callout p {
  margin: 3px 0 0;
  font-size: 10px;
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 13px;
}

.application-card {
  padding: 20px;
  border: 1px solid var(--zsm-border);
  border-radius: var(--zsm-radius);
  background: var(--zsm-surface);
  box-shadow: inset 3px 0 var(--edge-color);
}

.application-head {
  justify-content: flex-start;
}

.application-head > .status-badge {
  margin-left: auto;
}

.application-symbol {
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  place-items: center;
  border-radius: 13px;
  background: var(--zsm-blue-soft);
  color: var(--zsm-blue-light);
}

.application-head small,
.application-card > p,
.application-head h3 {
  margin: 0;
}

.application-head small {
  color: var(--zsm-faint);
  font-size: 9px;
  text-transform: uppercase;
}

.application-head h3 {
  margin-top: 2px;
  font-size: 15px;
}

.application-card > p {
  margin-top: 14px;
  color: var(--zsm-muted);
  font-size: 11px;
  line-height: 1.55;
}

.app-version {
  margin-top: 11px;
  color: var(--zsm-faint);
  font-size: 10px;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-top: 15px;
  overflow: hidden;
  border: 1px solid var(--zsm-border);
  border-radius: 11px;
  background: var(--zsm-border);
}

.check-row {
  display: grid;
  grid-template-columns: auto minmax(90px, 1fr) minmax(90px, 1fr);
  gap: 9px;
  align-items: center;
  min-height: 38px;
  padding: 7px 10px;
  background: #0a1624;
  font-size: 10px;
}

.check-row > span:last-child {
  color: var(--zsm-muted);
  text-align: right;
}

.network-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
}

.network-card {
  padding: 18px;
  border: 1px solid var(--zsm-border);
  border-radius: var(--zsm-radius);
  background: linear-gradient(145deg, #101d2d, #0b1624);
}

.network-card.connected {
  border-color: rgba(49, 209, 139, .24);
  box-shadow: inset 0 2px rgba(49, 209, 139, .55);
}

.network-card-top,
.network-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ethernet-jack {
  position: relative;
  width: 78px;
  height: 58px;
  padding: 7px 8px;
  border: 3px solid #39495b;
  border-bottom-width: 6px;
  border-radius: 9px 9px 13px 13px;
  background: #050a10;
  box-shadow: inset 0 0 0 3px #121f2d, 0 7px 16px rgba(0, 0, 0, .22);
}

.connected .ethernet-jack {
  border-color: #3c765f;
  box-shadow: inset 0 0 0 3px #112b23, 0 0 22px rgba(49, 209, 139, .08);
}

.jack-contacts {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 2px;
}

.jack-contacts span {
  height: 11px;
  border-radius: 1px 1px 3px 3px;
  background: #8d7130;
}

.connected .jack-contacts span {
  background: #d5aa46;
}

.jack-mouth {
  width: 46px;
  height: 24px;
  margin: 5px auto 0;
  border: 2px solid #2e3c4b;
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
  background: #090f16;
}

.link-light {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--zsm-muted);
  font-size: 9px;
  font-weight: 650;
}

.link-light span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #536578;
}

.connected .link-light {
  color: var(--zsm-green);
}

.connected .link-light span {
  background: var(--zsm-green);
  box-shadow: 0 0 9px rgba(49, 209, 139, .8);
}

.network-title {
  margin: 17px 0 12px;
}

.network-title small {
  color: var(--zsm-faint);
  font-size: 9px;
  text-transform: uppercase;
}

.network-title h3 {
  margin: 2px 0 0;
  font-size: 16px;
}

.port-speed {
  padding: 6px 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
  color: #b9c9db;
  font-size: 10px;
  font-weight: 750;
}

.connected .port-speed {
  background: var(--zsm-green-soft);
  color: var(--zsm-green);
}

.detail-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--zsm-border);
  border-radius: 11px;
  background: var(--zsm-border);
}

.detail-list > div {
  display: grid;
  grid-template-columns: minmax(75px, .8fr) minmax(120px, 1.4fr);
  gap: 10px;
  padding: 8px 10px;
  background: #0a1624;
}

.detail-list dt,
.detail-list dd {
  margin: 0;
  font-size: 9px;
}

.detail-list dt {
  color: var(--zsm-faint);
  font-weight: 500;
}

.detail-list dd {
  overflow-wrap: anywhere;
  color: #cbd8e7;
  text-align: right;
}

.technical {
  font-family: "Cascadia Code", Consolas, monospace;
}

.hardware-layout {
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(400px, 1.2fr);
  gap: 13px;
}

.hardware-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 17px;
}

.hardware-icon {
  display: grid;
  width: 55px;
  height: 55px;
  place-items: center;
  border-radius: 17px;
  background: var(--zsm-blue-soft);
  color: var(--zsm-blue-light);
  font-size: 23px;
}

.detail-list-wide {
  flex: 1;
}

.memory-card {
  min-width: 0;
}

.memory-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 17px;
}

.memory-head h3 {
  margin: 3px 0 0;
  font-size: 21px;
}

.memory-head > span {
  color: var(--zsm-muted);
  font-size: 10px;
}

.memory-slots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.memory-slot {
  position: relative;
  display: flex;
  min-height: 57px;
  flex-direction: column;
  justify-content: center;
  padding: 10px 18px;
  overflow: hidden;
  border: 1px dashed #32465c;
  border-radius: 9px;
  color: var(--zsm-faint);
}

.memory-slot::before,
.memory-slot::after {
  position: absolute;
  top: 50%;
  width: 7px;
  height: 25px;
  transform: translateY(-50%);
  border: 1px solid #394f65;
  content: "";
}

.memory-slot::before {
  left: 3px;
  border-radius: 1px 4px 4px 1px;
}

.memory-slot::after {
  right: 3px;
  border-radius: 4px 1px 1px 4px;
}

.memory-slot.occupied {
  border-style: solid;
  border-color: rgba(49, 209, 139, .27);
  background:
    repeating-linear-gradient(90deg, transparent, transparent 22px, rgba(49, 209, 139, .025) 23px),
    var(--zsm-green-soft);
  color: #a9d6c5;
}

.memory-slot strong {
  color: inherit;
  font-size: 11px;
}

.memory-slot small {
  margin-top: 2px;
  color: inherit;
  opacity: .72;
  font-size: 8px;
}

.memory-notch {
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 10px;
  height: 5px;
  transform: translateX(-50%);
  border-radius: 5px 5px 0 0;
  background: var(--zsm-surface);
}

.muted-copy {
  margin: 0;
  color: var(--zsm-muted);
  font-size: 11px;
}

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

.vm-card {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--zsm-border);
  border-radius: 15px;
  background: var(--zsm-surface);
}

.vm-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
}

.vm-card h3,
.vm-card p {
  margin: 0;
}

.vm-card h3 {
  font-size: 13px;
}

.vm-card p {
  margin-top: 2px;
  color: var(--zsm-muted);
  font-size: 9px;
}

.vm-specs {
  display: flex;
  gap: 7px;
}

.vm-specs span {
  color: var(--zsm-muted);
  font-size: 9px;
}

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

.raid-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 110px;
  padding: 17px;
  border: 1px solid var(--zsm-border);
  border-radius: 16px;
  background: var(--zsm-surface);
  box-shadow: inset 3px 0 var(--edge-color);
}

.raid-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  font-size: 20px;
}

.raid-card small,
.raid-card h3,
.raid-card p {
  margin: 0;
}

.raid-card small {
  color: var(--zsm-faint);
  font-size: 9px;
  text-transform: uppercase;
}

.raid-card h3 {
  margin-top: 2px;
  font-size: 14px;
}

.raid-card p {
  margin-top: 4px;
  color: var(--zsm-muted);
  font-size: 10px;
}

.volume-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11px;
  margin-bottom: 11px;
}

.volume-card {
  padding: 17px;
  border: 1px solid var(--zsm-border);
  border-radius: 16px;
  background: var(--zsm-surface);
}

.volume-head {
  align-items: flex-start;
}

.volume-head small,
.volume-head h3 {
  margin: 0;
}

.volume-head small {
  color: var(--zsm-faint);
  font-size: 9px;
}

.volume-head h3 {
  margin-top: 2px;
  font-size: 14px;
}

.volume-card progress {
  height: 7px;
  margin: 17px 0 9px;
}

.volume-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 9px;
}

.volume-copy strong {
  color: #cbd9e8;
}

.volume-copy span {
  color: var(--zsm-faint);
}

.disk-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
}

.disk-card {
  display: grid;
  grid-template-columns: auto minmax(160px, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 17px;
  border: 1px solid var(--zsm-border);
  border-radius: 16px;
  background: var(--zsm-surface);
  box-shadow: inset 3px 0 var(--edge-color);
}

.disk-art {
  position: relative;
  display: grid;
  width: 50px;
  height: 67px;
  place-items: center;
  border: 2px solid #32475d;
  border-radius: 8px;
  background: linear-gradient(145deg, #19293b, #0c1723);
  color: #7893af;
  font-size: 25px;
}

.disk-led {
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--edge-color);
  box-shadow: 0 0 6px var(--edge-color);
}

.disk-copy small,
.disk-copy h3,
.disk-copy p {
  margin: 0;
}

.disk-copy small {
  color: var(--zsm-faint);
  font-size: 9px;
}

.disk-copy h3 {
  margin-top: 3px;
  font-size: 13px;
}

.disk-copy p {
  margin-top: 5px;
  color: var(--zsm-muted);
  font-size: 9px;
}

.disk-stats {
  display: flex;
  gap: 15px;
  margin: 0;
}

.disk-stats > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.disk-stats dt,
.disk-stats dd {
  margin: 0;
}

.disk-stats dt {
  color: var(--zsm-faint);
  font-size: 8px;
}

.disk-stats dd {
  font-size: 10px;
  font-weight: 700;
}

.empty-state {
  display: flex;
  min-height: 130px;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 25px;
  border: 1px dashed var(--zsm-border-light);
  border-radius: var(--zsm-radius);
  color: var(--zsm-muted);
}

.empty-state > i {
  color: #5d7794;
  font-size: 28px;
}

.empty-state strong {
  color: #c9d6e5;
  font-size: 13px;
}

.empty-state p {
  max-width: 650px;
  margin: 4px 0 0;
  font-size: 10px;
  line-height: 1.5;
}

.storage-server {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--zsm-border);
}

.storage-server:first-child .section-heading {
  margin-top: 0;
}

.storage-server:last-child {
  border-bottom: 0;
}

.backup-overview,
.service-overview {
  box-shadow: inset 4px 0 var(--edge-color);
}

.backup-overview-icon,
.service-overview-icon {
  display: grid;
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  place-items: center;
  border-radius: 18px;
  font-size: 25px;
}

.backup-overview > div,
.service-overview > div {
  flex: 1;
}

.backup-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  margin-top: 14px;
}

.backup-card {
  padding: 21px;
  border: 1px solid var(--zsm-border);
  border-radius: var(--zsm-radius);
  background: var(--zsm-surface);
  box-shadow: inset 3px 0 var(--edge-color);
}

.backup-head {
  justify-content: flex-start;
}

.backup-head .status-badge {
  margin-left: auto;
}

.backup-symbol {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border-radius: 13px;
  font-size: 18px;
}

.backup-head small,
.backup-head h2 {
  margin: 0;
}

.backup-head small {
  color: var(--zsm-faint);
  font-size: 9px;
}

.backup-head h2 {
  margin-top: 2px;
  font-size: 15px;
}

.backup-summary {
  min-height: 38px;
  margin: 15px 0;
  color: var(--zsm-muted);
  font-size: 11px;
  line-height: 1.5;
}

.backup-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--zsm-border);
  border-radius: 11px;
  background: var(--zsm-border);
}

.backup-facts > div {
  display: flex;
  min-height: 57px;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  padding: 9px 11px;
  background: #0a1624;
}

.backup-facts dt,
.backup-facts dd {
  margin: 0;
}

.backup-facts dt {
  color: var(--zsm-faint);
  font-size: 8px;
}

.backup-facts dd {
  color: #cbd9e8;
  font-size: 10px;
  font-weight: 700;
}

.verified-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  color: var(--zsm-green);
  font-size: 9px;
  font-weight: 700;
}

.coverage-card {
  margin-top: 16px;
}

.coverage-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.coverage-row {
  display: grid;
  grid-template-columns: auto minmax(130px, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 62px;
  padding: 9px 11px;
  border: 1px solid var(--zsm-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, .015);
}

.coverage-row:hover {
  background: rgba(255, 255, 255, .035);
}

.coverage-icon {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 10px;
  background: var(--zsm-blue-soft);
  color: var(--zsm-blue-light);
}

.coverage-row > span:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.coverage-row strong {
  font-size: 10px;
}

.coverage-row small {
  color: var(--zsm-faint);
  font-size: 8px;
}

.coverage-state {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 8px;
  font-weight: 700;
  text-align: right;
}

.covered {
  color: var(--zsm-green);
}

.not-covered {
  max-width: 155px;
  color: var(--zsm-muted);
}

.service-row {
  grid-template-columns: auto minmax(180px, 1fr) minmax(210px, 1.3fr) auto auto;
  min-height: 78px;
}

.service-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  font-size: 17px;
}

.service-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.service-copy strong {
  font-size: 12px;
}

.service-copy small {
  color: var(--zsm-faint);
  font-size: 9px;
}

.service-detail {
  color: var(--zsm-muted);
  font-size: 10px;
}

.login-screen {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  overflow: hidden;
  padding: 28px;
  background:
    linear-gradient(rgba(4, 11, 20, .91), rgba(4, 11, 20, .97)),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(72, 127, 188, .035) 60px),
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(72, 127, 188, .035) 60px);
}

.login-screen::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 42%, rgba(35, 135, 245, .08), transparent 25rem);
  content: "";
}

.login-glow {
  position: absolute;
  width: 370px;
  height: 370px;
  border-radius: 50%;
  filter: blur(15px);
  pointer-events: none;
}

.login-glow-one {
  top: -220px;
  left: -100px;
  background: rgba(32, 134, 248, .12);
}

.login-glow-two {
  right: -140px;
  bottom: -270px;
  background: rgba(34, 84, 172, .12);
}

.login-card {
  position: relative;
  z-index: 1;
  width: min(460px, 100%);
  padding: 31px;
  border: 1px solid #213850;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(19, 35, 53, .97), rgba(8, 19, 32, .98));
  box-shadow: 0 35px 90px rgba(0, 0, 0, .42), inset 0 1px rgba(255, 255, 255, .035);
}

.login-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--zsm-border);
}

.brand-mark-login {
  width: 55px;
  height: 55px;
  border-radius: 17px;
}

.brand-mark-login span {
  font-size: 27px;
}

.login-brand h1,
.login-brand p {
  margin: 0;
}

.login-brand h1 {
  font-size: 22px;
  font-weight: 780;
  letter-spacing: -.03em;
}

.login-brand p {
  margin-top: 3px;
  color: var(--zsm-muted);
  font-size: 10px;
}

.login-intro {
  margin: 25px 0 20px;
}

.login-intro h2 {
  margin: 5px 0 7px;
  font-size: 25px;
  font-weight: 750;
  letter-spacing: -.035em;
}

.login-intro p {
  margin: 0;
  color: var(--zsm-muted);
  font-size: 11px;
  line-height: 1.6;
}

.captcha-frame {
  display: grid;
  margin-bottom: 15px;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
}

.captcha-frame svg {
  display: block;
  width: 100%;
  max-height: 110px;
}

.captcha-input {
  text-align: center;
  font-size: 19px;
  font-weight: 750;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.login-button {
  margin-top: 13px;
}

.login-note {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 19px;
  color: var(--zsm-faint);
  font-size: 9px;
  line-height: 1.55;
}

.login-note i {
  color: var(--zsm-blue-light);
}

.login-note strong {
  color: #91a8c1;
}

.error-card {
  display: flex;
  min-height: 400px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 35px;
  border: 1px solid var(--zsm-border);
  border-radius: 22px;
  background: var(--zsm-surface);
  text-align: center;
}

.error-card > span {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border-radius: 21px;
  background: var(--zsm-blue-soft);
  color: var(--zsm-blue-light);
  font-size: 28px;
}

.error-card h2 {
  margin: 18px 0 6px;
  font-size: 24px;
}

.error-card p {
  margin: 0 0 22px;
  color: var(--zsm-muted);
}

.mobile-header {
  position: sticky;
  top: 0;
  z-index: 1020;
  height: 62px;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  border-bottom: 1px solid var(--zsm-border);
  background: rgba(7, 17, 31, .92);
  backdrop-filter: blur(14px);
}

.mobile-brand strong {
  font-size: 14px;
}

.mobile-spacer {
  width: 38px;
}

.mobile-header .icon-button {
  font-size: 21px;
}

@media (max-width: 1250px) {
  .server-grid,
  .network-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .server-row {
    grid-template-columns: auto minmax(220px, 1.3fr) minmax(140px, .8fr) auto;
  }

  .server-row-metrics {
    display: none;
  }

  .disk-stats {
    flex-direction: column;
    gap: 4px;
  }
}

@media (max-width: 991.98px) {
  .sidebar {
    width: min(300px, 88vw);
  }

  .content-shell {
    margin-left: 0;
  }

  .mobile-header {
    display: flex !important;
  }

  .main-content {
    padding: 28px 22px 50px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .server-hero {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .server-hero-facts {
    width: 100%;
  }

  .metric-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hardware-layout {
    grid-template-columns: 1fr;
  }

  .volume-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .disk-card {
    grid-template-columns: auto 1fr;
  }

  .disk-stats {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-around;
    padding-top: 11px;
    border-top: 1px solid var(--zsm-border);
  }
}

@media (max-width: 760px) {
  .main-content {
    padding: 23px 14px 42px;
  }

  .page-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 22px;
  }

  .page-actions,
  .page-actions .btn,
  .page-actions form {
    width: 100%;
  }

  .page-actions button {
    width: 100%;
  }

  .health-hero {
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 20px;
  }

  .health-orb {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
    border-radius: 16px;
    font-size: 23px;
  }

  .health-copy {
    width: calc(100% - 74px);
  }

  .health-updated {
    width: 100%;
    align-items: flex-start;
    padding-top: 12px;
    border-top: 1px solid var(--zsm-border);
  }

  .stats-grid {
    gap: 9px;
  }

  .stat-card {
    min-height: 110px;
    padding: 14px;
  }

  .stat-icon {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }

  .stat-value {
    font-size: 26px;
  }

  .section-heading {
    align-items: flex-start;
    margin-top: 31px;
  }

  .server-grid,
  .dashboard-columns,
  .application-grid,
  .network-grid,
  .raid-grid,
  .volume-grid,
  .disk-grid,
  .backup-grid,
  .coverage-list,
  .form-layout,
  .vm-grid {
    grid-template-columns: 1fr;
  }

  .server-card {
    min-height: 205px;
  }

  .toolbar-card {
    align-items: stretch;
    flex-direction: column;
  }

  .search-box {
    width: 100%;
  }

  .server-row {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    align-items: start;
    min-height: 116px;
  }

  .server-row-role {
    display: none;
  }

  .server-row .server-symbol {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .server-title-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .server-row-main > span:last-child {
    white-space: normal;
  }

  .server-hero {
    display: grid;
    grid-template-columns: auto 1fr;
    padding: 18px;
  }

  .server-hero-state {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
    border-radius: 15px;
    font-size: 20px;
  }

  .server-hero-copy {
    min-width: 0;
  }

  .server-hero-facts {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

  .metric-strip {
    gap: 8px;
  }

  .metric-box {
    min-height: 98px;
    padding: 13px;
  }

  .metric-box > strong {
    font-size: 18px;
  }

  .hardware-summary {
    grid-template-columns: 1fr;
  }

  .memory-slots {
    grid-template-columns: 1fr;
  }

  .vm-card {
    grid-template-columns: auto 1fr auto;
  }

  .vm-specs {
    display: none;
  }

  .raid-card {
    grid-template-columns: auto 1fr;
  }

  .raid-card > .status-badge {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .disk-card {
    grid-template-columns: auto 1fr;
  }

  .backup-overview,
  .service-overview {
    display: grid;
    grid-template-columns: auto 1fr;
    padding: 19px;
  }

  .backup-overview > .status-badge,
  .service-overview > .status-badge {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .coverage-row {
    grid-template-columns: auto 1fr;
  }

  .coverage-state {
    grid-column: 2;
    text-align: left;
  }

  .service-row {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 11px;
  }

  .service-detail {
    grid-column: 2 / -1;
  }

  .service-row > .status-badge {
    grid-row: 1;
    grid-column: 3;
  }

  .service-row > .bi-chevron-right {
    display: none;
  }

  .login-screen {
    align-items: start;
    padding: 15px;
  }

  .login-card {
    margin-top: 4vh;
    padding: 23px;
    border-radius: 20px;
  }
}

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

  .stat-card {
    display: flex;
    min-height: 105px;
    flex-wrap: wrap;
    gap: 7px 10px;
  }

  .stat-label {
    width: 100%;
  }

  .metric-strip {
    grid-template-columns: 1fr 1fr;
  }

  .backup-facts {
    grid-template-columns: 1fr;
  }

  .captcha-input {
    font-size: 15px;
    letter-spacing: .13em;
  }
}

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