/* ============================================================================
   Variant 2 · Gradient accent
   The template's violet-to-pink gradient, confined to the calls to action, the
   hero's closing phrase, the progress bar and the pass. Everything else is the
   original near-black, photographic page.
   ========================================================================== */
:root {
  --sc-accent:      #ff4d8d;
  --sc-accent-ink:  #ffffff;
  --fc-violet:      #7c3aed;
  --fc-pink:        #ff4d8d;
  --fc-amber:       #ff7a3d;
  --fc-grad:        linear-gradient(100deg, #7c3aed, #ff4d8d 60%, #ff7a3d);
  --fc-grad-btn:    linear-gradient(135deg, #7c3aed, #ff4d8d);
  --sc-shadow-color: 270 40% 3%;
}

/* Buttons: gradient fill, white type, a soft violet lift on hover. */
.fc-btn { background: var(--fc-grad-btn); color: #fff; }
.fc-btn:hover { background: var(--fc-grad-btn); filter: brightness(1.08); box-shadow: 0 10px 30px -8px rgba(124,58,237,0.55); }
.fc-btn small { opacity: 0.85; }
.fc-btn:focus-visible { outline-color: #fff; }

/* Gradient text on the hero's last phrase (wrapped by the variant build). */
.fc-grad {
  font-style: normal;
  background: var(--fc-grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}

/* Progress bar and the small accents. */
[data-sc-progress] { background: linear-gradient(90deg, #7c3aed, #ff4d8d); }
.fc-tab[aria-selected="true"]::before { background: var(--fc-pink); box-shadow: 0 0 12px rgba(255,77,141,0.6); }
.fc-panel__title { color: #ff8ab5; }
.fc-steps__num { background: var(--fc-grad); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }
.fc-video__icon { border-color: rgba(255,77,141,0.6); }
.fc-field input:focus { border-color: var(--fc-pink); }
.fc-roster__grid li:hover span { color: #ff8ab5; }

/* The VIP Pilot Pass: gradient band, violet stamps. */
.fc-pass__card::before { background: linear-gradient(90deg, #7c3aed, #ff4d8d, #ff7a3d); }
.fc-pass__brand, .fc-pass__mini-type { color: #5b21b6; }
.fc-pass__stamps li.is-stamped { color: #5b21b6; border-color: #7c3aed; background: rgba(124,58,237,0.14); }
.fc-pass__mini-dots i.is-stamped { background: #7c3aed; }

/* ---------------------------------------------------------- inner pages */
.fc-prose ul li::before { background: var(--fc-pink); }
.fc-prose ol li::before { color: var(--fc-pink); }
.fc-aside__label { color: #ff8ab5; }
