/**
 * Typografie — nur System-Font-Auflösung (keine .woff/.ttf/.otf einbinden).
 * Familienbezeichnungen wie „SF Pro …“ werden vom Betriebssystem aufgelöst, wo vorhanden;
 * andere Plattformen nutzen system-ui / Fallback — keine Schrift-Redistribution.
 */

:root {
  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", system-ui, sans-serif;
  --font-text: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", system-ui, sans-serif;
  --font-mono: ui-monospace, Menlo, Consolas, monospace;
}

body {
  font-family: var(--font-text);
  font-size: 15px;
  line-height: 1.47059;
  letter-spacing: -0.022em;
  font-feature-settings: "kern" 1, "liga" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--text-main);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  font-weight: 600;
}

label,
.profile-label,
.dossier-section-title,
.settings-switch-title,
.form-section-break-title {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-muted);
}

.profile-value,
.card-metric-text strong {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
