/* Inquiro — base element styling + small utilities.
   Tokens only; no component classes (those live in /components). */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: var(--surface-page);
  color: var(--text-strong);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

a {
  color: var(--blue);
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

/* Headings — Space Grotesk display, tight leading */
h1, h2, h3, h4 {
  margin: 0 0 var(--space-2);
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  color: var(--text-heading);
  line-height: var(--leading-snug);
  letter-spacing: var(--tracking-tight);
}
h1 { font-size: var(--text-3xl); line-height: var(--leading-tight); }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-lg); }

p {
  margin: 0 0 var(--space-3);
  color: var(--text-body);
  line-height: var(--leading-normal);
}

/* Mono eyebrow — the brand's signature label treatment */
.inq-eyebrow {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--text-faint);
}

/* Selection */
::selection {
  background: var(--lime);
  color: var(--lime-ink);
}
