/* ═══ Link2Page · Design tokens & global base ═══
   Theme variables (light/dark), resets, typography, toggle switch.
   Load order matters — index.html loads css files in numeric order. */

/* ── TOKENS ── */
:root{--bg:#080b12;--bg2:#0d1120;--bg3:#111827;--surface:#161d2e;--surface2:#1e2840;--border:rgba(255,255,255,0.07);--border2:rgba(255,255,255,0.12);--text:#f0f2f7;--text2:#8b93a8;--text3:#555f75;--accent:#6c63ff;--accent2:#a78bfa;--cyan:#22d3ee;--green:#34d399;--orange:#fb923c;--pink:#f472b6;--fd:'Syne',sans-serif;--fb:'DM Sans',sans-serif}
html[data-theme="light"]{--bg:#f7f8fc;--bg2:#eef0f8;--bg3:#e6e9f4;--surface:#ffffff;--surface2:#f2f4fb;--border:rgba(15,23,42,0.08);--border2:rgba(15,23,42,0.16);--text:#0f1424;--text2:#4b5468;--text3:#8a92a8;--accent:#5b51f2;--accent2:#7c6cf5}
html[data-theme="light"] body::before{opacity:0.12}
html{background:var(--bg)}
/* readable, accessible surfaces (dashboard & settings) */
.easy-read, .easy-read *{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI','Inter','DM Sans',Roboto,Arial,sans-serif !important;letter-spacing:0 !important}
.easy-read{font-size:15.5px;line-height:1.65}
/* toggle switch */
.lb-switch{position:relative;display:inline-block;width:52px;height:28px;flex:0 0 auto}
.lb-switch input{opacity:0;width:0;height:0}
.lb-slider{position:absolute;inset:0;background:var(--bg3);border:1px solid var(--border2);border-radius:100px;cursor:pointer;transition:background .25s}
.lb-slider::before{content:'';position:absolute;width:20px;height:20px;left:3px;top:3px;border-radius:50%;background:var(--text2);transition:transform .25s,background .25s}
.lb-switch input:checked + .lb-slider{background:var(--accent)}
.lb-switch input:checked + .lb-slider::before{transform:translateX(24px);background:#fff}
