@font-face {
  font-family: Geist;
  src: url("/fonts/geist-latin-wght-normal.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "Geist Mono";
  src: url("/fonts/geist-mono-latin-wght-normal.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
:root {
  --bg: #f6f7f5;
  --panel: #fff;
  --ink: #111713;
  --muted: #5e6761;
  --border: #dde3dd;
  --forest: #051b15;
  --action: #082b24;
  --ivory: #f6f7f3;
  --sage: #c1d2c7;
  --line: #2d4e3e;
  --focus: #739d8c;
  --good: #28674f;
  --bad: #a73831;
  --warn: #866226;
  --radius: 8px;
  color-scheme: light;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #051b15;
    --panel: #0a281e;
    --ink: #f6f7f3;
    --muted: #c1d2c7;
    --border: #2d4e3e;
    --action: #f6f7f3;
    --good: #9dcdb4;
    --bad: #f3a59e;
    --warn: #e8c58c;
    color-scheme: dark;
  }
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Geist, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
a {
  color: inherit;
  text-underline-offset: 5px;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
.button {
  border: 1px solid var(--action);
  background: var(--action);
  color: var(--bg);
  border-radius: var(--radius);
  padding: 10px 16px;
  min-height: 44px;
  text-decoration: none;
  font-weight: 550;
  cursor: pointer;
}
.secondary {
  background: transparent;
  color: inherit;
  border-color: var(--border);
}
button:disabled {
  opacity: 0.55;
  cursor: wait;
}
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}
header,
footer {
  background: var(--forest);
  color: var(--ivory);
}
.chrome-inner {
  width: 100%;
  max-width: 1000px;
  padding-inline: 32px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
header .chrome-inner {
  min-height: 84px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
}
header a:not(.button) {
  text-decoration: none;
}
header .button {
  border-color: var(--line);
  color: var(--ivory);
}
.wordmark {
  width: 146px;
  height: auto;
  display: block;
}
main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 56px 32px 80px;
  min-height: calc(100vh - 240px);
}
h1,
h2,
h3 {
  font-weight: 550;
  letter-spacing: -0.035em;
  line-height: 1.2;
}
h1 {
  font-size: 46px;
  margin: 12px 0 16px;
}
h2 {
  font-size: 24px;
}
h3 {
  font-size: 20px;
}
.intro {
  color: var(--muted);
  margin: 0 0 32px;
}
.eyebrow,
.mono {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--muted);
}
.summary {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.summary h2 {
  margin: 8px 0;
}
.summary p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.freshness {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  color: var(--muted);
  text-align: right;
  flex-shrink: 0;
}
.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 36px 0 16px;
}
.section-title h2 {
  margin: 0;
}
.section-title a {
  font-size: 14px;
}
.section-title .mono {
  color: var(--muted);
}
.service {
  border-top: 1px solid var(--border);
}
.service:last-child {
  border-bottom: 1px solid var(--border);
}
.service summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 21px 4px;
  list-style: none;
}
.service summary::-webkit-details-marker {
  display: none;
}
.service summary .name {
  font-weight: 550;
  font-size: 16px;
}
.service summary p {
  font-size: 14px;
  margin: 4px 0 0;
  color: var(--muted);
}
.service summary .state {
  white-space: nowrap;
  text-align: right;
}
.service summary .state:after {
  content: " +";
  color: var(--muted);
  margin-left: 12px;
}
.service[open] summary .state:after {
  content: " −";
}
.state {
  font-size: 14px;
  font-weight: 550;
}
.state.operational {
  color: var(--good);
}
.state.failing,
.state.degraded {
  color: var(--bad);
}
.state.verifying {
  color: var(--warn);
}
.state.unknown,
.state.blocked {
  color: var(--muted);
}
.check-list {
  padding: 0 0 20px 20px;
}
.check {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 24px;
  padding: 14px 16px;
  border-left: 2px solid var(--border);
  margin-bottom: 8px;
  background: var(--panel);
}
.check-title {
  font-size: 14px;
  font-weight: 550;
}
.check p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  grid-column: 1/-1;
  overflow-wrap: anywhere;
}
.check small {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  color: var(--muted);
  grid-column: 1/-1;
}
.muted {
  color: var(--muted);
  font-size: 14px;
}
.incident {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin: 16px 0;
  background: var(--panel);
}
.incident h3 {
  margin: 0 0 12px;
}
.incident p {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.incident time {
  font-size: 12px;
  color: var(--muted);
}
.incident .state {
  text-transform: capitalize;
}
footer {
  padding: 34px 0;
}
.footer-inner {
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 20px;
}
.lockup {
  display: inline-flex;
  justify-content: center;
  margin-inline: auto;
  align-items: center;
  gap: 10px;
}
.lockup .wordmark {
  width: 117px;
}
.fish {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.copyright {
  font-size: 12px;
  color: var(--sage);
  margin: 0;
}
.legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--sage);
  justify-content: center;
}
.skip {
  position: absolute;
  top: -100px;
  padding: 10px;
  background: var(--panel);
}
.skip:focus {
  top: 4px;
}
[hidden] {
  display: none !important;
}
@media (max-width: 767px) {
  .chrome-inner {
    padding-inline: 20px;
  }
  header .chrome-inner {
    min-height: 76px;
    gap: 16px;
    flex-wrap: wrap;
    padding-block: 20px;
  }
  header .wordmark {
    width: 126px;
  }
  header nav {
    gap: 16px;
    flex-wrap: wrap;
  }
  main {
    padding: 36px 20px 56px;
  }
  h1 {
    font-size: 36px;
  }
  .summary {
    align-items: flex-start;
    flex-direction: column;
    padding: 20px;
    gap: 16px;
  }
  .freshness {
    text-align: left;
  }
  .section-title {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .service summary {
    align-items: flex-start;
    gap: 12px;
  }
  .service summary .state {
    white-space: normal;
    min-width: 80px;
  }
  .check-list {
    padding-left: 0;
  }
  .check {
    padding: 12px;
    gap: 6px 10px;
  }
  .legal {
    max-width: 100%;
  }
}
