/* The Ghost — base resets and the few global rules consumers should inherit. */
*,*::before,*::after{box-sizing:border-box}
body{margin:0;font-family:var(--font-body);font-size:var(--body-md);line-height:var(--leading-body);color:var(--text-body);-webkit-font-smoothing:antialiased;text-wrap:pretty}
h1,h2,h3,h4{font-family:var(--font-display);line-height:var(--leading-display);letter-spacing:var(--tracking-display);margin:0;font-weight:400}
p{margin:0 0 var(--sp-4)}
a{color:var(--link);text-decoration:underline;text-decoration-thickness:2px;text-underline-offset:3px}
a:hover{color:var(--link-hover);text-decoration-thickness:4px}
a:active{opacity:0.7}
::selection{background:var(--ground-lime);color:var(--ink)}
/* Motion: the system does not bounce, fade or ease. Things cut, or they shift 2px. */
:root{
  --motion-cut:0ms;            /* @kind other */
  --motion-shift:90ms;         /* @kind other */
  --motion-ease:steps(1,end);  /* @kind other */
}
