/* ================================================
   LEVEL AGENCY — BRAND CSS
   Tokens and base typography for leadscon-2026
   ================================================ */

:root {
  /* Colors */
  --color-black:        #000000;
  --color-white:        #ffffff;
  --color-accent:       #86D5F4;
  --color-accent-hover: #60C5E8;
  --color-border:       #D9DEF0;

  /* Typography */
  --font-display: 'Inter Tight', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  /* Font weights */
  --weight-regular: 400;
  --weight-medium:  500;
  --weight-bold:    700;
  --weight-black:   900;
}

/* Base resets */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; }
