/* Small extras Tailwind CDN doesn't cover */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", system-ui, sans-serif;
}

.brand-display {
  font-family: "Syne", sans-serif;
}

.grain::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.amount-chip.active {
  background: #f0a05a;
  color: #12100e;
  border-color: #f0a05a;
}

#card-element {
  min-height: 40px;
}

#card-element.StripeElement--focus {
  border-color: rgba(240, 160, 90, 0.55);
  box-shadow: 0 0 0 2px rgba(240, 160, 90, 0.25);
}

.fade-up {
  animation: fadeUp 0.7s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pulse-ring {
  animation: pulseRing 2.8s ease-out infinite;
}

@keyframes pulseRing {
  0% {
    transform: scale(0.92);
    opacity: 0.55;
  }
  70% {
    transform: scale(1.25);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
