/* Mindsherpa design tokens — teal palette */
:root {
  --teal-dark:   #2d8a8a;
  --teal-light:  #48b5a8;
  --teal-pale:   #e8f5f3;
  --bg-light:    #f8fafb;
  --text-dark:   #1a1a1a;
  --text-muted:  #666666;
  --text-light:  #999999;
  --border-color:#e8e8e8;
  --error:       #9F0712;

  --font:        -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  --font-brand:  'Work Sans', sans-serif;
}

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

html, body {
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  height: 100%;
}

textarea:focus, input:focus { outline: none; }
