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

* {
  box-sizing: border-box;
}

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

.page {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(245, 247, 251, 0.97), rgba(245, 247, 251, 0.68)),
    url("https://images.unsplash.com/photo-1611606063065-ee7946f0787a?auto=format&fit=crop&w=1800&q=80")
      center / cover;
}

.hero {
  display: flex;
  align-items: center;
  min-height: 92vh;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0;
}

.hero__copy {
  width: min(650px, 100%);
}

.eyebrow {
  margin: 0 0 16px;
  color: #2d6cdf;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(44px, 8vw, 92px);
  line-height: 0.95;
  letter-spacing: 0;
}

.lead {
  max-width: 560px;
  margin: 28px 0;
  color: #394657;
  font-size: 19px;
  line-height: 1.6;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 8px;
  background: #17202a;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.button[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.58;
}

.status {
  min-height: 24px;
  margin: 16px 0 0;
  color: #64748b;
  font-size: 14px;
}

@media (max-width: 680px) {
  .page {
    background:
      linear-gradient(180deg, rgba(245, 247, 251, 0.94), rgba(245, 247, 251, 0.78)),
      url("https://images.unsplash.com/photo-1611606063065-ee7946f0787a?auto=format&fit=crop&w=1200&q=80")
        center / cover;
  }

  .hero {
    width: min(100% - 28px, 1120px);
    min-height: 90vh;
    align-items: flex-end;
  }

  h1 {
    font-size: 48px;
  }
}
