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

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(23, 25, 31, 0.08) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, #ffffff 0%, #f1f2f5 100%);
  background-size: 34px 34px, auto;
}

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

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

.eyebrow {
  margin: 0 0 18px;
  color: #725900;
  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: #4b5260;
  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 #17191f;
  color: #17191f;
  text-decoration: none;
  font-weight: 700;
}

.button:hover {
  background: #17191f;
  color: #fff;
}
