/* ═══════════════════════════════════════
   L2ZONE — Hero Section
   ═══════════════════════════════════════ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 60px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(139, 32, 53, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 60%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-deep) 0%, #0a0810 50%, var(--bg-deep) 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(201, 168, 76, 0.015) 2px,
    rgba(201, 168, 76, 0.015) 3px
  );
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFade 4s infinite;
}

@keyframes particleFade {
  0%   { opacity: 0; transform: translateY(0); }
  50%  { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-120px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold-dim);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dim));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.hero-desc {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 48px;
  max-width: 540px;
  font-style: italic;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  gap: 48px;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
}

.hero-stat-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero-decor {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 500px;
  height: 500px;
  opacity: 0.04;
  border: 2px solid var(--gold);
  border-radius: 50%;
}

.hero-decor::before {
  content: '';
  position: absolute;
  inset: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.hero-decor::after {
  content: '';
  position: absolute;
  inset: 80px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}


/* Hero Character Image */
.hero-character {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 90%;
  max-height: 800px;
  width: auto;
  object-fit: contain;
  object-position: bottom right;
  filter: drop-shadow(-20px 10px 60px rgba(0, 0, 0, 0.6))
          drop-shadow(-4px 0 40px rgba(201, 168, 76, 0.08));
  pointer-events: none;
  animation: heroCharFadeIn 1.2s ease-out 0.3s both;
}

@keyframes heroCharFadeIn {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


/* ═══ RESPONSIVE ═══ */
@media (max-width: 1200px) {
  .hero-character {
    height: 75%;
    opacity: 0.7;
  }
}

@media (max-width: 768px) {
  .hero-character {
    height: 55%;
    opacity: 0.25;
    right: -40px;
  }

  .hero {
    padding: 100px 24px 60px;
    min-height: auto;
  }

  .hero-title { font-size: 2.4rem; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    text-align: center;
    width: 100%;
  }
}
