:root {
  --lm-sapphire: #0f3b82;
}

@keyframes lm-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes lm-grow {
  from { transform: scale(0.97); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes lm-shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes lm-soft-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(15, 59, 130, 0.16); }
  50% { box-shadow: 0 0 0 10px rgba(15, 59, 130, 0); }
}

.animate-lm-fade {
  animation: lm-fade-in 0.7s ease-out both;
}

.animate-lm-grow {
  animation: lm-grow 0.6s ease-out both;
}

.animate-lm-shimmer {
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
  background-size: 200% 100%;
  animation: lm-shimmer 2.2s infinite;
}

.animate-lm-pulse {
  animation: lm-soft-pulse 2.4s infinite;
}




@media screen and (max-width: 768px) {
.md\:flex.md\:items-center.md\:space-x-6 {
	display:none;
}
}