:root {
  color-scheme: light;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: #18212b;
  background: #f2f0eb;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

body {
  display: grid;
  min-height: 100vh;
  margin: 0;
  place-items: center;
  padding: 1.5rem;
  background:
    radial-gradient(
      circle at top left,
      rgba(105, 126, 145, 0.18),
      transparent 36rem
    ),
    #f2f0eb;
}

.card {
  width: min(100%, 42rem);
  padding: clamp(2rem, 7vw, 4.5rem);
  border: 1px solid rgba(24, 33, 43, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 1.5rem 4rem rgba(24, 33, 43, 0.1);
}

.eyebrow {
  margin: 0 0 1rem;
  color: #53677a;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 9vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.lede {
  max-width: 35rem;
  margin: 2rem 0;
  color: #43505c;
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  line-height: 1.65;
}

.button {
  display: inline-block;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  color: #fff;
  background: #263d52;
  font-weight: 700;
  text-decoration: none;
}

.button:hover,
.button:focus-visible {
  background: #172b3d;
}

.button:focus-visible,
.text-link:focus-visible {
  outline: 3px solid #315f7d;
  outline-offset: 4px;
}

.note {
  margin: -0.75rem 0 2rem;
  color: #65717c;
}

.text-link {
  color: #263d52;
  font-weight: 700;
  text-underline-offset: 0.2em;
}
