/* motion-extras.css — only sticky CTA + cinematic cursor */

/* ---------- Cinematic cursor ---------- */
.has-custom-cursor,
.has-custom-cursor * {
  cursor: none !important;
}
@media (pointer: coarse) {
  .has-custom-cursor,
  .has-custom-cursor * { cursor: auto !important; }
  .cursor-ring, .cursor-dot { display: none; }
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--brand);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: width 0.25s ease, height 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  mix-blend-mode: difference;
  background: transparent;
}
.cursor-ring.is-active {
  width: 56px;
  height: 56px;
  background: rgba(0, 221, 142, 0.18);
  border-color: var(--brand);
}
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--brand);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
}

/* ---------- Sticky CTA bar ---------- */
.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(120%);
  z-index: 90;
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
  pointer-events: none;
}
.sticky-cta.is-visible {
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.sticky-cta__inner {
  display: flex;
  align-items: center;
  gap: 22px;
  background: #000;
  color: #fff;
  border-radius: 999px;
  padding: 8px 8px 8px 22px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.sticky-cta__left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.sticky-cta__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(0, 221, 142, 0.12);
  padding: 6px 12px;
  border-radius: 999px;
}
.sticky-cta__metric {
  font-family: var(--font-display);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}
.sticky-cta__metric strong {
  color: #fff;
  font-weight: 700;
}
.sticky-cta__btn {
  height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0;
}
