/* ============================================================
   ARGUS SECURITY — Gruppo Pasquariello
   variables.css — Palette e variabili globali del sito
   ============================================================ */

:root {
  /* Palette principale */
  --bg: #0B0F19;            /* sfondo principale */
  --card: #151B2B;          /* sfondo card */
  --border: #1E293B;        /* bordi */
  --text: #F8FAFC;          /* testo principale */
  --muted: #94A3B8;         /* testo secondario */
  --accent: #3B82F6;        /* accento blu Argus */
  --accent-hover: #60A5FA;  /* accento hover */

  /* Tipografia */
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;

  /* Effetti ricorrenti */
  --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  --shadow-card-hover: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(59, 130, 246, 0.08);
  --transition-fast: all 0.3s ease;
  --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
