/* ========================================
   TOKENS — Design System Custom Properties
   CordiAlban Dark Theme
   ======================================== */

:root {
  /* Background */
  --bg: #0C0B09;
  --bg2: #131210;
  --bg3: #1A1814;
  --bg4: #211F1B;

  /* Text */
  --text: #E8E2D8;
  --text2: #9B9484;
  --text3: #6B6459;

  /* Gold */
  --gold: #C8A46E;
  --gold2: #E4C07A;
  --gold3: #8B7345;

  /* Accent */
  --blue: #4A7FB5;

  /* Score Colors */
  --sa: #2D8B46;
  --sb: #6BAD4B;
  --sc: #D4A017;
  --sd: #D4652A;
  --se: #C42B2B;
  --sn: #6B6459;

  /* Pace */
  --pace: #2D8B46;
  --pace2: #38A856;
  --pace3: #1E6B33;

  /* Radius */
  --r: 12px;
  --r2: 8px;

  /* Fonts */
  --f1: 'Newsreader', Georgia, serif;
  --f2: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --f3: 'JetBrains Mono', 'Fira Code', monospace;

  /* Widths */
  --max-w: 1200px;
  --max-t: 680px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--f2);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: .02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection {
  background: rgba(200, 164, 110, 0.3);
  color: var(--text);
}
