@font-face {
   font-family: "IBM Plex Sans";
   src: url(../fonts/plex-sans-400.woff2) format("woff2");
   font-weight: 400;
   font-display: swap;
 }

 @font-face {
   font-family: "IBM Plex Sans";
   src: url(../fonts/plex-sans-500.woff2) format("woff2");
   font-weight: 500;
   font-display: swap;
 }

 @font-face {
   font-family: "IBM Plex Sans";
   src: url(../fonts/plex-sans-600.woff2) format("woff2");
   font-weight: 600;
   font-display: swap;
 }

 @font-face {
   font-family: "IBM Plex Sans";
   src: url(../fonts/plex-sans-700.woff2) format("woff2");
   font-weight: 700;
   font-display: swap;
 }

 @font-face {
   font-family: "Archivo Black";
   src: url(../fonts/archivo-black-400.woff2) format("woff2");
   font-weight: 400 900;
   font-display: swap;
 }

 :root {
   color-scheme: light;
   --space-1: 4px;
   --space-2: 8px;
   --space-3: 12px;
   --space-4: 16px;
   --space-5: 24px;
   --space-6: 32px;
   --space-7: 48px;
   --space-8: 64px;
   --radius-sm: 3px;
   --radius-md: 6px;
   --radius-round: 50%;
   --font-sans: "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
   --bg: #f4f5f7;
   --surface: #ffffff;
   --surface-sunken: #eceef1;
   --line: #d5d9df;
   --line-strong: #767d88;
   --ink: #14171b;
   --ink-muted: #4a515b;
   --ink-faint: #5f6772;
   --open: #008000;
   --on-open: #ffffff;
   --closed: #7a0000;
   --on-closed: #ffffff;
   --action: #1f5fbf;
   --on-action: #ffffff;
   --action-soft: #dce7f8;
   --data-0: var(--surface-sunken);
   --data-1: #dcefe0;
   --data-2: #b3dbbc;
   --data-3: #7dc08c;
   --data-4: #3f9c55;
   --data-5: #008000;
   --data-6: #004b12;
   --on-data-1: #14171b;
   --on-data-2: #14171b;
   --on-data-3: #14171b;
   --on-data-4: #14171b;
   --on-data-5: #ffffff;
   --on-data-6: #ffffff;
   --shadow-tip: 0 2px 8px rgba(20, 23, 27, 0.18);
 }

 @media (prefers-color-scheme: dark) {
   :root:not([data-theme="light"]) {
     color-scheme: dark;
     --bg: #121417;
     --surface: #1a1d21;
     --surface-sunken: #22262b;
     --line: #33383f;
     --line-strong: #8b93a0;
     --ink: #eceef1;
     --ink-muted: #aab1bc;
     --ink-faint: #9199a5;
     --open: #4cc36a;
     --on-open: #06210f;
     --closed: #f2777a;
     --on-closed: #2a0508;
     --action: #7aa7f5;
     --on-action: #0a1a36;
     --action-soft: #1f2f4d;
     --data-0: var(--surface-sunken);
     --data-1: #1f3324;
     --data-2: #24472c;
     --data-3: #2f6a3c;
     --data-4: #3f9a54;
     --data-5: #4cc36a;
     --data-6: #8be0a0;
     --on-data-1: #eceef1;
     --on-data-2: #eceef1;
     --on-data-3: #eceef1;
     --on-data-4: #06210f;
     --on-data-5: #06210f;
     --on-data-6: #06210f;
     --shadow-tip: 0 2px 8px rgba(0, 0, 0, 0.5);
   }
 }

 :root[data-theme="dark"] {
   color-scheme: dark;
   --bg: #121417;
   --surface: #1a1d21;
   --surface-sunken: #22262b;
   --line: #33383f;
   --line-strong: #8b93a0;
   --ink: #eceef1;
   --ink-muted: #aab1bc;
   --ink-faint: #9199a5;
   --open: #4cc36a;
   --on-open: #06210f;
   --closed: #f2777a;
   --on-closed: #2a0508;
   --action: #7aa7f5;
   --on-action: #0a1a36;
   --action-soft: #1f2f4d;
   --data-0: var(--surface-sunken);
   --data-1: #1f3324;
   --data-2: #24472c;
   --data-3: #2f6a3c;
   --data-4: #3f9a54;
   --data-5: #4cc36a;
   --data-6: #8be0a0;
   --on-data-1: #eceef1;
   --on-data-2: #eceef1;
   --on-data-3: #eceef1;
   --on-data-4: #06210f;
   --on-data-5: #06210f;
   --on-data-6: #06210f;
   --shadow-tip: 0 2px 8px rgba(0, 0, 0, 0.5);
 }

 * {
   box-sizing: border-box;
 }

 [hidden] {
   display: none !important;
 }

 html {
   background: var(--bg);
 }

 body {
   margin: 0;
   background: var(--bg);
   color: var(--ink);
   font: 400 15px/23px var(--font-sans);
   font-variant-numeric: tabular-nums;
   -webkit-font-smoothing: antialiased;
 }

 a {
   color: var(--action);
   text-underline-offset: 3px;
 }

 :focus-visible {
   outline: 2px solid var(--action);
   outline-offset: 2px;
 }

 button,
 input,
 select {
   font: inherit;
   color: inherit;
 }

 h1,
 h2,
 h3,
 p,
 ul {
   margin: 0;
 }

 .wrap {
   max-width: 792px;
   margin: 0 auto;
   padding: 0 var(--space-4);
 }

 main.wrap {
   padding-bottom: var(--space-8);
 }

 .display,
 h1 {
   font-size: 32px;
   line-height: 38px;
   font-weight: 600;
   letter-spacing: -0.01em;
 }

 .title,
 h2.title {
   font-size: 22px;
   line-height: 28px;
   font-weight: 600;
 }

 .heading,
 h3 {
   font-size: 17px;
   line-height: 24px;
   font-weight: 600;
 }

 .strong {
   font-weight: 600;
 }

 .small {
   font-size: 13px;
   line-height: 19px;
 }

 .label {
   font-size: 13px;
   line-height: 18px;
   font-weight: 500;
 }

 .axis {
   font-size: 12px;
   line-height: 16px;
 }

 .muted {
   color: var(--ink-muted);
 }

 .faint {
   color: var(--ink-faint);
 }

 .t-open {
   color: var(--open);
 }

 .t-closed {
   color: var(--closed);
 }

 .measure {
   max-width: 62ch;
 }
