/* Amplify — shared styles across all pages */

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

.font-display {
  font-family: 'Space Grotesk', sans-serif;
}

.font-mono {
  font-family: 'IBM Plex Mono', monospace;
}

.signal-line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw 2.4s ease-out forwards;
}

@keyframes draw {
  to { stroke-dashoffset: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .signal-line {
    animation: none;
    stroke-dashoffset: 0;
  }
}

/* Active nav link underline */
.nav-active {
  color: #F5F3EE;
  position: relative;
}

.nav-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #C4F135;
}

/* Animated stat counters */
.counter {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* Floating WhatsApp button — gentle ambient pulse */
@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
}

a[aria-label="Chat with us on WhatsApp"] {
  animation: whatsapp-pulse 2.8s ease-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  a[aria-label="Chat with us on WhatsApp"] {
    animation: none;
  }
}
