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

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(9, 82, 130, 0.12) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, #fbfbf8 0%, #edf3f7 100%);
  background-size: 42px 42px, auto;
}

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

.hero {
  width: min(780px, 100%);
}

.eyebrow {
  margin: 0 0 18px;
  color: #095282;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 10vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  margin: 26px 0 34px;
  color: #465466;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid #1d2430;
  color: #1d2430;
  text-decoration: none;
  font-weight: 700;
}

.button:hover {
  background: #1d2430;
  color: #fff;
}
