.aitb-360-section {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 8vw, 96px) 0;
  background:
    radial-gradient(circle at 50% 25%, rgba(52, 160, 255, .22), transparent 35%),
    linear-gradient(180deg, #06111f, #08182b 55%, #050b14);
  color: #eef7ff;
}

.aitb-360-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
}

.aitb-360-kicker {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(70, 200, 255, .35);
  background: rgba(70, 200, 255, .10);
  color: #bfeeff;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .75rem;
}

.aitb-360-copy h2 {
  margin: 16px 0;
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: .96;
  letter-spacing: -.06em;
}

.aitb-360-copy p {
  color: #c8d8e9;
  line-height: 1.7;
  font-size: 1.05rem;
}

.aitb-360-viewer {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 34px;
  background:
    radial-gradient(circle at center, rgba(70,200,255,.18), transparent 50%),
    rgba(255,255,255,.055);
  box-shadow: 0 35px 100px rgba(0,0,0,.42);
  cursor: grab;
  user-select: none;
  touch-action: none;
}

.aitb-360-viewer.is-dragging {
  cursor: grabbing;
}

.aitb-360-viewer img {
  width: min(960px, 100%);
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 34px 70px rgba(0,0,0,.48))
    drop-shadow(0 0 36px rgba(55,160,255,.18));
  pointer-events: none;
}

.aitb-360-controls {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.aitb-360-controls button,
.aitb-360-status {
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(6,17,31,.72);
  color: #eef7ff;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.aitb-360-status {
  min-width: 74px;
  text-align: center;
  color: #46c8ff;
}

@media (max-width: 900px) {
  .aitb-360-wrap {
    grid-template-columns: 1fr;
  }

  .aitb-360-viewer {
    min-height: 320px;
  }
}