/* ============================================================
   HERO / BILLBOARD — Netflix-Style Featured Section
   ============================================================ */

.hero {
  position: relative;
  height: 90vh;
  min-height: 600px;
  max-height: 1100px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-bottom: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: background 0.8s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, var(--black) 0%, transparent 50%),
              linear-gradient(to right, rgba(0,0,0,0.7) 0%, transparent 40%),
              linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, transparent 20%);
}

.hero-glow {
  position: absolute;
  bottom: 15%;
  right: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(229,9,20,0.07) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, -20px) scale(1.15); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 4% 8%;
  max-width: 650px;
  animation: heroSlideUp 1s ease-out;
}

@keyframes heroSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.5); }
}

.hero-title {
  font-size: clamp(1.4rem, 2.8vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  color: var(--muted);
  margin-bottom: 8px;
}

.hero-description {
  font-size: clamp(0.9rem, 1.1vw, 1.1rem);
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 500px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero { height: 80vh; min-height: 450px; }
  .hero-content { padding-bottom: 12%; max-width: 100%; }
}

@media (max-width: 480px) {
  .hero { min-height: 400px; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
}
