/* style.css — monochrom-minimalistisches "Neozen"-Theme.
   SSoT für Schriften, Farben, Abstände. Alles lokal, keine externen Loads. */

/* ===== Lokale Schrift (offline / GDPR — nichts wird extern geladen) ===== */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;          /* Variable Font: deckt alle Gewichte ab */
  font-display: swap;
  src: url("fonts/InterVariable.woff2") format("woff2");
}

:root {
  /* Monochrome Basis (Neozen: heller, neutraler Grund + fast-schwarze Schrift) */
  --bg: #f4f4f2;
  --bg-soft: #ececea;
  --card: #ffffff;
  --ink: #0a0a0a;        /* fast schwarz — Big Type / Headlines */
  --ink-2: #343434;
  --muted: #8c8c89;      /* Grau für Sekundärtext */
  --line: #e6e6e2;

  /* Schwarz ist der "Akzent" / die Brand-Farbe im monochromen System */
  --accent: #0a0a0a;
  --accent-soft: #efefec;

  /* Zurückgenommene semantische Töne — nur für Stand/Schuld, sonst Monochrom */
  --good: #3f7d54;
  --good-soft: #eef3ef;
  --debt: #b1493c;
  --debt-soft: #f6ece9;

  --radius: 16px;
  --gap: 16px;
  /* Sehr dezenter Schatten statt Glow — Minimalismus lebt von dünnen Linien */
  --shadow: 0 1px 2px rgba(10, 10, 10, 0.04), 0 18px 40px -28px rgba(10, 10, 10, 0.22);

  --side-collapsed: 72px;
  --side-expanded: 240px;

  --font-ui: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-ui);
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "cv05" 1, "ss01" 1; /* feinere Inter-Glyphen */
}

/* ===== Sidebar ===== */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: var(--side-collapsed);
  background: var(--card);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  padding: 18px 14px;
  overflow: hidden;
  z-index: 40;
  transition: width 0.26s cubic-bezier(0.32, 0.72, 0, 1);
}
.sidebar:hover { width: var(--side-expanded); box-shadow: 28px 0 56px -34px rgba(10, 10, 10, 0.3); }

.side-brand,
.nav-btn,
.side-foot {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

.side-ico {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.side-ico svg { width: 22px; height: 22px; display: block; }

/* Text erscheint erst beim Ausfahren */
.side-text {
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.sidebar:hover .side-text { opacity: 1; transform: none; }

.side-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
  padding: 4px 0 26px;
}

.side-nav { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.nav-btn {
  border: none;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 7px 0;
  border-radius: 13px;
  cursor: pointer;
  transition: color 0.16s ease, background 0.16s ease;
  text-align: left;
}
.nav-btn:hover { color: var(--ink); background: var(--bg-soft); }
.nav-btn.active { color: var(--ink); }
.nav-btn.active .side-ico {
  background: var(--accent);
  color: #fff;
  border-radius: 13px;
}

.side-foot {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}
.side-foot .side-ico { color: var(--ink); }
.side-foot .side-date { display: block; font-weight: 700; color: var(--ink); }
.side-foot .side-kw { display: block; font-size: 12px; margin-top: 1px; }

/* ===== Hauptbereich ===== */
.main {
  margin-left: var(--side-collapsed);
  max-width: 900px;
  padding: 64px 48px 100px;
}

.page { display: none; }
.page.show { display: block; animation: fade 0.24s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.page-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 36px;
}
.page-head h1 {
  /* Big Type — große, tighte, kräftige Headline */
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(38px, 6vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin: 0;
}
.datekw {
  margin-left: auto;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  background: var(--card);
  border: 1px solid var(--line);
  padding: 8px 15px;
  border-radius: 999px;
  white-space: nowrap;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
}

/* ----- Hero / Stand ----- */
.hero {
  text-align: center;
  padding: 56px 30px 38px;
}
.balance-num {
  /* Big Type — der visuelle Ankerpunkt der ganzen App */
  font-family: var(--font-display);
  font-size: clamp(78px, 17vw, 140px);
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: -0.05em;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
.balance-num.ok { color: var(--good); }
.balance-num.debt { color: var(--debt); }
.balance-num.neutral { color: var(--ink); }
.balance-label { color: var(--muted); font-size: 15px; margin-top: 16px; letter-spacing: -0.01em; }

.sub-stats {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 34px 0 28px;
}
.sub-stats div {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 14px 20px;
  min-width: 108px;
}
.sub-stats span { font-size: 12px; color: var(--muted); letter-spacing: 0.01em; }
.sub-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-top: 3px;
}

.hint { color: var(--muted); font-size: 13px; margin: 20px 0 0; text-align: center; }

/* ----- Buttons ----- */
.btn {
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 13px 20px;
  border-radius: 13px;
  cursor: pointer;
  transition: transform 0.08s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.btn:hover { transform: translateY(-1px); border-color: #d9d9d4; }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: 0.5; cursor: default; transform: none; box-shadow: none; }
/* Primäraktion = schwarz (Neozen: kräftiger, monochromer Solid-Button) */
.btn.primary { background: var(--accent); border-color: transparent; color: #fff; }
.btn.primary:hover { background: #000; }
.btn.good { background: var(--good); border-color: transparent; color: #fff; }
.btn.danger { background: var(--debt); border-color: transparent; color: #fff; }
.btn.good:hover, .btn.danger:hover { filter: brightness(1.05); }
.btn.ghost { background: transparent; }
.btn.small { padding: 10px 15px; font-size: 14px; }
.btn.icon-only { width: 42px; padding: 0; height: 42px; font-size: 20px; line-height: 1; }
.btn.big { padding: 18px 30px; font-size: 17px; width: 100%; max-width: 360px; }

/* Lade-/Erfolgszustand (z. B. „Stand jetzt senden"): Spinner bzw. Häkchen + Text. */
.btn.is-busy, .btn.is-done {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.btn.is-done { color: var(--good); border-color: #cfe0d4; background: var(--good-soft); }
.btn-spinner {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: btn-spin 0.6s linear infinite;
  opacity: 0.85;
}
.btn-check { font-weight: 700; line-height: 1; }
@keyframes btn-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .btn-spinner { animation-duration: 1.4s; } }

.actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ----- Manuell ----- */
.manual-row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.manual-row input[type="text"] {
  flex: 1;
  min-width: 180px;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--font-ui);
  padding: 13px 16px;
  border-radius: 12px;
  font-size: 14px;
}
.manual-row input::placeholder { color: var(--muted); }
.manual-row input:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: transparent; }
.manual-row input[type="number"] {
  flex: 1;
  min-width: 150px;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--font-ui);
  padding: 13px 16px;
  border-radius: 12px;
  font-size: 14px;
}

/* ----- Korrektur ----- */
.correct-current {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.correct-current span { color: var(--muted); font-size: 13px; }
.correct-current strong {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}

/* ----- Kalender ----- */
.cal-head { display: flex; align-items: center; margin-bottom: 18px; }
.cal-nav { margin: 0 auto; display: flex; gap: 10px; align-items: center; }
.cal-month-label {
  min-width: 172px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.cal-grid { display: grid; grid-template-columns: 34px repeat(7, 1fr); gap: 7px; }
.cal-cell {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  position: relative;
}
.cal-cell.dow { background: transparent; border: none; color: var(--muted); font-weight: 600; aspect-ratio: auto; font-size: 12px; }
.cal-cell.kw { background: transparent; border: none; color: var(--muted); font-size: 11px; aspect-ratio: auto; font-weight: 600; }
.cal-cell.empty { background: transparent; border: none; }
.cal-cell.today { outline: 2px solid var(--accent); outline-offset: -1px; }
.cal-cell.walked { background: var(--good-soft); border-color: #cfe0d4; }
.cal-cell.walked .daynum { color: var(--good); }
.cal-cell .daynum { font-weight: 600; }
.cal-cell .paw { color: var(--good); line-height: 0; margin-top: 2px; }
.cal-cell .paw svg { width: 13px; height: 13px; display: block; }
.cal-cell .walk-count { color: var(--good); font-size: 10px; font-weight: 700; line-height: 1; margin-top: 1px; }

/* ----- Verlauf ----- */
.log-list { list-style: none; margin: 0; padding: 0; max-height: 480px; overflow-y: auto; }
.log-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.log-item:last-child { border-bottom: none; }
.badge {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  min-width: 42px;
  text-align: center;
  padding: 5px 9px;
  border-radius: 10px;
  font-size: 14px;
}
.badge.plus { background: var(--good-soft); color: var(--good); }
.badge.minus { background: var(--debt-soft); color: var(--debt); }
.log-item .reason { flex: 1; font-weight: 500; letter-spacing: -0.01em; }
.log-item .auto-tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1px 5px;
  margin-left: 6px;
}
.log-item .meta { color: var(--muted); font-size: 12px; white-space: nowrap; }
.log-item .del { color: var(--muted); cursor: pointer; background: none; border: none; font-size: 16px; padding: 2px 6px; border-radius: 8px; }
.log-item .del:hover { color: var(--debt); background: var(--debt-soft); }

.empty-hint { color: var(--muted); font-size: 14px; text-align: center; padding: 24px 0; }

/* ----- Anfangsstand-Dialog ----- */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.45);
  backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 60;
}
.overlay.show { display: flex; }
.modal {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px 32px;
  max-width: 400px;
  width: 100%;
  text-align: center;
}
.modal-paw { color: var(--ink); margin-bottom: 8px; }
.modal-paw svg { width: 40px; height: 40px; display: inline-block; }
.modal h2 { font-family: var(--font-display); font-weight: 700; font-size: 28px; letter-spacing: -0.03em; margin: 0 0 12px; }
.modal p { color: var(--ink); font-size: 14px; margin: 0 0 8px; }
.modal .modal-hint { color: var(--muted); font-size: 12px; margin-bottom: 22px; }
.modal input[type="number"] {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  margin-bottom: 14px;
}
.modal input[type="number"]:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: transparent; }
.setup-error { color: var(--debt); font-size: 13px; min-height: 18px; margin-bottom: 8px; }

/* ----- Auth-Dialog (Login / Registrieren / Reset) ----- */
.modal input[type="email"],
.modal input[type="password"],
.modal input[type="text"] {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 15px;
  padding: 13px 16px;
  border-radius: 12px;
  margin-bottom: 12px;
  text-align: left;
}
.modal input[type="email"]:focus,
.modal input[type="password"]:focus,
.modal input[type="text"]:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: transparent;
}
.modal input::placeholder { color: var(--muted); }

/* Passwortfeld mit Auge-Umschalter */
.pw-field { position: relative; margin-bottom: 12px; }
.pw-field input[type="password"],
.pw-field input[type="text"] {
  margin-bottom: 0;
  padding-right: 48px; /* Platz für den Auge-Button */
}
.pw-toggle {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  color: var(--muted);
  border-radius: 0 12px 12px 0;
  transition: color 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}
.pw-toggle:hover { color: var(--ink); }
.pw-toggle:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }
.pw-toggle svg { width: 20px; height: 20px; display: block; }
.pw-toggle .icon-eye-off { display: none; }
.pw-toggle[aria-pressed="true"] { color: var(--accent); }
.pw-toggle[aria-pressed="true"] .icon-eye { display: none; }
.pw-toggle[aria-pressed="true"] .icon-eye-off { display: block; }

.auth-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}
/* Text-Button im Link-Look — eine zentrale Klasse für alle „Link"-Buttons. */
.linklike {
  background: none;
  border: none;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  padding: 2px;
}
.linklike:hover { color: var(--ink); text-decoration: underline; }

/* ----- Eingeloggter Nutzer in der Sidebar ----- */
.side-user {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  padding-top: 14px;
  margin-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}
.side-user .side-ico { color: var(--ink); }
.side-user .side-email {
  display: block;
  font-weight: 700;
  color: var(--ink);
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.side-user .linklike { display: block; margin-top: 1px; }

/* ----- Sync-Toast ----- */
.sync-toast {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  z-index: 80;
  animation: fade 0.24s ease;
}
.sync-toast.error { background: var(--debt-soft); border-color: #e3c4be; color: var(--debt); }

@media (max-width: 560px) {
  .main { padding: 36px 18px 90px; }
  .cal-grid { grid-template-columns: 24px repeat(7, 1fr); gap: 5px; }
  .cal-cell { font-size: 11px; border-radius: 9px; }
  .log-item .meta { font-size: 11px; }
}

/* ===== Sprachauswahl ===== */
/* Damit der Sprach-Trigger oben rechts im Auth-Dialog sitzen kann. */
#auth-overlay .modal { position: relative; }

/* Pillen-Button oben rechts im Login (zeigt aktuelle Sprache, vorausgewählt). */
.lang-trigger {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px 6px 10px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.16s ease, background 0.16s ease;
}
.lang-trigger:hover { border-color: #d9d9d4; background: var(--card); }
.lang-trigger-flag { font-size: 16px; line-height: 1; }

/* RTL (z. B. Arabisch): Trigger nach links spiegeln. */
[dir="rtl"] .lang-trigger { right: auto; left: 14px; }

/* Sprachwähler-Dialog: etwas breiter, Kachel-Raster der Top 20. */
.lang-modal { max-width: 440px; }
.lang-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  max-height: 60vh;
  overflow-y: auto;
  margin-top: 8px;
  text-align: start;
}
.lang-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 13px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  text-align: start;
  transition: border-color 0.14s ease, background 0.14s ease, transform 0.08s ease;
}
.lang-opt:hover { border-color: #d9d9d4; background: var(--card); transform: translateY(-1px); }
.lang-opt.active { border-color: var(--accent); background: var(--accent-soft); }
.lang-flag { font-size: 20px; line-height: 1; flex: 0 0 auto; }
.lang-name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* RTL: Eingabefelder/Texte im Dialog rechtsbündig. */
[dir="rtl"] .modal input[type="email"],
[dir="rtl"] .modal input[type="password"],
[dir="rtl"] .modal input[type="text"] { text-align: right; }

@media (max-width: 560px) {
  .lang-grid { grid-template-columns: 1fr; }
}

/* ===== Profil ===== */
/* Mehrere Karten untereinander (Passwort / E-Mail / Reset). */
.profile-card { margin-bottom: 18px; }
.profile-card:last-child { margin-bottom: 0; }
.profile-h {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
/* Eigene Feld-Klasse (Karten liegen außerhalb von .modal, erben dessen Input-Stil nicht). */
.profile-field {
  display: block;
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 15px;
  font-family: var(--font-ui);
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 12px;
}
.profile-field::placeholder { color: var(--muted); }
.profile-field:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: transparent; }
/* Felder mit Auge-Umschalter: Abstand wandert auf den Wrapper, Platz rechts fürs Auge. */
.profile-card .pw-field { margin-bottom: 12px; }
.profile-card .pw-field .profile-field { margin-bottom: 0; padding-right: 48px; }
.profile-card .btn { margin-top: 4px; }
.profile-card .modal-hint { color: var(--muted); font-size: 13px; margin: 0 0 16px; }

/* RTL: Profilfelder rechtsbündig. */
[dir="rtl"] .profile-field { text-align: right; }

/* Empfänger-Textfeld (mehrzeilig): gleiche Optik wie .profile-field. */
textarea.report-emails {
  resize: vertical;
  min-height: 92px;
  line-height: 1.5;
}
/* Zwei Aktions-Buttons nebeneinander (umbrechend auf schmalen Geräten). */
.report-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.report-actions .btn { margin-top: 4px; }

/* ===== Info / Über ===== */
.about-card { text-align: center; }
.about-paw { color: var(--ink); margin-bottom: 10px; }
.about-paw svg { width: 44px; height: 44px; display: inline-block; }
.about-lead {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(19px, 3vw, 24px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 auto 16px;
  max-width: 32ch;
}
.about-text {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 56ch;
}
.about-h {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  margin: 30px 0 14px;
}
.about-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 56ch;
  text-align: start;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-list li {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 14px 16px 14px 44px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-2);
}
/* Pfoten-Marker statt klassischem Bullet. */
.about-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 16px;
  width: 16px;
  height: 16px;
  background: currentColor;
  color: var(--good);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><ellipse cx='6' cy='11.2' rx='1.9' ry='2.5'/><ellipse cx='9.7' cy='7.4' rx='1.9' ry='2.7'/><ellipse cx='14.3' cy='7.4' rx='1.9' ry='2.7'/><ellipse cx='18' cy='11.2' rx='1.9' ry='2.5'/><path d='M12 12.2c2.7 0 4.9 1.9 4.9 4.1 0 1.7-1.4 2.6-2.9 2.6-1 0-1.5-.4-2-.4s-1 .4-2 .4c-1.5 0-2.9-.9-2.9-2.6 0-2.2 2.2-4.1 4.9-4.1z'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><ellipse cx='6' cy='11.2' rx='1.9' ry='2.5'/><ellipse cx='9.7' cy='7.4' rx='1.9' ry='2.7'/><ellipse cx='14.3' cy='7.4' rx='1.9' ry='2.7'/><ellipse cx='18' cy='11.2' rx='1.9' ry='2.5'/><path d='M12 12.2c2.7 0 4.9 1.9 4.9 4.1 0 1.7-1.4 2.6-2.9 2.6-1 0-1.5-.4-2-.4s-1 .4-2 .4c-1.5 0-2.9-.9-2.9-2.6 0-2.2 2.2-4.1 4.9-4.1z'/></svg>") center / contain no-repeat;
}
/* RTL: Marker und Innenabstand spiegeln. */
[dir="rtl"] .about-list li { padding: 14px 44px 14px 16px; }
[dir="rtl"] .about-list li::before { left: auto; right: 16px; }

/* Kurzbeschreibung im Login-Dialog (vor den Eingabefeldern). */
.auth-about {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
  margin: 0 0 18px;
  text-align: center;
}
