/* landing-accents.css — dark-mode neon overlay for the landing page.
   Loaded after landing.css via extraCss in HomeController. Kept in a
   separate file so landing.css stays under the 250-line cap as more
   accents are added in later phases. Light mode is intentionally
   untouched here — landing.css already covers it. */

html[data-theme="dark"] .hero-copy h1 span {
    /* Hero highlighted word — the first real cyberpunk cue. Magenta
       lifts off the purple background; the gradient direction
       matches the hero's reading flow. */
    background: linear-gradient(135deg, var(--accent), var(--accent-hot));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

html[data-theme="dark"] .bottom-cta {
    /* Replace the lighter-purple stop with cyan so the closing CTA
       feels electric, not just "branded". Same direction as light
       mode to keep visual rhythm. */
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
}
