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

* {
  box-sizing: border-box;
}

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

.page {
  display: grid;
  min-height: 100vh;
  place-content: center;
  gap: 1rem;
  padding: 2rem;
  text-align: center;
}

.icon {
  display: grid;
  width: 5rem;
  height: 5rem;
  margin: 0 auto 0.75rem;
  place-items: center;
  border-radius: 1.5rem;
  background: #173b68;
  color: #fff;
}

.icon svg {
  width: 3rem;
  height: 3rem;
  fill: currentColor;
}

.eyebrow {
  margin: 0;
  color: #45698f;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.25rem, 8vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.message {
  max-width: 32rem;
  margin: 0;
  color: #526277;
  font-size: 1.1rem;
  line-height: 1.6;
}
