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

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
}

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

.hero {
  width: min(720px, 100%);
  padding: 48px;
  border: 1px solid #d8e0e3;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 50px rgb(23 32 38 / 10%);
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #216869;
}

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

.hero p:last-child {
  max-width: 56ch;
  margin: 24px 0 0;
  color: #4f5f66;
  font-size: 1.05rem;
  line-height: 1.65;
}

@media (max-width: 560px) {
  .page {
    padding: 20px;
  }

  .hero {
    padding: 28px;
  }
}
