/* Lapisan interaktif tambahan; tetap ringan dan tanpa library. */
.hero-visual {
  position: relative;
  padding: 28px 18px;
  perspective: 1100px;
}

.hero-card {
  position: relative;
  z-index: 2;
  box-shadow: 15px 15px 0 #dce2cb, 30px 30px 55px #7b87712e;
  transform: rotate(2deg) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform .18s ease-out;
  will-change: transform;
}

.orbit {
  position: absolute;
  z-index: 0;
  border: 1px solid #aecb55;
  border-radius: 50%;
  opacity: .8;
}

.orbit-one { width: 365px; height: 365px; right: -30px; top: 5px; animation: orbit-spin 14s linear infinite; }
.orbit-two { width: 255px; height: 255px; left: -24px; bottom: -10px; border-style: dashed; animation: orbit-spin 18s linear infinite reverse; }

.float-tag {
  position: absolute;
  z-index: 3;
  padding: 9px 11px;
  border-radius: 4px;
  background: var(--lime);
  box-shadow: 7px 7px 0 var(--ink);
  font: 500 .57rem 'DM Mono', monospace;
  letter-spacing: .08em;
  animation: gentle-float 3.8s ease-in-out infinite;
}

.tag-top { top: 12px; right: -2px; }
.tag-bottom { bottom: 9px; left: -4px; animation-delay: -1.8s; }

@keyframes orbit-spin { to { transform: rotate(360deg); } }
@keyframes gentle-float { 50% { transform: translateY(-12px) rotate(-2deg); } }

@media (prefers-reduced-motion: reduce) {
  .orbit, .float-tag { animation: none; }
  .hero-card { transition: none; }
}

@media (max-width: 760px) {
  .hero-visual { padding: 18px 6px; }
  .orbit-one { width: 290px; height: 290px; right: -45px; }
  .orbit-two { width: 180px; height: 180px; left: -35px; }
}
