/* ── Reset & base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #07111E;
  --bg-nav:      rgba(7, 17, 30, 0.85);
  --bg-card:     #0D1B2E;
  --bg-card-dim: #091422;
  --blue:        #2563EB;
  --blue-light:  #60A5FA;
  --cyan:        #22D3EE;
  --text:        #EFF4FF;
  --text-sub:    #CBD5E1;
  --text-dim:    #94A3B8;
  --border:      #132035;
  --border-glow: rgba(59, 130, 246, 0.25);
  --radius:      14px;
  --nav-h:       64px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
