.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 10rem 0 8rem;
  position: relative;
  overflow: hidden;
}

/* Radial ambient */
.hero-ambient {
  position: absolute;
  width: 70vw;
  height: 70vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  pointer-events: none;
}

/* Subtle grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 0%, black 0%, transparent 100%);
  mask-image: radial-gradient(ellipse 70% 50% at 50% 0%, black 0%, transparent 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.5s 0s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.eyebrow-line {
  width: 28px;
  height: 1px;
  background: var(--dim);
}

.hero-title {
  font-family: var(--font-d);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.05em;
  padding-right: 0.15em;
  color: #666;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(110deg,
      #666 35%,
      #fff 50%,
      #666 65%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 2rem;
  opacity: 0;
  animation:
    fadeUp 0.5s 0s cubic-bezier(0.16, 1, 0.3, 1) forwards,
    shiny 6s 0.5s linear infinite;
}

.hero-title span {
  padding-right: 0.15em;
  color: inherit;
  -webkit-text-fill-color: inherit;
  background: inherit;
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-title-muted {
  filter: brightness(0.5);
}

.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--muted);
  max-width: 440px;
  line-height: 1.75;
  margin-bottom: 2.75rem;
  opacity: 0;
  animation: fadeUp 0.5s 0.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.5s 0.15s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Orbital decoration */
.hero-orbital {
  position: absolute;
  right: -5vw;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(300px, 45vw, 560px);
  height: clamp(300px, 45vw, 560px);
  opacity: 0;
  animation: fadeIn 0.8s 0.3s ease forwards;
  pointer-events: none;
}

.orbital-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  animation: spin 40s linear infinite;
}

.orbital-ring-2 {
  inset: 15%;
  border-color: rgba(255, 255, 255, 0.04);
  animation-duration: 28s;
  animation-direction: reverse;
}

.orbital-ring-3 {
  inset: 32%;
  border-color: rgba(255, 255, 255, 0.08);
  animation-duration: 18s;
  animation-direction: reverse;
}

.orbital-center {
  position: absolute;
  inset: 40%;
  background: var(--s2);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.orbital-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
}

.orbital-dot-2 {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translateX(-50%) translateY(-50%);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
}

/* Hero Video Section */
.hero-video-wrap {
  margin-top: 5rem;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 700px;
  background: linear-gradient(135deg, #131313 0%, #1a1a1a 100%);
  border-radius: 40px;
  border: 1px solid var(--outline);
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 150px rgba(0, 0, 0, 0.8);
  z-index: 10;
}

.hero-video-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 2;
}

.hero-video-play {
  width: 140px;
  height: 140px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s;
  box-shadow: 0 0 80px rgba(255, 255, 255, 0.2);
  position: relative;
}

.hero-video-play:hover {
  transform: scale(1.1);
  background: #fff;
}

.hero-video-play::after {
  content: '';
  width: 0;
  height: 0;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  border-left: 36px solid var(--bg);
  margin-left: 10px;
}

.hero-video-label {
  margin-top: 2.5rem;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #fff;
  opacity: 0.8;
}

.hero-video-glow {
  position: absolute;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.glow-1 {
  bottom: -10%;
  left: -10%;
}

.glow-2 {
  top: -10%;
  right: -10%;
}

/* Stats row */
.hero-stats {
  display: flex;
  gap: clamp(2rem, 5vw, 5rem);
  padding-top: 3.5rem;
  margin-top: 3.5rem;
  border-top: 1px solid var(--outline);
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.5s 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-stat-val {
  font-family: var(--font-d);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.hero-stat-lbl {
  font-size: 0.75rem;
  color: var(--dim);
  letter-spacing: 0.03em;
}

@media (max-width: 900px) {
  .hero-orbital {
    display: none;
  }
  .hero-video-wrap {
    min-height: 400px;
  }
}

@media (max-width: 640px) {
  .hero-stats {
    gap: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-video-wrap {
    min-height: unset;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    margin-top: 2rem;
    max-width: 100%;
  }
  .hero-title {
    font-size: clamp(2.8rem, 14vw, 4.5rem);
    line-height: 1;
    background-size: 300% 100%;
    margin-bottom: 1.5rem;
  }
  .hero-title-muted {
    display: inline-block;
    filter: none;
    opacity: 0.5;
  }
}
