/* WorkSmarter AI — Global Styles
   Loaded on every page. Page-specific CSS is enqueued separately.
   Brand palette:
     --navy  #0D1B2A
     --teal  #14B8A6
     --teal2 #0C7A70
     --light #F1F5F9
     --warm  #FFF8F1
*/

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

:root {
  --navy:  #0D1B2A;
  --teal:  #14B8A6;
  --teal2: #0C7A70;
  --blue:  #3B82F6;
  --light: #F1F5F9;
  --warm:  #FFF8F1;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--navy);
  color: #fff;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; }
img { max-width: 100%; display: block; }
