@charset "utf-8";

/* ==========================================================================
   HPM VIDEO BAND
   A feature block that puts the real 30s film in front of people on pages
   other than video-services.html.

   Lives in its own file because it appears on more than one page (index.html,
   services.html) and hpm2026-v113.css is deliberately not edited — a change
   there lands on every page on the site. Link this file only where the band
   is used.

   NOTE ON THE VIEWFINDER: do NOT draw corner brackets or a REC badge over the
   video here. The film already carries both. Adding the page's own would
   double the device and put two pulsing red dots on one screen — the same
   mistake avoided on video-services.html.

   Depends on hpm2026-v113.css for: --purple, --bg-panel, --border, --white,
   --text-muted, .container, .buttons, .btn-primary, .btn-secondary.
   ========================================================================== */

.vband-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
}

/* ---- the media side: the whole frame is one big link ---- */
.vband-media {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-panel);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.vband-media:hover {
  border-color: var(--purple);
  transform: translateY(-3px);
  box-shadow: 0 36px 80px rgba(123, 92, 255, 0.18);
}
.vband-media:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
}

.vband-media video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  background: var(--bg-dark);
}

/* a quiet "watch" affordance so the frame reads as clickable, not decorative */
.vband-cue {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--white);
  pointer-events: none;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.vband-media:hover .vband-cue {
  background: rgba(123, 92, 255, 0.3);
  border-color: var(--purple);
}
.vband-cue::before {
  content: '';
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-left: 8px solid currentColor;
  border-right-width: 0;
}

/* ---- the copy side ---- */
.vband-eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b8a4ff; /* the lifted purple: --purple reads thin at this size */
}
.vband-copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.vband-copy p {
  color: var(--text-muted);
  max-width: 52ch;
}
/* hpm2026-v113.css gives section p no bottom margin, so consecutive
   paragraphs here would run together as one block */
.vband-copy p + p { margin-top: 14px; }

/* Grid, not flex: the labels are long enough ("COMPANIES, ON REPEAT") that a
   wrapping flex row drops the third stat onto its own line and the group stops
   reading as a set. Three equal columns keep them in one row at every width;
   the labels wrap inside their own column instead. */
.vband-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 28px 0 4px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.vband-stat strong {
  display: block;
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
  color: var(--white);
}
.vband-stat span {
  display: block;
  margin-top: 7px;
  line-height: 1.35;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---- stack before the two columns get too narrow to read ---- */
@media (max-width: 900px) {
  .vband-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .vband-copy p { max-width: none; }
}

/* The band's video is muted and decorative-adjacent; the script also declines
   to autoplay it. This keeps the frame from implying motion that will not come. */
@media (prefers-reduced-motion: reduce) {
  .vband-media:hover { transform: none; }
}
