:root {
  --orange: #F5A623;
  --orange-dark: #E09510;
  --orange-light: #FEF3E2;
  --orange-text: #854F0B;

  --blue: #1A56A0;
  --blue-light: #EAF1FB;
  --blue-text: #0C447C;
  --blue-border: #B5D4F4;

  --green: #2E7D32;
  --green-light: #E8F5E9;
  --green-border: #A5D6A7;
  --green-text: #1B5E20;

  --amber: #F59E0B;
  --amber-light: #FFFBEB;
  --amber-border: #FCD34D;
  --amber-text: #92400E;

  --red: #DC2626;
  --red-light: #FEF2F2;
  --red-border: #FCA5A5;
  --red-text: #991B1B;

  --purple: #6B21A8;
  --purple-light: #F3E8FF;
  --purple-border: #D8B4FE;
  --purple-text: #581C87;

  /* Brand colours - public marketing pages (e.g. homepage), distinct from
     the app's internal orange/blue/green/purple module colours above */
  --navy: #16307A;
  --navy-dark: #102358;
  --gold: #F4B52A;
  --link: #1F5FBF;

  --dark: #1C2B3A;
  --text: #1C2B3A;
  --text-2: #5A6A7A;
  --text-3: #8A9BAB;
  --bg: #F4F5F7;
  --card: #FFFFFF;
  --muted: #F8F9FA;
  --border: #E2E8ED;

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;

  --shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.10);
}

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

[hidden] {
  display: none !important;
}

a {
  color: var(--link);
  text-decoration: none;
}

a:hover {
  color: var(--navy);
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.2;
}
