/* we-slice stage chrome */
.we-slice {
  position: absolute;
  inset: 0.55rem;
  border-radius: 16px;
  overflow: hidden;
  z-index: 2;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}
.we-slice canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
  cursor: grab;
  touch-action: none;
}
.we-slice canvas:active { cursor: grabbing; }

.stage {
  position: relative;
  height: min(58vh, 28rem);
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 42%, #2b62b8 0%, #17357e 46%, #0b1d4d 100%);
  box-shadow: 0 18px 48px rgba(6, 16, 40, .35);
}
.stage:focus-visible {
  outline: 3px solid #ffc93c;
  outline-offset: 3px;
}

.we-loading {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 1rem;
  background:
    radial-gradient(circle at 70% 42%, #2b62b8 0%, #17357e 46%, #0b1d4d 100%);
  color: #f4f8ff;
  font: 800 1.05rem/1.3 "Nunito", "Segoe UI", system-ui, sans-serif;
  text-align: center;
  pointer-events: none;
  transition: opacity .35s ease;
}
.we-loading.is-done {
  opacity: 0;
  visibility: hidden;
}

.static-globe {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.static-globe[hidden] { display: none; }
.static-globe__ball {
  width: min(58%, 14rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, #7ec8ff 0%, #2b62b8 38%, #17357e 72%, #0b1d4d 100%);
  box-shadow:
    inset -12px -8px 24px rgba(8, 18, 48, .35),
    0 10px 28px rgba(8, 18, 48, .35);
}
.static-globe__ring {
  position: absolute;
  width: min(72%, 17rem);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 3px solid rgba(255, 201, 60, .55);
  transform: rotateX(62deg) scaleY(0.42);
}
.static-globe__label {
  position: absolute;
  bottom: 0.85rem;
  margin: 0;
  color: #f4f8ff;
  font: 800 0.85rem/1 "Nunito", "Segoe UI", system-ui, sans-serif;
}

body.is-static-stage .we-slice { display: none !important; }
body.is-demo-globe .static-globe { display: none !important; }

.stage-caption {
  margin: 0.45rem 0 0;
  font: 800 0.82rem/1.3 "Nunito", "Segoe UI", system-ui, sans-serif;
  color: #2a160c;
}

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

@media (max-width: 860px) {
  .stage { height: 22rem; }
}