/* Holographic muscle body explorer — below first view */

.body-explorer {
  padding: 2rem var(--hp-edge, 1.25rem) 0.5rem;
  max-width: 1120px;
  margin: 0 auto;
}

.body-explorer__head {
  max-width: 38rem;
  margin-bottom: 1.25rem;
}

.body-explorer__kicker {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3d8fd9;
}

.body-explorer__title {
  margin: 0 0 0.45rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-ink, #201c17);
  line-height: 1.2;
}

.body-explorer__sub {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--color-muted, #857e72);
}

.body-explorer__layout {
  display: grid;
  gap: 1.25rem;
  align-items: center;
}

@media (min-width: 900px) {
  .body-explorer__layout {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.75rem;
  }
}

.body-explorer__stage {
  position: relative;
  border-radius: 1.35rem;
  background:
    radial-gradient(ellipse 55% 50% at 50% 42%, rgba(61, 158, 255, 0.28), transparent 68%),
    radial-gradient(ellipse 80% 70% at 50% 100%, rgba(20, 80, 140, 0.35), transparent 55%),
    linear-gradient(165deg, #071018 0%, #0b1a28 45%, #0a1520 100%);
  border: 1px solid rgba(126, 200, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(184, 228, 255, 0.12),
    0 20px 48px rgba(7, 16, 24, 0.28);
  overflow: hidden;
  min-height: 420px;
}

.body-explorer__stage::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(126, 200, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 200, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 65% at 50% 45%, #000 20%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}

.body-explorer__canvas {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 420px;
}

.body-explorer__hint {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  margin: 0;
  padding: 0.4rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(184, 228, 255, 0.85);
  background: rgba(7, 16, 24, 0.72);
  border: 1px solid rgba(126, 200, 255, 0.2);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.body-explorer__status {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0.55rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(184, 228, 255, 0.9);
  background: rgba(7, 16, 24, 0.65);
  border: 1px solid rgba(126, 200, 255, 0.18);
  border-radius: 0.75rem;
  pointer-events: none;
  white-space: nowrap;
}

.body-explorer__status:empty {
  display: none;
}

.body-explorer__panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.body-explorer__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.body-explorer__chip {
  appearance: none;
  border: 1px solid rgba(32, 28, 23, 0.1);
  background: rgba(255, 253, 249, 0.9);
  color: var(--color-ink, #201c17);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.body-explorer__chip:hover {
  border-color: rgba(61, 143, 217, 0.45);
}

.body-explorer__chip.is-active {
  background: linear-gradient(135deg, #2f7ec4, #3d9eff);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 16px rgba(61, 158, 255, 0.28);
}

.body-explorer__card {
  padding: 1.15rem 1.2rem 1.25rem;
  border-radius: 1.1rem;
  background: rgba(255, 253, 249, 0.92);
  border: 1px solid rgba(32, 28, 23, 0.07);
  box-shadow: 0 10px 28px rgba(32, 28, 23, 0.06);
}

.body-explorer__card-title {
  margin: 0 0 0.4rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-ink, #201c17);
}

.body-explorer__card-desc {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--color-muted, #857e72);
}

.body-explorer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 2.75rem;
  padding: 0.65rem 1.15rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #1a4f7a, #2f7ec4);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: filter 0.15s ease, transform 0.15s ease;
}

.body-explorer__cta:hover {
  filter: brightness(1.08);
}

@media (max-width: 767px) {
  .body-explorer {
    padding-top: 1.5rem;
  }

  .body-explorer__stage,
  .body-explorer__canvas {
    min-height: 380px;
  }

  .body-explorer__hint {
    font-size: 0.65rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .body-explorer__chip,
  .body-explorer__cta {
    transition: none;
  }
}
