/* ── Promo video section (tap-to-play YouTube facade) ──────
   Shared between landing.html and how-it-works.html. Dark theme to
   match legal.css / the app's gold accent, independent of whichever
   page-specific stylesheet is also loaded alongside this one. */

.promo-section {
  background: #080810;
  padding: 44px 20px 48px;
}

/* Variant for embedding inside an already-padded/backgrounded container
   (e.g. how-it-works.html's .lp-container), instead of the full-bleed
   section used standalone on the homepage. */
.promo-section--inline {
  background: none;
  padding: 0 0 40px;
}

.promo-section-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.promo-eyebrow {
  font-family: 'Mulish', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 10px;
}

.promo-title {
  font-family: 'Mulish', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.promo-video {
  position: relative;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 9 / 16;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  background: #13131f;
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.promo-video-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.promo-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8,8,16,0.28);
  border: none;
  padding: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.promo-video-play-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(201,162,39,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.45);
  transition: transform 0.15s ease;
}

.promo-video-play:active .promo-video-play-circle {
  transform: scale(0.92);
}

.promo-video-play-circle svg {
  margin-left: 3px; /* optical centering for the play triangle */
}

.promo-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
