/* v3 — Voltage
   Electric: deep blue-black bg, cool white type, neon cyan + acid yellow accents.
   Reads tech/sharp/futurist while keeping v1's structure and motion. */

:root {
  --ink:        #060810;
  --ink-2:      #0D1320;
  --ink-3:      #161E33;

  --paper:      #ECF1FF;
  --paper-dim:  #8B95B8;
  --paper-mute: #4A5170;

  --rule:       #1F2845;

  --accent:     #00F0FF;   /* electric cyan */
  --accent-2:   #E1FF00;   /* acid yellow */
}

/* Yellow as the selection colour for contrast against cyan accents. */
::selection { background: var(--accent-2); color: var(--ink); }

/* Em italics in acid yellow — gives sentences a second pop. */
em { color: var(--accent-2); }

/* Alternate marquee colour: yellow on the even tokens. */
.marquee__track span:nth-child(even) { color: var(--accent-2); }

/* Slightly desaturate the photo so the accent colours sing. */
.hero__img {
  filter: grayscale(1) contrast(1.1) brightness(0.85) saturate(0.95);
}

/* Glow on the accent line of the hero title — pure CSS, no JS. */
.hero__line--accent {
  text-shadow: 0 0 24px rgba(0, 240, 255, 0.25);
}
