/* ============================================================
   Video component: dark band with a heading and a YouTube embed.
   ============================================================ */

.video {
  background: var(--black);
  color: var(--white);
  padding: 8.75rem var(--pad-x);
  position: relative;
  overflow: hidden;
}
.video::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 40% at 20% 0%, rgba(6, 96, 223, 0.35), transparent 60%),
    radial-gradient(ellipse 40% 40% at 90% 90%, rgba(6, 96, 223, 0.2), transparent 55%);
  pointer-events: none;
}
.video__inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  z-index: 1;
}
.video__kicker {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  color: var(--green);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.video__h {
  font-size: var(--fz-h1);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: var(--white);
  max-width: 22ch;
  margin-bottom: 1.5rem;
}
.video__h em {
  font-style: normal;
  color: var(--green);
}
.video__sub {
  font-size: var(--fz-lead);
  line-height: 1.4;
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 4.375rem;
}
.video__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 0.625rem;
  overflow: hidden;
  background: #0a0a0a;
  box-shadow: 0 2.5rem 5rem -1.875rem rgba(6, 96, 223, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.video__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
