.real-product-hero {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #090d10;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.48);
}

.real-product-hero::after {
  content: '';
  position: absolute;
  inset: 42px 0 29px;
  pointer-events: none;
  box-shadow: inset 0 0 70px rgba(3, 8, 11, 0.22);
}

.real-product-hero__bar {
  min-height: 42px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: #101920;
  color: rgba(255, 255, 255, 0.60);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.real-product-hero__bar strong {
  color: rgba(255, 255, 255, 0.82);
  font-size: 9px;
  font-weight: 600;
}

.real-product-hero__bar span:last-child {
  justify-self: end;
  color: #87b39b;
}

.real-product-hero img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  object-position: center;
}

.real-product-hero__audience {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1vw, 16px);
  border-top: 1px solid rgba(255,255,255,.09);
  background: #0d151a;
  color: rgba(255,255,255,.72);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.real-product-hero__audience span {
  color: var(--brass-light);
}

.real-product-hero figcaption {
  min-height: 29px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.real-product-hero--video {
  min-width: 0;
}

.real-product-hero--video::after {
  display: none;
}

.real-product-hero--video .real-product-hero__bar {
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
}

.real-product-hero--video .real-product-hero__bar strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.real-product-hero__video-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  isolation: isolate;
  background: #05080a;
}

.real-product-hero__video-facade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #05080a;
  cursor: pointer;
}

.real-product-hero .real-product-hero__video-poster {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #05080a;
}

.real-product-hero__video-play {
  position: absolute;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(215, 183, 127, 0.96);
  box-shadow: 0 0 0 10px rgba(9, 18, 24, 0.34), 0 16px 45px rgba(0, 0, 0, 0.40);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.real-product-hero__video-play svg {
  width: 23px;
  margin-left: 4px;
}

.real-product-hero__video-facade:hover .real-product-hero__video-play {
  background: var(--ivory);
  box-shadow: 0 0 0 12px rgba(9, 18, 24, 0.42), 0 18px 52px rgba(0, 0, 0, 0.50);
  transform: scale(1.06);
}

.real-product-hero__video-facade:focus-visible {
  outline: 3px solid var(--brass-light);
  outline-offset: -4px;
}

.real-product-hero__video-facade:focus-visible .real-product-hero__video-play {
  transform: scale(1.06);
}

.real-product-hero__video-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}

.real-product-hero--video figcaption {
  min-height: 34px;
  justify-content: space-between;
  gap: 14px;
  padding-block: 5px;
  line-height: 1.4;
}

.real-product-hero--video figcaption > span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.real-product-hero--video figcaption a {
  flex: 0 0 auto;
  color: var(--brass-light);
}

.real-product-hero--video figcaption a:hover {
  color: var(--white);
}

.real-product-hero__video-noscript {
  margin: 0;
  padding: 10px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--brass-light);
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.5;
}

@media (max-width: 1180px) {
  .real-product-hero {
    max-width: 900px;
  }
}

@media (max-width: 680px) {
  .real-product-hero {
    margin-top: 8px;
  }

  .real-product-hero__bar {
    grid-template-columns: 1fr auto;
  }

  .real-product-hero__bar span:last-child {
    display: none;
  }

  .real-product-hero figcaption {
    justify-content: flex-start;
  }

  .real-product-hero__audience {
    min-height: 38px;
    gap: 7px;
    font-size: 7.5px;
    letter-spacing: .07em;
    white-space: nowrap;
  }

  .real-product-hero--video .real-product-hero__bar {
    grid-template-columns: minmax(0, 1fr);
  }

  .real-product-hero--video .real-product-hero__bar span {
    display: none;
  }

  .real-product-hero__video-play {
    width: 66px;
    height: 66px;
    box-shadow: 0 0 0 8px rgba(9, 18, 24, 0.38), 0 14px 35px rgba(0, 0, 0, 0.45);
  }

  .real-product-hero__video-play svg {
    width: 19px;
  }

  .real-product-hero--video figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
    padding-block: 8px;
  }
}

@media (max-width: 388px) {
  .real-product-hero__video-stage {
    min-height: 200px;
    aspect-ratio: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .real-product-hero__video-play {
    transition: none;
  }
}
