/* ============================================================
   InteractiveWish — Forbidden Scratch Card Landing CSS
   Landing #103 | Prefix: fsc-
   Extends universal-landing.css
   ============================================================ */

/* ── DARK PARTICLES (hero) ─────────────────────────────────── */
.fsc-dark-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.fsc-dark-particle {
  position: absolute;
  animation: fsc-rise linear infinite;
  opacity: 0;
  user-select: none;
  font-style: normal;
  filter: brightness(0.7);
}
@keyframes fsc-rise {
  0%   { opacity: 0; transform: translateY(0) rotate(0deg) scale(0.9); }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.35; }
  100% { opacity: 0; transform: translateY(-110vh) rotate(-15deg) scale(1.05); }
}

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

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

/* ── Emotional close block ──────────────────────────────────── */
.fsc-emotional-close {
  background: linear-gradient(135deg, rgba(183,28,28,0.20) 0%, rgba(33,33,33,0.15) 100%);
  border-color: rgba(183,28,28,0.30);
}

/* ── CTA primary ────────────────────────────────────────────── */
.ulp-cta--primary {
  background: linear-gradient(135deg, #b71c1c 0%, #212121 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(183,28,28,0.50);
}
.ulp-cta--primary:hover {
  background: linear-gradient(135deg, #7f0000 0%, #000000 100%);
}

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

/* ── Nav CTA ────────────────────────────────────────────────── */
.ulp-nav-cta--primary {
  background: linear-gradient(135deg, #b71c1c 0%, #212121 100%);
  color: #fff;
  box-shadow: 0 2px 10px rgba(183,28,28,0.45);
}

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

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

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

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