body {
  overflow-x: hidden;
  background: var(--upy-paper);
  color: var(--upy-ink-950);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--upy-green-500);
  color: var(--upy-ink-950);
}

:focus-visible {
  outline: 2px solid var(--upy-green-600);
  outline-offset: 4px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: var(--tracking-heading);
  line-height: var(--lh-heading);
}

h1 {
  font-size: var(--fs-h1);
}

h2 {
  font-size: var(--fs-h2);
}

h3 {
  font-size: var(--fs-h3);
}

h4 {
  font-size: var(--fs-h4);
}

p {
  max-width: 68ch;
}

strong {
  font-weight: 700;
}

code,
kbd,
samp {
  font-family: var(--font-mono);
}

a {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  text-decoration-thickness: 2px;
}

.skip-link {
  position: fixed;
  z-index: var(--z-skip);
  inset: 0 auto auto 0;
  padding: 0.75rem 1rem;
  transform: translateY(-120%);
  background: var(--upy-green-500);
  color: var(--upy-ink-950);
  font-weight: 700;
  transition: transform var(--duration-fast) ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - (2 * var(--container-gutter))), var(--container-max));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

.section--compact {
  padding-block: clamp(3rem, 6vw, 6rem);
}

.section--light {
  background: var(--upy-paper);
  color: var(--upy-ink-950);
}

.section--white {
  background: var(--upy-white);
  color: var(--upy-ink-950);
}

.section--dark {
  background: var(--upy-ink-950);
  color: var(--upy-white);
}

.section--green {
  background: var(--upy-green-500);
  color: var(--upy-ink-950);
}

.eyebrow,
.meta-label {
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  font-weight: 600;
  letter-spacing: var(--tracking-label);
  line-height: var(--lh-tight);
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.eyebrow::before {
  width: 2rem;
  height: 1px;
  background: currentColor;
  content: "";
}

.lede {
  color: var(--upy-gray-700);
  font-size: var(--fs-body-lg);
  line-height: 1.5;
}

.section--dark .lede {
  color: var(--upy-gray-300);
}

.display-xl,
.display-lg {
  font-family: var(--font-display);
  font-weight: 850;
  letter-spacing: var(--tracking-display);
  line-height: var(--lh-display);
  text-transform: uppercase;
}

.display-xl {
  font-size: var(--fs-display-xl);
}

.display-lg {
  font-size: var(--fs-display-lg);
}

.text-green {
  color: var(--upy-green-500);
}

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

.flow > * + * {
  margin-block-start: var(--flow-space, 1rem);
}

.fine-print {
  color: var(--upy-gray-500);
  font-size: var(--fs-small);
  line-height: 1.55;
}
