/* Mojave OS Dashboard — Base Styles */

:root {
  --orange:    #D06A3D;
  --teal:      #0A6B7C;
  --charcoal:  #1C1C1A;
  --sand:      #F5EDE0;
  --offwhite:  #FAF5EE;
  --orange-dim: #b85a30;
  --teal-dim:   #085a69;
  --text-primary:   #1C1C1A;
  --text-secondary: #5a5a56;
  --text-inverse:   #FAF5EE;
  --border:    rgba(28, 28, 26, 0.12);
  --radius:    8px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 3px rgba(28,28,26,0.08);
  --shadow-md: 0 4px 16px rgba(28,28,26,0.12);
  --transition: 160ms ease;
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  background: var(--offwhite);
  color: var(--text-primary);
  line-height: 1.5;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input {
  font-family: inherit;
}
