:root {
  --bg: #f6f7fb;
  --surface: #ffffff;
  --ink: #14161c;
  --muted: #647082;
  --line: #e6e8f0;
  --accent: #4353ff;
  --accent2: #8b5cf6;
  --accent3: #06b6d4;
  --accent-ink: #ffffff;
  --accent-soft: #eef0ff;
  --danger: #b42318;
  --radius: 16px;
  --shadow-sm: 0 1px 2px rgba(20, 22, 28, 0.05), 0 4px 12px rgba(20, 22, 28, 0.05);
  --shadow-md: 0 4px 10px rgba(20, 22, 28, 0.06), 0 14px 34px rgba(67, 83, 255, 0.10);
  --grad: linear-gradient(120deg, var(--accent), var(--accent2) 60%, var(--accent3));
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  display: flex;
  flex-direction: column;
}
/* Sanfter Farbnebel im Hintergrund */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(560px 380px at 12% -6%, rgba(67, 83, 255, 0.10), transparent 65%),
    radial-gradient(620px 420px at 92% -10%, rgba(6, 182, 212, 0.09), transparent 65%),
    radial-gradient(700px 500px at 50% 115%, rgba(139, 92, 246, 0.08), transparent 70%);
}
.topbar, .phase-bar, .quick-bar, .chat, .composer-wrap { position: relative; z-index: 1; }

/* ---------- Kopfzeile ---------- */
.topbar {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}
.brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
.brand-logo { width: 26px; height: 26px; color: var(--ink); flex-shrink: 0; }
.brand-mark { font-weight: 800; font-size: 18px; letter-spacing: -0.3px; white-space: nowrap; }
.tabs { display: flex; gap: 4px; margin-left: auto; background: var(--bg); border: 1px solid var(--line); border-radius: 999px; padding: 4px; }
.tab {
  border: none;
  background: transparent;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 650;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.18s ease;
}
.tab:hover { color: var(--ink); }
.tab.active { background: var(--ink); color: #fff; box-shadow: var(--shadow-sm); }
.topbar-right { display: flex; align-items: center; gap: 10px; }
.profile-select {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 650;
  color: var(--ink);
  cursor: pointer;
  max-width: 160px;
  transition: border-color 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
}
.profile-select:hover, .profile-select:focus { border-color: var(--accent); outline: none; }
.badge {
  font-size: 11px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 999px;
  background: #fdecea;
  color: var(--danger);
  letter-spacing: 0.4px;
  white-space: nowrap;
}
.badge.ok { background: #e8f7ee; color: #178a50; }
.icon-btn {
  border: 1px solid var(--line);
  background: var(--surface);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  color: var(--ink);
  transition: all 0.15s ease;
}
.icon-btn:hover { border-color: var(--accent); color: var(--accent); transform: rotate(20deg); }

/* ---------- Phasen-Leiste ---------- */
.phase-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid var(--line);
}
.phase-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  font-weight: 800;
}
.phase-pills { display: flex; align-items: center; }
.pill {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  background: var(--surface);
  transition: all 0.25s ease;
  position: relative;
  z-index: 1;
}
/* Verbindungslinie zwischen den Pills */
.pill + .pill { margin-left: 22px; }
.pill + .pill::before {
  content: "";
  position: absolute;
  right: 100%;
  top: 50%;
  width: 26px;
  height: 2px;
  background: var(--line);
  z-index: -1;
}
.pill.done { background: var(--accent-soft); border-color: var(--accent); color: var(--accent); }
.pill.done + .pill::before { background: var(--accent); }
.pill.current {
  background: var(--grad);
  border-color: transparent;
  color: var(--accent-ink);
  transform: scale(1.18);
  box-shadow: 0 4px 14px rgba(67, 83, 255, 0.4);
}
.phase-name { font-size: 13px; color: var(--accent); font-weight: 700; }

/* ---------- Schnellaktionen (Chips nach Chat-Start) ---------- */
.quick-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid var(--line);
}
.quick {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 8px 15px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 650;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.18s ease;
  box-shadow: var(--shadow-sm);
}
.quick:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.quick .q-icon { font-size: 15px; }
.quick-nav { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }
.quick-active { border-color: var(--ink); background: var(--ink); color: #fff; }
.quick-canva { border-color: transparent; background: var(--grad); color: #fff; margin-left: auto; }
.quick-canva:hover { color: #fff; transform: translateY(-2px); }
.q-count, .c-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}
.chat-hint {
  align-self: center;
  margin-top: 6vh;
  color: var(--muted);
  font-size: 14px;
  border: 1px dashed var(--line);
  border-radius: 999px;
  padding: 10px 20px;
  background: var(--surface);
}

/* ---------- Chat ---------- */
.chat {
  flex: 1;
  overflow-y: auto;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.msg { display: flex; flex-direction: column; max-width: 92%; animation: rise 0.3s ease both; }
.msg.user { align-self: flex-end; align-items: flex-end; }
.msg.assistant { align-self: flex-start; }
.msg-role {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin: 0 8px 5px;
  font-weight: 800;
}
.bubble {
  padding: 15px 19px;
  border-radius: var(--radius);
  line-height: 1.65;
  font-size: 15px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  overflow-wrap: break-word;
}
.msg.assistant .bubble { border-top-left-radius: 6px; }
.msg.user .bubble {
  background: linear-gradient(135deg, #23262e, #14161c);
  color: #fff;
  border-color: transparent;
  border-top-right-radius: 6px;
}
.bubble p { margin: 0 0 10px; }
.bubble p:last-child { margin-bottom: 0; }
.bubble h1, .bubble h2, .bubble h3 { margin: 16px 0 8px; line-height: 1.25; letter-spacing: -0.3px; }
.bubble h1 { font-size: 20px; }
.bubble h2 { font-size: 17px; }
.bubble h3 { font-size: 15.5px; color: var(--accent); }
.bubble ul, .bubble ol { margin: 6px 0 10px; padding-left: 22px; }
.bubble li { margin: 4px 0; }
.bubble hr { border: none; border-top: 1px solid var(--line); margin: 14px 0; }
.bubble code { background: var(--accent-soft); color: #3644d9; padding: 1px 6px; border-radius: 6px; font-size: 13px; }
.msg.user .bubble code { background: rgba(255,255,255,0.15); color: #fff; }
.bubble blockquote { border-left: 3px solid var(--accent); margin: 8px 0; padding: 2px 12px; color: var(--muted); }

.codeblock {
  position: relative;
  margin: 12px 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f8f9fc;
  overflow: hidden;
}
.codeblock pre {
  margin: 0;
  padding: 14px;
  overflow-x: auto;
  font-size: 12.5px;
  line-height: 1.5;
  max-height: 340px;
  overflow-y: auto;
}
.codeblock .code-tools {
  display: flex;
  gap: 8px;
  padding: 7px 10px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  align-items: center;
}
.code-file { font-size: 12px; font-weight: 800; color: var(--accent); margin-right: auto; }
.code-btn {
  font-size: 12px;
  font-weight: 650;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 7px;
  padding: 4px 11px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.code-btn:hover { border-color: var(--accent); color: var(--accent); }

@keyframes pulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }
.typing { color: var(--muted); font-style: italic; font-size: 14px; padding: 4px 8px; animation: pulse 1.4s ease infinite; }

/* ---------- Startbildschirme ---------- */
.welcome {
  align-self: center;
  text-align: center;
  max-width: 720px;
  width: 100%;
  margin-top: 4vh;
  animation: rise 0.4s ease both;
}
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
}
.welcome h1 {
  color: var(--ink);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1.2px;
  margin: 0 0 12px;
  line-height: 1.1;
}
.welcome .lead { color: var(--muted); line-height: 1.7; font-size: 15.5px; max-width: 560px; margin: 0 auto; }
.welcome .btn { margin-top: 22px; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
  text-align: left;
}
.cards.wide { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
  position: relative;
}
.card .c-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 12px;
}
.card .c-step {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 12px;
  font-weight: 800;
  color: var(--line);
}
.card h3 { margin: 0 0 5px; font-size: 15px; letter-spacing: -0.2px; }
.card p { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.55; }
.card.action { cursor: pointer; }
.card.action:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.card.action:hover::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  padding: 1.5px;
  background: var(--grad);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.card.action:hover .c-icon { background: var(--grad); }

/* ---------- Eingabe ---------- */
.composer-wrap { padding: 14px 28px 20px; background: linear-gradient(transparent, var(--bg) 45%); }
.composer {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  max-width: 880px;
  margin: 0 auto;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: 20px;
  padding: 11px 12px;
  box-shadow: var(--shadow-sm);
  transition: all 0.18s ease;
}
.composer:focus-within { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(67, 83, 255, 0.10), var(--shadow-sm); }
#input {
  flex: 1;
  border: none;
  outline: none;
  resize: none;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  max-height: 200px;
  background: transparent;
  color: var(--ink);
}
.send-btn {
  border: none;
  background: var(--grad);
  color: var(--accent-ink);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 15px;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.15s ease;
  box-shadow: 0 4px 12px rgba(67, 83, 255, 0.35);
}
.send-btn:hover { transform: scale(1.08); }
.send-btn:disabled { background: var(--line); cursor: default; transform: none; box-shadow: none; }
.composer-hint { text-align: center; font-size: 11.5px; color: var(--muted); margin-top: 8px; }

/* ---------- Modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(16, 20, 26, 0.5);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
}
.modal-card {
  background: var(--surface);
  border-radius: 20px;
  width: min(620px, 92vw);
  max-height: 86vh;
  overflow-y: auto;
  padding: 24px 28px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
  animation: rise 0.25s ease both;
}
.modal-head { display: flex; align-items: center; justify-content: space-between; }
.modal-head h2 { margin: 0; letter-spacing: -0.4px; }
.modal-section { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.modal-section h3 { margin: 0 0 6px; font-size: 15px; }
.muted { color: var(--muted); font-size: 13px; line-height: 1.5; }
.muted a { color: var(--accent); }
.row { display: flex; gap: 10px; margin-top: 10px; align-items: center; }
.row input { flex: 1; }
input[type="password"], input[type="text"], .modal textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  margin-top: 6px;
}
.modal textarea { font-family: ui-monospace, monospace; font-size: 12.5px; }
.btn {
  border: none;
  background: var(--grad);
  color: var(--accent-ink);
  padding: 11px 20px;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(67, 83, 255, 0.3);
  transition: all 0.15s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(67, 83, 255, 0.4); }
.btn-danger { background: var(--danger); box-shadow: none; }

.hidden { display: none !important; }

@media (max-width: 860px) {
  .brand-mark { display: none; }
  .topbar { padding: 12px 14px; gap: 10px; }
  .tab { padding: 8px 12px; font-size: 13px; white-space: nowrap; }
  .cards, .cards.wide { grid-template-columns: 1fr 1fr; }
  .welcome h1 { font-size: 30px; }
}
@media (max-width: 540px) {
  .cards, .cards.wide { grid-template-columns: 1fr; }
  .chat, .composer { padding-left: 14px; padding-right: 14px; }
}

/* ---------- Warte-Anzeige ---------- */
.typing { display: flex; align-items: center; gap: 10px; font-style: normal; }
.typing .dots { display: inline-flex; gap: 4px; }
.typing .dots i {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); display: inline-block;
  animation: dotpulse 1.2s ease-in-out infinite;
}
.typing .dots i:nth-child(2) { animation-delay: 0.2s; }
.typing .dots i:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotpulse {
  0%, 80%, 100% { opacity: 0.25; transform: scale(0.75); }
  40% { opacity: 1; transform: scale(1); }
}

/* ---------- Canva-Design-Vorschau ---------- */
.design-preview {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); padding: 16px; margin: 12px 0;
  box-shadow: var(--shadow-sm);
}
.dp-title { font-weight: 700; margin-bottom: 12px; }
.dp-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 12px; }
.dp-slide {
  position: relative; aspect-ratio: 1 / 1; border-radius: 10px;
  padding: 14% 9% 9%; display: flex; flex-direction: column; gap: 5%;
  overflow: hidden; box-shadow: 0 1px 6px rgba(20, 22, 28, 0.16);
}
.dp-bar { position: absolute; top: 0; left: 0; right: 0; height: 3.5%; }
.dp-nr { position: absolute; top: 7%; right: 8%; font-size: 11px; font-weight: 700; }
.dp-head { display: block; margin-top: 10%; font-size: 15px; line-height: 1.15; }
.dp-text { font-size: 10.5px; line-height: 1.35; overflow: hidden; }
.dp-actions { margin: 14px 0 8px; }
.dp-help { font-size: 13px; color: var(--muted); line-height: 1.55; }
.dp-raw summary { cursor: pointer; font-size: 12px; color: var(--muted); margin-top: 8px; }
.dp-raw pre { max-height: 200px; overflow: auto; font-size: 11px; background: var(--bg); border-radius: 8px; padding: 8px; }

/* ---------- E-Book-Projekte ---------- */
.ebook-card { position: relative; }
.ebook-del {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  background: none; border: none; cursor: pointer;
  font-size: 15px; opacity: 0.4; transition: opacity 0.15s ease;
}
.ebook-del:hover { opacity: 1; }

/* ---------- App-Dialoge ---------- */
.dialog-card { width: min(440px, 92vw); }
.dialog-card h2 { margin: 0 0 6px; letter-spacing: -0.4px; }
.dialog-input {
  width: 100%; margin-top: 12px; padding: 11px 13px;
  border: 1px solid var(--line); border-radius: 10px;
  font: inherit; outline: none;
}
.dialog-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.dialog-row { margin-top: 16px; }
.btn-ghost {
  background: var(--surface); color: var(--ink);
  border: 1px solid var(--line); box-shadow: none;
}
.btn-ghost:hover { box-shadow: none; background: var(--bg); }

/* ---------- Dokumente & Quellen ---------- */
.docs-btn {
  position: relative; border: 1px solid var(--line); background: var(--surface);
  width: 40px; height: 40px; border-radius: 50%; cursor: pointer;
  font-size: 17px; flex-shrink: 0; transition: all 0.15s ease;
}
.docs-btn:hover { border-color: var(--accent); background: var(--accent-soft); }
.docs-count {
  position: absolute; top: -5px; right: -5px;
  background: var(--accent); color: var(--accent-ink);
  font-size: 10.5px; font-weight: 700; line-height: 1;
  padding: 3px 6px; border-radius: 999px;
}
.docs-panel {
  position: absolute; bottom: calc(100% - 4px); left: 50%; transform: translateX(-50%);
  width: min(440px, 90vw); max-height: 300px; overflow-y: auto;
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-md); padding: 10px 12px; z-index: 40;
}
.dpanel-head { font-weight: 700; font-size: 13px; margin: 4px 2px 8px; }
.dpanel-item {
  display: flex; align-items: center; gap: 9px;
  padding: 7px 8px; border-radius: 8px; cursor: pointer; font-size: 14px;
}
.dpanel-item:hover { background: var(--accent-soft); }
.dpanel-item input { accent-color: var(--accent); width: 16px; height: 16px; }
.dpanel-hint { font-size: 12px; color: var(--muted); line-height: 1.5; padding: 6px 2px 2px; }
.doc-list { margin: 10px 0 4px; }
.doc-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border: 1px solid var(--line); border-radius: 10px; margin-bottom: 6px;
}
.doc-name { flex: 1; font-size: 13.5px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.doc-meta { font-size: 11.5px; color: var(--muted); white-space: nowrap; }
.doc-del { opacity: 0.5; }
.doc-del:hover { opacity: 1; }

/* ---------- Dokumente-Hinweise ---------- */
.doc-info { margin: 8px 0 4px; }
.doc-info summary {
  cursor: pointer; font-size: 13px; color: var(--accent);
  font-weight: 600; list-style-position: inside;
}
.doc-info ul {
  margin: 8px 0 4px; padding-left: 20px;
  font-size: 12.5px; color: var(--muted); line-height: 1.6;
}
.doc-info li { margin-bottom: 5px; }

/* ---------- Login ---------- */
.login-overlay {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg);
}
.login-card {
  display: flex; flex-direction: column; gap: 12px;
  width: min(360px, 90vw); padding: 32px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 20px; text-align: center;
  box-shadow: var(--shadow-md);
}
.login-card .brand-logo { width: 44px; height: 44px; margin: 0 auto; }
.login-card h1 { font-size: 20px; margin: 0; }
.login-card input {
  padding: 10px 12px; border-radius: 10px;
  border: 1px solid var(--line); background: var(--bg);
  color: var(--ink); font: inherit;
}
.login-error { color: var(--danger); min-height: 1.2em; margin: 0; font-size: 13px; }

/* ---------- Admin ---------- */
.admin-main { max-width: 1000px; margin: 24px auto; padding: 0 16px; display: flex; flex-direction: column; gap: 24px; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.admin-table th, .admin-table td { padding: 8px 10px; text-align: left; border-bottom: 1px solid var(--line); }
.btn-small { padding: 4px 10px; font-size: 12px; }

/* ---------- Kontingent-Anzeige ---------- */
.budget-bar {
  height: 10px; border-radius: 6px; overflow: hidden;
  background: var(--accent-soft); border: 1px solid var(--line);
  margin-bottom: 8px;
}
.budget-fill {
  height: 100%; width: 0%; border-radius: 6px;
  background: linear-gradient(90deg, var(--accent3), var(--accent));
  transition: width 0.3s ease;
}
.budget-fill.warn { background: var(--danger); }

/* ---------- Login-Fußzeile ---------- */
.login-footer {
  position: absolute; bottom: 20px; left: 0; right: 0;
  display: flex; flex-direction: column; gap: 4px;
  text-align: center; font-size: 12px; color: var(--muted);
}
.login-footer a { color: var(--muted); }
