/* Selbst-enthalten: keine externen Schriften, kein CDN, keine Tracker.
     Ein eingebundener Webfont übermittelte die IP jedes Besuchers an Dritte. */
  :root {
    --marke: #047857;
    --marke-hell: #059669;
    --grund: #FBFAF8;
    --blatt: #FFFFFF;
    --text: #1A211E;
    --text-leise: #5C6B64;
    --linie: #E4E7E5;
  }
  @media (prefers-color-scheme: dark) {
    :root {
      --marke: #34D399;
      --marke-hell: #6EE7B7;
      --grund: #0B0F0D;
      --blatt: #141A17;
      --text: #ECF1EE;
      --text-leise: #9DAAA3;
      --linie: #263029;
    }
  }
  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    background: var(--grund);
    color: var(--text);
    font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
                 "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  .huelle {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
  }
  main { width: 100%; max-width: 34rem; }

  .marke {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    margin-bottom: 2.5rem;
  }
  .marke svg { display: block; }
  .wortmarke {
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: -.02em;
  }
  .wortmarke span { color: var(--marke); }

  .status {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--marke);
    border: 1px solid var(--linie);
    background: var(--blatt);
    border-radius: 999px;
    padding: .35rem .85rem;
    margin-bottom: 1.5rem;
  }
  .punkt {
    width: .5rem; height: .5rem;
    border-radius: 50%;
    background: var(--marke);
    flex: none;
    animation: puls 2.4s ease-in-out infinite;
  }
  @keyframes puls {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: .45; transform: scale(.82); }
  }
  @media (prefers-reduced-motion: reduce) {
    .punkt { animation: none; }
  }

  h1 {
    font-size: clamp(1.9rem, 6vw, 2.9rem);
    line-height: 1.15;
    letter-spacing: -.03em;
    font-weight: 650;
    margin: 0 0 1.1rem;
  }
  h1 em {
    font-style: normal;
    color: var(--marke);
  }
  .fliess {
    font-size: 1.05rem;
    color: var(--text-leise);
    margin: 0 0 1rem;
    max-width: 30rem;
  }

  .strich {
    width: 3rem;
    height: 2px;
    background: var(--marke);
    border: 0;
    margin: 2rem 0;
    opacity: .55;
  }

  footer {
    border-top: 1px solid var(--linie);
    padding: 1.25rem 1.5rem;
  }
  .fussinhalt {
    max-width: 34rem;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem 1.5rem;
    align-items: center;
    font-size: .9rem;
    color: var(--text-leise);
  }
  footer a {
    color: var(--text-leise);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    padding: .25rem 0;
  }
  footer a:hover, footer a:focus-visible {
    color: var(--marke);
    border-bottom-color: var(--marke);
  }
  a:focus-visible {
    outline: 2px solid var(--marke);
    outline-offset: 3px;
    border-radius: 2px;
  }
  .jahr { margin-inline-start: auto; }
  @media (max-width: 26rem) {
    .jahr { margin-inline-start: 0; width: 100%; }
  }

/* --- Rechtstexte (Impressum / Datenschutz) --- */
.rechtstext {
  max-width: 44rem;
  margin: 0 auto;
  padding: 3rem 1.5rem 1rem;
}
.rechtstext h1 {
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  margin-bottom: 2rem;
}
.rechtstext h2 {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -.01em;
  margin: 2.25rem 0 .6rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--linie);
}
.rechtstext h2:first-of-type { border-top: 0; padding-top: 0; }
.rechtstext p, .rechtstext li {
  color: var(--text-leise);
  margin: 0 0 .9rem;
}
.rechtstext strong { color: var(--text); font-weight: 600; }
.rechtstext ul { padding-inline-start: 1.25rem; margin: 0 0 .9rem; }
.rechtstext li { margin-bottom: .35rem; }
.rechtstext a { color: var(--marke); text-decoration: none; border-bottom: 1px solid currentColor; }
.rechtstext a:hover { opacity: .75; }
.zurueck {
  display: inline-block;
  font-size: .9rem;
  color: var(--text-leise);
  text-decoration: none;
  margin-bottom: 2rem;
  border-bottom: 1px solid transparent;
}
.zurueck:hover, .zurueck:focus-visible { color: var(--marke); border-bottom-color: var(--marke); }
.stand { font-size: .875rem; margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid var(--linie); }
.kontaktzeile { margin: 0 0 .35rem; }

/* Logo-Flaeche: faerbt das `fill="currentColor"` im SVG. Bewusst hier statt als
   style=""-Attribut im HTML — sonst braeuchte die CSP 'unsafe-inline' fuer style-src. */
.marke svg { color: var(--marke); }
.textlink { color: var(--marke); text-decoration: none; border-bottom: 1px solid currentColor; }
.textlink:hover { opacity: .75; }
