/* ============================================================
   InteractiveWish — Mum Scratch Card Landing CSS
   Landing #107 | Prefix: msc-
   Extends universal-landing.css
   ============================================================ */

/* ── FLOWERS (hero) ────────────────────────────────────────── */
.msc-flowers-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.msc-flower-item {
  position: absolute;
  animation: msc-bloom linear infinite;
  opacity: 0;
  user-select: none;
  font-style: normal;
}
@keyframes msc-bloom {
  0%   { opacity: 0; transform: translateY(0) rotate(-5deg) scale(0.8); }
  8%   { opacity: 0.9; }
  92%  { opacity: 0.65; }
  100% { opacity: 0; transform: translateY(-110vh) rotate(5deg) scale(1.1); }
}

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

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

/* ── Emotional close block ──────────────────────────────────── */
.msc-emotional-close {
  background: linear-gradient(135deg, rgba(230,81,0,0.16) 0%, rgba(248,187,208,0.12) 100%);
  border-color: rgba(248,187,208,0.30);
}

/* ── CTA primary ────────────────────────────────────────────── */
.ulp-cta--primary {
  background: linear-gradient(135deg, #e65100 0%, #f48fb1 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(230,81,0,0.38);
}
.ulp-cta--primary:hover {
  background: linear-gradient(135deg, #bf360c 0%, #f06292 100%);
}

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

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

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

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

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

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