/* ============================================================
   BASE — light reset + brand defaults
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: var(--text-md);
  line-height: var(--leading-normal);
  color: var(--text-body);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5 {
  font-family: var(--heading-family);
  font-weight: var(--heading-weight);
  letter-spacing: var(--heading-tracking);
  line-height: var(--leading-tight);
  color: var(--text-strong);
  margin: 0;
}

p { margin: 0; }

a {
  color: var(--text-link);
  text-decoration: none;
  font-weight: var(--fw-semibold);
}
a:hover { text-decoration: underline; text-underline-offset: 3px; }

button { font-family: inherit; }

:focus-visible {
  outline: none;
  box-shadow: var(--ring-focus);
  border-radius: var(--radius-sm);
}

::selection { background: var(--green-200); color: var(--green-900); }

/* Utility scaffolding used by cards & kits */
.ed-container { max-width: var(--container-xl); margin-inline: auto; padding-inline: var(--space-6); }
