[x-cloak] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

@supports not (backdrop-filter: blur(12px)) {
  .backdrop-blur-md {
    background-color: var(--color-surface);
    opacity: 0.95;
  }
}

*:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

.animate-ping {
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.animate-spin {
  animation: spin 1s linear infinite;
}

.countdown-timer-bg {
  background-color: var(--color-surface);
}

button, a {
  transition-property: transform, box-shadow, background-color, border-color, color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}

[x-cloak] {
  display: none !important;
}

button:active {
  transform: scale(0.98);
}

body {
  background-image:
    radial-gradient(at 0% 0%, rgba(247, 191, 73, 0.03) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(42, 157, 143, 0.03) 0px, transparent 50%);
}

.dark body {
  background-image:
    radial-gradient(at 0% 0%, rgba(247, 191, 73, 0.05) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(42, 157, 143, 0.05) 0px, transparent 50%);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.pricing-card {
  animation: fadeIn 0.6s ease-out forwards;
  opacity: 0;
}

.pricing-card:nth-child(1) {
  animation-delay: 0.1s;
}

.pricing-card:nth-child(2) {
  animation-delay: 0.2s;
}

.pricing-card:nth-child(3) {
  animation-delay: 0.3s;
}

.section-header {
  animation: fadeIn 0.8s ease-out;
}

.avatar-group {
  transition: transform 0.3s ease;
}

.avatar-group:hover {
  transform: scale(1.05);
}

.btn-primary-orange {
  background: #FF9940;
  border: 1.5px solid #E66F00;
  box-shadow: 0 1px 3px rgba(230, 111, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary-orange:hover {
  background: #F77F00;
  border-color: #D66500;
  box-shadow: 0 4px 12px rgba(230, 111, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Theme customizer active mode button */
[data-mode-btn].active {
  background-color: var(--color-primary);
  color: var(--color-primary-text);
  border-color: var(--color-primary);
}
