/* Banban mono + saturated metallic blue — #060606 × #F0F0F0 × #2563eb */

::selection {
  background: #2563eb;
  color: white;
}

.hero-price {
  /* Metallic blue shimmer — seamless loop, wave pattern */
  background: linear-gradient(
    90deg,
    #bfdbfe 0%,
    #60a5fa 12%,
    #2563eb 25%,
    #1e3a8a 37%,
    #2563eb 50%,
    #60a5fa 62%,
    #bfdbfe 75%,
    #60a5fa 87%,
    #2563eb 100%
  );
  background-size: 300% 100%;
  background-position: 200% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 28px rgba(37, 99, 235, 0.5));
  animation: price-shine 5s cubic-bezier(0.76, 0, 0.24, 1) infinite;
}

@keyframes price-shine {
  0%   { background-position: 200% 50%; }
  100% { background-position: -100% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-price {
    animation: none;
    background-position: 50% 50%;
  }
}

.hero-video-frame {
  border: 1px solid rgba(96, 165, 250, 0.4);
  background: linear-gradient(135deg, #060606 0%, #0f1f3a 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 24px 64px -12px rgba(0, 0, 0, 0.85),
    0 0 140px 10px rgba(37, 99, 235, 0.4),
    0 0 220px 40px rgba(59, 130, 246, 0.12);
}

.btn:focus {
  --tw-ring-color: rgb(37 99 235 / 0.4);
}

.input-field:focus,
.textarea-field:focus {
  --tw-ring-color: rgb(37 99 235 / 0.4);
  border-color: rgb(37 99 235);
}

/* Neutral link treatment — saturated metallic blue accent */
p a {
  background-color: transparent;
  padding: 0;
  border-radius: 0;
  color: inherit;
  text-decoration: underline;
  text-decoration-color: #2563eb;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s, text-decoration-color 0.2s;
}
p a:hover {
  background-color: transparent;
  color: #2563eb;
  text-decoration-color: #2563eb;
}
