/* partials/onboarding.ejs styles */
.pwa-onboarding {
  position: fixed;
  inset: 0;
  background: #f8fafc;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.pwa-onboarding.show {
  transform: translateY(0);
}
.onboarding-slides {
  flex: 1;
  display: flex;
  position: relative;
  overflow: hidden;
}
.onboarding-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.4s ease;
  pointer-events: none;
}
.onboarding-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.onboarding-slide.exit {
  opacity: 0;
  transform: translateX(-50px);
}
.slide-illustration {
  font-size: 6rem;
  color: #3b82f6;
  margin-bottom: 2rem;
  height: 180px;
  width: 180px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}
.slide-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}
.slide-text {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
  max-width: 320px;
}
.onboarding-footer {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.onboarding-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.onboarding-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e2e8f0;
  transition: 0.3s;
}
.onboarding-dots .dot.active {
  background: #3b82f6;
  width: 24px;
  border-radius: 10px;
}
.onboarding-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.btn-onboard {
  border: none;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.2s;
}
.btn-skip {
  background: transparent;
  color: #94a3b8;
  padding: 10px;
}
.btn-skip:active { color: #64748b; }
.btn-next {
  background: #3b82f6;
  color: #fff;
  padding: 14px 32px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}
.btn-next:active { transform: scale(0.96); }
