/* Element defaults. Consumers get these for free by linking styles.css. */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--surface-page);
  color: var(--text-primary);
  font: var(--type-body);
  letter-spacing: var(--ls-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, h5, h6 { margin: 0; font-family: var(--font-display); font-weight: var(--fw-regular); letter-spacing: var(--ls-title); color: var(--text-primary); }
h1 { font-size: var(--fs-display-md); line-height: var(--lh-display-sm); letter-spacing: var(--ls-display); }
h2 { font-size: var(--fs-display-sm); line-height: var(--lh-display-sm); }
h3 { font-size: var(--fs-title-lg); line-height: var(--lh-title); font-weight: var(--fw-medium); }
h4 { font-size: var(--fs-title-md); line-height: var(--lh-title); font-family: var(--font-sans); font-weight: var(--fw-semibold); }
h5, h6 { font-size: var(--fs-title-sm); line-height: var(--lh-snug); font-family: var(--font-sans); font-weight: var(--fw-semibold); }
p { margin: 0 0 var(--space-4); text-wrap: pretty; }
p:last-child { margin-bottom: 0; }
small { font-size: var(--fs-caption); }
strong, b { font-weight: var(--fw-medium); }
code, kbd, samp, pre { font-family: var(--font-mono); font-size: 0.92em; letter-spacing: var(--ls-mono); }
hr { border: 0; border-top: var(--rule-hairline); margin: var(--space-6) 0; }
a { color: var(--text-link); text-decoration: none; text-underline-offset: 3px; text-decoration-thickness: 1px; text-decoration-color: var(--border-default); transition: var(--transition-color); }
a:hover { color: var(--text-link-hover); text-decoration: underline; text-decoration-color: currentColor; }
a:active { color: var(--brass-700); }
a:focus-visible { outline: none; border-radius: var(--radius-xs); box-shadow: var(--ring-focus); }
:where(button, input, select, textarea) { font: inherit; letter-spacing: inherit; color: inherit; }
:where(button) { cursor: pointer; }
:where(button:disabled) { cursor: not-allowed; }
::selection { background: var(--brass-200); color: var(--n-900); }
:focus-visible { outline: none; }
img, svg, video { display: block; max-width: 100%; }
table { border-collapse: collapse; }
/* Numbers in tables, money, and ID digits align in columns. */
.tabular, td, th { font-variant-numeric: tabular-nums; }
/* Long identifiers (hashes, tokens, ID numbers) break instead of overflowing. */
.identifier { font: var(--type-mono); word-break: break-all; }
