.welcome-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(26, 26, 46, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.welcome-modal-backdrop.hidden { display: none; }

.welcome-modal {
  width: min(420px, 100%);
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  position: relative;
}

.welcome-modal__close {
  position: absolute;
  top: 14px;
  inset-inline-end: 14px;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  z-index: 2;
}

.welcome-modal__hero {
  background: linear-gradient(135deg, #7a2e4a, #a84d72 55%, #cfa5b8);
  padding: 28px 24px 32px;
  color: #fff;
}

.welcome-modal__icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: #fff;
  color: var(--burgundy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.welcome-modal__title {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.35;
  margin: 0 0 8px;
}

.welcome-modal__sub {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}

.welcome-modal__body {
  padding: 20px 24px 24px;
  background: #fdf8f6;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.welcome-modal__credit {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid rgba(168, 77, 114, 0.12);
  border-radius: 14px;
  padding: 14px;
}

.welcome-modal__credit i {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--burgundy-pale);
  color: var(--burgundy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.welcome-modal__credit strong {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
}

.welcome-modal__credit span {
  font-size: 18px;
  font-weight: 900;
  color: var(--burgundy-deep);
}

.welcome-modal__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.welcome-modal__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  font-weight: 600;
}

.welcome-modal__features i {
  color: var(--burgundy-mid);
  margin-top: 3px;
}

.welcome-modal__cta {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

.welcome-modal__secondary {
  text-align: center;
  font-weight: 800;
  color: var(--burgundy-deep);
  text-decoration: none;
  padding: 10px;
  border: 1px solid rgba(168, 77, 114, 0.12);
  border-radius: 12px;
  background: #fff;
}

.welcome-modal__secondary:hover {
  background: var(--burgundy-pale);
}
