*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }  
  
:root {  
  --bg:         #090B0D;  
  --bg2:        #0E1114;  
  --border:     #182026;  
  --muted:      #29333B;  
  --dim:        #59656E;  
  --text:       #93A0A8;  
  --bright:     #E6E9EB;  
  --accent:     #14B8A6;  
  --accent-dim: rgba(20,184,166,0.12);  
  --font-sans:  'Inter', system-ui, sans-serif;  
  --font-serif: 'Fraunces', Georgia, serif;  
  --font-mono:  'JetBrains Mono', monospace;  
}  
  
html { scroll-behavior: smooth; }  
  
body {  
  background: var(--bg);  
  color: var(--bright);  
  font-family: var(--font-sans);  
  font-size: 15px;  
  line-height: 1.7;  
  -webkit-font-smoothing: antialiased;  
  overflow-x: hidden;  
}  
  
a { color: inherit; text-decoration: none; }  
button { font-family: inherit; cursor: pointer; }  
