/* Shared Tyto product screenshot showcase material. */
.tyto-showcase {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(220,225,232,.10);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(7,7,8,.88), rgba(1,1,2,.96));
  box-shadow: 0 22px 56px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.018);
}
.tyto-showcase-head,
.tyto-showcase-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(3,3,4,.34);
}
.tyto-showcase-head { border-bottom: 1px solid rgba(220,225,232,.07); }
.tyto-showcase-foot { border-top: 1px solid rgba(220,225,232,.07); }
.tyto-showcase-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(220,225,232,.11);
  border-radius: 999px;
  background: rgba(0,0,0,.32);
  color: #f1f2f2;
  font-size: .68rem;
  font-weight: 650;
  white-space: nowrap;
}
.tyto-showcase-hint,
.tyto-showcase-caption {
  color: #8d9297;
  font-size: .65rem;
  line-height: 1.4;
}
.tyto-showcase-caption { min-width: 0; }
.tyto-showcase-canvas {
  position: relative;
  min-height: clamp(300px, 44vw, 580px);
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 18px;
  background: linear-gradient(180deg, rgba(16,17,18,.88), rgba(4,4,5,.98));
  touch-action: none;
}
.tyto-showcase-image {
  position: absolute;
  left: 50%;
  top: 50%;
  width: auto;
  height: auto;
  max-width: none;
  max-height: none;
  transform-origin: center center;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
  border-radius: 10px;
  box-shadow: 0 24px 52px rgba(0,0,0,.48);
  opacity: 0;
  transition: opacity 140ms ease;
}
.tyto-showcase-image.is-loaded { opacity: 1; }
.tyto-showcase-canvas.is-draggable { cursor: grab; }
.tyto-showcase-canvas.is-dragging { cursor: grabbing; }
.tyto-showcase-tools {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  display: inline-flex;
  gap: 6px;
}
.tyto-showcase-button {
  min-height: 29px;
  padding: 0 10px;
  border: 1px solid rgba(220,225,232,.11);
  border-radius: 999px;
  background: rgba(2,2,3,.48);
  color: #dfe1e2;
  font-size: .66rem;
  font-weight: 650;
  cursor: pointer;
  backdrop-filter: blur(9px) saturate(50%);
  -webkit-backdrop-filter: blur(9px) saturate(50%);
}
.tyto-showcase-button:hover,
.tyto-showcase-button:focus-visible {
  border-color: rgba(199,181,128,.48);
  color: #eadcae;
  outline: none;
}
.tyto-showcase-button:disabled { opacity: .34; cursor: default; }
.tyto-showcase-radial {
  position: absolute;
  width: 270px;
  height: 270px;
  margin: -135px 0 0 -135px;
  z-index: 8;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(.96);
  transition: opacity 120ms ease, transform 120ms ease;
  border-radius: 50%;
  background: rgba(0,0,0,.34);
  backdrop-filter: blur(18px) saturate(42%);
  -webkit-backdrop-filter: blur(18px) saturate(42%);
  box-shadow: 0 18px 42px rgba(0,0,0,.66), inset 0 0 0 1px rgba(220,225,232,.04);
}
.tyto-showcase-radial.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: scale(1); }
.tyto-showcase-radial svg { width: 100%; height: 100%; overflow: visible; }
.tyto-showcase-sector {
  fill: rgba(3,3,3,.86);
  stroke: rgba(220,225,232,.13);
  stroke-width: 1;
  cursor: pointer;
}
.tyto-showcase-sector:hover,
.tyto-showcase-sector.is-active { fill: rgba(14,14,14,.90); stroke: rgba(199,181,128,.72); }
.tyto-showcase-label {
  fill: #f0f1f1;
  font-size: 9px;
  font-weight: 650;
  text-anchor: middle;
  dominant-baseline: middle;
  pointer-events: none;
  paint-order: stroke;
  stroke: rgba(0,0,0,.76);
  stroke-width: 2px;
  stroke-linejoin: round;
}
.tyto-showcase-centre {
  fill: rgba(4,4,4,.96);
  stroke: rgba(199,181,128,.72);
  stroke-width: 1.3;
  cursor: pointer;
}
.tyto-showcase-centre-text {
  fill: #fff;
  font-size: 9px;
  font-weight: 700;
  text-anchor: middle;
  dominant-baseline: middle;
  pointer-events: none;
}
@media (max-width: 700px) {
  .tyto-showcase { border-radius: 18px; }
  .tyto-showcase-head,
  .tyto-showcase-foot { padding: 8px 9px; gap: 8px; }
  .tyto-showcase-hint { display: none; }
  .tyto-showcase-canvas { min-height: clamp(250px, 62vw, 430px); padding: 12px; }
  .tyto-showcase-radial { width: 220px; height: 220px; margin: -110px 0 0 -110px; }
  .tyto-showcase-label { font-size: 8px; }
  .tyto-showcase-caption { font-size: .59rem; }
}
