/* global.css — starter styles using real SWS brand tokens.
   Full design system lives in:
   ../_shared/design-system/Share Wealth Systems Design System/
   Copy more tokens/components from there as you build. */

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

:root {
  --sws-navy-900: #0F1A2E;
  --sws-navy-800: #1B2A47; /* primary brand navy */
  --sws-blue-600: #2E78D6; /* primary CTA */
  --sws-gold-600: #D4A017;
  --sws-cream:    #FBF8F1;
  --sws-white:    #FFFFFF;
  --sws-neutral-700: #2F3A4A;
  --sws-neutral-200: #E2E7EF;

  --color-bg: var(--sws-white);
  --color-fg: var(--sws-navy-900);
  --color-cta: var(--sws-blue-600);

  --font-head: 'Manrope', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-fg);
  background: var(--color-bg);
  line-height: 1.6;
}

h1, h2, h3 { font-family: var(--font-head); line-height: 1.2; }

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--sws-neutral-200);
}

.site-header .brand { font-family: var(--font-head); font-weight: 800; color: var(--sws-navy-800); text-decoration: none; }
.site-header nav a { margin-left: 1.25rem; color: var(--sws-neutral-700); text-decoration: none; }

main { max-width: 920px; margin: 0 auto; padding: 3rem 1.5rem; }

.hero h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1rem; }

.cta {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.85rem 1.5rem;
  background: var(--color-cta);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.site-footer {
  background: var(--sws-navy-900);
  color: #c9d1dc;
  font-size: 0.85rem;
  padding: 2rem 1.5rem;
  text-align: center;
}
