/* ==========================================================================
   Section: Hero + first-screen shell
   ========================================================================== */

.hero-shell {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.hero {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: clamp(5rem, 12vh, 8rem);
  padding-bottom: clamp(2.5rem, 5vh, 3.5rem);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
  pointer-events: none;
}

.hero__bg {
  display: none;
}

.hero__bg-overlay {
  display: none;
}

.hero__glow {
  display: none;
}

/* Content */
.hero__content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(0.75rem, 2vh, 1.5rem);
  width: 100%;
  max-width: 52rem;
}

/* Logo */
.hero__logo {
  margin-bottom: clamp(0.25rem, 1vh, 0.5rem);
  filter: drop-shadow(0 0 8px rgba(150, 80, 255, 0.4));
}

.hero__logo-text {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 6px;
  line-height: 1;
}

.hero__logo-boost {
  background: linear-gradient(180deg, #ffffff 0%, #e8e8e8 50%, #c0c0c0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.5));
}

.hero__logo-pay {
  background: linear-gradient(180deg, #d8b4fe 0%, #a855f7 50%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 6px rgba(168, 85, 247, 0.7));
  animation: none;
}

.hero__logo-store {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.625rem;
  font-family: 'Cinzel', serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: #888;
}

/* Title & subtitle */
.hero__title {
  font-family: 'Cinzel', Georgia, serif;
  font-size: clamp(1.375rem, 3.8vw, var(--font-size-hero));
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-primary);
}

.hero__subtitle {
  font-size: clamp(0.9375rem, 2vw, var(--font-size-lg));
  font-weight: var(--font-weight-normal);
  color: var(--color-text-primary);
  letter-spacing: 0.02em;
}

/* Highlights row */
.hero__highlights {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 3vw, 2rem);
  margin-top: clamp(0.25rem, 1vh, 0.5rem);
}

.hero__highlight {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: clamp(0.8125rem, 1.8vw, var(--font-size-sm));
  font-weight: var(--font-weight-medium);
  color: var(--color-text-primary);
}

.hero__highlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: var(--color-accent-light);
}

.hero__highlight-icon svg {
  width: 100%;
  height: 100%;
}

/* CTA button with image */
.hero__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: clamp(0.5rem, 1.5vh, 1rem);
  width: clamp(14rem, 55%, 22rem);
  aspect-ratio: 1959 / 544;
  padding: 2.5% 4%;
  background: url('../assets/images/hero/button.png') center / 100% 100% no-repeat;
  border: none;
  border-radius: 0;
  box-shadow: none;
  text-decoration: none;
  overflow: hidden;
  transition: transform var(--transition-base), filter var(--transition-base);
}

.hero__cta-text {
  font-family: 'Cinzel', Georgia, serif;
  font-weight: 400;
  font-size: clamp(0.7rem, 2.2vw, 1.2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6), 0 0 10px rgba(168, 85, 247, 0.4);
  pointer-events: none;
  white-space: nowrap;
}

.hero__cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.15);
}

/* Tablet */
@media (max-width: 1024px) {
  .hero__cta {
    width: clamp(14rem, 60%, 20rem);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .hero {
    padding-top: var(--space-section);
    padding-bottom: var(--space-md);
  }

  .hero__highlights {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .hero__highlight {
    white-space: normal;
  }

  .hero__cta {
    width: 90%;
  }

  .hero__cta-text {
    font-size: clamp(0.6rem, 4.5vw, 0.85rem);
    letter-spacing: 0.05em;
  }
}

/* Short viewports — компактнее, но остаётся на экране */
@media (max-height: 700px) and (min-width: 601px) {
  .hero__logo-text {
    font-size: clamp(2rem, 4vw, 2.75rem);
  }

  .hero__title {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
  }

  .hero__content {
    gap: 0.625rem;
  }
}
