:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #101114;
  color: #f6f4ef;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 85% 15%, rgb(93 112 255 / 22%), transparent 28rem),
    radial-gradient(circle at 15% 85%, rgb(56 209 168 / 14%), transparent 30rem),
    #101114;
}

.page-shell {
  display: flex;
  width: min(100% - 3rem, 48rem);
  min-height: 100vh;
  margin: auto;
  padding: 4rem 0;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 1.25rem;
  color: #aeb8ff;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3rem, 10vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.intro {
  max-width: 38rem;
  margin: 2rem 0;
  color: #c9c9d1;
  font-size: clamp(1.125rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.contact-link {
  width: fit-content;
  padding: 0.8rem 1.05rem;
  border: 1px solid #b8c0ff;
  border-radius: 999px;
  color: #f6f4ef;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 150ms ease, color 150ms ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  background: #dce0ff;
  color: #171826;
}
