/* ============================================================
   InteractiveWish — Proposal Scratch Card Landing CSS
   Extends universal-landing.css
   ============================================================ */

/* ── SPARKLES (hero) ──────────────────────────────────────── */
.psc-sparkles-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.psc-sparkle-item {
  position: absolute;
  animation: psc-float linear infinite;
  opacity: 0;
  user-select: none;
  font-style: normal;
}
@keyframes psc-float {
  0%   { opacity: 0; transform: translateY(0) rotate(-8deg); }
  8%   { opacity: 0.85; }
  92%  { opacity: 0.65; }
  100% { opacity: 0; transform: translateY(-110vh) rotate(8deg); }
}

/* ── HERO title em ──────────────────────────────────────────── */
.ulp-hero-title em {
  background: linear-gradient(135deg, #ce93d8 0%, #7b1fa2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Idea card borders ──────────────────────────────────────── */
.ulp-idea-card {
  border-left-color: #7b1fa2;
}
.ulp-idea-card:nth-child(2n) {
  border-left-color: #ce93d8;
}

/* ── Emotional close block ──────────────────────────────────── */
.psc-emotional-close {
  background: linear-gradient(135deg, rgba(123,31,162,0.18) 0%, rgba(206,147,216,0.12) 100%);
  border-color: rgba(206,147,216,0.25);
}

/* ── CTA primary ────────────────────────────────────────────── */
.ulp-cta--primary {
  background: linear-gradient(135deg, #7b1fa2 0%, #ce93d8 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(123,31,162,0.40);
}
.ulp-cta--primary:hover {
  background: linear-gradient(135deg, #5c1680 0%, #ab47bc 100%);
}

/* ── Step number — alternate purple ──────────────────────────── */
.ulp-how-step:nth-child(2n) .ulp-how-step-num {
  background: linear-gradient(135deg, #ce93d8 0%, #7b1fa2 100%);
  color: #fff;
}

/* ── Nav CTA ────────────────────────────────────────────────── */
.ulp-nav-cta--primary {
  background: linear-gradient(135deg, #7b1fa2 0%, #ce93d8 100%);
  color: #fff;
  box-shadow: 0 2px 10px rgba(123,31,162,0.35);
}

/* ── Eyebrow gradient ───────────────────────────────────────── */
.ulp-eyebrow {
  background: linear-gradient(135deg, #7b1fa2 0%, #ce93d8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Logo gradient ──────────────────────────────────────────── */
.ulp-logo-text {
  background: linear-gradient(135deg, #ce93d8 0%, #7b1fa2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Section alt ────────────────────────────────────────────── */
.ulp-section--alt {
  background: #f3e5f5;
}

/* ── Section light ──────────────────────────────────────────── */
.ulp-section--light {
  background: #fce4ff;
}
