
/* ===== VARIABLEN ===== */
:root {
  --bg: #0d0d14;
  --card: #13131f;
  --border: #1e1e30;
  --yellow: #f5c842;
  --blue: #4fa8ff;
  --green: #4dffb0;
  --orange: #ff9f4a;
  --pink: #ff6b9d;
  --purple: #b87aff;
  --text: #e8e8f0;
  --muted: #7070a0;
}

/* ===== RESET ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Syne', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

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

/* ===== LAYOUT ===== */
main {
  max-width: 920px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  position: relative;
  z-index: 1;
}

/* ===== HEADINGS ===== */
h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 24px;
}

h2 {
  font-size: 1.6rem;
  margin: 48px 0 16px;
}

h3 {
  font-size: 1.2rem;
  margin: 32px 0 12px;
}

/* ===== TEXT ===== */
p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 14px;
}

strong {
  color: var(--text);
}

/* ===== LINKS ===== */
a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ===== LISTEN ===== */
ul {
  margin: 14px 0 20px 18px;
}

ul li {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 6px;
}

/* Inhaltsübersicht */
.index {
  list-style: none;
  padding-left: 0;
}

.index-link {
  display: inline-block;
  padding: 4px 0;
}

/* DSGVO-Listen */
.m-elements {
  list-style: none;
  padding-left: 0;
}

.m-elements li {
  margin-bottom: 12px;
}

/* Glossar */
.glossary {
  list-style: none;
  padding-left: 0;
}

.glossary li {
  margin-bottom: 14px;
}

/* ===== SEAL ===== */
.seal {
  margin-top: 60px;
  text-align: center;
  font-size: 12px;
}

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid var(--border);
  padding: 22px 24px;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

footer span {
  color: var(--orange);
}

footer a {
  color: inherit;
}

footer a:hover {
  color: var(--blue);
}
