/* Share Digital Business — signature interactions */

@keyframes tap-pulse {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}

.pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  border: 1.5px solid var(--pulse-color, #2D5BFF);
  animation: tap-pulse 1.8s cubic-bezier(0.2, 0.6, 0.4, 1) both;
}

.pulse-ring--two { animation-delay: 0.35s; }
.pulse-ring--three { animation-delay: 0.7s; }

@media (prefers-reduced-motion: reduce) {
  .pulse-ring {
    animation: none;
    display: none;
  }
}

/* Subtle press feedback on link buttons, no library needed */
.link-button {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.link-button:active {
  transform: scale(0.98);
}

body {
  font-family: 'Inter', sans-serif;
}
