/* ============================================================
   InteractiveWish — Normal Scratch Card Landing CSS
   Landing #108 | Prefix: nsc-
   Extends universal-landing.css
   ============================================================ */

/* ── STARS (hero) ──────────────────────────────────────────── */
.nsc-stars-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.nsc-star-item {
  position: absolute;
  animation: nsc-rise linear infinite;
  opacity: 0;
  user-select: none;
  font-style: normal;
}
@keyframes nsc-rise {
  0%   { opacity: 0; transform: translateY(0) scale(0.7); }
  8%   { opacity: 0.75; }
  92%  { opacity: 0.5; }
  100% { opacity: 0; transform: translateY(-110vh) scale(1.1); }
}

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

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

/* ── Emotional close block ──────────────────────────────────── */
.nsc-emotional-close {
  background: linear-gradient(135deg, rgba(2,119,189,0.16) 0%, rgba(0,191,165,0.12) 100%);
  border-color: rgba(0,191,165,0.25);
}

/* ── CTA primary ────────────────────────────────────────────── */
.ulp-cta--primary {
  background: linear-gradient(135deg, #0277bd 0%, #00bfa5 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(2,119,189,0.38);
}
.ulp-cta--primary:hover {
  background: linear-gradient(135deg, #01579b 0%, #00897b 100%);
}

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

/* ── Nav CTA ────────────────────────────────────────────────── */
.ulp-nav-cta--primary {
  background: linear-gradient(135deg, #0277bd 0%, #00bfa5 100%);
  color: #fff;
  box-shadow: 0 2px 10px rgba(2,119,189,0.35);
}

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

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

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

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