.alta-vfh {
  --vfh-text: #ffffff;
  --vfh-button-border: rgba(255, 255, 255, 0.55);
  --vfh-button-hover: rgba(255, 255, 255, 0.1);

  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--vfh-text);
  font-family: "Satoshi", system-ui, -apple-system, "Segoe UI", sans-serif;
  isolation: isolate;
}

.alta-vfh *,
.alta-vfh *::before,
.alta-vfh *::after {
  box-sizing: border-box;
}

/* ---- background layer (same as the Introducing hero) ---- */
.alta-vfh__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.alta-vfh__bg-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

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

/* ---- content layer ---- */
.alta-vfh__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  min-height: inherit;
  margin: 0 auto;
  padding: clamp(72px, 10vh, 140px) 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  text-align: center;
}

/* ---- centered feature video ---- */
.alta-vfh__video {
  width: 100%;
  max-width: 960px;
}

.alta-vfh__player {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: 0;
  border-radius: 16px;
  background: #000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  object-fit: cover;
}

.alta-vfh__player--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
}

.alta-vfh__title {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: normal;
  color: #fff;
}

/* ---- button (same style as the Introducing hero) ---- */
.alta-vfh__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.alta-vfh__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border: 1px solid var(--vfh-button-border);
  border-radius: 999px;
  color: var(--vfh-text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.alta-vfh__button:hover {
  background: var(--vfh-button-hover);
  border-color: #ffffff;
  transform: translateY(-1px);
}

/* ---- entrance animation ---- */
.alta-vfh--animate .alta-vfh__video {
  animation: alta-vfh-pop-in 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}
.alta-vfh--animate .alta-vfh__title {
  animation: alta-vfh-fade-up 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}
.alta-vfh--animate .alta-vfh__buttons {
  animation: alta-vfh-fade-up 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.7s both;
}

@keyframes alta-vfh-fade-up {
  0% { opacity: 0; transform: translateY(16px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes alta-vfh-pop-in {
  0% { opacity: 0; transform: translateY(24px) scale(0.97); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .alta-vfh--animate .alta-vfh__video,
  .alta-vfh--animate .alta-vfh__title,
  .alta-vfh--animate .alta-vfh__buttons {
    animation: none !important;
    opacity: 1;
  }
}

@media (max-width: 640px) {
  .alta-vfh__content {
    padding: 64px 20px;
    gap: 28px;
  }
  .alta-vfh__player {
    border-radius: 12px;
  }
}

