/* three.js cube inside the hero */
.hero-split { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: clamp(24px, 4vw, 64px); align-items: center; text-align: left; }
.hero-split .hero-title { margin-inline: 0; }
.hero-split .hero-lead { margin-inline: 0; }
.hero-split .chips, .hero-split .hero-cta { justify-content: flex-start; }
.hero-split .eyebrow { justify-content: flex-start; }
.cube-stage { position: relative; aspect-ratio: 1; width: 100%; max-width: 560px; margin-inline: auto; touch-action: none; user-select: none; -webkit-user-select: none; }
#cubeCanvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; cursor: grab; touch-action: none; }
#cubeCanvas.is-dragging { cursor: grabbing; }
#cubeCanvas.is-hover { cursor: pointer; }
.cube-hint { position: absolute; left: 0; right: 0; bottom: -6px; text-align: center; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); pointer-events: none; }
.cube-stage.is-selecting #cubeCanvas { cursor: default; }
@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; text-align: center; }
  .hero-split .hero-title, .hero-split .hero-lead { margin-inline: auto; }
  .hero-split .chips, .hero-split .hero-cta, .hero-split .eyebrow { justify-content: center; }
  .cube-stage { max-width: min(78vw, 420px); order: -1; }
  .cube-hint { bottom: -18px; }
}
