@charset "UTF-8";
:root {
  --hcd-accent: #0b2f6b;
  --hcd-accent-dark: #072250;
  --hcd-accent-soft: rgba(11, 47, 107, 0.08);
  --hcd-accent-contrast: #ffffff;
  --hcd-white: #ffffff;
  --hcd-page: #f2f5f9;
  --hcd-surface: #ffffff;
  --hcd-surface-alt: #f7fafc;
  --hcd-border: #d8e2ee;
  --hcd-border-soft: #e8eef6;
  --hcd-ink: #172b4c;
  --hcd-ink-soft: #3d4d68;
  --hcd-ink-muted: #6b7c96;
  --hcd-sidebar-from: #072250;
  --hcd-sidebar-to: #172b4c;
  --hcd-panel-head: #10305e;
  --hcd-ok: #17803d;
  --hcd-warn: #c2740a;
  --hcd-bad: #d0342c;
  --hcd-info: #1d4ed8;
  --hcd-transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  min-height: 100vh;
  background: var(--hcd-page);
  color: var(--hcd-ink);
  font-family: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: 0;
  cursor: pointer;
}

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

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--hcd-ink);
}

h1 {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 22px;
}

h3 {
  font-size: 18px;
}

h4 {
  font-size: 15px;
}

h5 {
  font-size: 13px;
}

h6 {
  font-size: 13px;
}

p {
  color: var(--hcd-ink-soft);
}

small {
  font-size: 13px;
}

strong,
b {
  font-weight: 700;
}

.num,
.hcd-table td,
.hcd-kpi__value,
.hcd-stat__value {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hcd-ink-muted);
}

.u-hidden {
  display: none !important;
}

.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.u-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.u-nowrap {
  white-space: nowrap;
}

.u-right {
  text-align: right;
}

.u-center {
  text-align: center;
}

.u-ok {
  color: var(--hcd-ok);
}

.u-warn {
  color: var(--hcd-warn);
}

.u-bad {
  color: var(--hcd-bad);
}

.u-info {
  color: var(--hcd-info);
}

.u-muted {
  color: var(--hcd-ink-muted);
}

.u-accent {
  color: var(--hcd-accent);
}

.u-mt-0 {
  margin-top: 0px;
}

.u-mb-0 {
  margin-bottom: 0px;
}

.u-mt-1 {
  margin-top: 4px;
}

.u-mb-1 {
  margin-bottom: 4px;
}

.u-mt-2 {
  margin-top: 8px;
}

.u-mb-2 {
  margin-bottom: 8px;
}

.u-mt-3 {
  margin-top: 12px;
}

.u-mb-3 {
  margin-bottom: 12px;
}

.u-mt-4 {
  margin-top: 16px;
}

.u-mb-4 {
  margin-bottom: 16px;
}

.u-mt-6 {
  margin-top: 24px;
}

.u-mb-6 {
  margin-bottom: 24px;
}

.u-mt-8 {
  margin-top: 32px;
}

.u-mb-8 {
  margin-bottom: 32px;
}

.u-print-only {
  display: none;
}
@media print {
  .u-print-only {
    display: block;
  }
}

@media print {
  .u-no-print {
    display: none !important;
  }
}
.hcd-app {
  display: flex;
  align-items: stretch;
  min-height: 100vh;
}

.hcd-main {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  padding: 12px 14px 18px;
  gap: 10px;
}
@media (max-width: 819.98px) {
  .hcd-main {
    padding: 10px 10px 16px;
  }
}

.hcd-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(4, 22, 52, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.hcd-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 1080px) {
  .hcd-backdrop {
    display: none;
  }
}

@media print {
  .hcd-app {
    display: block;
  }
  .hcd-main {
    padding: 0;
  }
}
.hcd-sidebar {
  position: sticky;
  top: 0;
  z-index: 9;
  flex: 0 0 224px;
  width: 224px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: #001b48;
  color: rgba(255, 255, 255, 0.86);
  border-radius: 0 12px 12px 0;
  overflow: hidden;
}
.hcd-sidebar__brand {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  padding: 16px 0 14px;
}
.hcd-sidebar__emblem {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.55);
  background: var(--hcd-accent, rgba(255, 255, 255, 0.06));
  color: #fff;
  font-size: 24px;
}
.hcd-sidebar__nav {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.18) transparent;
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 4px 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hcd-sidebar__nav::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.hcd-sidebar__nav::-webkit-scrollbar-track {
  background: transparent;
}
.hcd-sidebar__nav::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}
.hcd-sidebar__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 5px 5px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.25;
  transition: background 0.15s ease, color 0.15s ease;
}
.hcd-sidebar__link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 2px;
}
.hcd-sidebar__link img {
  border-radius: 100%;
  width: 36px;
  height: 36px;
  object-fit: cover;
}
.hcd-sidebar__link i {
  flex: 0 0 18px;
  font-size: 15px;
  text-align: center;
  opacity: 0.9;
}
.hcd-sidebar__link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.hcd-sidebar__link.is-active {
  background: var(--hcd-accent);
  color: var(--hcd-accent-contrast);
  font-weight: 600;
  box-shadow: 0 1px 3px rgba(16, 35, 70, 0.08), 0 1px 2px rgba(16, 35, 70, 0.04);
}
.hcd-sidebar__link.is-active i {
  opacity: 1;
}
.hcd-sidebar__foot {
  flex-shrink: 0;
  padding: 10px 16px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.hcd-sidebar__tools {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding-bottom: 12px;
}
.hcd-sidebar__tools a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  transition: background 0.15s ease, color 0.15s ease;
}
.hcd-sidebar__tools a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.hcd-sidebar__next {
  display: block;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.15s ease, transform 0.15s ease;
}
.hcd-sidebar__next:hover {
  color: #fff;
  transform: translateX(3px);
}
@media (max-width: 1079.98px) {
  .hcd-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    transform: translateX(-100%);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0;
  }
  .hcd-sidebar.is-open {
    transform: translateX(0);
    box-shadow: 0 12px 34px rgba(16, 35, 70, 0.16);
  }
}
@media print {
  .hcd-sidebar {
    display: none;
  }
}

.hcd-sidebar-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
  width: 36px;
  height: 36px;
  border: 1px solid var(--hcd-border);
  border-radius: 5px;
  background: var(--hcd-surface);
  color: var(--hcd-ink);
  font-size: 16px;
}
.hcd-sidebar-toggle:focus-visible {
  outline: 2px solid var(--hcd-accent);
  outline-offset: 2px;
}
@media (max-width: 1079.98px) {
  .hcd-sidebar-toggle {
    display: flex;
  }
}
.hcd-sidebar-toggle--on-dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  align-self: flex-start;
}

.hcd-topbar {
  display: grid;
  grid-template-columns: minmax(280px, auto) 1fr;
  align-items: start;
  gap: 14px 20px;
}
@media (max-width: 1319.98px) {
  .hcd-topbar {
    grid-template-columns: 1fr;
  }
}

.hcd-titles {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 14px;
  min-width: 0;
}
.hcd-titles__text {
  min-width: 0;
}
.hcd-titles__title {
  font-size: clamp(20px, 2.1vw, 27px);
  font-weight: 500;
  letter-spacing: 0;
  word-spacing: 0.12em;
  text-transform: uppercase;
  color: #172b4c;
}
.hcd-titles__subtitle {
  font-size: clamp(13px, 1.25vw, 17px);
  font-weight: 500;
  color: var(--hcd-accent);
  margin-top: 10px;
}
.hcd-titles__dept {
  font-size: 13px;
  font-weight: 600;
  color: #1d4ed8;
  margin-top: 2px;
}

.hcd-health {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: center;
  flex-shrink: 0;
  padding: 6px 12px;
  border: 1px solid #17803d;
  border-radius: 5px;
  background: var(--hcd-surface);
  font-size: 13px;
  white-space: nowrap;
}
@media (max-width: 639.98px) {
  .hcd-health {
    white-space: normal;
  }
}
.hcd-health__label {
  color: var(--hcd-ink-soft);
}
.hcd-health__value {
  font-weight: 800;
  color: #17803d;
}
.hcd-health__state {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #17803d;
  font-weight: 600;
}
.hcd-health__state::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.hcd-toolbar {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  min-width: 0;
}
@media (max-width: 1319.98px) {
  .hcd-toolbar {
    align-items: stretch;
  }
}

.hcd-filters {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.hcd-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (max-width: 639.98px) {
  .hcd-actions .hcd-btn {
    flex: 1 1 100%;
    justify-content: center;
  }
}

.hcd-stamp {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid var(--hcd-border);
  border-radius: 5px;
  background: var(--hcd-surface);
  font-size: 13px;
  color: var(--hcd-ink-soft);
  white-space: nowrap;
}
.hcd-stamp b {
  color: #1d4ed8;
  font-weight: 700;
  margin-left: 4px;
}

.hcd-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 15px;
  align-items: stretch;
}

.hcd-col-3 {
  grid-column: span 12;
}
@media (min-width: 820px) {
  .hcd-col-3 {
    grid-column: span 6;
  }
}
@media (min-width: 1320px) {
  .hcd-col-3 {
    grid-column: span 3;
  }
}

.hcd-col-4 {
  grid-column: span 12;
}
@media (min-width: 820px) {
  .hcd-col-4 {
    grid-column: span 6;
  }
}
@media (min-width: 1320px) {
  .hcd-col-4 {
    grid-column: span 4;
  }
}

.hcd-col-5 {
  grid-column: span 12;
}
@media (min-width: 820px) {
  .hcd-col-5 {
    grid-column: span 6;
  }
}
@media (min-width: 1320px) {
  .hcd-col-5 {
    grid-column: span 5;
  }
}

.hcd-col-6 {
  grid-column: span 12;
}
@media (min-width: 820px) {
  .hcd-col-6 {
    grid-column: span 12;
  }
}
@media (min-width: 1320px) {
  .hcd-col-6 {
    grid-column: span 6;
  }
}

.hcd-col-7 {
  grid-column: span 12;
}
@media (min-width: 820px) {
  .hcd-col-7 {
    grid-column: span 12;
  }
}
@media (min-width: 1320px) {
  .hcd-col-7 {
    grid-column: span 7;
  }
}

.hcd-col-8 {
  grid-column: span 12;
}
@media (min-width: 820px) {
  .hcd-col-8 {
    grid-column: span 12;
  }
}
@media (min-width: 1320px) {
  .hcd-col-8 {
    grid-column: span 8;
  }
}

.hcd-col-9 {
  grid-column: span 12;
}
@media (min-width: 820px) {
  .hcd-col-9 {
    grid-column: span 12;
  }
}
@media (min-width: 1320px) {
  .hcd-col-9 {
    grid-column: span 9;
  }
}

.hcd-col-12 {
  grid-column: span 12;
}
@media (min-width: 820px) {
  .hcd-col-12 {
    grid-column: span 12;
  }
}
@media (min-width: 1320px) {
  .hcd-col-12 {
    grid-column: span 12;
  }
}

@media (min-width: 820px) and (max-width: 1319.98px) {
  .hcd-grid > .hcd-panel:nth-child(3):last-child {
    grid-column: span 12;
  }
}
@media (min-width: 1320px) {
  .hcd-grid--row-a {
    grid-template-columns: minmax(0, 27fr) minmax(0, 31fr) minmax(0, 38fr);
  }
  .hcd-grid--row-a > .hcd-panel {
    grid-column: auto;
  }
}

@media (min-width: 1320px) {
  .hcd-grid--row-b,
  .hcd-grid--row-c {
    grid-template-columns: minmax(0, 30fr) minmax(0, 40fr) minmax(0, 30fr);
  }
  .hcd-grid--row-b > .hcd-panel,
  .hcd-grid--row-c > .hcd-panel {
    grid-column: auto;
  }
}

.hcd-kpis {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 15px;
}
@media (max-width: 1599.98px) {
  .hcd-kpis {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 819.98px) {
  .hcd-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 479.98px) {
  .hcd-kpis {
    grid-template-columns: 1fr;
  }
}

@media print {
  .hcd-grid {
    display: block;
  }
  .hcd-panel {
    break-inside: avoid;
    margin-bottom: 10px;
  }
}
.hcd-footer {
  margin-top: auto;
  border-radius: 8px;
  background: linear-gradient(180deg, #072250 0%, #172b4c 100%);
  color: rgba(255, 255, 255, 0.72);
  overflow: hidden;
}
.hcd-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: 24px 20px;
  padding: 22px 15px 20px;
}
@media (max-width: 1319.98px) {
  .hcd-footer__top {
    grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 819.98px) {
  .hcd-footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 16px;
    padding-inline: 10px;
  }
}
@media (max-width: 479.98px) {
  .hcd-footer__top {
    grid-template-columns: 1fr;
  }
}
.hcd-footer p {
  color: rgba(255, 255, 255, 0.6);
}
.hcd-footer__brand {
  min-width: 0;
}
@media (max-width: 819.98px) {
  .hcd-footer__brand {
    grid-column: 1/-1;
  }
}
.hcd-footer__logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
}
.hcd-footer__logo img {
  width: auto;
  height: 46px;
  object-fit: contain;
}
.hcd-footer__title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.hcd-footer__tagline {
  margin-top: 6px;
  max-width: 40ch;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
}
.hcd-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.hcd-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.hcd-footer__social a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 2px;
}
.hcd-footer__social a img {
  width: 15px;
  height: 15px;
  object-fit: contain;
}
.hcd-footer__social a:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.32);
  transform: translateY(-2px);
}
.hcd-footer__col {
  min-width: 0;
}
.hcd-footer__heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}
.hcd-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hcd-footer__links a {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.66);
  transition: color 0.15s ease, padding-left 0.15s ease;
}
.hcd-footer__links a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 2px;
}
.hcd-footer__links a:hover {
  color: #fff;
  padding-left: 4px;
}
.hcd-footer__links a.is-current {
  color: #fff;
  font-weight: 600;
}
.hcd-footer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding: 12px 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.18);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 819.98px) {
  .hcd-footer__bar {
    justify-content: flex-start;
    padding-inline: 10px;
  }
}
.hcd-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
}
.hcd-footer__legal a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.15s ease;
}
.hcd-footer__legal a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 2px;
}
.hcd-footer__legal a:hover {
  color: #fff;
}
.hcd-footer__stamp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-variant-numeric: tabular-nums;
}
.hcd-footer__stamp b {
  padding: 2px 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
}
@media print {
  .hcd-footer {
    display: none;
  }
}

.hcd-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.hcd-btn:focus-visible {
  outline: 2px solid var(--hcd-accent);
  outline-offset: 2px;
}
.hcd-btn i {
  font-size: 14px;
}
.hcd-btn:hover {
  transform: translateY(-1px);
}
.hcd-btn:active {
  transform: translateY(0);
}
.hcd-btn--dark {
  background: #072250;
  color: #fff;
}
.hcd-btn--dark:hover {
  background: #0b2f6b;
  box-shadow: 0 4px 24px rgba(16, 35, 70, 0.15);
}
.hcd-btn--accent {
  background: var(--hcd-accent);
  color: var(--hcd-accent-contrast);
}
.hcd-btn--accent:hover {
  background: var(--hcd-accent-dark);
  box-shadow: 0 4px 24px rgba(16, 35, 70, 0.15);
}
.hcd-btn--primary {
  background: #1d4ed8;
  color: #fff;
}
.hcd-btn--primary:hover {
  background: #0d3fc0;
  box-shadow: 0 4px 24px rgba(16, 35, 70, 0.15);
}
.hcd-btn--danger {
  background: #d0342c;
  color: #fff;
}
.hcd-btn--danger:hover {
  background: #a52520;
  box-shadow: 0 4px 24px rgba(16, 35, 70, 0.15);
}
.hcd-btn--ghost {
  background: var(--hcd-surface);
  border-color: var(--hcd-border);
  color: #1d4ed8;
}
.hcd-btn--ghost:hover {
  border-color: #1d4ed8;
  background: #eaf1ff;
}
.hcd-btn--block {
  width: 100%;
  justify-content: center;
}

.hcd-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 6px 2px 0;
  font-size: 13px;
  font-weight: 600;
  color: #1d4ed8;
  transition: color 0.15s ease;
}
.hcd-more:focus-visible {
  outline: 2px solid var(--hcd-accent);
  outline-offset: 2px;
}
.hcd-more i {
  font-size: 11px;
  transition: transform 0.15s ease;
}
.hcd-more:hover {
  color: #0d3fc0;
}
.hcd-more:hover i {
  transform: translateX(3px);
}
.hcd-more--center {
  justify-content: center;
  gap: 6px;
}

.hcd-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  padding: 1px 5px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
  white-space: nowrap;
}

.hcd-badge--critical {
  color: #a52520;
  background: #fde3e1;
  border-color: #a52520;
}

.hcd-pill--critical {
  color: #a52520;
  background: transparent;
  border-color: #a52520;
}

.hcd-badge--high {
  color: #d0342c;
  background: #fdeceb;
  border-color: #d0342c;
}

.hcd-pill--high {
  color: #d0342c;
  background: transparent;
  border-color: #d0342c;
}

.hcd-badge--medium {
  color: #c2740a;
  background: #fdf3e0;
  border-color: #c2740a;
}

.hcd-pill--medium {
  color: #c2740a;
  background: transparent;
  border-color: #c2740a;
}

.hcd-badge--low {
  color: #17803d;
  background: #e6f6ec;
  border-color: #17803d;
}

.hcd-pill--low {
  color: #17803d;
  background: transparent;
  border-color: #17803d;
}

.hcd-badge--info {
  color: #1d4ed8;
  background: #eaf1ff;
  border-color: #1d4ed8;
}

.hcd-pill--info {
  color: #1d4ed8;
  background: transparent;
  border-color: #1d4ed8;
}

.hcd-badge--neutral {
  color: #6b7c96;
  background: #eef2f7;
  border-color: #c2d0e2;
}

.hcd-pill--neutral {
  color: #6b7c96;
  background: transparent;
  border-color: #c2d0e2;
}

.hcd-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  padding: 1px 6px;
  border: 1px solid #c2d0e2;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.6;
  white-space: nowrap;
}

.hcd-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #93a2b8;
}
.hcd-dot--ok {
  background: #17803d;
}
.hcd-dot--warn {
  background: #c2740a;
}
.hcd-dot--bad {
  background: #d0342c;
}
.hcd-dot--info {
  background: #1d4ed8;
}

.hcd-delta {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  color: var(--hcd-ink-muted);
}
.hcd-delta i {
  font-size: 8px;
}
.hcd-delta--up i {
  color: #17803d;
}
.hcd-delta--down i {
  color: #d0342c;
}
.hcd-delta--flat i {
  color: #93a2b8;
}

.hcd-select {
  appearance: none;
  min-width: 140px;
  padding: 7px 30px 7px 12px;
  border: 1px solid var(--hcd-border);
  border-radius: 5px;
  background-color: var(--hcd-surface);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7c96' d='M1 1.5 6 6.5l5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px;
  font-size: 13px;
  color: var(--hcd-ink);
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.hcd-select:focus-visible {
  outline: 2px solid var(--hcd-accent);
  outline-offset: 2px;
}
.hcd-select:hover {
  border-color: #c2d0e2;
}
.hcd-select:focus {
  border-color: var(--hcd-accent);
  box-shadow: 0 0 0 3px var(--hcd-accent-soft);
  outline: none;
}
@media (max-width: 639.98px) {
  .hcd-select {
    min-width: 0;
    flex: 1 1 140px;
  }
}

.hcd-panel {
  background: var(--hcd-surface);
  border: 1px solid var(--hcd-border);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(16, 35, 70, 0.06);
}
.hcd-panel__head {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 12px 15px 6px;
  color: var(--hcd-ink);
}
@media (max-width: 819.98px) {
  .hcd-panel__head {
    padding-inline: 10px;
  }
}
.hcd-panel__num {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.85;
}
.hcd-panel__title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hcd-ink);
}
.hcd-panel__tools {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}
.hcd-panel__body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 0 15px 12px;
}
.hcd-panel__body > .hcd-more {
  margin-top: auto;
  padding-top: 8px;
}
@media (max-width: 819.98px) {
  .hcd-panel__body {
    padding-inline: 10px;
  }
}
.hcd-panel__body--flush {
  padding: 0;
}
.hcd-panel__foot {
  flex: 0 0 auto;
  padding: 6px 15px 8px;
  border-top: 1px solid var(--hcd-border-soft);
}
.hcd-panel__split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}
@media (max-width: 639.98px) {
  .hcd-panel__split {
    grid-template-columns: 1fr;
  }
}
.hcd-panel--accent .hcd-panel__head {
  background: var(--hcd-accent);
}

.hcd-layer {
  border: 1px solid var(--hcd-border);
  border-radius: 8px;
  background: var(--hcd-surface);
  padding: 22px 14px 14px;
  margin-top: 30px;
  position: relative;
}
.hcd-layer__title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 5px 18px;
  border-radius: 5px;
  background: #072250;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  max-width: calc(100% - 24px);
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 819.98px) {
  .hcd-layer__title {
    position: static;
    transform: none;
    display: block;
    white-space: normal;
    max-width: none;
    margin-bottom: 10px;
  }
}
.hcd-layer__note {
  margin-top: 10px;
  text-align: center;
  font-size: 13px;
  font-style: italic;
  color: #1d4ed8;
}
@media (max-width: 819.98px) {
  .hcd-layer {
    padding: 12px;
  }
}

.hcd-kpi {
  background: var(--hcd-surface);
  border: 1px solid var(--hcd-border);
  border-radius: 8px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 5px;
  padding: 8px 10px;
  box-shadow: 0 1px 2px rgba(16, 35, 70, 0.06);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.hcd-kpi:hover {
  box-shadow: 0 4px 24px rgba(16, 35, 70, 0.15);
  transform: translateY(-1px);
}
.hcd-kpi__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 23px;
  color: var(--hcd-accent);
}
.hcd-kpi__body {
  min-width: 0;
  text-align: center;
  padding: 2px;
}
.hcd-kpi__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--hcd-ink-soft);
  line-height: 1.3;
}
.hcd-kpi__value {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.15;
  padding: 10px 0;
  color: #17803d;
}
@media (max-width: 1319.98px) {
  .hcd-kpi__value {
    font-size: 23px;
  }
}
.hcd-kpi--warn .hcd-kpi__value {
  color: #c2740a;
}
.hcd-kpi--bad .hcd-kpi__value {
  color: #d0342c;
}
.hcd-kpi--info .hcd-kpi__value {
  color: #1d4ed8;
}
.hcd-kpi--warn .hcd-kpi__icon {
  color: #c2740a;
}
.hcd-kpi--bad .hcd-kpi__icon {
  color: #d0342c;
}
.hcd-kpi--compact {
  grid-template-columns: auto minmax(0, 1fr);
}
.hcd-kpi--compact .hcd-kpi__value {
  font-size: 24px;
}

.hcd-rows {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.hcd-rows--due {
  font-size: 13px;
}
.hcd-rows--due .hcd-row {
  gap: 8px;
  font-size: 13px;
}
.hcd-rows--due .hcd-row__label {
  white-space: normal;
  line-height: 1.25;
}
.hcd-rows--due .hcd-row__fraction {
  min-width: 42px;
}
.hcd-rows--due .hcd-row__pct {
  min-width: 30px;
}
.hcd-rows--due .hcd-row__date {
  min-width: 66px;
  font-size: 13px;
}

.hcd-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--hcd-border-soft);
  font-size: 13px;
  transition: background 0.15s ease;
}
.hcd-row:last-child {
  border-bottom: 0;
}
.hcd-row:hover {
  background: var(--hcd-surface-alt);
}
.hcd-row__icon {
  flex: 0 0 16px;
  text-align: center;
  font-size: 12px;
  color: var(--hcd-accent);
}
.hcd-row__label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  flex: 1 1 auto;
  min-width: 0;
  color: var(--hcd-ink);
}
.hcd-row__meta {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--hcd-ink-soft);
  font-size: 13px;
}
.hcd-row__state {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 600;
  color: #17803d;
}
.hcd-row__state.is-warn {
  color: #c2740a;
}
.hcd-row__state.is-bad {
  color: #d0342c;
}
.hcd-row__state.is-info {
  color: #1d4ed8;
}
.hcd-row__chev {
  flex: 0 0 10px;
  font-size: 10px;
  color: #93a2b8;
}
.hcd-row__fraction {
  flex-shrink: 0;
  min-width: 48px;
  text-align: right;
  font-variant-numeric: tabular-nums;
  color: var(--hcd-ink-soft);
}
.hcd-row__pct {
  flex-shrink: 0;
  min-width: 34px;
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: var(--hcd-ink-soft);
}
.hcd-row__date {
  flex-shrink: 0;
  min-width: 76px;
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: #c2740a;
}
.hcd-row__date.is-overdue {
  color: #d0342c;
}

.hcd-feed {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.hcd-feed__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  padding: 8px 0;
  border-bottom: 1px solid var(--hcd-border-soft);
}
.hcd-feed__item:last-child {
  border-bottom: 0;
}

.hcd-feed__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 3px;
  background: var(--hcd-accent-soft);
  color: var(--hcd-accent);
  font-size: 11px;
}

.hcd-feed__title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--hcd-ink);
  line-height: 1.6;
  padding-bottom: 5px;
}

.hcd-feed__time {
  display: block;
  font-size: 13px;
  color: var(--hcd-ink-muted);
  font-variant-numeric: tabular-nums;
}

.hcd-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  padding: 1px 7px;
  border: 1px solid #c2d0e2;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--hcd-ink-soft);
}
.hcd-count--draft {
  color: var(--hcd-ink-soft);
}
.hcd-count--review {
  color: #c2740a;
  border-color: rgba(194, 116, 10, 0.45);
}
.hcd-count--approved {
  color: #17803d;
  border-color: rgba(23, 128, 61, 0.4);
}
.hcd-count--released {
  color: #1d4ed8;
  border-color: rgba(29, 78, 216, 0.4);
}

.hcd-measures {
  flex: 1 1 auto;
}

.hcd-measure {
  display: grid;
  grid-template-columns: 14px minmax(0, 2.2fr) minmax(50px, 0.7fr) 36px 38px;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  border-bottom: 1px solid var(--hcd-border-soft);
  font-size: 13px;
}
.hcd-measure:last-child {
  border-bottom: 0;
}
.hcd-measure__icon {
  text-align: center;
  font-size: 12px;
  color: var(--hcd-accent);
}
.hcd-measure__label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  color: var(--hcd-ink);
}
.hcd-measure__value {
  text-align: right;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--hcd-ink);
}
@media (max-width: 639.98px) {
  .hcd-measure {
    grid-template-columns: 16px minmax(0, 1fr) 42px;
  }
  .hcd-measure .hcd-meter,
  .hcd-measure .hcd-spark {
    display: none;
  }
}

.hcd-meter {
  position: relative;
  height: 7px;
  border-radius: 999px;
  background: #e8eef6;
  overflow: hidden;
}
.hcd-meter__fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: clamp(0%, var(--val, 0%), 100%);
  border-radius: inherit;
  background: #17803d;
  transition: width 0.6s 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.hcd-meter--warn .hcd-meter__fill {
  background: #c2740a;
}
.hcd-meter--bad .hcd-meter__fill {
  background: #d0342c;
}
.hcd-meter--accent .hcd-meter__fill {
  background: var(--hcd-accent);
}
.hcd-meter--tall {
  height: 9px;
}

.hcd-spark {
  display: block;
  width: 100%;
  height: 22px;
  overflow: visible;
}
.hcd-spark polyline {
  fill: none;
  stroke: #17803d;
  stroke-width: 1.4;
  stroke-linejoin: round;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}
.hcd-spark--warn polyline {
  stroke: #c2740a;
}
.hcd-spark--bad polyline {
  stroke: #d0342c;
}
.hcd-spark--accent polyline {
  stroke: var(--hcd-accent);
}

.hcd-ring {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: conic-gradient(var(--ring-color, #17803d) calc(var(--val, 0) * 1%), #e8eef6 0);
  position: relative;
}
.hcd-ring::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--hcd-surface);
}
.hcd-ring--warn {
  --ring-color: #c2740a;
}
.hcd-ring--bad {
  --ring-color: #d0342c;
}
.hcd-ring--info {
  --ring-color: #1d4ed8;
}

.hcd-donut {
  position: relative;
  width: 100%;
  max-width: 122px;
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  background: conic-gradient(var(--donut-color, #106230) calc(var(--val, 0) * 1%), #e8eef6 0);
}
.hcd-donut::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: var(--hcd-surface);
}
.hcd-donut__body {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 10px;
}
.hcd-donut__value {
  font-size: 27px;
  font-weight: 800;
  line-height: 1;
  color: var(--donut-color, #106230);
}
.hcd-donut__label {
  font-size: 11px;
  font-weight: 600;
  color: var(--hcd-ink-soft);
  margin-top: 3px;
}
.hcd-donut__target {
  font-size: 11px;
  color: var(--hcd-ink-muted);
}
.hcd-donut--accent {
  --donut-color: var(--hcd-accent);
}

.hcd-stamp-ok {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 8px auto 0;
  padding: 4px 12px;
  border: 1px solid #17803d;
  border-radius: 5px;
  background: #e6f6ec;
  font-size: 13px;
  font-weight: 600;
  color: #106230;
}
.hcd-stamp-ok i {
  font-size: 12px;
}

.hcd-portfolio {
  position: relative;
  width: 100%;
  max-width: 128px;
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
}
.hcd-portfolio::after {
  content: "";
  position: absolute;
  inset: 26px;
  border-radius: 50%;
  background: var(--hcd-surface);
}
.hcd-portfolio__body {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hcd-portfolio__value {
  font-size: 22px;
  font-weight: 800;
  color: var(--hcd-ink);
  line-height: 1;
}
.hcd-portfolio__label {
  font-size: 11px;
  color: var(--hcd-ink-muted);
  margin-top: 2px;
}

.hcd-gauge {
  position: relative;
  width: 100%;
  max-width: 210px;
  margin: 0 auto;
  text-align: center;
}
.hcd-gauge__svg {
  width: 100%;
  height: auto;
  overflow: visible;
}
.hcd-gauge__track {
  fill: none;
  stroke-width: 14;
  stroke-linecap: butt;
}
.hcd-gauge__value-arc {
  fill: none;
  stroke: #17803d;
  stroke-width: 14;
  stroke-linecap: round;
  stroke-dasharray: 126 126;
  stroke-dashoffset: calc(126 - 126 * var(--val, 0) / 100);
  transition: stroke-dashoffset 0.8s 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.hcd-gauge__body {
  margin-top: -34px;
}
.hcd-gauge__value {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  color: var(--hcd-ink);
}
.hcd-gauge__label {
  font-size: 13px;
  color: var(--hcd-ink-soft);
  margin-top: 3px;
}
.hcd-gauge__state {
  font-size: 13px;
  font-weight: 700;
  color: #17803d;
}

.hcd-legend {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hcd-legend__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  font-size: 13px;
  border-bottom: 1px solid var(--hcd-border-soft);
}
.hcd-legend__item:last-child {
  border-bottom: 0;
}
.hcd-legend__swatch {
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--swatch, #93a2b8);
}
.hcd-legend__label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1 1 auto;
  min-width: 0;
  color: var(--hcd-ink);
}
.hcd-legend__rule {
  flex-shrink: 0;
  width: 26px;
  height: 1px;
  background: #c2d0e2;
}
.hcd-legend__value {
  flex-shrink: 0;
  min-width: 34px;
  text-align: right;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--hcd-ink);
}

.hcd-flow {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #c2d0e2 transparent;
  padding-bottom: 4px;
}
.hcd-flow::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.hcd-flow::-webkit-scrollbar-track {
  background: transparent;
}
.hcd-flow::-webkit-scrollbar-thumb {
  background: #c2d0e2;
  border-radius: 999px;
}

.hcd-flow__track {
  display: flex;
  align-items: stretch;
  gap: 2px;
}

.hcd-flow__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex: 1 1 0;
  min-width: 50px;
}

.hcd-flow__tile {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 2px;
  width: 100%;
  min-height: 54px;
  padding: 5px 3px;
  border: 1px solid var(--hcd-border);
  border-radius: 5px;
  background: var(--hcd-surface);
  text-align: center;
  overflow: hidden;
}
.hcd-flow__tile i {
  font-size: 18px;
  color: var(--hcd-ink);
}
.hcd-flow__tile span {
  width: 100%;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--hcd-ink-soft);
  overflow-wrap: anywhere;
}

.hcd-flow__step.is-bottleneck .hcd-flow__tile {
  border-color: #c2740a;
  box-shadow: 0 0 0 1px #c2740a inset;
}
.hcd-flow__step.is-bottleneck .hcd-flow__sla {
  border-color: #d0342c;
  color: #d0342c;
  font-weight: 700;
}

.hcd-flow__sla {
  flex: 0 0 auto;
  width: 100%;
  padding: 3px 2px;
  border: 1px solid var(--hcd-border);
  border-radius: 3px;
  background: var(--hcd-surface);
  text-align: center;
  font-size: 11px;
  line-height: 1.35;
  color: var(--hcd-ink-soft);
}
.hcd-flow__sla b {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--hcd-ink);
}

.hcd-flow__tag {
  font-size: 12px;
  font-weight: 700;
  color: #d0342c;
}

.hcd-flow__arrow {
  align-self: flex-start;
  margin-top: 24px;
  font-size: 8px;
  color: #93a2b8;
  flex: 0 0 8px;
  text-align: center;
}

.hcd-tiles {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 4px;
  margin-bottom: 8px;
}
@media (max-width: 479.98px) {
  .hcd-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.hcd-tile {
  border: 1px solid var(--hcd-border);
  border-radius: 5px;
  padding: 4px 6px;
  text-align: center;
  background: var(--hcd-surface);
}
.hcd-tile__label {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--hcd-ink-soft);
}
.hcd-tile__value {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  color: #1d4ed8;
}
.hcd-tile--warn .hcd-tile__label, .hcd-tile--warn .hcd-tile__value {
  color: #c2740a;
}
.hcd-tile--bad .hcd-tile__label, .hcd-tile--bad .hcd-tile__value {
  color: #d0342c;
}
.hcd-tile--ok .hcd-tile__value {
  color: var(--hcd-ink);
}

.hcd-tablewrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #c2d0e2 transparent;
  flex: 1 1 auto;
  min-width: 0;
}
.hcd-tablewrap::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.hcd-tablewrap::-webkit-scrollbar-track {
  background: transparent;
}
.hcd-tablewrap::-webkit-scrollbar-thumb {
  background: #c2d0e2;
  border-radius: 999px;
}

.hcd-table {
  width: 100%;
  min-width: 340px;
  font-size: 13px;
}
.hcd-table th {
  padding: 6px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  color: var(--hcd-ink-soft);
  border-bottom: 1px solid var(--hcd-border);
  white-space: nowrap;
}
.hcd-table td {
  padding: 7px 6px;
  border-bottom: 1px solid var(--hcd-border-soft);
  color: var(--hcd-ink);
  vertical-align: middle;
}
.hcd-table tbody tr:last-child td {
  border-bottom: 0;
}
.hcd-table tbody tr {
  transition: background 0.15s ease;
}
.hcd-table tbody tr:hover {
  background: var(--hcd-surface-alt);
}
.hcd-table .is-num {
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.hcd-table .is-due {
  color: #c2740a;
  font-weight: 600;
}
.hcd-table .is-overdue {
  color: #d0342c;
  font-weight: 600;
}
.hcd-table .is-draft {
  color: var(--hcd-ink-muted);
}
.hcd-table .is-current {
  font-weight: 600;
}
.hcd-table .is-name {
  color: var(--hcd-ink);
  font-weight: 500;
}
.hcd-table--matrix {
  min-width: 0;
  font-size: 13px;
  table-layout: fixed;
}
.hcd-table--matrix th {
  text-align: center;
  font-size: 11px;
  white-space: normal;
  overflow-wrap: anywhere;
  line-height: 1.25;
  border-bottom: 0;
  padding-bottom: 2px;
}
.hcd-table--matrix th:first-child {
  width: 30%;
  text-align: left;
}
.hcd-table--matrix td {
  text-align: center;
  background: #e6f6ec;
  border: 1px solid #fff;
  font-weight: 600;
  color: #106230;
  padding: 8px 6px;
}
.hcd-table--matrix td:first-child {
  text-align: left;
  background: #eef3f9;
  color: var(--hcd-ink);
  font-weight: 500;
}
.hcd-table--matrix tbody tr:hover td {
  background: #d8f0e1;
}
.hcd-table--matrix tbody tr:hover td:first-child {
  background: #e8eef6;
}
.hcd-table--compact {
  min-width: 0;
  font-size: 13px;
}
.hcd-table--compact td,
.hcd-table--compact th {
  padding: 7px 6px;
}
.hcd-table--compact td:first-child,
.hcd-table--compact th:first-child {
  padding-left: 0;
}
.hcd-table--compact td:last-child,
.hcd-table--compact th:last-child {
  padding-right: 0;
}
.hcd-table--register {
  table-layout: fixed;
}
.hcd-table--register td:first-child {
  overflow-wrap: break-word;
}
.hcd-table--register th:nth-child(1) {
  width: 30%;
}
.hcd-table--register th:nth-child(2) {
  width: 17%;
}
.hcd-table--register th:nth-child(3) {
  width: 14%;
}
.hcd-table--register th:nth-child(4) {
  width: 17%;
}
.hcd-table--register th:nth-child(5) {
  width: 22%;
}
.hcd-table--register .hcd-pill {
  min-width: 0;
  max-width: 100%;
  padding: 1px 4px;
  font-size: 11px;
}

.hcd-coverage {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
}
@media (max-width: 1079.98px) {
  .hcd-coverage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}
@media (max-width: 479.98px) {
  .hcd-coverage {
    grid-template-columns: 1fr;
  }
}

.hcd-coverage__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 6px 16px;
  border-right: 1px solid var(--hcd-border-soft);
}
.hcd-coverage__item:last-child {
  border-right: 0;
}
@media (max-width: 1079.98px) {
  .hcd-coverage__item {
    border-right: 0;
    justify-content: flex-start;
  }
}

.hcd-coverage__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border: 1px solid var(--hcd-border);
  border-radius: 8px;
  font-size: 24px;
  color: var(--hcd-accent);
}

.hcd-coverage__body {
  min-width: 0;
  text-align: center;
}
@media (max-width: 1079.98px) {
  .hcd-coverage__body {
    text-align: left;
  }
}

.hcd-coverage__value {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--hcd-ink);
}

.hcd-coverage__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--hcd-ink);
  line-height: 1.25;
}

.hcd-coverage__note {
  font-size: 13px;
  font-weight: 600;
  color: #17803d;
  margin-top: 2px;
}

.page-architecture .hcd-main {
  padding: 0 14px 18px;
  gap: 0;
}

.hcd-masthead {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 16px 20px;
  background: linear-gradient(180deg, #072250 0%, #172b4c 100%);
  border-radius: 8px;
  color: #fff;
  text-align: center;
  z-index: 99;
  width: 100%;
}
.hcd-masthead__emblem {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  font-size: 30px;
}
.hcd-masthead__title {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}
.hcd-masthead__scope {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 18px;
  margin-top: 6px;
  font-size: clamp(13px, 1.3vw, 17px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}
.hcd-masthead__values {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 16px;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-size: clamp(12px, 1.1vw, 15px);
  color: rgba(255, 255, 255, 0.85);
}
.hcd-masthead__sep {
  color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 819.98px) {
  .hcd-masthead {
    flex-direction: column;
    gap: 12px;
    margin: 0 -10px 12px;
  }
}

.hcd-segments {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
@media (max-width: 1319.98px) {
  .hcd-segments {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 639.98px) {
  .hcd-segments {
    grid-template-columns: 1fr;
  }
}

.hcd-segcard {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  border: 1px solid var(--hcd-border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--hcd-surface);
  box-shadow: 0 1px 2px rgba(16, 35, 70, 0.06);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.hcd-segcard:hover {
  box-shadow: 0 4px 24px rgba(16, 35, 70, 0.15);
  transform: translateY(-2px);
}
.hcd-segcard__icon {
  background: var(--hcd-accent);
  height: 80px;
  border-radius: 0 0 16px 16px;
  padding: 5px;
}
.hcd-segcard__icon img {
  border: 3px solid var(--hcd-white);
  border-radius: 16px;
  padding: 5px;
  background: var(--hcd-accent);
}
.hcd-segcard__main {
  display: block;
  min-width: 0;
}
.hcd-segcard__head {
  display: block;
  padding: 7px 10px;
  background: var(--hcd-accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}
.hcd-segcard__list {
  padding: 7px 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.hcd-segcard__item {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 13px;
  color: var(--hcd-ink);
}
.hcd-segcard__item::before {
  content: "";
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--hcd-accent);
}

.hcd-library {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) 128px repeat(3, minmax(0, 1fr));
  gap: 8px;
  align-items: center;
}
@media (max-width: 1319.98px) {
  .hcd-library {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 639.98px) {
  .hcd-library {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.hcd-libcard {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid var(--hcd-border);
  border-radius: 5px;
  background: var(--hcd-surface);
  font-size: 13px;
  font-weight: 600;
  color: var(--hcd-ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.hcd-libcard i {
  flex-shrink: 0;
  font-size: 20px;
  color: #1d4ed8;
}
.hcd-libcard:hover {
  border-color: #1d4ed8;
  box-shadow: 0 1px 3px rgba(16, 35, 70, 0.08), 0 1px 2px rgba(16, 35, 70, 0.04);
}

.hcd-libhub {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-row: span 2;
  width: 100%;
  aspect-ratio: 1;
  border: 2px dashed #c2d0e2;
  border-radius: 50%;
  background: var(--hcd-surface);
}
.hcd-libhub i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #072250;
  color: #fff;
  font-size: 30px;
}
@media (max-width: 1319.98px) {
  .hcd-libhub {
    display: none;
  }
}

.hcd-libmeta {
  grid-column: 1/-1;
  margin-top: 4px;
  padding: 6px 10px;
  border-radius: 5px;
  background: #eaf1ff;
  text-align: center;
  font-size: 13px;
  color: var(--hcd-ink-soft);
}
.hcd-libmeta span + span::before {
  content: "•";
  margin: 0 8px;
  color: #93a2b8;
}

.hcd-network {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}
@media (max-width: 1079.98px) {
  .hcd-network {
    flex-direction: column;
    align-items: stretch;
  }
}

.hcd-node {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 0;
  min-width: 0;
  padding: 8px 12px;
  border: 1px solid var(--hcd-accent);
  border-radius: 999px;
  background: var(--hcd-surface);
}
.hcd-node i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--hcd-accent);
  color: #fff;
  font-size: 20px;
}
.hcd-node img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: contain;
}
.hcd-node span {
  font-size: 13px;
  font-weight: 700;
  color: var(--hcd-accent-dark);
  line-height: 1.25;
}

.hcd-network__link {
  flex: 0 0 26px;
  height: 2px;
  background: #c2d0e2;
  position: relative;
}
.hcd-network__link::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0b2f6b;
  transform: translate(-50%, -50%);
}
@media (max-width: 1079.98px) {
  .hcd-network__link {
    display: none;
  }
}

.hcd-ops {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 8px;
}
@media (max-width: 1319.98px) {
  .hcd-ops {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 639.98px) {
  .hcd-ops {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.hcd-opcard {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 8px;
  border: 1px solid var(--hcd-border);
  border-radius: 8px;
  background: var(--hcd-surface);
  text-align: center;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.hcd-opcard i {
  font-size: 28px;
  color: #0b2f6b;
}
.hcd-opcard span {
  font-size: 13px;
  font-weight: 700;
  color: var(--hcd-ink);
  line-height: 1.25;
}
.hcd-opcard:hover {
  border-color: #0b2f6b;
  box-shadow: 0 1px 3px rgba(16, 35, 70, 0.08), 0 1px 2px rgba(16, 35, 70, 0.04);
  transform: translateY(-2px);
}

.page-dashboard .hcd-main {
  gap: 15px;
}

.hcd-assurance {
  display: grid;
  grid-template-columns: minmax(122px, 0.55fr) minmax(0, 3fr);
  gap: 10px;
  align-items: center;
  flex: 1 1 auto;
}
@media (max-width: 1319.98px) {
  .hcd-assurance {
    grid-template-columns: 1fr;
  }
}
.hcd-assurance__aside {
  text-align: center;
}

.hcd-health-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 12px;
  align-items: center;
  flex: 1 1 auto;
}
@media (max-width: 639.98px) {
  .hcd-health-split {
    grid-template-columns: 1fr;
  }
}

.hcd-portfolio-split {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 2fr);
  gap: 10px;
  align-items: center;
  flex: 1 1 auto;
}
@media (max-width: 639.98px) {
  .hcd-portfolio-split {
    grid-template-columns: 1fr;
  }
}

.hcd-tiles,
.hcd-flow {
  flex: 0 0 auto;
}

.hcd-panel__note {
  margin-top: 6px;
  padding-top: 5px;
  border-top: 1px solid var(--hcd-border-soft);
  font-size: 13px;
  color: var(--hcd-ink-muted);
}

.theme-s1 {
  --hcd-accent: #14746b;
  --hcd-accent-dark: #0d5d55;
  --hcd-accent-soft: rgba(20, 116, 107, 0.1);
  --hcd-accent-contrast: #ffffff;
}

.hcd-seg-1 {
  --hcd-accent: #14746b;
  --hcd-accent-dark: #0d5d55;
  --hcd-accent-soft: rgba(20, 116, 107, 0.1);
}

.theme-s2 {
  --hcd-accent: #2e7d32;
  --hcd-accent-dark: #1f6425;
  --hcd-accent-soft: rgba(46, 125, 50, 0.1);
  --hcd-accent-contrast: #ffffff;
}

.hcd-seg-2 {
  --hcd-accent: #2e7d32;
  --hcd-accent-dark: #1f6425;
  --hcd-accent-soft: rgba(46, 125, 50, 0.1);
}

.theme-s3 {
  --hcd-accent: #5b3a9e;
  --hcd-accent-dark: #452a7d;
  --hcd-accent-soft: rgba(91, 58, 158, 0.1);
  --hcd-accent-contrast: #ffffff;
}

.hcd-seg-3 {
  --hcd-accent: #5b3a9e;
  --hcd-accent-dark: #452a7d;
  --hcd-accent-soft: rgba(91, 58, 158, 0.1);
}

.theme-s4 {
  --hcd-accent: #1565c0;
  --hcd-accent-dark: #0d4c95;
  --hcd-accent-soft: rgba(21, 101, 192, 0.1);
  --hcd-accent-contrast: #ffffff;
}

.hcd-seg-4 {
  --hcd-accent: #1565c0;
  --hcd-accent-dark: #0d4c95;
  --hcd-accent-soft: rgba(21, 101, 192, 0.1);
}

.theme-s5 {
  --hcd-accent: #e8590c;
  --hcd-accent-dark: #c14708;
  --hcd-accent-soft: rgba(232, 89, 12, 0.1);
  --hcd-accent-contrast: #ffffff;
}

.hcd-seg-5 {
  --hcd-accent: #e8590c;
  --hcd-accent-dark: #c14708;
  --hcd-accent-soft: rgba(232, 89, 12, 0.1);
}

.theme-s6 {
  --hcd-accent: #0e7490;
  --hcd-accent-dark: #0a5a71;
  --hcd-accent-soft: rgba(14, 116, 144, 0.1);
  --hcd-accent-contrast: #ffffff;
}

.hcd-seg-6 {
  --hcd-accent: #0e7490;
  --hcd-accent-dark: #0a5a71;
  --hcd-accent-soft: rgba(14, 116, 144, 0.1);
}

.theme-s7 {
  --hcd-accent: #9b1c31;
  --hcd-accent-dark: #7a1425;
  --hcd-accent-soft: rgba(155, 28, 49, 0.1);
  --hcd-accent-contrast: #ffffff;
}

.hcd-seg-7 {
  --hcd-accent: #9b1c31;
  --hcd-accent-dark: #7a1425;
  --hcd-accent-soft: rgba(155, 28, 49, 0.1);
}

.theme-s8 {
  --hcd-accent: #d32f2f;
  --hcd-accent-dark: #ab2222;
  --hcd-accent-soft: rgba(211, 47, 47, 0.1);
  --hcd-accent-contrast: #ffffff;
}

.hcd-seg-8 {
  --hcd-accent: #d32f2f;
  --hcd-accent-dark: #ab2222;
  --hcd-accent-soft: rgba(211, 47, 47, 0.1);
}

.theme-s9 {
  --hcd-accent: #37475e;
  --hcd-accent-dark: #263447;
  --hcd-accent-soft: rgba(55, 71, 94, 0.1);
  --hcd-accent-contrast: #ffffff;
}

.hcd-seg-9 {
  --hcd-accent: #37475e;
  --hcd-accent-dark: #263447;
  --hcd-accent-soft: rgba(55, 71, 94, 0.1);
}

.theme-s10 {
  --hcd-accent: #1565c0;
  --hcd-accent-dark: #0d4c95;
  --hcd-accent-soft: rgba(21, 101, 192, 0.1);
  --hcd-accent-contrast: #ffffff;
}

.hcd-seg-10 {
  --hcd-accent: #1565c0;
  --hcd-accent-dark: #0d4c95;
  --hcd-accent-soft: rgba(21, 101, 192, 0.1);
}

.theme-s11 {
  --hcd-accent: #0f6f6f;
  --hcd-accent-dark: #0a5555;
  --hcd-accent-soft: rgba(15, 111, 111, 0.1);
  --hcd-accent-contrast: #ffffff;
}

.hcd-seg-11 {
  --hcd-accent: #0f6f6f;
  --hcd-accent-dark: #0a5555;
  --hcd-accent-soft: rgba(15, 111, 111, 0.1);
}

.theme-s12 {
  --hcd-accent: #283593;
  --hcd-accent-dark: #1d2775;
  --hcd-accent-soft: rgba(40, 53, 147, 0.1);
  --hcd-accent-contrast: #ffffff;
}

.hcd-seg-12 {
  --hcd-accent: #283593;
  --hcd-accent-dark: #1d2775;
  --hcd-accent-soft: rgba(40, 53, 147, 0.1);
}

/*# sourceMappingURL=main.css.map */
