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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  color: var(--color-text-light);
  background-color: var(--color-bg-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: var(--font-size-hero); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }

p {
  color: var(--color-text-muted);
  line-height: var(--line-height-body);
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul, ol {
  list-style: none;
}

/* Light section text overrides */
.docuty-section--light p,
.docuty-section--light h1,
.docuty-section--light h2,
.docuty-section--light h3 {
  color: var(--color-text-dark);
}

.docuty-section--light p {
  color: #555555;
}

/* Accent color utility */
.text-accent { color: var(--color-accent); }
.bg-accent    { background-color: var(--color-accent); }
