/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 65% 40%, rgba(27,42,92,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 20% 80%, rgba(200,25,42,0.06) 0%, transparent 60%),
    linear-gradient(160deg, #0a0a0a 0%, #0c0d12 50%, #0a0a0a 100%);
}

/* Diagonal stripe accent */
.hero-bg::after {
  content: '';
  position: absolute;
  top: -10%;
  right: 5%;
  width: 1px;
  height: 120%;
  background: linear-gradient(to bottom, transparent 0%, var(--red-brand) 40%, var(--red-brand) 60%, transparent 100%);
  opacity: 0.18;
  transform: rotate(12deg);
  transform-origin: top center;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 2.5rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out-expo) 0.2s forwards;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 2.5rem;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 14vw, 11rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 0.2em;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out-expo) 0.35s forwards;
}

.hero-title .accent { color: var(--red-brand); }

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out-expo) 0.5s forwards;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out-expo) 0.65s forwards;
}

/* Hero stats strip */
.hero-stats {
  position: absolute;
  right: 2.5rem;
  bottom: 5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-end;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out-expo) 1s forwards;
}

.hero-stat {
  text-align: right;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  line-height: 1;
  color: var(--gold);
}

.hero-stat-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.2rem;
}

/* ─── Mobile ─── */
@media (max-width: 768px) {
  .hero-stats {
    display: none;
  }

  .hero-eyebrow::before {
    display: none;
  }

  .hero-content {
    text-align: center;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s ease 1.2s forwards;
}

.scroll-indicator span {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-line {
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
