/* Pro Max replay promo block (pricing + scale-pro-max) */

.replay-promo { padding: clamp(28px, 4vw, 56px) 0; }

.replay-promo-link {
  display: grid;
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--ink);
  background: var(--ink);
  border-radius: var(--radius-lg);
  color: #fff;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  text-decoration: none;
}

.replay-promo-copy .eyebrow { color: rgba(255, 255, 255, 0.72); }

.replay-promo-copy h2 {
  max-width: 11ch;
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(42px, 5vw, 72px);
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.replay-promo-copy p {
  max-width: 38ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 17px;
  line-height: 1.58;
}

.replay-promo-cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 11px 22px;
  background: var(--coral);
  border-radius: 999px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
  transition: transform var(--motion-fast) var(--ease-out);
}

.replay-promo-cta span { transition: transform var(--motion-fast) var(--ease-out); }

.replay-promo-player {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #111;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

.replay-promo-bar {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.62);
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.replay-promo-bar i { width: 8px; height: 8px; border-radius: 50%; }
.replay-promo-bar i:nth-child(1) { background: var(--coral); }
.replay-promo-bar i:nth-child(2) { background: var(--yellow); }
.replay-promo-bar i:nth-child(3) { margin-right: 8px; background: var(--mint); }
.replay-promo-bar time { margin-left: auto; }

.replay-promo-frame { position: relative; display: block; aspect-ratio: 16 / 9; }

.replay-promo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out), filter 300ms ease;
}

.replay-promo-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.05), rgba(5, 5, 5, 0.35));
}

.replay-promo-play {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: grid;
  width: clamp(72px, 9vw, 104px);
  aspect-ratio: 1;
  place-items: center;
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 0 0 12px rgba(255, 111, 97, 0.22), 0 18px 40px rgba(0, 0, 0, 0.4);
  transform: translate(-50%, -50%);
  transition: transform var(--motion-fast) var(--ease-out), box-shadow var(--motion-fast) ease;
}

.replay-promo-play svg { width: 38%; height: 38%; margin-left: 8%; fill: var(--ink); }

.replay-promo-link:hover .replay-promo-play { box-shadow: 0 0 0 18px rgba(255, 111, 97, 0.28), 0 18px 40px rgba(0, 0, 0, 0.4); transform: translate(-50%, -50%) scale(1.06); }
.replay-promo-link:hover .replay-promo-frame img { transform: scale(1.02); }
.replay-promo-link:hover .replay-promo-cta span { transform: translateX(3px); }
.replay-promo-link:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }
.replay-promo-link:active .replay-promo-cta { transform: scale(0.97); }

@media (max-width: 900px) {
  .replay-promo-link { grid-template-columns: 1fr; }
  .replay-promo-copy h2 { max-width: 14ch; }
}

@media (max-width: 520px) {
  .replay-promo-link { padding: 22px; border-radius: 20px; }
  .replay-promo-bar span { display: none; }
  .replay-promo-cta { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .replay-promo-frame img,
  .replay-promo-play,
  .replay-promo-cta,
  .replay-promo-cta span { transition: none; }
}
