/* Global styles (canonical) */
:root{
  --brand-navy:#0f172a;
  --brand-accent:#3b82f6;
  --text-muted: rgb(107, 114, 128);
  --radius: 16px;
  --font-primary: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

html{scroll-behavior:smooth;}
body{
  margin:0;
  padding:0;
  font-family: var(--font-primary);
}

/* Keep some of the original baseline styles, but aligned to the brand */
h1{font-size:32px; margin-top:0; letter-spacing:-0.02em;}
p{color: var(--text-muted); font-size:15px; margin-bottom:10px; margin-top:5px;}

.brand-navy-bg{background: var(--brand-navy) !important;}

/* Header helpers */
#navbar{background: var(--brand-navy) !important;}
.nav-scrolled{
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* Generic card (kept from original style.css) */
.card{
  max-width: 620px;
  margin: 0 auto;
  padding: 16px;
  border: 1px solid lightgray;
  border-radius: var(--radius);
}
.card p:last-child{margin-bottom:0;}
