:root {
  color-scheme: dark;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #101114;
  color: #f6f3ed;
}

* {
  box-sizing: border-box;
}

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

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  background:
    radial-gradient(circle at 50% 18%, rgba(49, 129, 114, 0.28), transparent 34%),
    linear-gradient(135deg, #101114 0%, #17181c 48%, #22201b 100%);
}

.hero {
  width: min(720px, 100%);
  text-align: center;
}

.eyebrow {
  margin: 0 0 20px;
  color: #89d0be;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.lead {
  margin: 24px auto 0;
  max-width: 520px;
  color: #d7d0c4;
  font-size: clamp(1.1rem, 3vw, 1.45rem);
  line-height: 1.5;
}
