@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");
/* line 4, app/assets/stylesheets/application.scss */
:root {
  --font-inter: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse-glow {
  0%,
100% {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.6);
  }
}

@keyframes gradient-shift {
  0%,
100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* line 57, app/assets/stylesheets/application.scss */
.animate-fade-in-up {
  animation: fade-in-up 0.8s ease-out forwards;
  opacity: 0;
}

/* line 62, app/assets/stylesheets/application.scss */
.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* line 66, app/assets/stylesheets/application.scss */
.animate-pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}

/* line 70, app/assets/stylesheets/application.scss */
.animate-gradient {
  background-size: 200% 200%;
  animation: gradient-shift 3s ease infinite;
}

/* line 76, app/assets/stylesheets/application.scss */
.font-inter {
  font-family: var(--font-inter);
}

/* line 81, app/assets/stylesheets/application.scss */
.hover-lift {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 85, app/assets/stylesheets/application.scss */
.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* line 91, app/assets/stylesheets/application.scss */
.glass {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* line 98, app/assets/stylesheets/application.scss */
.gradient-text {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* line 106, app/assets/stylesheets/application.scss */
.nav-link {
  position: relative;
  overflow: hidden;
}

/* line 111, app/assets/stylesheets/application.scss */
.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  transition: width 0.3s ease;
}

/* line 122, app/assets/stylesheets/application.scss */
.nav-link:hover::before {
  width: 100%;
}

/* line 127, app/assets/stylesheets/application.scss */
::-webkit-scrollbar {
  width: 8px;
}

/* line 131, app/assets/stylesheets/application.scss */
::-webkit-scrollbar-track {
  background: #f1f5f9;
}

/* line 135, app/assets/stylesheets/application.scss */
::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #3b82f6, #8b5cf6);
  border-radius: 10px;
}

/* line 140, app/assets/stylesheets/application.scss */
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, #2563eb, #7c3aed);
}

/* line 145, app/assets/stylesheets/application.scss */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* line 152, app/assets/stylesheets/application.scss */
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* line 160, app/assets/stylesheets/application.scss */
html {
  scroll-behavior: smooth;
}

/* line 165, app/assets/stylesheets/application.scss */
*:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* line 171, app/assets/stylesheets/application.scss */
.btn-primary {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* line 177, app/assets/stylesheets/application.scss */
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

/* line 191, app/assets/stylesheets/application.scss */
.btn-primary:hover::before {
  left: 100%;
}

@media (max-width: 640px) {
  /* line 197, app/assets/stylesheets/application.scss */
  .text-responsive {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }
}

/* line 203, app/assets/stylesheets/application.scss */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 209, app/assets/stylesheets/application.scss */
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* line 215, app/assets/stylesheets/application.scss */
.card-hover {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* line 219, app/assets/stylesheets/application.scss */
.card-hover:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* line 235, app/assets/stylesheets/application.scss */
.shimmer {
  position: relative;
  overflow: hidden;
}

/* line 240, app/assets/stylesheets/application.scss */
.shimmer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shimmer 2s infinite;
}

/* line 255, app/assets/stylesheets/application.scss */
.mobile-menu {
  overflow: hidden;
  transition: max-height 0.3s ease;
}

/* line 260, app/assets/stylesheets/application.scss */
.mobile-menu.open {
  max-height: 400px;
}

/* line 265, app/assets/stylesheets/application.scss */
.status-online {
  position: relative;
}

/* line 269, app/assets/stylesheets/application.scss */
.status-online::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}
