:root {
  color-scheme: light;
  --navy-950: #071127;
  --navy-900: #0b1630;
  --navy-800: #132345;
  --navy-700: #1d3763;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --green-700: #15803d;
  --green-600: #16a34a;
  --green-100: #dcfce7;
  --amber-700: #b45309;
  --amber-500: #f59e0b;
  --amber-100: #fef3c7;
  --red-700: #b91c1c;
  --red-600: #dc2626;
  --red-100: #fee2e2;
  --purple-700: #7e22ce;
  --purple-100: #f3e8ff;
  --shadow: 0 18px 55px rgba(7, 17, 39, 0.09);
  --radius-lg: 24px;
  --radius-md: 17px;
}
* {
  box-sizing: border-box;
}
html {
  min-height: 100%;
  background: var(--slate-50);
}
body {
  min-height: 100vh;
  margin: 0;
  color: var(--navy-900);
  background:
    radial-gradient(circle at 80% -10%, rgba(59, 130, 246, 0.14), transparent 35rem),
    linear-gradient(180deg, #f7faff 0, var(--slate-50) 26rem);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
a {
  color: var(--blue-600);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.shell {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}
.site-header {
  border-bottom: 1px solid rgba(203, 213, 225, 0.72);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
}
.brand img {
  display: block;
  width: 238px;
  max-width: 100%;
  height: auto;
}
.header-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.94rem;
  font-weight: 650;
}
.header-links a {
  color: var(--navy-800);
}
.header-links .support-link {
  padding: 10px 16px;
  color: var(--white);
  border-radius: 10px;
  background: var(--blue-600);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.22);
}
.header-links .support-link:hover {
  text-decoration: none;
  background: #1d4ed8;
}
main {
  padding-block: 54px 72px;
}
.overall-card {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 185px;
  padding: 34px 38px;
  color: var(--white);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.overall-card::after {
  content: "";
  position: absolute;
  width: 270px;
  height: 270px;
  right: -85px;
  top: -130px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
}
.overall-icon {
  flex: 0 0 auto;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.11);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.13);
}
.status-dot {
  width: 24px;
  height: 24px;
  display: block;
  border-radius: 999px;
  background: var(--slate-300);
  box-shadow: 0 0 0 8px rgba(203, 213, 225, 0.18);
}
.overall-card.status-operational {
  background: linear-gradient(135deg, #0b3b2c, #126449);
}
.overall-card.status-operational .status-dot {
  background: #6ee7b7;
  box-shadow: 0 0 0 8px rgba(110, 231, 183, 0.18);
}
.overall-card.status-degraded,
.overall-card.status-partial_outage,
.overall-card.status-maintenance {
  background: linear-gradient(135deg, #633b09, #9a5d0a);
}
.overall-card.status-degraded .status-dot,
.overall-card.status-partial_outage .status-dot,
.overall-card.status-maintenance .status-dot {
  background: #fcd34d;
  box-shadow: 0 0 0 8px rgba(252, 211, 77, 0.18);
}
.overall-card.status-major_outage {
  background: linear-gradient(135deg, #681818, #a21f1f);
}
.overall-card.status-major_outage .status-dot {
  background: #fca5a5;
  box-shadow: 0 0 0 8px rgba(252, 165, 165, 0.18);
}
.eyebrow {
  margin: 0 0 7px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  opacity: 0.78;
}
.overall-card h1 {
  margin: 0;
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1.13;
  letter-spacing: -0.04em;
}
.overall-card p:last-child {
  max-width: 690px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.8);
}
.notice {
  margin-top: 22px;
  padding: 15px 18px;
  color: #78350f;
  border: 1px solid #fcd34d;
  border-radius: 13px;
  background: #fffbeb;
}
.notice strong {
  margin-right: 6px;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin: 46px 0 20px;
}
.section-heading h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.05rem);
  letter-spacing: -0.03em;
}
.updated {
  color: var(--slate-500);
  text-align: right;
  font-size: 0.87rem;
}
.updated span,
.updated time {
  display: block;
}
.updated time {
  margin-top: 2px;
  color: var(--navy-800);
  font-weight: 700;
}
.components-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.component-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.05);
}
.component-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}
.component-card h3 {
  margin: 0;
  font-size: 1.08rem;
  letter-spacing: -0.015em;
}
.component-description {
  min-height: 43px;
  margin: 7px 0 20px;
  color: var(--slate-600);
  font-size: 0.91rem;
}
.status-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--slate-100);
  color: var(--slate-700);
  font-size: 0.75rem;
  font-weight: 800;
  white-space: nowrap;
}
.status-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--slate-500);
}
.status-badge.status-operational {
  color: var(--green-700);
  background: var(--green-100);
}
.status-badge.status-operational::before {
  background: var(--green-600);
}
.status-badge.status-degraded,
.status-badge.status-partial_outage {
  color: var(--amber-700);
  background: var(--amber-100);
}
.status-badge.status-degraded::before,
.status-badge.status-partial_outage::before {
  background: var(--amber-500);
}
.status-badge.status-major_outage {
  color: var(--red-700);
  background: var(--red-100);
}
.status-badge.status-major_outage::before {
  background: var(--red-600);
}
.status-badge.status-maintenance {
  color: var(--purple-700);
  background: var(--purple-100);
}
.availability-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 9px;
}
.availability-row span {
  color: var(--slate-500);
  font-size: 0.8rem;
  font-weight: 700;
}
.availability-row strong {
  color: var(--navy-800);
  font-size: 0.9rem;
}
.history-bars {
  display: grid;
  grid-template-columns: repeat(24, minmax(2px, 1fr));
  gap: 3px;
  min-height: 30px;
  align-items: end;
}
.history-bar {
  min-height: 7px;
  border-radius: 3px;
  background: var(--slate-200);
}
.history-bar.good {
  background: var(--green-600);
}
.history-bar.warning {
  background: var(--amber-500);
}
.history-bar.bad {
  background: var(--red-600);
}
.history-bar.unknown {
  background: var(--slate-300);
}
.information-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}
.info-card {
  padding: 25px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.74);
}
.info-card h2 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}
.info-card p {
  margin: 0;
  color: var(--slate-600);
}
.info-card a {
  display: inline-block;
  margin-top: 12px;
  font-weight: 750;
}
.site-footer {
  border-top: 1px solid var(--slate-200);
  color: var(--slate-500);
  background: rgba(255, 255, 255, 0.6);
}
.footer-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.83rem;
}
.skeleton-card {
  min-height: 186px;
}
.skeleton {
  border-radius: 8px;
  background: linear-gradient(90deg, #e8edf4 20%, #f5f7fa 40%, #e8edf4 60%);
  background-size: 220% 100%;
  animation: shimmer 1.5s infinite linear;
}
.skeleton.wide {
  width: 70%;
  height: 19px;
}
.skeleton.medium {
  width: 88%;
  height: 14px;
  margin-top: 17px;
}
.skeleton.bars {
  width: 100%;
  height: 31px;
  margin-top: 56px;
}
@keyframes shimmer {
  to {
    background-position-x: -220%;
  }
}
@media (max-width: 760px) {
  .shell {
    width: min(100% - 28px, 1160px);
  }
  .header-inner {
    min-height: 74px;
  }
  .brand img {
    width: 195px;
  }
  .header-links a:not(.support-link) {
    display: none;
  }
  main {
    padding-block: 32px 52px;
  }
  .overall-card {
    min-height: 0;
    align-items: flex-start;
    padding: 27px 24px;
  }
  .overall-icon {
    width: 51px;
    height: 51px;
    border-radius: 15px;
  }
  .status-dot {
    width: 18px;
    height: 18px;
  }
  .components-grid,
  .information-grid {
    grid-template-columns: 1fr;
  }
  .section-heading {
    align-items: flex-start;
  }
  .updated {
    min-width: 130px;
  }
  .component-header {
    display: block;
  }
  .status-badge {
    margin-top: 11px;
  }
  .component-description {
    min-height: 0;
  }
  .footer-inner {
    min-height: 92px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .overall-card {
    display: block;
  }
  .overall-icon {
    margin-bottom: 20px;
  }
  .section-heading {
    display: block;
  }
  .updated {
    margin-top: 11px;
    text-align: left;
  }
  .history-bars {
    gap: 2px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .skeleton {
    animation: none;
  }
}

.uptime-chart {
  margin-top: 18px;
  padding: 14px 16px 12px;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  background: linear-gradient(180deg, #f8fbff 0%, #f3f7fb 100%);
}
.uptime-chart-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.uptime-chart-header span {
  color: var(--navy-800);
  font-size: 0.82rem;
  font-weight: 800;
}
.uptime-chart-header small {
  color: var(--slate-500);
  font-size: 0.7rem;
  font-weight: 700;
}
.uptime-bars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
}
.uptime-bar-item {
  min-width: 0;
  text-align: center;
}
.uptime-bar-value {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-800);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.2;
}
.uptime-bar-track {
  position: relative;
  height: 88px;
  border-radius: 10px;
  border: 1px solid var(--slate-200);
  background:
    linear-gradient(to top, rgba(148, 163, 184, 0.12) 1px, transparent 1px) 0 0 / 100% 25%,
    linear-gradient(180deg, #ffffff 0%, #eef4f9 100%);
  overflow: hidden;
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 4px;
}
.uptime-bar {
  width: 100%;
  border-radius: 7px 7px 4px 4px;
  transition: height 0.25s ease;
}
.uptime-bar--excellent {
  background: linear-gradient(180deg, #3ecf8e 0%, #1f9f64 100%);
}
.uptime-bar--good {
  background: linear-gradient(180deg, #66d49f 0%, #2da56d 100%);
}
.uptime-bar--fair {
  background: linear-gradient(180deg, #f3c969 0%, #d59f24 100%);
}
.uptime-bar--poor {
  background: linear-gradient(180deg, #f08a7a 0%, #d45443 100%);
}
.uptime-bar--unknown {
  background: linear-gradient(180deg, #cbd5e1 0%, #94a3b8 100%);
}
.uptime-bar-label {
  display: block;
  margin-top: 8px;
  color: var(--slate-500);
  font-size: 0.7rem;
  font-weight: 800;
}
@media (max-width: 640px) {
  .uptime-bars {
    gap: 8px;
  }
  .uptime-bar-track {
    height: 74px;
  }
  .uptime-bar-value {
    font-size: 0.7rem;
  }
}

/* HP FINAL CLEANUP START */
.site-header {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1px 0 rgba(203, 213, 225, 0.65);
}
.header-inner {
  min-height: 78px;
}
.brand {
  gap: 14px;
  color: var(--navy-900);
}
.brand:hover {
  text-decoration: none;
}
.brand-context {
  padding-left: 14px;
  border-left: 1px solid var(--slate-300);
  color: var(--slate-500);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
main {
  padding-block: 42px 62px;
}
.overall-card {
  min-height: 164px;
  padding: 30px 34px;
}
.section-heading {
  margin: 38px 0 16px;
}
.components-grid {
  gap: 16px;
}
.component-card {
  min-height: 242px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.component-card:hover {
  transform: translateY(-1px);
  border-color: var(--slate-300);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
}
.component-description {
  min-height: 34px;
  margin: 6px 0 10px;
}
.uptime-chart {
  margin-top: auto;
  padding: 12px 14px 11px;
}
.uptime-chart-header {
  margin-bottom: 10px;
}
.uptime-bar-track {
  height: 72px;
}
.information-grid {
  margin-top: 30px;
}
.site-footer {
  color: rgba(255, 255, 255, 0.72);
  border-top: 0;
  background: var(--navy-950);
}
.footer-content {
  padding: 34px 0 24px;
}
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 38px;
}
.footer-brand {
  max-width: 360px;
}
.footer-brand strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
}
.footer-brand span {
  display: block;
  margin-top: 7px;
  font-size: 0.84rem;
  line-height: 1.55;
}
.footer-product-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
  max-width: 600px;
}
.footer-product-links a {
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.75rem;
  font-weight: 750;
}
.footer-product-links a:hover {
  color: var(--white);
  text-decoration: none;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.11);
}
.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding-top: 19px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 0.78rem;
}
@media (max-width: 760px) {
  .brand-context {
    display: none;
  }
  .component-card {
    min-height: 228px;
  }
  .footer-top {
    display: block;
  }
  .footer-product-links {
    justify-content: flex-start;
    margin-top: 22px;
  }
  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }
}
@media (max-width: 480px) {
  .overall-card {
    padding: 25px 22px;
  }
  .component-card {
    min-height: 0;
    padding: 18px;
  }
  .uptime-chart {
    padding-inline: 10px;
  }
}
/* HP FINAL CLEANUP END */
.brand-logo {
  flex: 0 0 auto;
  width: 54px;
  height: 40px;
  display: block;
  object-fit: contain;
}
.brand-name {
  color: var(--navy-900);
  font-size: 1.12rem;
  font-weight: 850;
  letter-spacing: -0.025em;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .brand-logo {
    width: 46px;
    height: 34px;
  }
  .brand-name {
    font-size: 1rem;
  }
}
.site-header .brand img.brand-logo {
  width: 48px;
  height: 48px;
  max-width: 48px;
  flex: 0 0 48px;
  object-fit: contain;
}
.site-header .brand {
  gap: 10px;
}
.site-header .brand-name {
  font-size: 1.08rem;
}
.site-header .header-inner {
  min-height: 72px;
}
@media (max-width: 480px) {
  .site-header .brand img.brand-logo {
    width: 40px;
    height: 40px;
    max-width: 40px;
    flex-basis: 40px;
  }
}
