/* ============================================================
   InteractiveWish — Love Scratch Card Landing CSS
   Landing #101 | Prefix: lsc-
   Extends universal-landing.css
   ============================================================ */

/* ── HEARTS (hero) ─────────────────────────────────────────── */
.lsc-hearts-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.lsc-heart-item {
  position: absolute;
  animation: lsc-float linear infinite;
  opacity: 0;
  user-select: none;
  font-style: normal;
}
@keyframes lsc-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, #ff80ab 0%, #c2185b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

/* ── Emotional close block ──────────────────────────────────── */
.lsc-emotional-close {
  background: linear-gradient(135deg, rgba(194,24,91,0.18) 0%, rgba(255,128,171,0.12) 100%);
  border-color: rgba(255,128,171,0.25);
}

/* ── CTA primary ────────────────────────────────────────────── */
.ulp-cta--primary {
  background: linear-gradient(135deg, #c2185b 0%, #ff80ab 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(194,24,91,0.40);
}
.ulp-cta--primary:hover {
  background: linear-gradient(135deg, #880e4f 0%, #f06292 100%);
}

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

/* ── Nav CTA ────────────────────────────────────────────────── */
.ulp-nav-cta--primary {
  background: linear-gradient(135deg, #c2185b 0%, #ff80ab 100%);
  color: #fff;
  box-shadow: 0 2px 10px rgba(194,24,91,0.35);
}

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

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

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

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