/* ── Variables & reset ── */
:root {
  --accent:     #6366f1;
  --accent-l:   #818cf8;
  --bg:         #0f1117;
  --bg-card:    #1a1d27;
  --bg-dark:    #13151f;
  --border:     #2d3048;
  --text:       #e2e8f0;
  --text-muted: #64748b;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, sans-serif;
  margin: 0;
}

/* ── Navbar ── */
.navbar { background: var(--bg-card) !important; border-bottom: 1px solid var(--border); padding: .9rem 0; }
.brand-name { color: var(--accent); font-weight: 800; font-size: 1.1rem; letter-spacing: .03em; }
.brand-sub  { color: var(--text-muted); font-size: .72rem; font-weight: 400; }

/* ── Footer ── */
footer { background: var(--bg-dark); border-top: 1px solid var(--border); padding: 2.5rem 0; }
footer a { color: var(--accent-l); text-decoration: none; }
footer a:hover { text-decoration: underline; }
.disclaimer { font-size: .73rem; color: #374151; margin-top: .75rem; }

/* ── Shared section labels ── */
.section-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--accent-l); font-weight: 600; }
.section-title { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; margin-top: .4rem; }
