/* === Reset & Base === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --page-bg: #f3f5f7;
  --panel-bg: #ffffff;
  --panel-border: #dfe5ea;
  --text-primary: #1f2933;
  --text-secondary: #5f6e79;
  --text-muted: #9aa1a9;
  --accent: #19a187;
  --accent-dark: #168f79;
  --accent-soft: #dbe9e7;
  --accent-soft-hover: #eef6f4;
}

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
