/* SURGE — exploded-view
   Dark canvas, blue radial glow, center circular product, 6 numbered hotspots. */

.sg-exploded {
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
}
.sg-exploded__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.sg-exploded__inner {
  position: relative;
  padding-block: var(--space-10);
}

.sg-exploded__head {
  text-align: center;
  margin-bottom: 48px;
}
.sg-exploded__eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: #A1A1AA;
  margin-bottom: 10px;
}
.sg-exploded__title {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: var(--tracking-display);
  line-height: 1;
  color: #FFFFFF;
}
.sg-exploded__title-dim { color: #A1A1AA; }

/* ── Stage with absolute-positioned hotspots ──────────────────────── */
.sg-exploded__stage {
  position: relative;
  height: 560px;
}

.sg-exploded__center {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 440px; height: 440px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
}
.sg-exploded__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Hotspots — positioned by side + vertical position ─────────────── */
.sg-exploded__hotspot {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 260px;
}
.sg-exploded__hotspot--right {
  flex-direction: row-reverse;
  text-align: right;
}
/* Left column */
.sg-exploded__hotspot--left.sg-exploded__hotspot--top    { top: 60px;    left: 40px; }
.sg-exploded__hotspot--left.sg-exploded__hotspot--middle { top: 260px;   left: 10px; }
.sg-exploded__hotspot--left.sg-exploded__hotspot--bottom { bottom: 40px; left: 80px; }
/* Right column */
.sg-exploded__hotspot--right.sg-exploded__hotspot--top    { top: 60px;    right: 40px; }
.sg-exploded__hotspot--right.sg-exploded__hotspot--middle { top: 260px;   right: 10px; }
.sg-exploded__hotspot--right.sg-exploded__hotspot--bottom { bottom: 40px; right: 80px; }

.sg-exploded__hotspot-copy { min-width: 0; }
.sg-exploded__hotspot-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: #FFFFFF;
}
.sg-exploded__hotspot-body {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.55;
  color: #A1A1AA;
  margin-top: 6px;
}

/* Bottom CTA */
.sg-exploded__cta-wrap {
  text-align: center;
  margin-top: 40px;
}

/* ── Mobile: stage stacks vertically ───────────────────────────────── */
@media (max-width: 960px) {
  .sg-exploded__title { font-size: 32px; }
  .sg-exploded__stage {
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    place-items: center;
  }
  .sg-exploded__center {
    position: static;
    transform: none;
    width: min(360px, 80vw);
    height: min(360px, 80vw);
    margin: 8px auto 16px;
  }
  .sg-exploded__hotspot,
  .sg-exploded__hotspot--right {
    position: static;
    flex-direction: row;
    text-align: left;
    max-width: 460px;
    width: 100%;
    padding-inline: 8px;
  }
}
@media (max-width: 480px) {
  .sg-exploded__center {
    width: min(280px, 76vw);
    height: min(280px, 76vw);
  }
}
