.hero {
  position: relative;
  isolation: isolate;
  padding: 24px 0 12px;
  background: radial-gradient(circle at 76% 42%, rgba(80, 106, 245, 0.16), transparent 32%), linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}
.hero__bg {
  position: absolute;
  z-index: 0;
  top: -124px;
  width: 70%;
  height: 100%;
  right: 0;
  bottom: 0;
  background: url(/Firefly/templates/default/assets/images/hero_bg.webp) center top/contain no-repeat;
  mix-blend-mode: multiply;
  pointer-events: none;
  opacity: 0.7;
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 42px;
  min-height: 575px;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-left: 86px;
  text-align: left;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 12px;
  padding: 0 16px;
  border-radius: 999px;
  background: #eeedff;
  color: var(--blue-500);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1;
}
.hero__title {
  max-width: 620px;
  margin: 0 0 24px;
  color: var(--gray-900);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
}
.hero__lead {
  margin: 0 0 25px;
  color: var(--gray-700);
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.5;
}
.hero__features {
  display: grid;
  gap: 12px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}
.hero__features li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 22px;
  padding-left: 34px;
  color: #727c94;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.3;
}
.hero__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 5px;
  background: #eef0ff;
  transform: translateY(-50%);
}
.hero__features li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  width: 6px;
  height: 9px;
  border-right: 2px solid #506af5;
  border-bottom: 2px solid #506af5;
  transform: translateY(-62%) rotate(45deg);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-bottom: 25px;
}
.hero__btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2em 1em;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1;
  gap: 12px;
  min-width: 300px;
  background: var(--blue-500);
  color: var(--white);
  box-shadow: 0 12px 22px rgba(80, 106, 245, 0.18);
}
.hero__btn-primary:hover {
  background: var(--blue-600);
  box-shadow: 0 12px 22px rgba(80, 106, 245, 0.28);
}
.hero__btn-primary svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  color: var(--white);
  fill: var(--white);
  transition: fill 0.2s ease;
  transform: rotate(270deg);
}
.hero__btn-primary svg:hover {
  fill: var(--white);
}
.hero__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2em 1em;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1;
  border: 1px solid var(--gray-400);
  color: var(--gray-700);
  background: rgba(255, 255, 255, 0.8);
}
.hero__btn-secondary:hover {
  background: rgb(255, 255, 255);
  color: var(--blue-500);
}
.hero__notes {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  color: #98a1b4;
  font-size: 1.35rem;
  font-weight: 600;
}
.hero__notes span {
  position: relative;
  padding-left: 22px;
}
.hero__notes span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;
  height: 14px;
  border: 2px solid #c7cedc;
  border-radius: 50%;
  transform: translateY(-50%);
}
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 520px;
}
.hero__image {
  display: block;
  width: 100%;
  max-width: 720px;
  height: auto;
}
@media (max-width: 1439.98px) {
  .hero__content {
    padding-left: 76px;
  }
  .hero__title {
    font-size: 4.15rem;
  }
}
@media (max-width: 1199.98px) {
  .hero {
    padding-top: 30px;
  }
  .hero__bg {
    top: -110px;
  }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .hero__content {
    padding-left: 0;
  }
  .hero__visual {
    min-height: 360px;
  }
}
@media (max-width: 767.98px) {
  .hero {
    padding: 26px 0 54px;
  }
  .hero__bg {
    top: -94px;
  }
  .hero__grid {
    min-height: 0;
    gap: 26px;
  }
  .hero__eyebrow {
    min-height: 28px;
    margin-bottom: 18px;
    font-size: 1.15rem;
  }
  .hero__title {
    font-size: 3.15rem;
    line-height: 1.16;
  }
  .hero__title br {
    display: none;
  }
  .hero__lead {
    font-size: 1.7rem;
  }
  .hero__lead br {
    display: none;
  }
  .hero__actions {
    gap: 12px;
  }
  .hero__btn {
    width: 100%;
    min-height: 52px;
  }
  .hero__visual {
    min-height: 240px;
  }
}
@media (max-width: 575.98px) {
  .hero__notes {
    gap: 12px;
    flex-direction: column;
  }
  .hero__visual {
    margin: 0 -10px;
  }
}

/*# sourceMappingURL=style.css.map */
