.welcome-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 50, 0.55);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.welcome-overlay.show {
  display: flex;
}
.welcome-modal {
  background: #fff;
  border-radius: 18px;
  max-width: 480px;
  width: 100%;
  padding: 32px 28px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
  animation: welcomeModalIn 0.3s ease;
}
@keyframes welcomeModalIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.welcome-modal-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #f0f5ff;
  color: #1a3fad;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
}
.welcome-modal h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  margin-bottom: 10px;
  line-height: 1.25;
  color: #1a1f36;
}
.welcome-modal p {
  color: #6e6e73;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.7;
}
.welcome-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.welcome-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 11px;
  background: #e8232a;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
}
.welcome-btn-primary:hover {
  background: #c8191f;
}
.welcome-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 11px;
  border: 2px solid #1a3fad;
  color: #1a3fad;
  font-size: 14px;
  font-weight: 700;
  background: #fff;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
}
.welcome-check {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 12px;
  color: #6e6e73;
  cursor: pointer;
}
.welcome-check input {
  accent-color: #1a3fad;
}
