/* ===========================================================
 * Deferred Animations — loaded after first paint via media="print" onload
 * Extracted from src/layouts/Layout.astro <style is:global>
 * =========================================================== */

.text-gradient {
  background: linear-gradient(135deg, #3B82F6 0%, #06B6D4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.parallax-target {
  transition: transform 0.1s ease-out;
}

@keyframes shimmerWord {
  0%, 100% { color: #1D1D1F; }
  20%, 50% { color: #0066CC; }
}

.shimmer-word {
  animation: shimmerWord 5s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes shimmerText {
  0% { background-position: -200%; }
  100% { background-position: 200%; }
}

.shimmer-text {
  background: linear-gradient(90deg, #F9FAFB 0%, #3B82F6 50%, #F9FAFB 100%);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shimmerText 4s linear infinite;
}

.benefit-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.benefit-card .icon-box {
  width: 64px;
  height: 64px;
  background-color: rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-10px);
}

.benefit-card:hover .icon-box {
  transform: rotate(15deg) scale(1.1);
}

.checklist-item {
  transition: transform 0.3s;
}

.checklist-item:hover {
  transform: scale(1.02);
  background-color: rgba(255, 255, 255, 0.05);
}

.hover-white:hover {
  color: white !important;
}

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

.spin-icon {
  animation: spin 3s linear infinite;
}

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