/* ============================================================
   HERO — Deep brand band (the dramatic moment)
   ============================================================ */
.hero {
  background: var(--brand-deep-bg);
  color: var(--brand-deep-text);
  position: relative;
  overflow: hidden;
  padding-top: var(--space-16);
  padding-bottom: 0;
  min-height: 600px;
  display: flex;
  align-items: stretch;
}
.hero .wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.hero-inner {
  display: block;
  align-items: stretch;
  padding-bottom: var(--space-16);
  position: relative;
  z-index: 2;
}
.hero-left { max-width: 760px; }
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  display: block;        /* removes the inline-baseline gap below <video> */
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Bias the crop right and physically shift the element right so the
     workers clear the headline. The scale ensures the element still
     covers the full container after the translate. */
  object-position: 100% center;
  transform: scale(1.2) translateX(8%);
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  /* Left-weighted: keeps the headline/lede zone readable, lets the video show through on the right */
  background: linear-gradient(
    90deg,
    var(--alpha-black-50) 0%,
    var(--alpha-black-42) 50%,
    var(--alpha-black-15) 60%,
    transparent 100%
  );
}

.hero h1 {
  color: var(--white);
  text-wrap: balance;
  max-width: 18ch;
}
.hero h1 .accent {
  display: block;        /* breaks onto its own line so the phrase never splits */
  color: var(--white);
  font-weight: var(--font-bold);
}

.hero-lede {
  font-size: var(--text-md);
  line-height: var(--leading-base);
  color: var(--white);
  max-width: 52ch;
  margin-top: var(--space-6);
  font-weight: var(--font-book);
}

.hero-cta-row {
  /* layout (flex, align, gap) comes from the shared .btn-group primitive */
  margin-top: var(--space-16);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--alpha-white-18);
  margin-top: var(--space-12);
  padding-top: var(--space-6);
  max-width: 540px;
  align-items: baseline;
}
.hero-stats .stat {
  border-right: 1px solid var(--alpha-white-18);
  padding: 0 var(--space-4);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-stats .stat:first-child { padding-left: 0; }
.hero-stats .stat:last-child { border-right: 0; padding-right: 0; }
.hero-stats .stat .val {
  font-size: var(--text-xl);
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: var(--font-bold);
  color: var(--white);
}
.hero-stats .stat .lbl {
  font-size: var(--text-xs);
  line-height: var(--leading-xs);
  font-weight: var(--font-book);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-top: var(--space-2);
}

/* RESPONSIVE — hero reflow below 1024 / 768 */
@media (max-width: 1023px) {
  .hero { min-height: 0; padding-top: var(--space-12); }
  .hero-left { max-width: none; }
}
@media (max-width: 767px) {
  .hero-cta-row { flex-wrap: wrap; }
  .hero-lede { font-size: var(--text-base); }
  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4) var(--space-6);
    max-width: none;
  }
  .hero-stats .stat {
    border-right: 0;
    padding: 0;
  }
}
