.product-showcase {
  background: linear-gradient(180deg, #f4f6f8 0%, #eef7fb 100%);
  padding: 76px 24px 88px;
  text-align: center;
  overflow: hidden;
}

.product-showcase h2 {
  margin: 8px 0 12px;
}

.product-showcase-sub {
  color: var(--muted);
  font-size: 17px;
  max-width: 620px;
  margin: 0 auto 52px;
}

.product-showcase-stage {
  position: relative;
  width: min(940px, calc(100% - 64px));
  aspect-ratio: 1180 / 640;
  margin: 0 auto;
}

.product-showcase-glow {
  position: absolute;
  left: 50%;
  top: 46%;
  width: 65%;
  height: 66%;
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, rgba(73, 207, 245, .3), rgba(73, 207, 245, 0) 72%);
  filter: blur(30px);
  pointer-events: none;
}

.product-showcase-laptop {
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 84.75%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-showcase-screen {
  position: relative;
  width: 97.8%;
  background: #191b1f;
  border-radius: 20px 20px 8px 8px;
  padding: 14px;
  box-sizing: border-box;
  box-shadow: 0 40px 80px -24px rgba(5, 28, 56, .45);
}

.product-showcase-camera {
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3a3d42;
}

.product-showcase-screen-inner,
.product-showcase-phone-inner {
  overflow: hidden;
  background: #0b1220;
  line-height: 0;
}

.product-showcase-screen-inner {
  border-radius: 5px;
}

.product-showcase-screen img,
.product-showcase-phone img {
  display: block;
  width: 100%;
  height: auto;
}

.product-showcase-base {
  position: relative;
  width: 100%;
  height: 22px;
  margin-top: -2px;
  background: linear-gradient(180deg, #e7eaee 0%, #c8cdd4 55%, #aeb4bc 100%);
  border-radius: 2px 2px 10px 10px;
  clip-path: polygon(1.5% 0, 98.5% 0, 100% 100%, 0 100%);
  box-shadow: 0 18px 30px -14px rgba(5, 28, 56, .35);
}

.product-showcase-base::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 15%;
  height: 9px;
  background: #b3b9c1;
  border-radius: 0 0 9px 9px;
}

.product-showcase-phone {
  position: absolute;
  right: 2%;
  bottom: -16px;
  width: 22.4%;
  background: #0c0e12;
  border-radius: 30px;
  padding: 8px;
  box-sizing: border-box;
  box-shadow: 0 44px 70px -20px rgba(5, 28, 56, .55);
}

.product-showcase-phone-inner {
  border-radius: 22px;
}

@media (max-width: 760px) {
  .product-showcase {
    padding: 54px 16px 62px;
  }

  .product-showcase-sub {
    font-size: 16px;
    margin-bottom: 34px;
  }

  .product-showcase-stage {
    width: min(330px, calc(100% - 32px));
  }

  .product-showcase-glow {
    width: 90%;
    height: 82%;
  }

  .product-showcase-screen {
    padding: 6px;
    border-radius: 10px 10px 4px 4px;
  }

  .product-showcase-camera {
    display: none;
  }

  .product-showcase-base {
    height: 10px;
  }

  .product-showcase-base::after {
    height: 5px;
  }

  .product-showcase-phone {
    right: 1%;
    bottom: -4%;
    width: 26%;
    padding: 4px;
    border-radius: 14px;
  }

  .product-showcase-phone-inner {
    border-radius: 10px;
  }
}
