
.showcase-page {
  background: transparent;
}

.showcase-section--summary {
  padding-top: 48px;
  padding-bottom: 32px;
}

.showcase-container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

.home-page-video {
  position: relative;
  width: 100%;
  overflow: visible;
  background: #f3f3f3;
}

.home-page-video__media {
  display: block;
  width: 100%;
  height: auto;
}

/* annotation bubble */

.showcase-bubble {
  --bubble-bg: var(--highlight-color, #5AE98B);
  --bubble-text: #ffffff;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 14px 26px;
  border-radius: 999px;

  background: var(--bubble-bg);
  color: var(--bubble-text);

  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  text-decoration: none;
  white-space: nowrap;
  user-select: none;

  box-shadow:
    0 18px 35px rgba(0, 0, 0, 0.14),
    0 6px 14px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);

  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    filter 0.28s ease,
    opacity 0.28s ease;
}

@media (hover: hover) and (pointer: fine) {
  .showcase-bubble:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow:
      0 24px 44px rgba(0, 0, 0, 0.18),
      0 10px 20px rgba(0, 0, 0, 0.10),
      inset 0 1px 0 rgba(255, 255, 255, 0.24);
  }
}

.showcase-media-annotated {
  position: relative;
}

.showcase-bubble--overlay {
  position: absolute;
  left: -30px;
  bottom: 32px;
  z-index: 3;
}

/* bubble variants */

.showcase-bubble--green {
  --bubble-bg: linear-gradient(180deg, #67ee95 0%, #5AE98B 100%);
  --bubble-text: #ffffff;
}

.showcase-bubble--dark {
  --bubble-bg: rgba(17,17,17,0.92);
  --bubble-text: #ffffff;
}

.showcase-bubble--light {
  --bubble-bg: rgba(255,255,255,0.92);
  --bubble-text: #111111;
  box-shadow:
    0 14px 30px rgba(0,0,0,0.12),
    0 4px 10px rgba(0,0,0,0.06),
    inset 0 1px 0 rgba(255,255,255,0.7);
}

.showcase-bubble--glass {
  --bubble-bg: rgba(255,255,255,0.55);
  --bubble-text: #111;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* optional gentle floating motion */

.showcase-bubble--float {
  animation: showcaseBubbleFloat 4.5s ease-in-out infinite;
}

@keyframes showcaseBubbleFloat {
  0%,100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}