/* ── TOKENS ── */
:root {
  --navy: #2c4364;
  --navy-dark: #1e3050;
  --yellow: #ffcd00;
  --yellow-hov: #ffe600;
  --gray-text: #64748b;
  --success: #10b981;
  --error: #ef4444;
  --error-bg: #fee2e2;
  --muted: #94a3b8;
  --page-bg: #f8fafc;
  --border: #e8eff7;
  --border-input: #e2e8f0;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 12px 36px rgba(0, 0, 0, 0.13);
  --r-sm: 0.4rem;
  --r-md: 0.5rem;
  --r-lg: 0.75rem;
  --r-xl: 1.25rem;
  --r-2xl: 1.75rem;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

html,
body {
  min-height: 100vh;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--page-bg);
  color: var(--navy);
  display: flex;
  flex-direction: column;
}
