.hero-section {
  position: relative;
  padding: 0 var(--container-padding);
  overflow: hidden;
  background: var(--color-bg);
}

.hero-section__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

.hero-section__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-end;
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
}

.hero-section__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-self: center;
}

.hero-section__welcome {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: fit-content;
}

.hero-section__welcome-text {
  font-family: var(--font-display);
  font-size: 32px;
  color: #fff;
  margin: 0;
  line-height: 1.1;
}

.hero-section__divider {
  height: 2px;
  width: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(122, 92, 255, 0.9) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  border-radius: 2px;
}

.hero-section__title {
  font-family: var(--font-display);
  font-size: 96px;
  line-height: 1;
  color: #fff;
  margin: 0;
  word-break: break-word;
}

.hero-section__subtitle {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.4;
  color: var(--color-text-muted);
  margin: 0;
}

.hero-section__visual {
  position: relative;
  align-self: flex-end;
  display: flex;
  justify-content: center;
}

.hero-section__visual img {
  display: block;
  filter: drop-shadow(0 40px 80px rgba(122, 92, 255, 0.3));
}

@media (max-width: 1100px) {
  .hero-section__title {
    font-size: 72px;
  }
}

@media (max-width: 1023px) {
  .hero-section {
    padding: 0 var(--container-padding);
    padding-top: 1rem;
  }
  .hero-section__inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .hero-section__content {
    align-items: center;
    gap: 24px;
    padding-bottom: 0;
  }
  .hero-section__welcome-text {
    font-size: 22px;
  }
  .hero-section__title {
    font-size: 48px;
  }
  .hero-section__subtitle {
    font-size: 16px;
  }
  .hero-section__visual {
    max-width: 420px;
  }
}
