.video-section {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: min(92vh, 920px);
  overflow: hidden;
  background: #05070b;
  color: #fff;
  scroll-margin-top: 1rem;
}

.video-section__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.video-section__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(5, 7, 11, 0.88) 6%, rgba(5, 7, 11, 0.55) 46%, rgba(8, 50, 126, 0.7) 100%),
    radial-gradient(circle at 78% 22%, rgba(227, 30, 36, 0.2), transparent 36%);
  pointer-events: none;
}

.video-section__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: min(92vh, 920px);
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: clamp(3rem, 10vh, 6.5rem) clamp(1.25rem, 5vw, 4rem);
}

.video-section__kicker {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.video-section__title {
  max-width: 16ch;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.035em;
  text-transform: none;
  color: #ffffff;
}

.video-section__copy {
  max-width: 34rem;
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  line-height: 1.55;
  text-transform: none;
  font-weight: 400;
}

.video-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.video-section__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 3.2rem;
  padding: 0 0.45rem 0 1.35rem;
  border-radius: 999px;
  background: var(--brand-gradient);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  text-transform: none;
  transition: transform 0.25s ease, background 0.25s ease;
}

.video-section__btn:hover {
  background: var(--brand-gradient-hover);
  transform: translateY(-2px);
}

.video-section__btn-icon {
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  background: var(--brand-navy);
  color: #ffffff;
}

.video-section__ghost {
  display: inline-flex;
  align-items: center;
  min-height: 3.2rem;
  padding: 0 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  text-transform: none;
  font-weight: 500;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.video-section__ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
