/* common.css — shared across all pages */
/* Colors: keep in sync with packages/shared/src/colors.ts */

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

:root {
  --primary: #2d5a3d;
  --primary-light: #d6e4da;
  --primary-subtle: #eff1ed;
  --text: #1a2e1a;
  --text-secondary: #5c6b5c;
  --text-tertiary: #8a9689;
  --bg: #f7f8f6;
  --bg-white: #ffffff;
  --bg-subtle: #eff1ed;
  --card-border: rgba(0, 0, 0, 0.06);
  --border: #d9dcd6;
  --border-soft: #eaece8;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--primary);
}
