.option-page {
  overflow-x: clip;
}

.option-page a:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 5px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.product-proof {
  position: relative;
  min-height: 650px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 270px));
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 112px 0 124px;
  border-top: 1px solid rgba(242, 240, 234, .1);
}

.product-shot {
  position: relative;
  margin: 0;
  padding: 9px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 27px;
  background: #0d1014;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .38);
}

.product-shot::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(242, 240, 234, .04);
  pointer-events: none;
}

.product-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 19px;
}

.shot-import {
  transform: translateY(28px) rotate(-1.4deg);
}

.shot-live {
  z-index: 2;
  transform: scale(1.08);
  border-color: #404854;
}

.shot-muscle {
  transform: translateY(28px) rotate(1.4deg);
}

.option-a .how {
  position: relative;
  isolation: isolate;
}

.option-a .steps {
  position: relative;
  isolation: isolate;
}

.option-a .steps::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -2;
  width: 100vw;
  height: 190px;
  background: var(--red);
  clip-path: polygon(0 12%, 100% 0, 100% 88%, 0 100%);
  transform: translate(-50%, -50%);
}

.option-a .steps article {
  border-color: #3b414c;
  background: var(--surface);
  box-shadow: 0 20px 46px rgba(0, 0, 0, .3);
}

.option-a .feature-wide {
  box-shadow: inset 3px 0 0 var(--red);
}

.option-a .closing {
  border-top: 2px solid var(--red);
}

.option-b .built-for {
  position: relative;
  isolation: isolate;
  border-top: 0;
}

.option-b .built-for::before {
  content: "";
  position: absolute;
  inset-block: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  background: var(--red);
  transform: translateX(-50%);
}

.option-b .built-for .section-heading h2,
.option-b .built-for .section-heading > p:last-child,
.option-b .built-for .section-heading .eyebrow {
  color: #fff;
}

.option-b .feature {
  border-color: #343a44;
  background: #111419;
  box-shadow: 0 24px 54px rgba(0, 0, 0, .28);
}

.option-b .feature > p:last-of-type,
.option-b .feature > div > p:last-child {
  color: #b6c0ce;
}

@media (max-width: 900px) {
  .product-proof {
    grid-template-columns: repeat(3, minmax(0, 230px));
    gap: 18px;
  }
}

@media (max-width: 760px) {
  .product-proof {
    min-height: auto;
    width: auto;
    display: flex;
    justify-content: flex-start;
    gap: 16px;
    margin-inline: calc((100vw - 100%) / -2);
    padding: 82px 14px 94px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 14px;
    scroll-snap-type: x mandatory;
    scrollbar-color: var(--red) var(--surface);
  }

  .product-shot {
    flex: 0 0 min(78vw, 292px);
    scroll-snap-align: center;
  }

  .shot-import,
  .shot-live,
  .shot-muscle {
    transform: none;
  }
}

@media (max-width: 620px) {
  .option-a .steps::before {
    height: 150px;
    clip-path: polygon(0 7%, 100% 0, 100% 93%, 0 100%);
  }

  .option-a .feature-wide {
    box-shadow: inset 2px 0 0 var(--red);
  }

  .option-b .built-for {
    padding-block: 92px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-proof {
    scroll-behavior: auto;
  }
}
