*, *::before, *::after { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body {
  margin: 0;
  background: var(--surface-page);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
}
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); color: var(--text-display); font-weight: var(--fw-medium); letter-spacing: var(--ls-title); line-height: var(--lh-title); }
p { margin: 0; text-wrap: pretty; }
img, video { display: block; max-width: 100%; }
a { color: var(--text-display); text-decoration: none; border-bottom: 1px solid var(--line-hairline); transition: border-color var(--t-hover), color var(--t-hover); }
a:hover { color: var(--text-display); border-bottom-color: var(--line-strong); }
a:focus-visible, button:focus-visible { outline: 1px solid var(--line-strong); outline-offset: 3px; }
::selection { background: var(--ink-900); color: var(--paper); }
