/* VIRCANSASTUDIO — Base element defaults built on the tokens.
 * Kept minimal: resets, document typography, selection, focus-visible, helpers. */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-md);
  line-height: var(--lh-normal);
  color: var(--text-body);
  background: var(--bg-app);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv01";
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--text-strong);
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-tight);
  margin: 0;
}

p { margin: 0; text-wrap: pretty; }

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

code, kbd, samp, pre { font-family: var(--font-mono); }

::selection { background: var(--vs-yellow); color: var(--vs-black); }

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

hr { border: none; border-top: 1px solid var(--border-default); margin: var(--space-7) 0; }

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

/* ---- Editorial helpers ---- */
/* Mono micro-label kicker: uppercase + tracked, used above headings */
.vs-kicker {
  font-family: var(--font-mono);
  font-size: var(--text-2xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--text-subtle);
}

/* Hairline rule */
.vs-hairline { height: 1px; background: var(--border-default); border: 0; }
