@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

:root {
  --bg:           #08090c;
  --bg2:          #0d0f14;
  --bg3:          #12151c;
  --bg4:          #171b24;
  --border:       #1c2130;
  --border-bright:#263044;
  --blue:         #3b82f6;
  --blue-dim:     #1e3a6e;
  --blue-bright:  #60a5fa;
  --blue-glow:    rgba(59,130,246,0.15);
  --teal:         #2dd4bf;
  --teal-dim:     #0f4f4a;
  --text:         #c4cfe0;
  --text-dim:     #5e6f88;
  --text-bright:  #edf2fa;
  --display:      'Fraunces', serif;
  --body:         'DM Sans', sans-serif;

  --nav-h:        60px;
  --radius:       10px;
  --radius-lg:    16px;
  --transition:   0.25s cubic-bezier(0.4,0,0.2,1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

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

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--border-bright); border-radius: 99px; }
