/* DIGIWEDO — classic word reveal: unrevealed grey, revealed black */
:root { --header-offset: 96px; --reveal-inactive: rgba(0,0,0,.2); --reveal-active: #111; }
[id]{ scroll-margin-top: var(--header-offset); }

/* Text reveal default color is grey; words inherit until revealed */
.text-reveal{ color: var(--reveal-inactive); white-space: normal; }
.text-reveal .word{ color: inherit; transition: color .25s linear; will-change: color; display:inline; }
.text-reveal .word.revealed{ color: var(--reveal-active); }
