/* =============================================
   BASE — Reset, Variables & Global
   ============================================= */

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

:root {
  --blue: #0081cc;
  --dk:   #004e7a;
  --lt:   #e8f3fb;
  --pale: #f2f8fd;
  --bg:   #f5f9ff;
  --white: #ffffff;
  --text: #0b1a2d;
  --mut:  rgba(11, 26, 45, .48);
  --bdr:  rgba(0, 129, 204, .13);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}
