@font-face {
  font-family: "Roobert";
  src: url("../assets/fonts/roobert/Roobert-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roobert";
  src: url("../assets/fonts/roobert/Roobert-SemiBold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roobert";
  src: url("../assets/fonts/roobert/Roobert-Bold.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: only light;
  --red: #b84f45;
  --navy: #263442;
  --navy2: #46586a;
  --blue: #365f8d;
  --cyan: #b48a49;
  --ink: #202a33;
  --muted: #66717b;
  --line: #d8d9d5;
  --soft: #f5f5f1;
  --card: #fff;
  --r0: #b84f45;
  --r1: #b8752f;
  --r2: #9a813a;
  --r3: #537493;
  --r4: #4f735f;
  --r0t: #9e3f34;
  --r1t: #83501f;
  --r2t: #6b5a25;
  --r3t: #3e6575;
  --r4t: #2f6552;
  --hz1: #2d7485;
  --hz2: #4f7188;
  --hz3: #6f7188;
  --hz4: #8a684f;
  --critical: var(--r0);
  --attention: var(--r1);
  --attested: var(--r2);
  --instrumented: var(--r3);
  --verified: var(--r4);
  --surface-tint: #f1f3f4;
  --entry: #365f8d;
  --entry-ink: #173d68;
  --entry-paper: #fffef7;
  --ledger-rule: rgba(54, 95, 141, .07);
  --clay: #8d6651;
  --clay-soft: rgba(141, 102, 81, .075);
  --clay-line: rgba(141, 102, 81, .22);
  --body-paper: #fff;
  --support-paper: #f6f6f3;
  --font-body: "Roobert", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-entry: ui-monospace, "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  /* Text-safe variants of the horizon ramp: the bright tokens above pass
     the 3:1 graphics minimum for fills/borders but fail 4.5:1 for small
     text on white; use these for text. */
  --hz1t: #265e6b;
  --hz2t: #3e596b;
  --hz3t: #51546a;
  --hz4t: #5f4434;
  --shadow: 0 12px 30px rgba(38, 52, 66, .07);
  --sm: 0 3px 10px rgba(38, 52, 66, .055);
  --rad: 10px;
  --max: 1240px;
  font-family: var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: only light;
}

body {
  margin: 0;
  color-scheme: only light;
  color: var(--ink);
  background-color: #f7f7f4;
  background-image: repeating-linear-gradient(180deg, transparent 0, transparent 31px, var(--ledger-rule) 32px);
  -webkit-font-smoothing: antialiased;
}

button,
a,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(54, 95, 141, .4);
  outline-offset: 3px;
}

.srOnly {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skipLink {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: #fff;
  color: var(--navy);
  border: 2px solid var(--cyan);
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--sm);
}

.skipLink:focus {
  transform: translateY(0);
}
