:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #0d0d0d;
  color: #f4f1ea;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 80% 15%, rgb(215 255 69 / 10%), transparent 30rem),
    #0d0d0d;
}

.shell {
  display: flex;
  min-height: 100vh;
  width: min(100% - 3rem, 72rem);
  margin-inline: auto;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-block: 4rem;
}

.eyebrow {
  margin: 0 0 1.5rem;
  color: #d7ff45;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3.25rem, 11vw, 8.5rem);
  font-weight: 750;
  letter-spacing: -0.07em;
  line-height: 0.86;
}

h1 span {
  color: #d7ff45;
}

.intro {
  margin: 2rem 0 0;
  color: #a9a69f;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.home-link {
  margin-top: 2.25rem;
  color: #f4f1ea;
  font-weight: 650;
  text-underline-offset: 0.3em;
}

.home-link:hover,
.home-link:focus-visible {
  color: #d7ff45;
}

@media (prefers-reduced-motion: no-preference) {
  .shell > * {
    animation: arrive 600ms both;
  }

  .shell > :nth-child(2) {
    animation-delay: 80ms;
  }

  .shell > :nth-child(3) {
    animation-delay: 160ms;
  }

  .shell > :nth-child(4) {
    animation-delay: 240ms;
  }

  @keyframes arrive {
    from {
      opacity: 0;
      transform: translateY(0.75rem);
    }
  }
}
