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





.bg-animate {
  background: linear-gradient(90deg, #FFD02B 0%, #FFD02B 100%);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  transition: background-size 0.7s cubic-bezier(0.48, 1.14, 0.52, 0.92);
  animation: bgFill 1.2s cubic-bezier(0.48, 1.14, 0.52, 0.92) forwards;
  color: #000;
}

@keyframes bgFill {
  from {
    background-size: 0% 100%;
  }

  to {
    background-size: 100% 100%;
  }
}


/* ========================================== */
/* NAV DOTS STYLES */
/* ========================================== */

.nav-dot {
  @apply flex items-center relative;
}

.dot {
  @apply w-4 h-4 rounded-full border-2 border-gray-500 bg-gray-800 transition;
}

.nav-dot.active .dot {
  @apply border-yellow-300 bg-yellow-400 shadow-lg;
}


.dot {
  transition: all 0.3s cubic-bezier(.5, 1.5, .5, 1);
  width: 32px;
  height: 32px;
  border-radius: 99px;
  background: #232323;
  border: 2px solid #444;
  color: #FFD02B;
  font-weight: bold;
  font-size: .85rem;
  box-shadow: 0 2px 8px rgba(40, 30, 30, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

.nav-dot.active .dot,
.nav-dot:focus .dot,
.nav-dot:hover .dot {
  border-color: #FFD02B;
  background: #282828;
  color: #fff;
  box-shadow: 0 0 16px #ffd02b99, 0 2px 8px #222;
}

.nav-dot .dot::after {
  content: attr(data-label);
  position: absolute;
  right: 40px;
  opacity: 0;
  transform: translateY(2px);
  background: #222;
  color: #FFD02B;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: .9rem;
  pointer-events: none;
  transition: opacity .24s;
  box-shadow: 0 2px 6px #333c;
}

.nav-dot:hover .dot::after,
.nav-dot:focus .dot::after {
  opacity: 1;
}




@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(24px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}



/* ========================================== */
/* INFINITY SCROLL ANIMATION - HERO SECTION */
/* ========================================== */

#infinite-scroll {
  position: absolute;
  overflow-x: hidden;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

#scroll-content {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
}

#scroll-content span {
  display: inline-block;
}


/* ========================================== */
/* FADE IN DOWN ANIMATION */
/* ========================================== */
@keyframes fade-in-down {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-down {
  animation: fade-in-down 0.6s cubic-bezier(0.65, 0, 0.35, 1) both;
}



@keyframes slowFloat {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0);
  }
}

.slow-move-up-down {
  animation-name: slowFloat;
  animation-duration: 6s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}



/* ========================================== */
/* MINILINE ANIMATION */
/* ========================================== */
@keyframes miniline {

  0%,
  100% {
    width: 2rem;
  }

  50% {
    width: 4.5rem;
  }
}

.animate-miniline {
  animation: miniline 3s ease-in-out infinite;
}



/* MISSION VISION ANIMATIONS
==========================================   */
@keyframes subtle-highlight {

  0%,
  100% {
    color: #fde047;
  }

  50% {
    color: #fffde7;
  }
}

@keyframes subtle-highlight-white {

  0%,
  100% {
    color: #fff;
  }

  50% {
    color: #fde047;
  }
}

@keyframes subtle-bold {

  0%,
  100% {
    font-weight: 800;
  }

  40% {
    font-weight: 800;
  }

  50% {
    font-weight: 400;
  }

  60% {
    font-weight: 800;
  }
}

.subtle-highlight {
  animation: subtle-highlight 2.8s ease-in-out infinite;
}

.subtle-highlight-white {
  animation: subtle-highlight-white 2.7s ease-in-out infinite;
}

.subtle-bold {
  animation: subtle-bold 4s ease-in-out infinite;
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}



/* Base font-family */
.fade-slide-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll indicator bounce */
@keyframes bounceY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

.bounce-y {
  animation: bounceY 2s ease-in-out infinite;
}






/* Button hover effects */
.download-btn {
  @apply flex items-center justify-center space-x-2 px-6 py-3 border border-gray-300 rounded-full text-sm font-semibold text-white bg-transparent hover:border-yellow-400 transition-transform transform hover:scale-105;
  transition: all 0.3s ease;
}

.download-btn:hover {
  box-shadow: 0 0 15px rgba(246, 194, 0, 0.4);
}

/* Screenshot card shadow */
.app-card {
  background: #111;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transform: rotate(-3deg);
  transition: transform 0.4s ease;
}

.app-card:hover {
  transform: rotate(0deg) scale(1.02);
}




.spin { 
  animation: spinner 1s linear infinite; 
}
@keyframes spinner { 
  to { 
    transform: rotate(360deg); 
  } 
}
.role-radio[aria-checked="true"] {
  box-shadow: 0 0 20px rgba(255, 208, 43, 0.12);
  border-color: #FFD02B !important;
}






  /* Modal animations */
  @keyframes scaleIn {
    from {
      transform: scale(0);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }

  @keyframes checkmark {
    0% {
      stroke-dasharray: 0, 100;
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      stroke-dasharray: 100, 0;
      opacity: 1;
    }
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .animate-scaleIn {
    animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .animate-checkmark {
    animation: checkmark 0.6s ease-in-out 0.3s both;
  }

  .animate-fadeIn {
    animation: fadeIn 0.5s ease-out;
  }

  /* Show modal */
  #successModal.show {
    display: flex !important;
  }

  #successModal.show #successCard {
    transform: scale(1);
    opacity: 1;
  }

  /* Ping animation */
  @keyframes ping {
    75%, 100% {
      transform: scale(2);
      opacity: 0;
    }
  }

  .animate-ping {
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
  }








  /* Cookie consent animations */
  #cookieConsent.show {
    transform: translateY(0);
  }

  /* Slide in from bottom with bounce */
  @keyframes slideInBounce {
    0% {
      transform: translateY(100%);
      opacity: 0;
    }
    60% {
      transform: translateY(-10px);
      opacity: 1;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }

  #cookieConsent.animate {
    animation: slideInBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  /* Slide out to bottom */
  @keyframes slideOut {
    from {
      transform: translateY(0);
      opacity: 1;
    }
    to {
      transform: translateY(100%);
      opacity: 0;
    }
  }

  #cookieConsent.hide {
    animation: slideOut 0.4s ease-in forwards;
  }





  /* Sticky banner base (hidden) */
#waitlistBanner {
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease;
}

/* When showing — both slide up & fade in */
#waitlistBanner.show {
  transform: translateY(0);
  opacity: 1;
  animation: slideUpFade 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Combined keyframe for slide-up + fade-in */
@keyframes slideUpFade {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

#waitlistBanner.hide {
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
