:root {
  --ink: #2a241c;
  --primary: #d0e860;
  --font: 'DM Sans', system-ui, sans-serif;
}
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: #fafaf6;
  line-height: 1.55;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.static-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  padding-top: calc(16px + env(safe-area-inset-top, 0px));
  background: #fff;
  border-bottom: 1px solid #e2e4d8;
  position: sticky;
  top: 0;
  z-index: 10;
}
.static-header a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.static-main {
  width: min(100% - 32px, 720px);
  margin: 48px auto;
}
.btn {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  background: #111;
  color: #fff !important;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.9rem;
  font-weight: 600;
}
.skip-link {
  position: absolute;
  left: -999px;
}
.skip-link:focus {
  left: 8px;
  top: 8px;
  background: #111;
  color: #fff;
  padding: 8px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
