/* Blue Bridge Logic — base element styles (minimal; tokens do the work) */
* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--surface-page);
  color: var(--text-body);
  font-family: var(--font-sans);
  font-size: var(--text-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 { margin: 0; color: var(--text-body); text-wrap: balance; }
h1, h2 { font-family: var(--font-serif); font-weight: var(--weight-semibold); }
h1 { font-size: var(--text-h1); line-height: var(--lh-h1); letter-spacing: var(--ls-h1); }
h2 { font-size: var(--text-h2); line-height: var(--lh-h2); letter-spacing: var(--ls-h2); }
h3 { font-family: var(--font-sans); font-weight: var(--weight-semibold); font-size: var(--text-h3); line-height: var(--lh-h3); }
h4 { font-family: var(--font-sans); font-weight: var(--weight-semibold); font-size: var(--text-h4); line-height: var(--lh-h4); }

p { margin: 0; text-wrap: pretty; }

a { color: var(--text-link); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; text-decoration-color: var(--blue-300); transition: color var(--duration-fast) var(--ease-out); }
a:hover { color: var(--action-primary-hover); text-decoration-color: currentColor; }

:focus-visible { outline: 2px solid var(--focus-ring); outline-offset: 2px; border-radius: 2px; }

::selection { background: var(--blue-200); color: var(--ink-900); }

/* Eyebrow label */
.bbl-overline {
  font-family: var(--font-sans);
  font-size: var(--text-overline);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--ls-overline);
  text-transform: uppercase;
  color: var(--text-accent);
}
