/* TargetResume - Onboarding Screens Styles */

.welcome-screen {
  display: flex;
  flex-direction: column;
  height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  background: var(--gray-50);
  overflow: hidden;
}

.welcome-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  text-align: center;
}

.welcome-icon {
  width: 120px;
  height: 120px;
  background: white;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.welcome-logo-img {
  width: 80px;
  height: 80px;
}

.welcome-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.welcome-subtitle {
  font-size: 17px;
  font-weight: 400;
  color: var(--gray-600);
  line-height: 1.6;
  max-width: 340px;
  margin: 0 auto;
}

.welcome-footer {
  padding: 16px 16px calc(32px + env(safe-area-inset-bottom, 0px));
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}

.welcome-btn {
  width: 100%;
  height: 56px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.welcome-btn:active {
  transform: scale(0.98);
  background: var(--primary-dark);
}

/* Responsive */
@media (max-width: 640px) {
  .welcome-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 32px;
  }
  
  .welcome-logo-img {
    width: 64px;
    height: 64px;
  }
  
  .welcome-title {
    font-size: 28px;
  }
  
  .welcome-subtitle {
    font-size: 16px;
  }
}

/* Animation */
.welcome-content {
  animation: fadeInUp 0.6s ease-out;
}

.welcome-footer {
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}