body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-paper);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
}

h1 {
  font-size: var(--text-hero);
}

h2 {
  font-size: var(--text-section-head);
}

p {
  margin: 0;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--text-label);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-green);
}

.eyebrow--on-paper {
  color: var(--color-terracotta);
}

.js-type {
  display: inline-block;
  white-space: nowrap;
}

.js-type::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 1em;
  margin-left: 2px;
  background: currentColor;
  vertical-align: -2px;
  animation: eyebrow-cursor-blink 1s steps(1) infinite;
}

.js-type.is-done::after {
  animation: none;
  opacity: 0;
}

@keyframes eyebrow-cursor-blink {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .js-type::after {
    animation: none;
    opacity: 0;
  }
}

