/* ─────────────────────────────────────────────
   Base — CSS variables, reset, typography
   ───────────────────────────────────────────── */

:root {
  /* VIVU brand */
  --vivu-primary:        #FF6B35;
  --vivu-primary-soft:   #FECFC3;
  --vivu-primary-dark:   #E85A2B;
  --vivu-secondary:      #6366F1;

  /* Semantic */
  --vivu-success:        #10B981;
  --vivu-success-bg:     rgba(16, 185, 129, 0.12);
  --vivu-error:          #EF4444;
  --vivu-error-bg:       rgba(239, 68, 68, 0.12);
  --vivu-warning:        #F59E0B;

  /* Dark theme */
  --bg:                  #111827;
  --surface:             #1F2937;
  --surface-2:           #27364b;
  --border:              #374151;
  --border-focus:        #FF6B35;

  /* Text */
  --text:                #F9FAFB;
  --text-secondary:      #D1D5DB;
  --text-tertiary:       #9CA3AF;

  /* Misc */
  --radius:              12px;
  --radius-sm:           8px;
  --shadow:              0 8px 32px rgba(0, 0, 0, 0.4);
  --transition:          0.2s ease;
}

/* ── Reset ──────────────────────────────────── */

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

/* ── Base ───────────────────────────────────── */

html, body {
  width: 100%;
  min-height: 100vh;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background-color: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
