.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
    rgba(0, 0, 0, 0.674) 0%,
    rgba(66, 5, 5, 0.588) 40%,
    rgba(0, 0, 0, 0.674) 100%
  );
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  padding-top: 30px;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: white;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero-text {
  font-family: 'Rozha One', serif;
  font-size: clamp(28px, 4.2vw, 58px);
  color: white;
  line-height: 1.3;
  text-shadow: 0 3px 24px rgba(0,0,0,0.45);
  margin-bottom: 28px;
  max-width: 820px;
  letter-spacing: 0.01em;
}
.hero-text .brand {
  color: var(--mf-primary-dark);
  text-shadow: 0px 0px 20px #ffffff;
}

.hero-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.753);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 42px;
  font-weight: 300;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 38px;
  color: white;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.3s ease;
  border: 2px solid white;
  letter-spacing: 0.02em;
}
.hero-cta i { font-size: 16px; }
.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
  background: white; color: var(--mf-primary);
}

.sound-btn {
  position: absolute;
  top: 28px; right: 28px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: white; font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  z-index: 10;
}
.sound-btn:hover { background: rgba(255,255,255,0.28); }

.scroll-hint {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.45);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  animation: floatY 2.2s ease-in-out infinite;
  z-index: 10;
}
.scroll-hint i { font-size: 13px; }
@keyframes floatY {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-7px); }
}