/* Base reset + typo defaults — fed entirely by tokens.css */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-300);
  font-weight: var(--fw-regular);
  line-height: 1.5;
  color: var(--color-text-default);
  background: var(--color-surface-default);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 var(--space-4);
  font-weight: var(--fw-semibold);
  line-height: 1.2;
}

h1 { font-size: var(--fs-800); }
h2 { font-size: var(--fs-700); }
h3 { font-size: var(--fs-600); }
h4 { font-size: var(--fs-500); }
h5 { font-size: var(--fs-400); }
h6 { font-size: var(--fs-300); }

p { margin: 0 0 var(--space-4); }

a {
  color: var(--color-brand-primary);
  text-decoration: none;
}
a:hover { color: var(--color-brand-accent); }

img, svg, video { max-width: 100%; height: auto; display: block; }

button { font-family: inherit; }
