@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

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

:root {
  --navy:       #0a0f1e;
  --navy-2:     #111827;
  --navy-3:     #1a2235;
  --navy-4:     #243049;
  --accent:     #3b82f6;
  --accent-dark:#2563eb;
  --accent-glow:#60a5fa;
  --green:      #10b981;
  --amber:      #f59e0b;
  --red:        #ef4444;
  --purple:     #8b5cf6;
  --text-1:     #f1f5f9;
  --text-2:     #94a3b8;
  --text-3:     #64748b;
  --border:     rgba(255,255,255,0.08);
  --border-2:   rgba(255,255,255,0.04);
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--navy);
  color: var(--text-1);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent-glow); text-decoration: none; }
a:hover { text-decoration: underline; }

::selection { background: var(--accent); color: #fff; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-2); }
::-webkit-scrollbar-thumb { background: var(--navy-4); border-radius: 3px; }

.container {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-wide {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}