#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy-deep);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(201,168,76,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(26,48,80,0.5) 0%, transparent 55%),
    linear-gradient(160deg, #060D14 0%, #0D1B2A 50%, #060D14 100%);
}

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

.hero-particles span {
  position: absolute;
  background: var(--gold);
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0;
}

@keyframes float-particle {
  0%   { opacity: 0; transform: translateY(100vh) scale(0); }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-20px) scale(1); }
}

.hero-ring {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.08);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotate-slow 30s linear infinite;
  pointer-events: none;
}
.hero-ring::before {
  content: '';
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 1px dashed rgba(201,168,76,0.06);
  animation: rotate-slow 20s linear infinite reverse;
}
.hero-ring::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 10px var(--gold);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 8rem 1.5rem 5rem;
  max-width: 860px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-family: var(--font-latin);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s 0.2s ease forwards;
}

.hero-logo-wrap {
  margin: 0 auto 2rem;
  width: 130px;
  height: 130px;
  position: relative;
  opacity: 0;
  animation: fadeInUp 0.8s 0.4s ease forwards;
}

.hero-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 25px rgba(201,168,76,0.5));
  animation: float 5s ease-in-out infinite;
}

.hero-logo-glow {
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
  animation: pulse-gold 3s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeInUp 0.9s 0.6s ease forwards;
}

.hero-title span {
  background: linear-gradient(135deg, var(--gold), var(--gold-glow), var(--gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

.hero-tagline {
  font-family: var(--font-latin);
  font-size: clamp(0.75rem, 1.8vw, 1rem);
  color: var(--gold-dim);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s 0.8s ease forwards;
}

.hero-desc {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--white-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s 1s ease forwards;
  line-height: 2;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s 1.2s ease forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.5;
  animation: fadeInUp 1s 1.8s ease forwards;
  cursor: pointer;
  z-index: 2;
}

.hero-scroll span {
  font-family: var(--font-latin);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--gold-dim);
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1.5px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-line 1.8s ease-in-out infinite;
}

@keyframes scroll-line {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50%       { transform: scaleY(0.5); opacity: 1; }
}

@media (max-width: 600px) {
  .hero-ring { width: 320px; height: 320px; }
  .hero-logo-wrap { width: 95px; height: 95px; }
}
