.hero {
  position: relative;
  min-height: 744px;
  overflow: hidden;
  background: #fff;
}

.topbar {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  width: min(980px, calc(100% - 88px));
  margin: 0 auto;
  padding-top: 30px;
}

.brand img {
  width: 214px;
  height: auto;
}

.social-links,
.footer-socials {
  display: flex;
  gap: 8px;
}

.social-links a,
.footer-socials a {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 4px;
  color: #fff;
  background: var(--blue-bright);
  font-weight: 800;
  line-height: 1;
}

.top-cta {
  justify-self: end;
  color: var(--blue);
  font-size: 14px;
  line-height: 1.1;
  text-align: right;
}

.top-cta strong,
.top-cta span {
  display: block;
}

.top-cta strong {
  font-weight: 900;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 364px;
  gap: 58px;
  width: min(980px, calc(100% - 88px));
  margin: 74px auto 0;
  align-items: center;
}

.hero-copy {
  max-width: 610px;
}

.hero-copy h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(48px, 5.1vw, 55px);
  font-weight: 900;
  line-height: 1.05;
}

.hero-copy h1::first-line {
  color: var(--ink);
}

.hero-copy h1 {
  background: linear-gradient(180deg, var(--ink) 0 51%, var(--blue) 51% 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-copy p {
  max-width: 570px;
  margin: 40px 0 38px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.62;
}

.hero-copy strong {
  font-weight: 900;
}

.button,
.lead-card button {
  display: inline-flex;
  min-height: 47px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--blue-bright);
  box-shadow: 0 10px 18px rgba(14, 169, 237, 0.22);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  padding: 0 32px;
  text-transform: uppercase;
}

.button span,
.footer-button span {
  font-size: 25px;
  line-height: 0;
}

.lead-card {
  padding: 36px 78px 18px;
  border-radius: 9px;
  color: #fff;
  background: var(--navy-deep);
  box-shadow: var(--shadow);
  text-align: center;
}

.lead-card h2 {
  margin: 0;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.45;
  text-transform: uppercase;
}

mark {
  color: #fff;
  background: var(--blue);
  box-decoration-break: clone;
  padding: 0 3px;
}

.lead-card p {
  margin: 8px 0 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.38;
}

.lead-card input {
  width: 100%;
  height: 35px;
  margin-bottom: 9px;
  border: 1.5px solid var(--blue-bright);
  border-radius: 999px;
  color: #fff;
  background: transparent;
  outline: none;
  padding: 0 22px;
}

.lead-card input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.lead-card button {
  width: 100%;
  min-height: 36px;
  margin-top: 20px;
  border-radius: 999px;
  font-size: 16px;
  letter-spacing: 0;
  text-transform: none;
}

.lead-card .form-note {
  margin-top: 14px;
  color: #4f86f7;
}

.hero-shape {
  position: absolute;
  pointer-events: none;
}

.hero-shape-blue {
  right: -80px;
  bottom: -96px;
  width: 620px;
  height: 620px;
  background: var(--blue-bright);
  clip-path: polygon(48% 0, 100% 0, 100% 100%, 21% 100%, 0 62%);
}

.hero-shape-navy {
  right: 390px;
  bottom: -152px;
  width: 920px;
  height: 232px;
  background: var(--navy-deep);
  transform: rotate(-9deg);
  transform-origin: right bottom;
}
