:root {
  color-scheme: light;
  font-family: "Helvetica Neue", Arial, "Hiragino Sans", Meiryo, sans-serif;
  color: #172033;
  background: #f7f8fb;
}

* {
  box-sizing: border-box;
}

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

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 20px;
  background:
    linear-gradient(rgba(247, 248, 251, 0.86), rgba(247, 248, 251, 0.86)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=80")
      center / cover;
}

.hero__content {
  width: min(920px, 100%);
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #0b7f87;
}

h1 {
  margin: 0;
  font-size: clamp(48px, 9vw, 112px);
  line-height: 0.95;
  letter-spacing: 0;
}

.lead {
  width: min(680px, 100%);
  margin: 28px 0 0;
  font-size: 20px;
  line-height: 1.8;
  color: #344055;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 36px;
}

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

.actions span {
  color: #566176;
}

@media (max-width: 640px) {
  .hero {
    align-items: end;
    padding-bottom: 64px;
  }

  .lead {
    font-size: 17px;
  }
}
