:root { --main-black: #050505; }
html, body { overflow-x: hidden; }
body { background-color: var(--main-black); color: white; font-family: 'Inter', sans-serif; }
.text-gradient {
background: linear-gradient(90deg, #9F94FF 0%, #EFB521 50%, #5B95FF 100%);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
/* PREMIUM GLASS */
.glass-nav {
background: rgba(5, 5, 5, 0.7);
backdrop-filter: blur(20px);
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.glass-panel {
background: rgba(20, 20, 22, 0.6);
backdrop-filter: blur(12px);
border: 1px solid rgba(255, 255, 255, 0.08);
box-shadow: 0 0 0 1px rgba(0,0,0,0.2), 0 8px 40px rgba(0,0,0,0.4);
}
/* SCROLL */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
/* PAGE TRANSITIONS */
.page-content { display: none; opacity: 0; transition: opacity 0.4s ease; }
.page-content.active { display: block; opacity: 1; }
/* Hide home immediately when on legal page route */
html.legal-route #home { display: none !important; }
/* Polaroid Cards */
.bg-polaroid-white { background-color: #F2F0F5; }
/* Animation Delays */
.animation-delay-200 { animation-delay: 0.2s; }
.animation-delay-400 { animation-delay: 0.4s; }
/* Particle Pulse */
@keyframes particle-pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; }
}
.animate-ping { animation: particle-pulse 1.5s infinite; }
/* Float Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
.animate-float { animation: float 3s ease-in-out infinite; }
.animate-float-delayed { animation: float 3s ease-in-out infinite 1s; }
/* Particle Effects */
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(125, 110, 252, 0.6);
  border-radius: 50%;
  animation: particle-float 4s ease-in-out infinite;
}
.particle-1 { top: 20%; left: 10%; animation-delay: 0s; }
.particle-2 { top: 40%; right: 10%; animation-delay: 1s; }
.particle-3 { bottom: 30%; left: 20%; animation-delay: 2s; }
.particle-4 { bottom: 20%; right: 20%; animation-delay: 3s; }
@keyframes particle-float {
  0%, 100% { transform: translateY(0px) scale(1); opacity: 0.6; }
  50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
}
/* Phone Mockup Sizing - matches actual phone mockup images (1339x2716 ≈ 1:2.03) */
.phone-mockup {
  aspect-ratio: 9 / 18.3;
}
/* Screen Transition */
.screen-image {
  transition: opacity 0.5s ease;
  opacity: 0;
  z-index: 0;
}
.screen-image.active {
  opacity: 1;
  z-index: 1;
}
.screen-image:not(.active) {
  pointer-events: none;
}
/* Map Image Cycling */
.map-image.active { opacity: 1; z-index: 2; }
.map-image:not(.active) { opacity: 0; z-index: 1; }
/* Home Image Cycling */
.home-image.active { opacity: 1; z-index: 2; }
.home-image:not(.active) { opacity: 0; z-index: 1; }
/* Floating Pills Visibility */
.dynamic-chip {
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.dynamic-chip.hidden-pill {
  opacity: 0;
  pointer-events: none;
}
