.mastermind-proof {
  padding: clamp(54px, 8vw, 96px) 0;
  background: #11110f;
  color: #fff;
}

.mastermind-proof--checkout {
  width: min(1180px, calc(100% - 40px));
  padding: clamp(34px, 6vw, 66px);
  margin: 24px auto 0;
  border-radius: 24px;
}

.mastermind-proof-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.mastermind-proof--checkout .mastermind-proof-inner {
  width: 100%;
}

.mastermind-proof-eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--coral, #ff6f61);
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.mastermind-proof h2 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.mastermind-proof-intro {
  max-width: 65ch;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  line-height: 1.55;
}

.mastermind-proof-featured,
.mastermind-proof-secondary {
  display: grid;
  margin-top: 34px;
  gap: 16px;
}

.mastermind-proof-featured {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mastermind-proof-secondary {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.mastermind-story {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #1b1b18;
  border-radius: 18px;
}

.mastermind-story-media {
  position: relative;
  display: block;
  min-height: 44px;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
}

.mastermind-story-media:focus-visible {
  outline: 3px solid var(--coral, #ff6f61);
  outline-offset: -3px;
}

.mastermind-story-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.mastermind-story-play {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  background: var(--coral, #ff6f61);
  border-radius: 50%;
  color: #11110f;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.mastermind-story-copy {
  padding: 20px;
}

.mastermind-story-copy blockquote {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 650;
  letter-spacing: -0.018em;
  line-height: 1.42;
}

.mastermind-story-copy cite {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-style: normal;
  line-height: 1.4;
}

.mastermind-story-copy cite strong {
  display: block;
  color: #fff;
  font-size: 14px;
}

.mastermind-proof-secondary .mastermind-story-copy {
  padding: 16px;
}

.mastermind-proof-secondary .mastermind-story-copy blockquote {
  font-size: 14px;
}

.mastermind-proof-note {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  line-height: 1.5;
}

.testimonial-video-modal {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: grid;
  padding: clamp(18px, 4vw, 48px);
  place-items: center;
}

.testimonial-video-modal[hidden] {
  display: none;
}

.testimonial-video-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(8, 8, 8, 0.88);
  cursor: pointer;
}

.testimonial-video-modal-dialog {
  position: relative;
  width: min(1080px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: #11110f;
  border-radius: 22px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.62);
}

.testimonial-video-modal-close {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: #fff;
  border-radius: 50%;
  color: #11110f;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.testimonial-video-modal-close:focus-visible {
  outline: 3px solid var(--coral, #ff6f61);
  outline-offset: 3px;
}

.testimonial-video-modal-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

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

body.testimonial-modal-open {
  overflow: hidden;
}

@media (max-width: 1050px) {
  .mastermind-proof-secondary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .mastermind-proof-featured,
  .mastermind-proof-secondary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .mastermind-proof-inner,
  .mastermind-proof--checkout {
    width: calc(100% - 28px);
  }

  .mastermind-proof--checkout {
    padding: 28px 20px;
    border-radius: 18px;
  }

  .mastermind-proof--checkout .mastermind-proof-inner {
    width: 100%;
  }

  .mastermind-proof-featured,
  .mastermind-proof-secondary {
    grid-template-columns: 1fr;
  }

  .mastermind-story-media img {
    aspect-ratio: 16 / 9;
  }
}
