.vexora-showcase {
  position: relative;
  flex: 1;
  min-height: clamp(220px, 32vw, 340px);
  margin: 0 0 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(197, 255, 61, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(197, 255, 61, 0.06), transparent 50%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.vexora-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 20%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}

.vexora-showcase__glow {
  position: absolute;
  width: 180px;
  height: 180px;
  right: -40px;
  top: -40px;
  background: #c5ff3d;
  filter: blur(80px);
  opacity: 0.25;
  border-radius: 50%;
  animation: vexora-glow-pulse 4s ease-in-out infinite;
  z-index: 0;
}

.vexora-showcase__stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 900px;
  z-index: 1;
}

.vexora-showcase__browser {
  position: absolute;
  width: min(72%, 320px);
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
}

.vexora-showcase__browser--back {
  transform: rotateY(12deg) rotateX(4deg) translateX(-18%) translateY(8%) scale(0.82);
  opacity: 0.35;
  z-index: 1;
}

.vexora-showcase__browser--mid {
  transform: rotateY(-8deg) rotateX(2deg) translateX(14%) translateY(-4%) scale(0.9);
  opacity: 0.55;
  z-index: 2;
}

.vexora-showcase__browser--front {
  transform: rotateY(-2deg) rotateX(-2deg) scale(1);
  z-index: 3;
  animation: vexora-float 6s ease-in-out infinite;
}

.vexora-showcase__chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  background: rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vexora-showcase__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.vexora-showcase__dot--r { background: #ff5f57; }
.vexora-showcase__dot--y { background: #febc2e; }
.vexora-showcase__dot--g { background: #28c840; }

.vexora-showcase__url {
  flex: 1;
  margin-left: 4px;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  font-family: ui-monospace, monospace;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vexora-showcase__screen {
  position: relative;
  height: calc(100% - 32px);
  overflow: hidden;
  background: #0a0a0a;
}

.vexora-showcase__screen img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.2s ease, transform 8s ease;
}

.vexora-showcase__screen img.is-active {
  opacity: 1;
  transform: scale(1);
}

.vexora-showcase__scanline {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
  pointer-events: none;
  z-index: 2;
}

.vexora-showcase__badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(197, 255, 61, 0.35);
  backdrop-filter: blur(8px);
  font-family: ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c5ff3d;
}

.vexora-showcase__badge-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c5ff3d;
  box-shadow: 0 0 12px #c5ff3d;
  animation: vexora-pulse 1.5s ease-in-out infinite;
}

.vexora-showcase__metrics {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}

.vexora-showcase__metric {
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
}

.vexora-showcase__metric strong {
  color: #c5ff3d;
  font-weight: 600;
}

.vexora-web-service-card > div:first-child:not(.vexora-showcase) {
  display: none !important;
}

.vexora-web-service-card {
  justify-content: flex-start !important;
  gap: 0;
}

@keyframes vexora-float {
  0%, 100% { transform: rotateY(-2deg) rotateX(-2deg) translateY(0) scale(1); }
  50% { transform: rotateY(2deg) rotateX(1deg) translateY(-6px) scale(1.01); }
}

@keyframes vexora-glow-pulse {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(1.1); }
}

@keyframes vexora-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

@media (prefers-reduced-motion: reduce) {
  .vexora-showcase__browser--front,
  .vexora-showcase__glow,
  .vexora-showcase__badge-pulse {
    animation: none !important;
  }

  .vexora-showcase__screen img {
    transition: opacity 0.4s ease;
  }
}

@media (max-width: 767px) {
  .vexora-showcase {
    min-height: 200px;
    margin-bottom: 1.25rem;
  }

  .vexora-showcase__browser--back,
  .vexora-showcase__browser--mid {
    display: none;
  }

  .vexora-showcase__browser--front {
    width: 88%;
    animation: none;
  }

  .vexora-showcase__metrics {
    display: none;
  }
}
