:root {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: #f8f5ef;
  color: #252525;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(135deg, rgba(45, 92, 154, 0.14), transparent 38%),
    linear-gradient(315deg, rgba(223, 95, 72, 0.16), transparent 34%),
    #f8f5ef;
}

.page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px;
}

.intro {
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 18px;
  color: #2f5f8f;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(3rem, 12vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  margin: 28px 0 32px;
  color: #4a4a4a;
  font-size: clamp(1.05rem, 3vw, 1.35rem);
  line-height: 1.75;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid #252525;
  border-radius: 8px;
  padding: 0 18px;
  color: #252525;
  font-weight: 700;
  text-decoration: none;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.button:hover {
  background: #252525;
  color: #fff;
}

@media (max-width: 520px) {
  .page {
    place-items: end start;
    padding: 24px;
  }
}
