.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary-light);
  background-image: url('../images/home/hero_background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 45%, rgba(255, 251, 234, 0.82) 0%, rgba(255, 251, 234, 0.62) 45%, rgba(255, 248, 220, 0.30) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.40) 100%);
  z-index: 0;
  pointer-events: none;
}

.hero__decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero__decoration::before,
.hero__decoration::after {
  content: '';
  position: absolute;
  border-radius: var(--radius-full);
  filter: blur(3px);
}

.hero__decoration::before {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.6) 0%, rgba(245,232,184,0.3) 70%);
  top: -140px;
  right: -100px;
}

.hero__decoration::after {
  width: 240px;
  height: 240px;
  background: radial-gradient(circle at 60% 40%, rgba(255,255,255,0.5) 0%, rgba(255,248,220,0.25) 70%);
  bottom: -120px;
  left: -80px;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  text-align: center;
  padding: 96px 0 128px;
}

.hero__inner .hero__title,
.hero__inner .hero__subtitle {
  text-shadow: 0 1px 3px var(--color-white-glass);
}

.hero__eyebrow {
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--color-button-hover);
  font-weight: 700;
  margin-bottom: 24px;
}

.hero__title {
  font-size: 40px;
  margin-bottom: 24px;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.hero__title em {
  font-style: normal;
  background: linear-gradient(transparent 65%, var(--color-accent) 65%);
  padding: 0 4px;
}

.hero__subtitle {
  font-size: 16px;
  color: var(--color-text-sub);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.9;
}

.hero__actions {
  margin-top: 32px;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  cursor: pointer;
}

.hero__scroll:hover,
.hero__scroll:focus-visible {
  opacity: 0.6;
}

.hero__scroll-text {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--color-text-sub);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-text-sub), transparent);
  animation: scrollFade 2s ease-in-out infinite;
}

@keyframes scrollFade {
  0%, 100% { opacity: 0.8; }
  50%       { opacity: 0.2; }
}

@media (max-width: 1023px) {
  .hero {
    min-height: 80vh;
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: 100svh;
  }

  .hero__inner {
    padding: 80px 0 96px;
  }

  .hero__title {
    font-size: 28px;
    line-height: 1.45;
  }

  .hero__scroll {
    display: none;
  }
}
