html {
  color-scheme: light dark;
}

body {
  font-family: var(--fs-font-body);
  font-size: var(--fs-text-base);
  line-height: var(--fs-leading-normal);
  color: var(--fs-color-text);
  background: var(--fs-color-surface);
}

h1, h2, h3 {
  font-family: var(--fs-font-heading);
  line-height: var(--fs-leading-tight);
  margin: 0;
}

h1 { font-size: var(--fs-text-xl); font-weight: var(--fs-weight-bold); }
h2 { font-size: var(--fs-text-lg); font-weight: var(--fs-weight-bold); }
h3 { font-size: var(--fs-text-md); font-weight: var(--fs-weight-bold); }

p {
  margin: 0;
}

.muted {
  color: var(--fs-color-text-muted);
}

.h2 {
  font-size: var(--fs-text-lg);
  font-weight: var(--fs-weight-bold);
}

.code {
  font-family: var(--fs-font-mono);
  font-size: var(--fs-text-sm);
  line-height: var(--fs-leading-relaxed);
  white-space: pre-wrap;
  margin: 0;
}

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

:focus-visible {
  outline: 2px solid var(--fs-color-primary);
  outline-offset: 2px;
}

.field-help {
  display: block;
  margin-top: var(--fs-space-2xs);
  font-size: var(--fs-text-sm);
  color: var(--fs-color-text-muted);
}
