.hero {
  position: relative;
  overflow: hidden;
  min-height: 580px;
  display: flex;
  align-items: center;
  padding: 80px 0 120px;
  background-color: #0a0f1f;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.hero__char {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: auto;
  max-width: 55%;
  object-fit: contain;
  object-position: right center;
  z-index: 1;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
}

.hero__title {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 0.99;
  margin: 0 0 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #ffffff;
}

.hero__subtitle {
  color: #ffffff;
  font-size: 22px;
  line-height: 1.4;
  margin: 0 0 40px;
  max-width: 500px;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .hero {
    min-height: 460px;
    padding: 56px 0 100px;
  }
  .hero__title {
    font-size: 60px;
  }
  .hero__subtitle {
    font-size: 18px;
  }
  .hero__char {
    max-width: 45%;
    opacity: 0.6;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 420px;
    padding: 40px 0 80px;
  }
  .hero__title {
    font-size: 40px;
  }
  .hero__subtitle {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .hero__char {
    max-width: 60%;
    opacity: 0.35;
  }
}
