/* ============================================================
   Maaß IT — Base layer
   Light element defaults so specimens, cards and kits inherit
   the brand out of the box. Kept intentionally small.
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font: var(--font-body);
  color: var(--text-body);
  background: var(--surface-base);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  margin: 0 0 0.4em;
  color: var(--text-strong);
  font-family: var(--font-sans);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  text-wrap: balance;
}
h1 { font-size: var(--text-3xl); }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-xl); }

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

a { color: var(--text-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

::selection { background: var(--mit-orange); color: #fff; }

/* The `>_` terminal / ASCII motif — a signature brand device. */
.mit-prompt {
  font-family: var(--font-mono);
  font-weight: var(--weight-bold);
  color: var(--mit-orange);
  letter-spacing: var(--tracking-mono);
}
.mit-prompt::before { content: ">_"; }
