.hero {
  margin-top: var(--header-height);
  padding: var(--space-24) 0 var(--space-20);
  background: linear-gradient(160deg, #0b1120 0%, #0f1a2e 40%, #0b1120 100%);
  color: var(--color-text-inverse);
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  top: -40%;
  left: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(201, 144, 43, 0.06), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(11,17,32,0.94) 0%, rgba(11,17,32,0.6) 45%, rgba(11,17,32,0.92) 100%);
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.hero__eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-accent);
  margin-bottom: var(--space-6);
  padding: var(--space-1) var(--space-5);
  border: 1px solid rgba(201, 144, 43, 0.25);
  border-radius: var(--radius-full);
  background: rgba(201, 144, 43, 0.06);
  backdrop-filter: blur(4px);
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  color: var(--color-text-inverse);
  margin-bottom: var(--space-5);
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.hero__title span {
  color: var(--color-accent);
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-warm));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(var(--text-base), 2vw, var(--text-lg));
  color: rgba(255, 255, 255, 0.45);
  max-width: 580px;
  margin: 0 auto var(--space-10);
  font-weight: 400;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

@media (prefers-reduced-motion: no-preference) {
  .hero__eyebrow {
    animation: fadeUp 0.7s 0.1s both;
  }

  .hero__title {
    animation: fadeUp 0.7s 0.2s both;
  }

  .hero__subtitle {
    animation: fadeUp 0.7s 0.3s both;
  }

  .hero__actions {
    animation: fadeUp 0.7s 0.4s both;
  }

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