/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--color-navy);
  overflow: hidden;
  padding-top: 90px;
}

/* ── Background Layers ───────────────────────────────────── */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 31, 58, 1) 0%,
    rgba(11, 31, 58, 0.92) 40%,
    rgba(26, 26, 26, 0.85) 100%
  );
  z-index: 1;
}

/* Geometric pattern overlay */
.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,166,70,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,166,70,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 2;
}

/* Radial glow */
.hero__bg-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(201,166,70,0.06) 0%, transparent 65%);
  z-index: 2;
}

.hero__bg-glow-2 {
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(11,31,58,0.8) 0%, transparent 70%);
  z-index: 2;
}

/* ── Hero Content ────────────────────────────────────────── */
.hero__inner {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  width: 100%;
}

.hero__content {
  padding: var(--space-xl) 0;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--color-gold);
  border-radius: 1px;
}

.hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.hero__headline .highlight {
  color: var(--color-gold);
  position: relative;
  display: inline-block;
}

.hero__headline .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
  border-radius: 2px;
}

.hero__subheadline {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(247,247,245,0.80);
  max-width: 520px;
  margin-bottom: var(--space-lg);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

/* ── Hero Stats ──────────────────────────────────────────── */
.hero__stats {
  display: flex;
  gap: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(201,166,70,0.2);
}

.hero__stat {
  text-align: left;
}

.hero__stat-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.hero__stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247,247,245,0.55);
}

/* ── Hero Visual ─────────────────────────────────────────── */
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero__logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__logo {
  width: clamp(260px, 35vw, 420px);
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(201,166,70,0.25)) drop-shadow(0 4px 20px rgba(0,0,0,0.4));
  animation: heroLogoFloat 6s ease-in-out infinite;
}

@keyframes heroLogoFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

/* Decorative ring */
.hero__logo-ring {
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  border: 1px solid rgba(201,166,70,0.12);
  animation: heroRingPulse 4s ease-in-out infinite;
}

.hero__logo-ring-2 {
  position: absolute;
  inset: -80px;
  border-radius: 50%;
  border: 1px solid rgba(201,166,70,0.06);
  animation: heroRingPulse 4s ease-in-out infinite 1s;
}

@keyframes heroRingPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.03); }
}

/* ── Scroll Indicator ────────────────────────────────────── */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(247,247,245,0.45);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--transition-base);
}

.hero__scroll:hover {
  color: var(--color-gold);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201,166,70,0.6), transparent);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50%       { transform: scaleY(1.3); opacity: 1; }
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__eyebrow {
    justify-content: center;
  }

  .hero__subheadline {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__stats {
    justify-content: center;
  }

  .hero__visual {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero__stats {
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
  }

  .hero__stat {
    text-align: center;
  }
}

/* ── Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
  position: relative;
  background: var(--color-navy);
  padding: 160px 0 80px;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,166,70,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,166,70,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-hero__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.page-hero h1 {
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.page-hero p {
  color: rgba(247,247,245,0.75);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.page-hero .gold-divider {
  margin: var(--space-sm) auto;
}
