/* Moneyspan — shared chrome.
   Page-specific styles (container width, body line-height, nav wrapper,
   footer, hero/sections) live in each page's inline <style> block. */

:root {
  --navy: #1e3a5f;
  --navy-deep: #152a46;
  --navy-light: #2a4a75;
  --green: #3a9b57;
  --green-bright: #4caf50;
  --green-dark: #2d7a42;
  --blue: #2563eb;
  --blue-bright: #3b82f6;
  --blue-dark: #1d4ed8;
  --gold: #d4a84a;
  --gold-soft: #e6c577;
  --ink: #1a1f2e;
  --body: #3a4355;
  --muted: #6b7280;
  --line: #e5e7eb;
  --cream: #faf8f3;
  --surface: #ffffff;
  --surface-alt: #f7f9fb;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.brand img { width: 32px; height: 32px; border-radius: 7px; }
.nav-right { display: flex; align-items: center; gap: 22px; }
.nav-link {
  color: var(--body);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--ink); }
.nav-link[aria-current="page"] { color: var(--ink); font-weight: 600; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: var(--navy);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--navy-deep); }

@media (max-width: 560px) {
  .nav-link { display: none; }
}
