/* ========================================================= */
/* Hero Section Styles — Cinematic Blended Background        */
/* ========================================================= */

.hero--home {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 160px 24px 100px;
  background: #0C0C0C;
  overflow: hidden;
  text-align: center;
}

/* Background Layer */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  background: #0C0C0C;
}

/* Cinematic Blended Lottie Workflow Animation */
.hero-bg-lottie {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.52;
  pointer-events: none;
  z-index: 1;
  filter: contrast(1.1) brightness(1.06) saturate(1.15);
  transition: opacity 0.8s ease;
}

.hero-bg-lottie svg {
  width: 100% !important;
  height: 100% !important;
  display: block;
  object-fit: cover;
}

/* Cinematic Vignette Overlay — Seamless Edge Blending */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 50% 48%, rgba(12, 12, 12, 0.38) 0%, rgba(12, 12, 12, 0.70) 55%, #0C0C0C 92%),
    linear-gradient(to bottom, rgba(12, 12, 12, 0.65) 0%, transparent 25%, transparent 65%, #0C0C0C 100%);
  z-index: 2;
  pointer-events: none;
}

/* Hero Content */
.hero__content {
  position: relative;
  z-index: 5;
  max-width: 980px;
  margin: 0 auto;
  width: 100%;
}

/* Eyebrow Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9BA3AF;
  margin-bottom: 24px;
  transition: border-color 0.2s ease;
}

.hero__badge:hover {
  border-color: rgba(255, 255, 255, 0.16);
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.hero__headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 650;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: #FFFFFF;
  margin-bottom: 22px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

.hero__headline-subtle {
  color: #9BA3AF;
  font-weight: 400;
}

.hero__supporting {
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 400;
  line-height: 1.62;
  color: #9BA3AF;
  max-width: 700px;
  margin: 0 auto 36px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.9);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-secondary-btn {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #F4F4F4;
  padding: 10px 22px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.hero-secondary-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 640px) {
  .hero--home {
    padding: 130px 18px 70px;
    min-height: 82vh;
  }
}
