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

* {
  box-sizing: border-box;
}

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

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

.hero {
  width: min(100%, 44rem);
  padding: clamp(2rem, 8vw, 5rem);
  border: 1px solid #dce3ef;
  border-radius: 1.5rem;
  background: #ffffff;
  box-shadow: 0 1.25rem 3.75rem rgba(21, 35, 59, 0.1);
}

.eyebrow {
  margin: 0 0 1rem;
  color: #176a9b;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.intro {
  max-width: 35rem;
  margin: 1.5rem 0 0;
  color: #51627c;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.65;
}
