.video-showcase {
  position: relative;
  color: #fff;
  background:
    radial-gradient(circle at 18% 12%, rgba(62, 120, 144, 0.34), transparent 34%),
    radial-gradient(circle at 86% 82%, rgba(213, 154, 53, 0.16), transparent 30%),
    linear-gradient(145deg, #102631 0%, #173848 54%, #0d2029 100%);
  overflow: hidden;
}

.video-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.video-showcase-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  align-items: center;
  gap: clamp(64px, 9vw, 132px);
}

.video-copy {
  max-width: 690px;
}

.video-copy .kicker {
  color: #8fc6da;
}

.video-copy h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.video-lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: #d3e1e6;
  font-size: 18px;
  line-height: 1.68;
}

.video-stages {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.video-stages span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  color: #e8f1f4;
  border: 1px solid rgba(203, 226, 235, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.video-disclaimer {
  max-width: 600px;
  margin: 28px 0 0;
  padding-left: 16px;
  color: #9fb5bf;
  border-left: 2px solid #d59a35;
  font-size: 13px;
  line-height: 1.55;
}

.video-device {
  width: 100%;
  max-width: 430px;
  margin: 0;
  justify-self: end;
}

.video-frame {
  position: relative;
  isolation: isolate;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 28px;
  background: #071319;
  box-shadow:
    0 45px 90px rgba(0, 0, 0, 0.42),
    0 0 0 8px rgba(255, 255, 255, 0.035);
}

.video-frame::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.scenario-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #071319;
}

.video-play {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 34px;
  display: flex;
  min-width: 202px;
  min-height: 64px;
  align-items: center;
  gap: 13px;
  padding: 10px 18px 10px 11px;
  color: #17313d;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
  transform: translateX(-50%);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.video-play:hover {
  background: #fff;
  transform: translateX(-50%) translateY(-2px);
}

.video-play:focus-visible {
  outline: 3px solid #d59a35;
  outline-offset: 4px;
}

.video-play-icon {
  position: relative;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #1e3d73;
}

.video-play-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid #fff;
  transform: translate(-35%, -50%);
}

.video-play-copy {
  display: grid;
  gap: 2px;
  text-align: left;
}

.video-play-copy strong {
  font-size: 15px;
  line-height: 1.15;
}

.video-play-copy small {
  color: #607580;
  font-size: 11px;
  line-height: 1.2;
}

.video-frame.is-started .video-play {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(6px);
}

.video-device figcaption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 4px 0;
  color: #9fb5bf;
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.video-device figcaption span:last-child {
  text-align: right;
}

@media (max-width: 980px) {
  .video-showcase-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
    gap: 48px;
  }

  .video-copy h2 {
    font-size: clamp(39px, 5.8vw, 56px);
  }
}

@media (max-width: 760px) {
  .video-showcase-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
  }

  .video-copy {
    max-width: none;
  }

  .video-device {
    width: min(100%, 390px);
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .video-showcase::before {
    background-size: 48px 48px;
  }

  .video-copy h2 {
    font-size: clamp(32px, 9.6vw, 42px);
    line-height: 1.07;
    letter-spacing: -0.035em;
  }

  .video-lead {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.62;
  }

  .video-stages {
    margin-top: 26px;
  }

  .video-stages span {
    min-height: 34px;
    padding: 0 12px;
    font-size: 11px;
  }

  .video-disclaimer {
    margin-top: 24px;
  }

  .video-device {
    width: min(100%, 360px);
  }

  .video-frame {
    border-radius: 23px;
    box-shadow:
      0 28px 56px rgba(0, 0, 0, 0.38),
      0 0 0 6px rgba(255, 255, 255, 0.035);
  }

  .video-play {
    bottom: 24px;
    min-width: 192px;
    min-height: 60px;
  }

  .video-device figcaption {
    padding-top: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .video-play {
    transition: none;
  }
}
