:root {
  color-scheme: light;
  color: #111111;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), rgba(247, 242, 232, 1) 45%, #f7f2e8 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), rgba(247, 242, 232, 1) 45%, #f7f2e8 100%);
  color: #111111;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main {
  min-height: 100vh;
  display: grid;
  place-items: start center;
  padding: 4.5rem 2rem 4rem;
}

.hero {
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
  color: #5f5f5f;
  font-weight: 400;
}

h1 {
  margin: 0;
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: 0;
  max-width: 40ch;
}

.intro,
.status {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: #4f4f4f;
}

.intro {
  margin-top: 1.25rem;
}

.status {
  margin-top: 0.25rem;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  margin-top: 1.9rem;
}

.links a {
  display: inline-block;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  color: #4f4f4f;
  letter-spacing: 0;
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.links a:hover {
  color: #111111;
  border-color: #111111;
}

@media (max-width: 640px) {
  main {
    padding: 3rem 1.2rem;
  }

  h1 {
    font-size: clamp(2.6rem, 9vw, 3.8rem);
  }

  .links {
    justify-content: flex-start;
  }
}
