@font-face {
  font-family: Funnel;
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('assets/FunnelDisplay-VariableFont_wght.ttf') format('truetype');
}

:root {
  color-scheme: light dark;
  --background: #fafafa;
  --foreground: #18181b;
  --muted: #62626b;
  --border: #dedee3;
  --green: #187145;
  --green-surface: #e8f4ed;
  --amber: #905b08;
  --amber-surface: #fbf0d9;
  --red: #bb303f;
  --red-surface: #fcebed;
  --link: #6b21a8;
  font-family: Funnel, system-ui, sans-serif;
  font-synthesis: none;
  background: var(--background);
  color: var(--foreground);
}

* { box-sizing: border-box; }
body { margin: 0; font-size: 1rem; line-height: 1.5; }
.page { width: min(100% - 3rem, 43rem); margin: 0 auto; }
.brand { display: flex; align-items: center; gap: .8rem; padding: 2.75rem 0 2rem; }
.brand > span:first-of-type { font-size: 1.45rem; font-weight: 600; letter-spacing: -.035em; }
.brand img { object-fit: contain; }
.page-label { margin-left: auto; font-size: .9rem; color: var(--muted); }
.summary { padding: 2.75rem 0 3rem; }
.operational { --status-color: var(--green); --status-surface: var(--green-surface); }
.degraded { --status-color: var(--amber); --status-surface: var(--amber-surface); }
.outage { --status-color: var(--red); --status-surface: var(--red-surface); }
.status-symbol { display: grid; place-items: center; width: 2.75rem; height: 2.75rem; color: var(--status-color); background: var(--status-surface); border: 1px solid currentColor; border-radius: 50%; font-size: 1.45rem; font-weight: 500; margin-bottom: 1.5rem; }
h1 { font-size: clamp(2rem, 5vw, 2.65rem); font-weight: 500; letter-spacing: -.045em; line-height: 1.15; max-width: 39rem; margin: 0; text-wrap: balance; }
.summary p { color: var(--muted); margin: 1rem 0 0; font-size: 1.1rem; }
.section-heading { display: flex; justify-content: space-between; gap: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
h2, h3 { margin: 0; font-size: 1rem; font-weight: 500; }
.section-heading > span { color: var(--muted); font-size: .875rem; }
ul { list-style: none; margin: 0; padding: 0; }
.service { padding: 1.25rem 0; border-bottom: 1px solid var(--border); }
.service-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.service h3 { font-size: 1.1rem; }
.service-status { display: inline-flex; align-items: center; gap: .55rem; color: var(--status-color); font-size: .9375rem; }
.dot { width: .45rem; height: .45rem; background: currentColor; border-radius: 50%; flex-shrink: 0; }
.incident { margin: .75rem 0 0; color: var(--muted); max-width: 37rem; white-space: pre-line; overflow-wrap: anywhere; }
footer { padding: 2.5rem 0 3rem; }
footer p { color: var(--muted); margin: .4rem 0 0; }
a { color: var(--link); text-underline-offset: .2em; overflow-wrap: anywhere; }
a:hover { text-decoration-thickness: 2px; }
a:focus-visible { outline: 2px solid var(--link); outline-offset: 5px; border-radius: 2px; }

@media (prefers-color-scheme: dark) {
  :root {
    --background: #09090b; --foreground: #fafafa; --muted: #a1a1aa; --border: #303036;
    --green: #83d6a9; --green-surface: #152b21;
    --amber: #eac17b; --amber-surface: #2e2516;
    --red: #fda4af; --red-surface: #351b23; --link: #d8b4fe;
  }
}
@media (max-width: 440px) {
  .page { width: calc(100% - 2rem); }
  .brand { padding-top: 1.5rem; }
  .summary { padding: 1.5rem 0 2.5rem; }
  .service-heading { flex-wrap: wrap; gap: .4rem 1rem; }
  .page-label { font-size: .875rem; }
}
