/* Homepage hero-specific styling */
.hero.hero-concept {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  min-height: 100vh;
  padding: calc(var(--top-bar-height) + 60px) 0 80px;
  background: radial-gradient(circle at 20% 10%, rgba(13, 110, 253, 0.35), transparent 60%),
    radial-gradient(circle at 80% 0%, rgba(13, 110, 253, 0.15), transparent 45%),
    #090c12;
  overflow: hidden;
}

.hero.hero-concept::before,
.hero.hero-concept::after {
  content: '';
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 110, 253, 0.25), transparent 70%);
  z-index: 0;
}

.hero.hero-concept::before {
  top: -200px;
  left: -100px;
}

.hero.hero-concept::after {
  bottom: -220px;
  right: -80px;
  opacity: 0.4;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.hero-copy {
  max-width: 1200px;
  text-align: center;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 4vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.hero.hero-concept .hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Hero specific button styles */
.hero.hero-concept .btn {
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero.hero-concept .btn-outline {
  border-width: 2px;
  border-color: #fff;
  color: #fff;
}

.hero.hero-concept .btn-outline:hover {
  background: #fff;
  color: #0D6EFD;
  border-color: #fff;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: clamp(16px, 4vh, 48px);
  transform: translate(-50%, 0);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  text-align: center;
  animation: hero-bounce 2s infinite;
  cursor: pointer;
  z-index: 2;
}

.scroll-indicator i {
  font-size: 1.4rem;
  display: block;
  margin-top: 0.35rem;
}

@keyframes hero-bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translate(-50%, 0);
  }

  40% {
    transform: translate(-50%, -12px);
  }

  60% {
    transform: translate(-50%, -6px);
  }
}

/* Responsive tweaks */
@media (max-width: 992px) {
  .hero.hero-concept {
    padding: calc(var(--top-bar-height) + 40px) 0 60px;
  }

  .hero-layout {
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero.hero-concept {
    padding: calc(var(--top-bar-height) + 30px) 0 50px;
  }

  .hero-layout {
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  .hero.hero-concept {
    min-height: 100vh;
    padding: calc(var(--top-bar-height) + 100px) 0 100px;
  }

  .hero-copy {
    text-align: center;
    padding: 0 10px;
  }

  .hero-eyebrow {
    font-size: 0.75rem;
    margin-bottom: 1.25rem;
    display: block;
  }

  .hero-copy h1 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    line-height: 1.15;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
  }

  .hero.hero-concept .hero-buttons {
    width: 100%;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
    align-items: center;
  }

  .hero.hero-concept .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 1rem 1.5rem;
  }

  .scroll-indicator {
    bottom: 20px;
  }
}
