/* ═══════════════════════════════════════════════════════════════
   ARCANA — Originkit-Inspired Effect Styles
   ═══════════════════════════════════════════════════════════════ */

/* === 1. Infinite Marquee — removed (no .model-strip in HTML) === */

/* === 2. Spotlight Text === */
.spotlight-text {
  position: relative;
  --spot-x: 50%;
  --spot-y: 50%;
  background: linear-gradient(90deg, #818cf8 0%, #4338ca 25%, #6366f1 50%, #a5b4fc 75%, #818cf8 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position .6s var(--ease-out);
}
.spotlight-text::after {
  content: '';
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle 180px at var(--spot-x) var(--spot-y), rgba(99,102,241,.25), transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease;
  z-index: 1;
}
.spotlight-text:hover::after {
  opacity: 1;
}
.site-light .spotlight-text::after {
  background: radial-gradient(circle 180px at var(--spot-x) var(--spot-y), rgba(67,56,202,.15), transparent 70%);
}
.site-light .spotlight-text {
  background: linear-gradient(90deg, #1a1a1a 0%, #4338ca 25%, #6366f1 50%, #4338ca 75%, #1a1a1a 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* === 3. Scroll Text Highlight — removed (no .section-head in HTML) === */

/* === 4. Click Ripple — removed (no .card/.step/.plan in HTML) === */

/* === 5. Image Spotlight — removed (no .showcase-frame in HTML) === */

/* === 6. Card Spotlight — removed (no .plan in HTML) === */

/* === Reduced Motion === */
@media (prefers-reduced-motion: reduce) {
  .spotlight-text::after { transition: none; }
}
