.rf-hero {
  position: relative;
  overflow: hidden;
  padding: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}

.rf-hero__bg {
  position: absolute;
  inset: 0;
  background-image: var(--rf-hero-bg);
  background-size: cover;
  background-position: center;
  opacity: 1;
}

.rf-hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--rf-container);
  margin: 0 auto;
  padding: 24px;
}

.rf-hero__stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.rf-hero__title {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(42px, 6vw, 110px);
  line-height: 1;
  color: rgba(255, 255, 255, 0.3);
  text-shadow: 0 0 40px rgba(61, 125, 255, 0);
  white-space: nowrap;
  letter-spacing: 4px;
  pointer-events: none;
  z-index: 1;
}

.rf-hero__character {
  position: relative;
  z-index: 2;
  max-height: 640px;
  width: auto;
  margin: 0 auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.rf-hero__content {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 560px;
  width: 100%;
  padding: 0 16px;
}

.rf-hero__subtitle {
  font-size: 16px;
  color: #d9def0;
  text-align: center;
  margin: 0;
}

.rf-hero__cta {
  z-index: 3;
}

@media (max-width: 768px) {
  .rf-hero__title {
    top: 4%;
    font-size: clamp(22px, 7vw, 44px);
    letter-spacing: 1px;
  }
  .rf-hero__character {
    max-height: 420px;
  }
  .rf-hero__subtitle {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .rf-hero__title {
    font-size: clamp(18px, 6vw, 32px);
    letter-spacing: 0.5px;
  }
}
