:root {
  --bg: #ffffff;
  --panel: #f7f9f8;
  --ink: #172528;
  --muted: #657274;
  --line: #e0e8e6;
  --lineStrong: #c8d5d2;
  --jade: #147c6f;
  --amber: #b46a12;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  font-family: var(--sans);
  line-height: 1.5;
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100svh;
}

button,
a,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #0d6658;
  outline-offset: 2px;
}
