/* Monetizr Blackbelt — base reset & document defaults */

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

/* form controls — muted placeholder, inherited font, gold caret */
input, textarea, select { font-family: var(--font-sans); caret-color: var(--accent); }
input::placeholder, textarea::placeholder { color: var(--muted); opacity: 1; }

/* Lucide icons — always inline beside text, never a stacked tile over a heading */
.licon { line-height: 1; vertical-align: -2px; }
