/* Hero — full-bleed autoplay video */

.mp-hero {
  --mp-fg: #f4f4f4;
  --mp-muted: rgba(244, 244, 244, 0.72);
  --mp-accent: rgba(244, 244, 244, 0.55);
  --mp-accent-soft: rgba(244, 244, 244, 0.7);
  --mp-cta: #f4f4f4;
  --mp-cta-hover: #ffffff;
  position: relative;
  isolation: isolate;
  min-height: min(900px, 90svh);
  margin-top: calc(var(--header-height, 64px) * -1);
  padding: calc(var(--header-height, 64px) + 5vh) clamp(1.5rem, 6vw, 5.5rem) 8vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  background: #050a0a;
  color: var(--mp-fg);
  font-family: var(--font-sans);
}

.mp-hero video#mp-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  display: block;
  pointer-events: none;
}

.mp-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 10, 10, 0.78) 0%, rgba(5, 10, 10, 0.42) 42%, rgba(5, 10, 10, 0.12) 72%, transparent 100%),
    linear-gradient(180deg, rgba(5, 10, 10, 0.45) 0%, transparent 28%, transparent 58%, rgba(5, 10, 10, 0.72) 100%);
}

.mp-stage {
  position: relative;
  z-index: 2;
  width: min(32rem, 92%);
  max-width: 480px;
  text-align: left;
  pointer-events: none;
  margin: 0 auto 0 0;
}

.mp-stage a,
.mp-stage .mp-btn {
  pointer-events: auto;
}

.mp-eyebrow {
  margin: 0 0 1.1rem;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mp-accent);
  text-shadow: 0 1px 18px rgba(5, 10, 10, 0.55);
}

.mp-headline {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(2.2rem, 4.8vw, 3.65rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--mp-fg);
  text-wrap: balance;
  text-shadow: 0 2px 28px rgba(5, 10, 10, 0.65);
}

.mp-sub {
  margin: 1.15rem 0 0;
  max-width: 28rem;
  font-size: clamp(0.98rem, 1.3vw, 1.08rem);
  font-weight: 350;
  line-height: 1.55;
  color: var(--mp-muted);
  text-shadow: 0 1px 16px rgba(5, 10, 10, 0.55);
}

.mp-ctas {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mp-btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 980px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.mp-btn:active { transform: scale(0.98); }

.mp-btn-primary {
  border: 1px solid transparent;
  background: var(--mp-cta);
  color: #0a0a0a;
}

.mp-btn-primary:hover { background: var(--mp-cta-hover); }

.mp-btn-ghost {
  border: 1px solid rgba(244, 244, 244, 0.32);
  background: transparent;
  color: var(--mp-fg);
}

.mp-btn-ghost:hover {
  border-color: rgba(244, 244, 244, 0.55);
  background: rgba(244, 244, 244, 0.06);
}

@media (max-width: 720px) {
  .mp-hero {
    align-items: flex-end;
    min-height: 88svh;
    padding-bottom: 7vh;
    justify-content: flex-start;
  }
  .mp-stage {
    margin-top: 0;
    width: min(100%, 100%);
    max-width: none;
  }
  .mp-headline { max-width: 12ch; }
  .mp-vignette {
    background:
      linear-gradient(180deg, rgba(5, 10, 10, 0.4) 0%, rgba(5, 10, 10, 0.2) 40%, rgba(5, 10, 10, 0.82) 100%),
      linear-gradient(90deg, rgba(5, 10, 10, 0.55) 0%, transparent 70%);
  }
}
