/* ═══════════════════════════════════════════════════════════════
   HERO SECTION — Cinematic Dark Neo-Luxury
   ═══════════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--bg-page);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 0 0;
  color: #FFFFFF;
}

/* Ambient mesh gradient background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 20%, rgba(255,181,71,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 80%, rgba(0,209,178,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 10%, rgba(255,77,109,0.06) 0%, transparent 40%),
    radial-gradient(ellipse at 10% 90%, rgba(255,122,24,0.05) 0%, transparent 40%);
  pointer-events: none;
  z-index: 1;
}

/* Subtle grid overlay */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--bg-page));
  pointer-events: none;
  z-index: 5;
}

.hero-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-dots {
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* Orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.orb-a {
  width: 700px;
  height: 700px;
  background: rgba(255,181,71,0.08);
  top: -200px;
  left: -150px;
  animation: orbFloat 14s ease-in-out infinite alternate;
}

.orb-b {
  width: 500px;
  height: 500px;
  background: rgba(0,209,178,0.06);
  bottom: -100px;
  right: -100px;
  animation: orbFloat 10s ease-in-out infinite alternate-reverse;
}

.orb-c {
  width: 350px;
  height: 350px;
  background: rgba(255,77,109,0.05);
  top: 15%;
  right: 15%;
  animation: orbFloat 16s ease-in-out infinite alternate;
}

.orb-d {
  width: 300px;
  height: 300px;
  background: rgba(255,122,24,0.06);
  bottom: 15%;
  left: 15%;
  animation: orbFloat 12s ease-in-out infinite alternate-reverse;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 860px;
  text-align: center;
  padding: 0 20px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--r-full);
  padding: 10px 28px;
  font-size: var(--t-xs);
  font-family: var(--f-body);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease-out) 0.2s forwards;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
}

.hero-h1 {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: clamp(48px, 7.5vw, 88px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  text-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.hero-h1 span {
  display: block;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease-out) forwards;
}

.hero-h1 span:nth-child(1) {
  animation-delay: 0.3s;
}

.hero-h1 span:nth-child(2) {
  animation-delay: 0.45s;
  background: linear-gradient(90deg, var(--gold) 0%, #FFD080 30%, var(--orange) 60%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShimmer 4s linear infinite, fadeSlideUp 0.8s var(--ease-out) 0.45s forwards;
  filter: drop-shadow(0 0 30px rgba(255,181,71,0.3));
}

.hero-h1 span:nth-child(3) {
  animation-delay: 0.6s;
}

.hero-sub {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: clamp(16px, 2.5vw, 19px);
  line-height: 1.7;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease-out) 0.75s forwards;
}

/* CTA */
.hero-cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease-out) 0.9s forwards;
}

.hero-btn-primary {
  background: var(--g-premium);
  color: #0F1115;
  padding: 18px 42px;
  border-radius: var(--r-full);
  font-size: 16px;
  font-family: var(--f-body);
  font-weight: 800;
  box-shadow: 0 0 30px rgba(255,181,71,0.30), 0 8px 30px rgba(0,0,0,0.4);
  transition: all var(--dur-fast);
  position: relative;
  overflow: hidden;
}

.hero-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.hero-btn-primary:hover::before {
  left: 100%;
}

.hero-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 50px rgba(255,181,71,0.50), 0 12px 40px rgba(0,0,0,0.5);
}

.hero-btn-primary:active {
  transform: scale(0.96);
}

.hero-btn-secondary {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.12);
  color: #FFFFFF;
  padding: 17px 36px;
  border-radius: var(--r-full);
  font-size: 15px;
  font-family: var(--f-body);
  font-weight: 700;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all var(--dur-fast);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hero-btn-secondary:hover {
  background: rgba(255,255,255,0.10);
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.25);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.play-icon {
  width: 28px;
  height: 28px;
  background: rgba(255,181,71,0.20);
  border: 1px solid rgba(255,181,71,0.30);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--gold);
}

/* Trust */
.hero-trust {
  margin-top: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease-out) 1.1s forwards;
  background: rgba(255,255,255,0.03);
  padding: 12px 28px;
  border-radius: var(--r-full);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06);
}

.trust-avatars {
  display: flex;
}

.trust-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg-page);
  margin-left: -12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #0F1115;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.trust-avatar:first-child {
  margin-left: 0;
  background: var(--g-premium);
}

.trust-avatar:nth-child(2) {
  background: var(--g-teal);
}

.trust-avatar:nth-child(3) {
  background: var(--g-coral);
}

.trust-avatar:nth-child(4) {
  background: rgba(255,255,255,0.10);
  color: var(--text-muted);
}

.trust-avatar:nth-child(5) {
  background: rgba(255,255,255,0.06);
  color: var(--text-muted);
}

.trust-text {
  font-weight: 600;
  color: var(--text-muted);
  font-size: 14px;
}

.trust-stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 16px;
}

.trust-dot {
  color: rgba(255,255,255,0.15);
}

/* Floating Cards */
.hero-card {
  position: absolute;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-radius: var(--r-lg);
  padding: 16px 22px;
  min-width: 190px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 14px;
  color: #FFFFFF;
  z-index: 2;
  transform-style: preserve-3d;
  will-change: transform;
  transition: border-color 0.3s ease;
}

.hero-card:hover {
  border-color: rgba(255,181,71,0.20);
}

.hero-card-a {
  top: 15%;
  right: 5%;
  animation: heroFloat1 7s ease-in-out infinite;
}

.hero-card-b {
  bottom: 25%;
  left: 2%;
  animation: heroFloat2 9s ease-in-out infinite;
  animation-delay: -3s;
}

.hero-card-c {
  top: 60%;
  right: 2%;
  animation: heroFloat3 8s ease-in-out infinite;
  animation-delay: -5s;
}

.hero-card-d {
  bottom: 10%;
  right: 10%;
  animation: heroFloat1 10s ease-in-out infinite;
  animation-delay: -2s;
}

.hero-card-e {
  top: 25%;
  left: 1%;
  animation: heroFloat2 8s ease-in-out infinite;
  animation-delay: -4s;
}

.hero-card-f {
  top: 5%;
  left: 10%;
  animation: heroFloat3 7s ease-in-out infinite;
  animation-delay: -1s;
}

.hc-icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
}

.hc-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 4px;
  color: #FFFFFF;
}

.hc-sub {
  font-size: 11px;
  color: #0F1115;
  background: var(--g-premium);
  padding: 3px 10px;
  border-radius: var(--r-full);
  display: inline-block;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(255,181,71,0.3);
}

/* Stats Row */
.hero-stats-row {
  position: relative;
  z-index: 10;
  margin-top: 64px;
  padding: 28px;
  border-radius: var(--r-xl);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease-out) 1.3s forwards;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 12px;
}

.stat-num {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 38px);
  color: #FFFFFF;
  line-height: 1.1;
}

.stat-label {
  font-size: 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 8px;
  font-weight: 600;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.20);
  animation: scrollBounce 2s infinite;
  font-size: 28px;
  z-index: 10;
}

/* ── Responsive ── */
@media (max-width: 1023px) {
  .hero-card {
    transform: scale(0.7);
    transform-origin: center;
    padding: 10px 14px;
  }
  .hero-card-a { top: 10%; right: -5%; }
  .hero-card-b { bottom: 35%; left: -10%; }
  .hero-card-c { display: none; }
  .hero-card-d { bottom: 15%; right: -10%; }
  .hero-card-e { top: 20%; left: -5%; }
  .hero-card-f { display: none; }
}

@media (max-width: 767px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .hero-stats-row { margin-top: 40px; padding: 16px; border-radius: var(--r-lg); }
  .hero-card { transform: scale(0.6); opacity: 0.5; }
  .hero-trust { flex-direction: column; gap: 8px; padding: 16px; background: transparent; border: none; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-btn-primary, .hero-btn-secondary { width: 100%; justify-content: center; }
}
