/* Ivy design system entry point.
   Pages link the token files directly as well; the imports here keep styles.css
   usable on its own. */
@import url("tokens/colors.css");
@import url("tokens/fonts.css");
@import url("tokens/spacing.css");
@import url("tokens/typography.css");

/* Ivy base styles — page-level defaults for designs built with this system.
   Tokens come from tokens/*.css (see the imports above). */
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text-primary);
}
a { color: var(--link); }
a:hover { color: var(--link-hover); }
::selection { background: var(--focus-ring); }
