    :root {
      --bg: #0b1014;
      --card: #151b22;
      --accent: #35c96f;
      --accent-soft: #1f3b2b;
      --text: #f5f7fa;
      --muted: #9aa4b5;
      --danger: #ff6b6b;
      --shadow: 0 18px 40px rgba(0,0,0,0.45);
      --radius-lg: 18px;
      --radius-md: 10px;
      --radius-pill: 999px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    body {
      background: radial-gradient(circle at top, #182331 0, #05070a 55%, #020308 100%);
      color: var(--text);
      min-height: 100vh;
      display: flex;
      justify-content: center;
      padding: 40px 16px;
    }

    .page {
      width: 100%;
      max-width: 1120px;
    }

    .hero {
      display: grid;
      grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
      gap: 32px;
      margin-bottom: 40px;
      align-items: center;
    }

    @media (max-width: 880px) {
      .hero {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 4px 14px;
      border-radius: var(--radius-pill);
      background: rgba(53, 201, 111, 0.08);
      color: var(--accent);
      font-size: 13px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .badge-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--accent);
      box-shadow: 0 0 12px rgba(53, 201, 111, 0.8);
    }

    h1 {
      font-size: clamp(2.2rem, 3vw, 2.8rem);
      line-height: 1.15;
      margin-bottom: 14px;
    }

    h1 span.highlight {
      color: var(--accent);
    }

    .hero-sub {
      color: var(--muted);
      font-size: 15px;
      line-height: 1.6;
      margin-bottom: 22px;
      max-width: 560px;
    }

    .hero-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 26px;
    }

    .pill {
      padding: 6px 14px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(148, 163, 184, 0.35);
      font-size: 12px;
      color: var(--muted);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .pill-dot {
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: rgba(148, 163, 184, 0.9);
    }

    .pill--accent {
      border-color: rgba(53, 201, 111, 0.6);
      color: var(--accent);
      background: rgba(53, 201, 111, 0.06);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }

    .btn-primary {
      padding: 10px 22px;
      border-radius: var(--radius-pill);
      border: none;
      background: linear-gradient(135deg, #35c96f, #2aa45a);
      color: #020308;
      font-weight: 600;
      font-size: 14px;
      cursor: pointer;
      box-shadow: 0 12px 30px rgba(53, 201, 111, 0.35);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-primary span.icon {
      font-size: 16px;
    }

    .btn-ghost {
      padding: 9px 18px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(148, 163, 184, 0.4);
      background: transparent;
      color: var(--muted);
      font-size: 13px;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-ghost span.icon {
      font-size: 16px;
    }

    .hero-meta {
      margin-top: 10px;
      font-size: 12px;
      color: var(--muted);
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }

    .hero-meta span.dot {
      width: 4px;
      height: 4px;
      border-radius: 999px;
      background: rgba(148, 163, 184, 0.7);
    }

    .hero-card {
      background: radial-gradient(circle at top left, #1f2933 0, #0b1014 55%, #05070a 100%);
      border-radius: var(--radius-lg);
      padding: 20px 20px 18px;
      box-shadow: var(--shadow);
      border: 1px solid rgba(148, 163, 184, 0.25);
      position: relative;
      overflow: hidden;
    }

    .hero-card::before {
      content: "";
      position: absolute;
      inset: -40%;
      background:
        radial-gradient(circle at 10% 0, rgba(53, 201, 111, 0.18), transparent 55%),
        radial-gradient(circle at 90% 100%, rgba(56, 189, 248, 0.16), transparent 55%);
      opacity: 0.9;
      pointer-events: none;
    }

    .hero-card-inner {
      position: relative;
      z-index: 1;
    }

    .hero-card-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 14px;
    }

    .hero-card-title {
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--muted);
    }

    .hero-card-badge {
      font-size: 11px;
      padding: 4px 10px;
      border-radius: var(--radius-pill);
      background: rgba(15, 23, 42, 0.7);
      border: 1px solid rgba(148, 163, 184, 0.4);
      color: var(--muted);
    }

    .hero-card-main {
      margin-bottom: 16px;
    }

    .hero-card-main h2 {
      font-size: 18px;
      margin-bottom: 6px;
    }

    .hero-card-main p {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.5;
    }

    .hero-card-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      margin-bottom: 14px;
    }

    .hero-mini {
      background: rgba(15, 23, 42, 0.85);
      border-radius: var(--radius-md);
      padding: 10px 11px;
      border: 1px solid rgba(148, 163, 184, 0.35);
      font-size: 11px;
    }

    .hero-mini-label {
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--muted);
      margin-bottom: 4px;
    }

    .hero-mini-value {
      font-size: 13px;
      font-weight: 600;
    }

    .hero-mini-value span {
      color: var(--accent);
    }

    .hero-card-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 11px;
      color: var(--muted);
    }

    .hero-card-footer span.strong {
      color: var(--accent);
      font-weight: 600;
    }

    .hero-card-footer span.danger {
      color: var(--danger);
      font-weight: 500;
    }

    .section {
      background: rgba(10, 15, 22, 0.96);
      border-radius: var(--radius-lg);
      border: 1px solid rgba(148, 163, 184, 0.25);
      padding: 22px 20px 20px;
      margin-bottom: 20px;
    }

    .section-header {
      margin-bottom: 14px;
    }

    .section-kicker {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--muted);
      margin-bottom: 4px;
    }

    .section-title {
      font-size: 18px;
      margin-bottom: 4px;
    }

    .section-sub {
      font-size: 13px;
      color: var(--muted);
      max-width: 720px;
      line-height: 1.6;
    }

    .section-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      margin-top: 10px;
    }

    @media (max-width: 880px) {
      .section-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 640px) {
      .section-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .card {
      background: radial-gradient(circle at top, #151b22 0, #05070a 80%);
      border-radius: var(--radius-md);
      border: 1px solid rgba(148, 163, 184, 0.3);
      padding: 12px 12px 11px;
      font-size: 13px;
    }

    .card-label {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--muted);
      margin-bottom: 4px;
    }

    .card-title {
      font-weight: 600;
      margin-bottom: 4px;
    }

    .card-body {
      font-size: 12px;
      color: var(--muted);
      line-height: 1.5;
    }

    .card-tag-row {
      margin-top: 6px;
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .tag {
      font-size: 11px;
      padding: 3px 8px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(148, 163, 184, 0.35);
      color: var(--muted);
    }

    .tag--accent {
      border-color: rgba(53, 201, 111, 0.7);
      color: var(--accent);
      background: rgba(53, 201, 111, 0.06);
    }

    .section-columns {
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
      gap: 18px;
      margin-top: 6px;
    }

    @media (max-width: 800px) {
      .section-columns {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .list {
      list-style: none;
      margin-top: 6px;
      font-size: 13px;
      color: var(--muted);
    }

    .list li {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      margin-bottom: 6px;
      line-height: 1.5;
    }

    .list-bullet {
      margin-top: 5px;
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: rgba(148, 163, 184, 0.9);
    }

    .list-bullet--accent {
      background: var(--accent);
      box-shadow: 0 0 10px rgba(53, 201, 111, 0.7);
    }

    .footer-note {
      font-size: 11px;
      color: var(--muted);
      text-align: right;
      margin-top: 6px;
    }
	/* Platzhalter, damit der Top-Button nichts verschiebt */
.back-top-wrapper {
  position: relative;
  height: 50px;
}

/* Zurück-Button oben rechts */
.btn-back-top {
  position: absolute;
  right: 0;
  top: 0;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.7);
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  backdrop-filter: blur(4px);
  transition: 0.2s ease;
}

.btn-back-top:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Footer */
footer.footer {
  width: 100%;
  max-width: 1120px;
  margin: 40px auto 0;
  padding: 22px 20px;
  background: rgba(10, 15, 22, 0.96);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: var(--shadow);
  font-size: 13px;
  color: var(--muted);
}

footer.footer ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

footer.footer a {
  color: var(--muted);
  text-decoration: none;
}

footer.footer a:hover {
  color: var(--accent);
}

/* Footer-Zurück-Button */
.btn-back {
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  transition: 0.2s ease;
}

.btn-back:hover {
  border-color: var(--accent);
  color: var(--accent);
}
#dnw-assist {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #222;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid #444;
  z-index: 9999;
}

#dnw-chat {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 300px;
  background: #111;
  border: 1px solid #444;
  border-radius: 8px;
  padding: 10px;
  color: #eee;
  z-index: 9999;
}
.doc-list {
  padding-left: 20px;
  margin-top: 10px;
}

.doc-list li {
  margin-bottom: 6px;
  list-style: disc;
}

.doc-list a {
  color: var(--accent);
  text-decoration: none;
}

.doc-list a:hover {
  text-decoration: underline;
}

