.hero {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 6vw, 32px);
  padding: clamp(0px, 3vw, 18px) clamp(20px, 7vw, 32px) clamp(24px, 10vw, 48px);
  width: 100%;
  max-width: none;
  align-items: stretch;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: none;
}

.hero .hero-copy,
.hero .hero-media {
  transform: translate3d(0, 32px, 0);
  opacity: 0;
}

.hero.is-visible .hero-copy,
.hero.is-visible .hero-media {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.hero .hero-copy {
  width: 100%;
}

.hero-copy__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 7vw, 32px);
  padding: clamp(24px, 8vw, 38px);
  border-radius: 30px;
  background: rgba(8, 18, 35, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 26px 65px rgba(2, 8, 20, 0.45);
  overflow: hidden;
}

.hero-copy__inner::before {
  content: '';
  position: absolute;
  inset: -30% -20% 55% -20%;
  background: radial-gradient(circle at 40% 20%, rgba(0, 110, 255, 0.45), transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}

.hero-copy__inner > * {
  position: relative;
  z-index: 1;
}

.hero-copy__eyebrow {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(228, 235, 255, 0.72);
}

.hero-copy h1 {
  font-size: clamp(1.95rem, 6.5vw + 0.9rem, 2.6rem);
  line-height: 1.15;
  text-wrap: balance;
  margin: 0;
}

.hero-copy .lede {
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgba(228, 235, 255, 0.82);
  margin: 0;
}

.hero .hero-media {
  display: none;
}

.hero-actions {
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.hero-actions .primary-button,
.hero-actions .secondary-button {
  width: 100%;
  min-height: 52px;
  border-radius: 14px;
}

.hero-mobile-bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-mobile-bullets li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(12, 24, 46, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 38px rgba(2, 8, 20, 0.4);
}

.hero-mobile-bullet-title {
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.hero-mobile-bullet-copy {
  font-size: 0.94rem;
  color: rgba(228, 235, 255, 0.75);
  line-height: 1.5;
}

.hero-mobile-note {
  display: block;
  margin: 4px 0 0;
  font-size: 0.9rem;
  color: rgba(228, 235, 255, 0.65);
}

.scroll-indicator {
  display: none;
}

@media (max-width: 540px) {
  .hero {
    gap: clamp(20px, 10vw, 32px);
    padding: clamp(0px, 5vw, 20px) clamp(18px, 8vw, 28px) clamp(20px, 11vw, 40px);
  }

  .hero-copy__inner {
    padding: clamp(22px, 9vw, 32px);
    border-radius: 24px;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 8vw + 0.9rem, 2.6rem);
  }

  .hero-copy .lede {
    font-size: 0.98rem;
  }

  .hero-mobile-bullets li {
    padding: 16px;
  }

  .hero-mobile-bullet-title {
    font-size: 0.98rem;
  }

  .hero-mobile-bullet-copy {
    font-size: 0.9rem;
  }

  .hero-mobile-note {
    font-size: 0.86rem;
  }
}
