/* VELO — shared site styles (Kinetic Glass design system) */

body {
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
}

/* Level 2 elevation: Liquid Glass surface */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Lighter glass variant used by pricing tiers / dashboard tiles */
.glass-card-tinted {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 104, 117, 0.1);
}

/* Level 1 ambient shadow */
.liquid-shadow {
  box-shadow: 0 40px 100px -20px rgba(11, 28, 48, 0.08);
}

/* Tighter shadow used on primary-coloured CTAs */
.liquid-shadow-sm {
  box-shadow: 0 20px 40px -15px rgba(0, 104, 117, 0.15);
}

/* Sheen sweep used on primary buttons */
.liquid-button {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.liquid-button::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(45deg);
  transition: 0.8s;
}
.liquid-button:hover::after {
  left: 120%;
}

/* Hero animations */
.bike-float {
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%      { transform: translateY(-20px) rotate(2deg); }
}

/* PNG fallback: starts hidden; JS drives the fade-in and the later fade-out. */
.hero-bike-fade-in {
  opacity: 0;
  transition: opacity 2s ease-out;
}

.rotate-slow {
  animation: rotateSlow 20s linear infinite;
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Thin custom scrollbar for carousels */
.custom-scrollbar::-webkit-scrollbar { width: 4px; height: 4px; }
.custom-scrollbar::-webkit-scrollbar-track { background: transparent; }
.custom-scrollbar::-webkit-scrollbar-thumb { background: #bac9cc; border-radius: 10px; }

.hide-scrollbar::-webkit-scrollbar { display: none; }

/* Unlock-slider helpers */
.unlock-slider-thumb { transition: transform 0.1s linear; }
.unlock-slider-track {
  background: rgba(0, 104, 117, 0.05);
  backdrop-filter: blur(8px);
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
