/* ── Verif-AI Shared Base ──
   Reset + CSS custom properties used across all pages.
   Include this BEFORE any page-specific stylesheet.
   ─────────────────────────────────────────────────── */

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

:root{
  /* Backgrounds */
  --bg:#0a1628;
  --card:#111d35;
  --card-hover:#162545;

  /* Brand colours */
  --accent:#4FC3F7;
  --accent-dim:rgba(79,195,247,.15);
  --green:#66BB6A;
  --green-dim:rgba(102,187,106,.15);
  --purple:#AB47BC;
  --warm:#FF8A65;
  --warm-dim:rgba(255,138,101,.15);
  --red:#ef5350;
  --red-dim:rgba(239,83,80,.15);
  --amber:#FFD54F;
  --amber-dim:rgba(255,213,79,.15);
  --orange:#FF8A65;

  /* Text */
  --text:#E0E6ED;
  --text-muted:#8899AA;
  --text-faint:#556677;

  /* Borders & radii */
  --border:#1a2d4d;
  --border-light:#253d60;
  --radius:12px;
  --radius-sm:8px;
}

html{background:var(--bg)}
a{color:var(--accent);text-decoration:none}
