/* Blindspot shared design tokens + base reset.
   Linked by both index.html (landing) and dashboard.html. */

@font-face {
  font-family: 'Aeonik';
  src: url('../assets/fonts/Aeonik-regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Arbeit';
  src: url('../assets/fonts/Arbeit-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Arbeit';
  src: url('../assets/fonts/Arbeit-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

:root {
  /* Palette */
  --bg: #FAFAF8;
  --bg-alt: #F0EFEB;
  --text: #201E1D;
  --text-muted: #6B6462;
  --coral: #FE795D;
  --coral-dark: #e56a50;
  --purple: #9B78F4;
  --purple-light: #B49AF7;
  --white: #FFFFFF;
  --black: #1A1A1A;
  --border: #E0DEDA;
  --radius: 12px;

  /* Type */
  --font-display: 'Aeonik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Arbeit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a:hover {
  text-decoration: underline;
}
