/* © MK_Kasi · Projekt-Manager · Basis: Variablen, Reset, Typografie */

:root {
  /* Hintergründe */
  --bg:        #0b0c0f;
  --surface:   #14161b;
  --surface-2: #1c1f26;

  /* Rahmen */
  --border:        #2a2e38;
  --border-strong: #3a4050;

  /* Text */
  --text:       #e8eaef;
  --text-dim:   #8a909d;
  --text-muted: #5a606d;

  /* Kategorie-Akzentfarben */
  --c-knx:    #f5b400;
  --c-elektro:#22d3ee;
  --c-ema:    #ff4040;
  --c-net:    #4a9eff;
  --c-video:  #ec4899;
  --c-allg:   #6dd5a3;
  --c-pw:     #c084ff;

  /* Schriften */
  --display: 'Bricolage Grotesque', sans-serif;
  --body:    'Inter Tight', sans-serif;
  --mono:    'JetBrains Mono', monospace;

  /* Radien */
  --radius:    6px;
  --radius-sm: 4px;
}

/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.5;
  min-height: 100%;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

/* Gitternetz-Hintergrund (dezent) */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

/* Wasserzeichen-Klasse: außerhalb des Sichtbereichs, aber im DOM */
.mk-watermark {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  pointer-events: none;
  color: transparent;
}
.mk-watermark::after {
  content: 'MK_Kasi · Originalkonzept · Projekt-Manager · do-not-copy';
}
