/* Video-background hero + nav logo for the PITL Enablement home.
   Layered on top of styles.css (loaded after it), so these rules win. */

/* ---- Nav logo ---- */
.site-nav .brand { display: flex; align-items: center; gap: 10px; }
.site-nav .brand-link { display: inline-flex; align-items: center; }
.site-nav .nav-logo { height: 30px; width: auto; display: block; }
.site-nav .brand-tag {
  font-family: var(--font-body); font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--cyan);
  padding: 3px 9px; border: 1px solid rgba(0,196,255,0.4); border-radius: 999px;
  white-space: nowrap;
}

/* ---- Video hero ---- */
.hero.hero--video {
  background: var(--dark);
  min-height: 82vh;
  display: flex;
  align-items: center;
  padding: 96px 0 80px;
}

.hero--video .hero-bg-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Dark gradient so the copy stays legible over any frame. */
.hero--video .hero-video-overlay {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(90deg, rgba(5,8,16,0.86) 0%, rgba(5,8,16,0.62) 45%, rgba(5,8,16,0.35) 100%),
    linear-gradient(0deg, rgba(5,8,16,0.55) 0%, rgba(5,8,16,0.15) 40%);
}

/* Keep the orange glow, softened, above the video. */
.hero--video .glow { z-index: 0; opacity: 0.55; mix-blend-mode: screen; }
.hero--video .glow-ring { z-index: 0; border-color: rgba(255,255,255,0.12); }

.hero--video .wrap { position: relative; z-index: 2; }

/* Light text over the video. */
.hero--video .eyebrow { color: var(--cyan); }
.hero--video h1 { color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,0.35); }
.hero--video .sub { color: #E7ECF3; }
.hero--video .price-note { color: #AEB9C9; }

/* Frosted quote card so it reads over the footage. */
.hero--video .quote-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
}
.hero--video .quote-card p { color: #fff; }
.hero--video .quote-card .who { color: var(--cyan); }

@media (max-width: 760px) {
  .hero.hero--video { min-height: 70vh; padding: 64px 0 56px; }
  .hero--video .hero-video-overlay {
    background: linear-gradient(0deg, rgba(5,8,16,0.8) 0%, rgba(5,8,16,0.5) 100%);
  }
}
