.showcase-teaser {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
  margin-top: 76px;
  padding: clamp(28px, 5vw, 60px);
  overflow: hidden;
  border: 1px solid #11182755;
  border-radius: 28px;
  background: var(--ink);
  color: var(--paper);
}
.showcase-teaser h2 {
  margin: 10px 0 16px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: .95;
  letter-spacing: -.06em;
}
.showcase-teaser p { max-width: 520px; color: #ffffffb8; font-size: 16px; }
.showcase-teaser .btn {
  width: fit-content;
  margin-top: 26px;
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
}
.showcase-stack {
  position: relative;
  display: block;
  min-height: 390px;
  color: inherit;
}
.showcase-stack img {
  position: absolute;
  width: min(540px, 88%);
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border: 1px solid #ffffff35;
  border-radius: 10px;
  box-shadow: 0 24px 70px #0009;
  transition: transform .25s;
}
.showcase-stack img:nth-child(1) { top: 0; left: 0; transform: rotate(-4deg); }
.showcase-stack img:nth-child(2) { top: 38px; right: 0; transform: rotate(4deg); }
.showcase-stack img:nth-child(3) { bottom: 26px; left: 3%; transform: rotate(2deg); }
.showcase-stack img:nth-child(4) { bottom: 0; right: 4%; transform: rotate(-2deg); }
.showcase-stack:hover img:nth-child(1) { transform: translate(-5px, -5px) rotate(-5deg); }
.showcase-stack:hover img:nth-child(2) { transform: translate(5px, -5px) rotate(5deg); }
.showcase-stack:hover img:nth-child(3) { transform: translate(-5px, 5px) rotate(3deg); }
.showcase-stack:hover img:nth-child(4) { transform: translate(5px, 5px) rotate(-3deg); }
.locked-preview {
  min-height: 390px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  border: 1px solid #ffffff26;
  border-radius: 24px;
  background: radial-gradient(circle at 50% 40%, #168a833b, transparent 36%), #ffffff08;
  text-decoration: none;
}
.locked-preview strong { font-size: clamp(30px, 4vw, 54px); letter-spacing: -.05em; }
.locked-preview small { color: #ffffff8c; text-transform: uppercase; letter-spacing: .16em; }
.locked-orbit {
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border: 1px solid #ffffff38;
  border-radius: 50%;
  box-shadow: 0 0 0 26px #ffffff06, 0 0 0 52px #ffffff04;
}
.locked-orbit i {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--paper);
  font-size: 30px;
  font-style: normal;
  box-shadow: 0 18px 40px #0008;
}

@media (max-width: 620px) {
  .showcase-teaser { grid-template-columns: 1fr; padding: 28px 20px; }
  .showcase-teaser .btn { width: 100%; }
  .showcase-stack { min-height: 280px; }
  .locked-preview { min-height: 300px; }
  .locked-orbit { width: 120px; height: 120px; box-shadow: 0 0 0 20px #ffffff06, 0 0 0 40px #ffffff04; }
}
