/* ============================================================
   DNX Experience — Base element styling
   Light, kerned body type; tight headings.
   Vendored verbatim from the DNX Experience design system.
   ============================================================ */

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

body {
  margin: 0;
  background-color: var(--background);
  color: var(--text-body);
  font-family: var(--font-body);
  font-weight: var(--weight-regular);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  font-feature-settings: "rlig" 1, "calt" 1, "kern" 1;
  font-kerning: normal;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1 { font-size: var(--text-h1); letter-spacing: var(--tracking-heading); }
h2 { font-size: var(--text-h2); }
h3 { font-size: var(--text-h3); }
h4 { font-size: var(--text-h4); }

p { margin: 0; }

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--dur-base) ease, opacity var(--dur-base) ease;
}

code, pre, .dx-mono {
  font-family: var(--font-mono);
  font-feature-settings: "tnum" 1;
}

/* Eyebrow / caps label — recurs across the UI (stat labels, tags). */
.dx-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-regular);
  text-transform: uppercase;
  letter-spacing: var(--tracking-label);
  color: var(--text-muted);
}

/* The wordmark tag next to the logo. */
.dx-wordmark-tag {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-regular);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
}

/* Numeric figures — tabular for tables & stats. */
.dx-tnum { font-variant-numeric: tabular-nums; }
