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

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

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

/* ── Emotional close block ──────────────────────────────────── */
.bsc-emotional-close {
  background: linear-gradient(135deg, rgba(212,97,140,0.18) 0%, rgba(248,164,200,0.12) 100%);
  border-color: rgba(248,164,200,0.25);
}

/* ── CTA primary ────────────────────────────────────────────── */
.ulp-cta--primary {
  background: linear-gradient(135deg, #d4618c 0%, #f8a4c8 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(212,97,140,0.40);
}
.ulp-cta--primary:hover {
  background: linear-gradient(135deg, #a14568 0%, #e08aad 100%);
}

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

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

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

/* ── Logo gradient ──────────────────────────────────────────── */
.ulp-logo-text {
  background: linear-gradient(135deg, #f8a4c8 0%, #d4618c 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;
}
