.npl-hero {
  padding: 28px 0 24px;
}

.npl-hero__inner {
  position: relative;
  border: 1px solid #4a00ff;
  background-position: right;
  border-radius: 32px;
  padding: 120px 40px;
  overflow: hidden;
  background-color: var(--npl-card);
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.npl-hero__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(22, 10, 58, 0.95) 0%,
    rgba(22, 10, 58, 0.55) 50%,
    rgba(22, 10, 58, 0.05) 100%
  );
  z-index: 1;
}

.npl-hero__content {
  position: relative;
  z-index: 2;
  max-width: 50%;
}

.npl-hero__title {
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.05;
  margin: 0 0 14px;
}

.npl-hero__subtitle {
  color: #d4ccf2;
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 26px;
  max-width: 420px;
}

@media (max-width: 720px) {
  .npl-hero__content {
    width: 100%;
  }
  .npl-hero__inner {
    padding: 36px 24px;
    background-position: right -60px center;
  }

  .npl-hero__content {
    max-width: none;
  }
}
