/**
 * Shared browser-frame promo video mockup (teams.php, nfc.php heroes)
 */
.ab-hero-promo-stage {
  position: relative;
  width: 100%;
  max-width: 32rem;
  margin: 0 auto;
}

.ab-hero-promo-mockup {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 1.25rem;
  background: #fff;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.06),
    0 18px 40px -16px rgba(15, 23, 42, 0.2),
    0 44px 72px -30px rgba(30, 64, 175, 0.28);
}

.ab-hero-promo-mockup__chrome {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid #f1f5f9;
  background: rgba(248, 250, 252, 0.8);
  padding: 0.75rem 1rem;
}

.ab-hero-promo-mockup__dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 999px;
  background: #cbd5e1;
  flex-shrink: 0;
}

.ab-hero-promo-mockup__url {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-left: 0.75rem;
  padding: 0.25rem 0.625rem;
  border-radius: 0.375rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  font-size: 0.6875rem;
  font-weight: 500;
  color: #94a3b8;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ab-hero-promo-mockup__url .fa-lock {
  font-size: 0.5625rem;
}

.ab-hero-promo-mockup__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0b1220;
}

.ab-hero-promo-mockup__media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* NFC hero: bright product-launch canvas with no decorative UI competing with the cards. */
.ab-hero-promo-stage--nfc-apple {
  max-width: 58rem;
}

.ab-hero-promo-stage--nfc-apple .ab-hero-promo-mockup {
  overflow: hidden;
  border: 0;
  border-radius: 2rem;
  background: #000;
  box-shadow:
    0 2px 4px rgba(15, 23, 42, 0.08),
    0 34px 80px -34px rgba(15, 23, 42, 0.48);
}

.ab-hero-promo-stage--nfc-apple .ab-hero-promo-mockup__chrome {
  display: none;
}

.ab-hero-promo-stage--nfc-apple .ab-hero-promo-mockup__media {
  aspect-ratio: 16 / 10;
  background: #000;
}

.ab-hero-promo-stage--nfc-apple .ab-hero-promo-mockup__media::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {
  .ab-hero-promo-stage {
    max-width: min(100%, 20rem);
  }

  .ab-hero-promo-stage--nfc-apple {
    max-width: 100%;
  }

  .ab-hero-promo-stage--nfc-apple .ab-hero-promo-mockup {
    border-radius: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ab-hero-promo-mockup__media video {
    display: none;
  }

  .ab-hero-promo-mockup__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      url('/images/steelbunch.png') center / contain no-repeat,
      #0b1220;
  }
}
