/* Brand-driven styles for Post Wizard Welcome Landing */

.hm-pwwl-wrap {
  position: relative;
  background: var(--hm-pwwl-bg);
  color: var(--hm-pwwl-black);
  overflow: hidden;
  padding: 48px 16px;
}

.hm-pwwl-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 600px at 50% -200px, rgba(245, 180, 0, 0.25), transparent 60%),
              radial-gradient(800px 400px at 0% 100%, rgba(195, 142, 0, 0.12), transparent 60%),
              radial-gradient(800px 400px at 100% 100%, rgba(195, 142, 0, 0.12), transparent 60%);
  pointer-events: none;
}

.hm-pwwl-hero {
  position: relative;
  max-width: 920px;
  margin: 0 auto 32px auto;
  text-align: center;
}

.hm-pwwl-animation {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 108px;
  height: 108px;
  margin: 0 auto 16px auto;
}

.hm-pwwl-logo-pulse {
  width: 96px;
  height: 96px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(245, 180, 0, 0.7);
  animation: hm-pwwl-pulse 2.2s ease-out infinite;
  background-color: #fff;
}

@keyframes hm-pwwl-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(245, 180, 0, 0.7); transform: scale(1); }
  70%  { box-shadow: 0 0 0 24px rgba(245, 180, 0, 0); transform: scale(1.04); }
  100% { box-shadow: 0 0 0 0 rgba(245, 180, 0, 0); transform: scale(1); }
}

.hm-pwwl-title {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.25;
  margin: 12px 0 8px 0;
  color: var(--hm-pwwl-black);
}

.hm-pwwl-subtitle {
  font-size: 18px;
  opacity: 0.9;
  margin: 0 0 8px 0;
}

.hm-pwwl-confetti {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 960px;
  height: 200px;
  pointer-events: none;
  z-index: 2;
}

.hm-pwwl-content {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}

.hm-pwwl-preview {
  background: #fff;
  border: 2px solid var(--hm-pwwl-gold);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.hm-pwwl-section-title {
  margin: 0 0 4px 0;
  font-size: 18px;
}

.hm-pwwl-edit-note {
  margin: 0 0 12px 0;
  font-size: 13px;
  color: #444;
}

.hm-pwwl-text {
  width: 100%;
  box-sizing: border-box;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.5;
  min-height: 120px;
  resize: vertical;
}

.hm-pwwl-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  margin-top: 12px;
}

.hm-pwwl-ai-btn.button-primary {
  background: var(--hm-pwwl-gold);
  border-color: var(--hm-pwwl-gold-dark);
  color: var(--hm-pwwl-black);
}

.hm-pwwl-ai-btn[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

.hm-pwwl-share-btn.button {
  background: #fff;
  border: 2px solid var(--hm-pwwl-black);
  color: var(--hm-pwwl-black);
}

.hm-pwwl-next {
  text-align: center;
  margin-top: 18px;
}

.hm-pwwl-next-link {
  color: var(--hm-pwwl-black);
  text-decoration: none;
  border-bottom: 2px solid var(--hm-pwwl-gold);
  padding-bottom: 2px;
}

@media (max-width: 600px) {
  .hm-pwwl-title { font-size: 22px; }
  .hm-pwwl-subtitle { font-size: 16px; }
  .hm-pwwl-confetti { height: 120px; }
}


