:root {
  --brand-primary: #1e56a0;
  --brand-primary-dark: #163d7a;
  --brand-primary-light: #2e6db8;
  --grad-1: #008edb;
  --grad-2: #015eba;
  --grad-3: #0249a3;
  --text-900: #1a1a1a;
  --text-700: #374151;
  --text-500: #6b7280;
  --text-400: #9ca3af;
  --placeholder: #94a3b8;
  --border: #e5e7eb;
  --border-soft: #f1f5f9;
  --error: #ef4444;
  --error-bg: #fee2e2;
  --white: #ffffff;
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
  --radius-card: 24px;
  --radius-input: 12px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--text-900);
}

a {
  color: var(--brand-primary);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
