:root {
  color-scheme: dark;
  --bg: #101115;
  --surface: #17191e;
  --surface-raised: #1c1f25;
  --line: #30353f;
  --text: #f2f4f8;
  --muted: #a5adbb;
  --cyan: #39d2eb;
  --magenta: #ce79bc;
  --up: #57df9d;
  --degraded: #ffd166;
  --down: #ff8190;
  --unknown: #939dad;
  --radius: 12px;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
  line-height: 1.55;
}
button {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button:focus-visible,
a:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}
button {
  touch-action: manipulation;
}
p,
h1,
h2,
h3 {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.2;
}
button {
  cursor: pointer;
}
.wrap {
  max-width: 1264px;
  margin-inline: auto;
  padding-inline: 32px;
}
.site-header {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 23px;
  font-weight: 740;
  letter-spacing: -0.8px;
}
.brand-logo {
  flex: none;
  display: block;
  width: 240px;
  height: auto;
  max-width: 70vw;
}
.brand-divider {
  height: 22px;
  width: 1px;
  background: var(--line);
  margin-inline: 8px;
}
.header-label {
  font-size: 13px;
  letter-spacing: 0;
  font-weight: 450;
  color: var(--muted);
}
.public-label {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
}
.public-label > span {
  color: var(--cyan);
}
.overview {
  padding-top: 48px;
  border-bottom: 1px solid var(--line);
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 1.8px;
  font-weight: 700;
  color: var(--muted);
}
.hero {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 24px 0 32px;
}
.hero-symbol {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border: 1px solid var(--line);
  border-radius: 50%;
  flex: none;
  color: var(--unknown);
  background: var(--surface);
}
.hero-symbol svg {
  width: 48px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero[data-state="up"] .hero-symbol {
  color: var(--up);
  border-color: #275740;
  background: #14241d;
}
.hero[data-state="degraded"] .hero-symbol {
  color: var(--degraded);
  border-color: #665633;
  background: #252218;
}
.hero[data-state="down"] .hero-symbol {
  color: var(--down);
  border-color: #68363f;
  background: #29191f;
}
h1 {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 620;
  letter-spacing: -1.3px;
  max-width: 800px;
}
.hero-content > p {
  margin-top: 12px;
  font-size: 14px;
  color: var(--muted);
}
.overview-footer {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  color: var(--muted);
  font-size: 12px;
}
.status-counts {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.status-counts span,
.freshness {
  display: flex;
  gap: 8px;
  align-items: center;
}
.status-counts strong {
  color: var(--text);
  font-weight: 550;
}
.dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--unknown);
  flex: none;
}
.dot.up {
  background: var(--up);
}
.dot.degraded {
  background: var(--degraded);
}
.dot.down {
  background: var(--down);
}
.dot.unknown {
  background: var(--unknown);
}
.notice {
  margin-top: 24px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--degraded);
  padding: 12px 16px;
  background: var(--surface);
  color: #e0d6b9;
  font-size: 13px;
}
.systems {
  padding-top: 32px;
  outline: none;
}
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.section-heading h2 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.4px;
}
.section-heading p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}
.section-index {
  font-size: 11px;
  color: var(--magenta);
  font-variant-numeric: tabular-nums;
  letter-spacing: 2px;
}
.period-toolbar {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
  padding: 12px 0;
  border-block: 1px solid var(--line);
}
.period-label {
  color: var(--muted);
  font-size: 12px;
}
.periods {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.periods button {
  min-height: 40px;
  padding: 8px 16px;
  background: transparent;
  border: 1px solid transparent;
  color: var(--muted);
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  transition:
    background 0.15s,
    color 0.15s;
}
.periods button:hover {
  background: var(--surface-raised);
  color: var(--text);
}
.periods button[aria-pressed="true"] {
  background: #17323c;
  border-color: #245765;
  color: var(--cyan);
}
.history-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 11px;
  padding: 16px 0;
}
.history-meta p {
  color: var(--text);
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.node-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 20px;
  min-width: 0;
}
.node-top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
}
.node-name {
  display: flex;
  gap: 12px;
  align-items: center;
}
.node-icon {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 7px;
  display: grid;
  place-items: center;
  color: var(--muted);
  flex: none;
}
.node-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
}
.node-name h3 {
  font-size: 16px;
  font-weight: 590;
  letter-spacing: -0.25px;
}
.node-name p {
  font-size: 10px;
  color: var(--muted);
  margin-top: 3px;
  letter-spacing: 0.4px;
}
.state-badge {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 10px;
  border-radius: 4px;
  padding: 4px 6px;
  color: var(--unknown);
  background: var(--surface-raised);
  white-space: nowrap;
}
.state-badge[data-state="up"] {
  color: var(--up);
}
.state-badge[data-state="degraded"] {
  color: var(--degraded);
}
.state-badge[data-state="down"] {
  color: var(--down);
}
.metrics {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-top: 24px;
}
.metric-label {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 4px;
}
.coverage-note {
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted);
}
.coverage-note strong {
  color: var(--text);
  font-weight: 550;
}
.availability {
  font-size: 29px;
  font-weight: 530;
  letter-spacing: -1px;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
}
.availability .unit {
  font-size: 16px;
  color: var(--muted);
  margin-left: 3px;
  letter-spacing: 0;
}
.latency {
  text-align: right;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.65;
  font-variant-numeric: tabular-nums;
}
.latency .unit {
  font-size: 11px;
  color: var(--muted);
  margin-left: 4px;
}
.timeline {
  width: 100%;
  height: 26px;
  display: block;
  margin-top: 20px;
}
.bucket-up {
  fill: var(--up);
}
.bucket-degraded {
  fill: var(--degraded);
}
.bucket-down {
  fill: var(--down);
}
.bucket-unknown {
  fill: #505967;
}
.chart-labels {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 10px;
  color: var(--muted);
  margin-top: 5px;
}
.latency-chart {
  width: 100%;
  height: 60px;
  display: block;
  margin-top: 12px;
  overflow: visible;
}
.graph-grid {
  stroke: var(--line);
  stroke-width: 1;
  stroke-dasharray: 2 4;
}
.graph-line {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}
.graph-point {
  fill: var(--cyan);
}
.graph-empty {
  fill: var(--muted);
  font-size: 11px;
}
.node-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4px 12px;
  padding-top: 12px;
  margin-top: 8px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
}
.node-bottom strong {
  font-weight: 500;
  color: var(--text);
}
.legend {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin: 0 0 20px;
  font-size: 10px;
  color: var(--muted);
}
.legend > span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.legend p {
  margin-left: auto;
}
.methodology {
  border-top: 1px solid var(--line);
  margin-top: 40px;
  padding-block: 32px 40px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
}
.methodology h2 {
  font-size: 23px;
  font-weight: 550;
  letter-spacing: -0.5px;
  margin-top: 12px;
  max-width: 220px;
}
.methodology > div > p {
  font-size: 11px;
  max-width: 250px;
  color: var(--muted);
  margin-top: 16px;
}
.method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
}
.method-grid h3 {
  font-size: 12px;
  font-weight: 600;
}
.method-grid p {
  font-size: 11px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.75;
}
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-block: 24px;
  color: var(--muted);
  font-size: 10px;
}
.footer-slash {
  color: var(--magenta);
  margin-inline: 8px;
}
.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;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 20;
  color: var(--bg);
  background: var(--cyan);
  padding: 12px 16px;
}
.skip-link:focus {
  top: 12px;
}
.no-script {
  position: fixed;
  bottom: 0;
  background: var(--surface);
  padding: 16px;
  border: 1px solid var(--line);
  width: 100%;
  text-align: center;
}
.cards[aria-busy="true"] .availability {
  color: var(--muted);
}
@media (min-width: 1600px) {
  .wrap {
    max-width: 1328px;
  }
}
@media (max-width: 1050px) {
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .period-toolbar {
    gap: 16px;
  }
  .periods button {
    padding-inline: 12px;
  }
  .overview-footer {
    align-items: flex-start;
  }
  .freshness {
    max-width: 310px;
  }
  .methodology {
    gap: 32px;
    grid-template-columns: 1fr 2fr;
  }
  .legend p {
    margin-left: 0;
    width: 100%;
  }
}
@media (max-width: 650px) {
  .wrap {
    padding-inline: 20px;
  }
  .site-header {
    height: 80px;
  }
  .brand {
    font-size: 21px;
    gap: 8px;
  }
  .brand-divider,
  .header-label,
  .public-label {
    display: none;
  }
  .overview {
    padding-top: 32px;
  }
  .hero {
    align-items: flex-start;
    gap: 16px;
    padding-block: 20px 24px;
  }
  .hero-symbol {
    width: 48px;
    height: 48px;
  }
  .hero-symbol svg {
    width: 30px;
  }
  h1 {
    font-size: 26px;
    letter-spacing: -0.8px;
  }
  .hero-content > p {
    font-size: 12px;
  }
  .overview-footer {
    flex-direction: column;
    gap: 16px;
    font-size: 11px;
  }
  .status-counts {
    gap: 12px;
  }
  .freshness {
    max-width: none;
  }
  .section-heading h2 {
    font-size: 18px;
  }
  .section-index {
    display: none;
  }
  .section-heading p {
    font-size: 12px;
  }
  .period-toolbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: 20px;
  }
  .periods {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 4px;
  }
  .periods button {
    padding: 8px 10px;
    min-height: 44px;
  }
  .history-meta {
    flex-direction: column;
    gap: 4px;
  }
  .cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .node-card {
    padding: 20px;
  }
  .methodology {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .methodology h2 {
    max-width: none;
  }
  .methodology > div > p {
    max-width: none;
  }
  .method-grid {
    gap: 24px;
    grid-template-columns: 1fr;
  }
  .site-footer {
    flex-direction: column;
    gap: 8px;
  }
  .legend {
    margin-bottom: 32px;
    gap: 12px 16px;
  }
  .legend p {
    line-height: 1.7;
  }
  .node-name h3 {
    font-size: 15px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
