/* Custom styles beyond Tailwind */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

html {
  scroll-behavior: smooth;
}

/* Skip to main content link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 9999;
  padding: 8px 16px;
  background: #1e3a8a;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}
.skip-link:focus {
  top: 0;
}

/* Kanban lane animation */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-slide-in {
  animation: slideIn 0.5s ease-out forwards;
}

/* Fade in on scroll */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

/* Pulse dot for Running status */
@keyframes pulseDot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.animate-pulse-dot {
  animation: pulseDot 2s ease-in-out infinite;
}

/* Kanban board lane styling */
.kanban-lane {
  min-height: 200px;
  transition: all 0.3s ease;
}

.kanban-card {
  transition: all 0.2s ease;
}

.kanban-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Artifact path highlight */
.artifact-path {
  position: relative;
  transition: all 0.3s ease;
}

.artifact-path:hover {
  background-color: #dbeafe;
}

.artifact-path::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3b82f6;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.artifact-path:hover::before {
  opacity: 1;
}

/* Mobile nav overlay */
.mobile-nav {
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-nav.open {
  transform: translateX(0);
}

/* CTA button glow effect */
.cta-glow {
  box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4);
  transition: all 0.3s ease;
}

.cta-glow:hover {
  box-shadow: 0 0 20px 4px rgba(249, 115, 22, 0.3);
}

/* Timeline connector animation */
.timeline-connector {
  background: linear-gradient(180deg, #3b82f6 0%, #93c5fd 100%);
}
