.cursor-stage {
  position: relative;
  min-height: 60vh;
  overflow: hidden;
  background: #1c382b;
  cursor: none;
}
@media (max-width: 820px) {
  .cursor-stage { cursor: auto; }
}

.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 40;
  transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 8px; height: 8px;
  background: #d9b55a;
  box-shadow: 0 0 12px rgba(217, 181, 90, 0.38);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(212, 168, 83, 0.4);
  transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.cursor-ring.is-active {
  width: 68px; height: 68px;
  background: rgba(217, 181, 90, 0.1);
  border-color: rgba(217, 181, 90, 0.82);
}

.cursor-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
  min-height: 60vh;
  padding: 3rem 1.5rem;
  text-align: center;
  color: rgba(250,250,250,0.6);
}
.cursor-content p { max-width: 26em; margin: 0; font-size: 0.9rem; }

.cursor-targets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.cursor-target {
  padding: 0.9rem 1.8rem;
  border: 1px solid rgba(250,250,250,0.25);
  border-radius: 999px;
  color: var(--cl-white);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  user-select: none;
}

.cursor-touch-note {
  display: none;
  font-size: 0.82rem;
  color: rgba(250,250,250,0.55);
}
@media (max-width: 820px) {
  .cursor-touch-note { display: block; }
  .cursor-dot, .cursor-ring { display: none; }
}
