.scramble-hero {
  padding: 4rem 0 3rem;
}

.scramble-title {
  margin: 0;
  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    "Liberation Mono",
    "Courier New",
    monospace;
  font-size: clamp(2.5rem, 9vw, 7rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scramble-text {
  display: inline-block;
  position: relative;
  white-space: nowrap;
}

.scramble-text::after {
  content: "";
  display: inline-block;
  width: 0.55em;
  height: 0.08em;
  margin-left: 0.15em;
  vertical-align: baseline;
  background: currentColor;
  animation: scramble-cursor 0.9s steps(1, end) infinite;
}

.scramble-tagline {
  max-width: 42rem;
  margin: 1rem 0 0;
  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    "Liberation Mono",
    "Courier New",
    monospace;
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  letter-spacing: 0.04em;
  opacity: 0.75;
}

@keyframes scramble-cursor {
  0%, 45% {
    opacity: 1;
  }

  46%, 100% {
    opacity: 0;
  }
}

/* Respect users who prefer reduced animation. */
@media (prefers-reduced-motion: reduce) {
  .scramble-text::after {
    animation: none;
    opacity: 0;
  }
}