@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  background: #f8f9fb;
  color: #111;
  overflow-x: hidden;
}

/* =========================
COLOR VARIABLES
========================= */

:root {
  --primary: #1d2f6f;
  --primary-dark: #12204d;
  --secondary: #ffffff;
  --accent: #e7ecff;
  --text: #111111;
  --muted: #666;
  --border: #dfe5f2;
  --gradient: linear-gradient(135deg, #1d2f6f 0%, #304ea6 100%);
}

button {
  font-family: inherit;
}
