:root {
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: #182a36;
  background: #f7f9fb;
  font-synthesis: none;
  --line: #e1e7ed;
  --muted: #657685;
  --green: #138564;
  --amber: #a1640c;
  --red: #bd3447;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
a {
  color: #285579;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
header,
main,
footer {
  max-width: 1180px;
  margin: auto;
}
header {
  height: 92px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 21px;
  font-weight: 730;
  letter-spacing: -0.5px;
  color: #172d3b;
}
.mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #182f40;
  color: white;
  font-size: 22px;
}
.brand-sub {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--muted);
  padding-left: 12px;
  border-left: 1px solid #ccd7de;
}
nav {
  display: flex;
  gap: 25px;
  font-size: 13px;
}
main {
  padding: 48px 0 20px;
}
.intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.eyebrow {
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 2px;
  color: #5a7487;
  margin: 0 0 11px;
}
h1 {
  font-size: 42px;
  letter-spacing: -1.7px;
  font-weight: 650;
  margin: 0 0 12px;
}
h2 {
  font-size: 17px;
  margin: 0;
  font-weight: 650;
  letter-spacing: -0.25px;
}
p {
  line-height: 1.6;
}
.subtle {
  color: var(--muted);
  font-size: 13px;
}
.intro .subtle {
  font-size: 15px;
  margin: 0;
}
.cadence {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  color: #5d7282;
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #66889b;
}
.banner {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid;
  border-radius: 13px;
  padding: 23px 26px;
  min-height: 99px;
  margin-bottom: 36px;
}
.banner h2 {
  font-size: 20px;
}
.banner p {
  font-size: 12px;
  margin: 7px 0 0;
}
.operational.banner {
  background: #eef9f4;
  border-color: #b8e1d0;
  color: #166548;
}
.degraded.banner {
  background: #fff4e5;
  border-color: #f0c48b;
  color: #885513;
}
.unknown.banner {
  background: #eff3f6;
  border-color: #ccd7e0;
  color: #465c6a;
}
.status-icon {
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 18px;
  flex-shrink: 0;
}
button {
  font: inherit;
  cursor: pointer;
}
.banner button {
  margin-left: auto;
  white-space: nowrap;
  background: #ffffffaa;
  border: 1px solid #0002;
  border-radius: 7px;
  padding: 9px 12px;
  color: inherit;
  font-size: 12px;
}
.section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 19px;
  margin-bottom: 32px;
}
.service {
  padding: 23px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.service-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 650;
  border-radius: 20px;
  padding: 5px 9px;
  background: #eef2f5;
  color: #607280;
  white-space: nowrap;
}
.pill.operational {
  background: #eaf7f1;
  color: var(--green);
}
.pill.degraded,
.pill.down {
  background: #fff0e4;
  color: var(--amber);
}
.pill.limited {
  background: #edf2ff;
  color: #53678c;
}
.service-meta {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin: 21px 0 16px;
  font-size: 12px;
  color: var(--muted);
}
.history {
  display: flex;
  gap: 2px;
  height: 26px;
}
.day {
  flex: 1;
  min-width: 1px;
  background: #e4e9ee;
  border-radius: 2px;
}
.day.operational {
  background: #52b594;
}
.day.degraded {
  background: #e7a34c;
}
.day.unknown {
  background: #b6c2cc;
}
.history-axis {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--muted);
  margin: 8px 0 19px;
}
.service-foot {
  border-top: 1px solid #edf0f3;
  padding-top: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
}
.panel {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  margin-bottom: 27px;
  overflow: hidden;
}
.panel-header {
  padding: 24px 24px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.panel-header p {
  margin: 7px 0 0;
}
.search-label input {
  border: 1px solid #d8e0e7;
  border-radius: 7px;
  padding: 10px 12px;
  width: 230px;
  font: inherit;
  font-size: 12px;
  background: #fbfcfd;
}
.filters {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 24px 19px;
  font-size: 12px;
}
.filters label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #506676;
}
.filters select {
  font: inherit;
  border: 1px solid #dde4ea;
  border-radius: 6px;
  padding: 7px 25px 7px 8px;
  background: white;
  color: #243e50;
}
.filters #shown {
  margin-left: auto;
  font-size: 11px;
}
.table-wrap {
  overflow-x: auto;
  max-height: 580px;
}
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 12px;
}
th {
  text-align: left;
  background: #f7f9fb;
  color: #687d8b;
  font-size: 10px;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  padding: 12px 22px;
  position: sticky;
  top: 0;
  z-index: 1;
  white-space: nowrap;
}
td {
  padding: 14px 22px;
  border-top: 1px solid #eef1f4;
  vertical-align: middle;
}
td:first-child {
  min-width: 365px;
}
td:not(:first-child) {
  white-space: nowrap;
}
.endpoint {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}
.method {
  font:
    600 9px ui-monospace,
    monospace;
  color: #527590;
  background: #edf3f8;
  border-radius: 4px;
  padding: 4px;
  min-width: 38px;
  text-align: center;
}
.method.write {
  background: #f4f0fb;
  color: #7a6791;
}
code {
  font:
    11px ui-monospace,
    SFMono-Regular,
    Consolas,
    monospace;
  overflow-wrap: anywhere;
}
.endpoint-name {
  color: #71828e;
  font-size: 10px;
  margin: 5px 0 0 47px;
  white-space: normal;
}
.coverage {
  font-size: 11px;
  color: #647788;
}
.latency {
  font-variant-numeric: tabular-nums;
  color: #425d6e;
}
.checked {
  font-size: 11px;
  color: #7a8a96;
}
.reason {
  margin-top: 5px;
  font-size: 10px;
  color: #a26617;
  max-width: 230px;
  white-space: normal;
}
.empty {
  font-size: 13px;
  text-align: center;
  color: #708491;
  padding: 25px;
}
.incident {
  padding: 19px 24px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.incident p {
  margin: 6px 0 0;
  font-size: 12px;
  color: #72838f;
}
.incident strong {
  font-size: 13px;
}
.incident .pill {
  margin-top: 1px;
}
.methodology {
  color: #71818e;
  padding: 10px 2px;
  max-width: 910px;
}
.methodology h2 {
  font-size: 13px;
  color: #405969;
}
.methodology p {
  font-size: 12px;
  line-height: 1.8;
  margin: 10px 0;
}
.methodology strong {
  font-weight: 600;
  color: #526977;
}
footer {
  padding: 24px 0 36px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: #778c9a;
  font-size: 11px;
}
.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;
}
:focus-visible {
  outline: 3px solid #81aacc;
  outline-offset: 3px;
}
button:disabled {
  opacity: 0.6;
  cursor: wait;
}
@media (max-width: 1240px) {
  header,
  main,
  footer {
    margin-left: 28px;
    margin-right: 28px;
  }
}
@media (max-width: 720px) {
  header {
    height: 77px;
  }
  header,
  main,
  footer {
    margin-left: 18px;
    margin-right: 18px;
  }
  nav {
    gap: 14px;
    font-size: 11px;
  }
  .brand {
    font-size: 18px;
  }
  .brand-sub {
    display: none;
  }
  main {
    padding-top: 32px;
  }
  .intro {
    align-items: flex-start;
    gap: 12px;
    flex-direction: column;
  }
  h1 {
    font-size: 34px;
  }
  .cadence {
    font-size: 11px;
  }
  .banner {
    padding: 19px 16px;
    gap: 12px;
    flex-wrap: wrap;
  }
  .banner h2 {
    font-size: 17px;
  }
  .banner button {
    margin-left: 46px;
  }
  .services {
    grid-template-columns: 1fr;
  }
  .service {
    padding: 20px;
  }
  .panel-header {
    padding: 20px;
    align-items: flex-start;
    flex-direction: column;
  }
  .search-label,
  .search-label input {
    width: 100%;
  }
  .filters {
    padding: 0 20px 17px;
    gap: 12px;
    flex-wrap: wrap;
  }
  .filters #shown {
    width: 100%;
    margin: 0;
  }
  .filters select {
    max-width: 180px;
  }
  td,
  th {
    padding-left: 18px;
    padding-right: 18px;
  }
  .section-title .subtle {
    font-size: 11px;
  }
  footer {
    gap: 20px;
    font-size: 10px;
  }
  .incident {
    padding: 17px 20px;
  }
}
