.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(170deg, rgba(7, 12, 26, 0.92), rgba(8, 13, 24, 0.95)),
    url("/images/pages/swap/bg.png") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(580px 280px at 10% 12%, rgba(60, 140, 255, 0.2), transparent 70%),
    radial-gradient(520px 240px at 90% 10%, rgba(0, 194, 255, 0.14), transparent 70%);
}

.hero__inner {
  position: relative;
  padding: 48px 0 70px;
}

.hero__title {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.08;
  font-weight: 700;
}

.hero__img {
  margin: 24px auto 0;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  padding: 10px;
  filter: hue-rotate(40deg) saturate(1.1);
}

.hero__text-1 {
  max-width: 980px;
  margin: 24px auto 0;
  text-align: center;
  color: #bac9f2;
  line-height: 1.68;
  font-size: clamp(15px, 1.45vw, 20px);
}

.hero__text-2 {
  max-width: 980px;
  margin: 22px auto 0;
  text-align: center;
  font-weight: 700;
  line-height: 1.25;
  font-size: clamp(22px, 2.8vw, 38px);
}

@media (max-width: 760px) {
  .hero__inner {
    padding: 34px 0 54px;
  }
}
