/* common.css — shared across all pages */

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

:root {
  --primary: #2a9d8f;
  --primary-light: #d3eeea;
  --primary-subtle: #edf7f6;
  --text: #1a1a1e;
  --text-secondary: #5a5a5a;
  --text-tertiary: #8a8a8a;
  --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);
}
