/* Bold Statement Hero - Maximum Impact Typography */

.hero-bold {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  background: var(--color-primary, #2563eb);
  color: white;
  overflow: hidden;
}

/* Subtle gradient overlay for depth */
.hero-bold::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(0, 0, 0, 0.1) 100%
  );
  pointer-events: none;
}

/* Decorative shape */
.hero-bold::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 60%;
  height: 60%;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  pointer-events: none;
}

.hero-bold-container {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  text-align: center;
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-bold-eyebrow {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
  opacity: 0.9;
  animation: fadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s backwards;
}

.hero-bold-title {
  font-size: clamp(3rem, 12vw, 8rem);
  font-weight: 900;
  line-height: 0.95;
  margin: 0 0 2rem 0;
  letter-spacing: -0.04em;
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s backwards;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  word-wrap: break-word;
  hyphens: auto;
}

/* Make first word extra bold if possible */
.hero-bold-title strong,
.hero-bold-title b {
  font-weight: 950;
  display: block;
}

.hero-bold-subtitle {
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1.4;
  margin: 0 auto 3rem;
  max-width: 800px;
  opacity: 0.95;
  font-weight: 400;
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s backwards;
}

.hero-bold-cta {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s backwards;
}

.hero-bold-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-width: 200px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-bold-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1), height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-bold-button:hover::before {
  width: 400px;
  height: 400px;
}

.hero-bold-button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.6);
  outline-offset: 4px;
}

.hero-bold-button span {
  position: relative;
  z-index: 1;
}

.hero-bold-button.primary {
  background: white;
  color: var(--color-primary, #2563eb);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-bold-button.primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25), 0 6px 16px rgba(0, 0, 0, 0.2);
}

.hero-bold-button.secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 3px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
}

.hero-bold-button.secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-4px);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  animation: fadeIn 1.5s cubic-bezier(0.4, 0, 0.2, 1) 1s backwards;
  z-index: 2;
}

.scroll-indicator span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
}

.scroll-indicator::after {
  content: '';
  width: 2px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scrollDown {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.7;
  }
  50% {
    transform: translateY(12px);
    opacity: 0.2;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-bold {
    min-height: 80vh;
    padding: 3rem 2rem;
  }

  .hero-bold-title {
    margin-bottom: 1.5rem;
  }

  .hero-bold-subtitle {
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero-bold {
    min-height: 75vh;
    padding: 2.5rem 1.5rem;
  }

  .hero-bold-eyebrow {
    margin-bottom: 1.5rem;
  }

  .hero-bold-title {
    letter-spacing: -0.03em;
  }

  .hero-bold-button {
    padding: 1.125rem 2.5rem;
    font-size: 1rem;
    min-width: 180px;
  }

  .hero-bold-cta {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hero-bold {
    min-height: 70vh;
    padding: 2rem 1rem;
  }

  .hero-bold-title {
    margin-bottom: 1rem;
  }

  .hero-bold-subtitle {
    margin-bottom: 2rem;
  }

  .hero-bold-button {
    padding: 1rem 2rem;
    width: 100%;
  }

  .hero-bold::after {
    width: 80%;
    height: 80%;
  }
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .hero-bold-container,
  .hero-bold-eyebrow,
  .hero-bold-title,
  .hero-bold-subtitle,
  .hero-bold-cta,
  .scroll-indicator,
  .scroll-indicator::after {
    animation: none;
  }

  .hero-bold-button:hover {
    transform: none;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .hero-bold-button.primary {
    border: 3px solid currentColor;
  }

  .hero-bold-button.secondary {
    border-width: 4px;
  }
}
