.soleia-sphere-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(38vw, 430px);
  min-height: 310px;
  pointer-events: none;
  z-index: 1;
}

.soleia-sphere-panel::before {
  content: "";
  position: absolute;
  inset: 28px 6px 18px auto;
  width: min(32vw, 360px);
  height: min(32vw, 360px);
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 28%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.16) 28%, rgba(255, 143, 108, 0.12) 56%, rgba(0, 0, 0, 0) 70%),
    radial-gradient(circle at 62% 74%, rgba(20, 20, 20, 0.10), rgba(20, 20, 20, 0) 58%);
  filter: blur(0.2px);
}

.soleia-photo-sphere {
  position: absolute;
  top: 22px;
  right: 12px;
  width: min(32vw, 360px);
  height: min(32vw, 360px);
  min-width: 260px;
  min-height: 260px;
  border-radius: 50%;
  transform-style: preserve-3d;
  perspective: 900px;
  overflow: visible;
  pointer-events: auto;
  isolation: isolate;
}

.soleia-photo-sphere::after {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    inset 0 0 42px rgba(255, 255, 255, 0.42),
    0 24px 70px rgba(55, 35, 28, 0.14);
  pointer-events: none;
}

.soleia-sphere-photo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 74px;
  height: 92px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 18px 42px rgba(20, 20, 20, 0.20);
  border: 2px solid rgba(255, 255, 255, 0.78);
  transform-origin: center;
  will-change: transform, opacity, filter;
  backface-visibility: hidden;
}

.soleia-sphere-caption {
  position: absolute;
  right: 28px;
  bottom: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 38px rgba(20, 20, 20, 0.10);
  color: #121212;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.soleia-sphere-caption span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff6f4d;
  box-shadow: 0 0 0 5px rgba(255, 111, 77, 0.14);
}

@media (max-width: 960px) {
  .soleia-sphere-panel {
    position: relative;
    width: 100%;
    min-height: 300px;
    margin: -18px 0 28px;
  }

  .soleia-photo-sphere {
    left: 50%;
    right: auto;
    top: 12px;
    width: min(82vw, 320px);
    height: min(82vw, 320px);
    min-width: 240px;
    min-height: 240px;
    transform: translateX(-50%);
  }

  .soleia-sphere-panel::before {
    left: 50%;
    right: auto;
    width: min(82vw, 320px);
    height: min(82vw, 320px);
    transform: translateX(-50%);
  }

  .soleia-sphere-caption {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .soleia-sphere-photo {
    transition: none !important;
  }
}
