/* ===== 结尾：师傅行法 + 终极 CTA ===== */
.finale {
  padding: 100px 0 110px;
  background:
    radial-gradient(100% 60% at 50% 100%, rgba(217, 168, 78, 0.08) 0%, rgba(217, 168, 78, 0) 70%),
    var(--ink);
  text-align: center;
}

.finale__quote {
  font-size: clamp(18px, 5vw, 27px);
  font-weight: 600;
  line-height: 2.1;
  letter-spacing: 0.05em;
  max-width: 640px;
  margin: 0 auto 64px;
}
.finale__quote em {
  font-style: normal;
  color: var(--gold-bright);
}

/* 视频舞台：两张照片衬底
   注意：照片偏移在窄屏(360px)绝不能超出视口，否则撑宽页面挤歪浮动按钮 */
.finale__stage {
  position: relative;
  width: min(66%, 300px);
  margin: 0 auto;
}

.finale__photo {
  position: absolute;
  width: 56%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid var(--gold-line);
  border-radius: 4px;
  top: 12%;
  opacity: 0.85;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}
.finale__photo--l {
  left: -25%;
  transform: rotate(-7deg);
}
.finale__photo--r {
  right: -25%;
  transform: rotate(6deg);
  top: 34%;
}

.finale__player {
  position: relative;
  border: 1px solid var(--gold-dim);
  border-radius: 6px;
  padding: 8px;
  background: var(--ink-3);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
}
.finale__still {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 3px;
  background: #000;
}

/* 自定义播放按钮 */
.finale__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 14, 8, 0.25);
  border: none;
  border-radius: 6px;
  transition: opacity 0.4s ease;
}
.finale__play.hidden {
  opacity: 0;
  pointer-events: none;
}
.finale__play svg {
  width: 30px;
  height: 30px;
  fill: #241505;
  position: relative;
  z-index: 1;
}
.finale__play::before {
  content: "";
  position: absolute;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--gold-bright), var(--gold));
  box-shadow: 0 8px 30px rgba(217, 168, 78, 0.5);
}
.finale__play-ring {
  position: absolute;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  animation: play-pulse 2s ease-out infinite;
}
@keyframes play-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  80%, 100% { transform: scale(1.7); opacity: 0; }
}

.finale__caption {
  margin-top: 30px;
  font-size: 13px;
  letter-spacing: 0.26em;
  color: var(--paper-dim);
}

.finale__cta {
  margin-top: 72px;
}
.finale__note {
  margin-top: 16px;
  font-size: 13.5px;
  letter-spacing: 0.1em;
  color: var(--paper-dim);
}
.finale__note .free-mark {
  font-size: 12px;
  padding: 4px 6px;
}

@media (min-width: 768px) {
  .finale {
    padding: 150px 0 160px;
  }
  .finale__stage {
    width: 340px;
  }
  .finale__photo {
    width: 66%;
  }
  .finale__photo--l { left: -52%; }
  .finale__photo--r { right: -52%; }
}

@media (prefers-reduced-motion: reduce) {
  .finale__play-ring { animation: none; }
}
