:root {
  --bg: #f6f7fb;
  --panel: #ffffff;
  --border: #e3e6ef;
  --text: #1c2233;
  --muted: #6b7390;
  --accent: #5b6ee1;
  --accent-soft: #eef0fc;
  --danger: #d6435a;
  --danger-soft: #fde8ec;
  --warn: #c47a1a;
  --warn-soft: #fcf2e0;
  --ok: #2f8f5b;
  --ok-soft: #e4f3eb;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; height: 100%; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; color: var(--text); background: var(--bg); }
body { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }

.sidebar { background: var(--panel); border-right: 1px solid var(--border); padding: 20px; display: flex; flex-direction: column; gap: 18px; }
.brand h1 { margin: 0; font-size: 22px; color: var(--accent); }
.brand small { color: var(--muted); }

.user-switch label { display: block; font-size: 12px; color: var(--muted); margin-bottom: 4px; }
.user-switch select { width: 100%; padding: 6px 8px; border: 1px solid var(--border); border-radius: 6px; background: white; }
.badge { display: inline-block; margin-top: 6px; padding: 2px 8px; border-radius: 999px; font-size: 11px; background: var(--accent-soft); color: var(--accent); }
.badge.danger { background: var(--danger-soft); color: var(--danger); }
.badge.warn { background: var(--warn-soft); color: var(--warn); }
.badge.ok { background: var(--ok-soft); color: var(--ok); }
.avatar { width: 24px; height: 24px; border-radius: 50%; vertical-align: middle; margin-right: 6px; object-fit: cover; }
#account-name { display: flex; align-items: center; gap: 0; }
.btn.small { font-size: 12px; padding: 4px 8px; margin-top: 6px; }
button.small { font-size: 12px; padding: 4px 8px; }

nav { display: flex; flex-direction: column; gap: 2px; }
nav a { display: block; padding: 8px 10px; border-radius: 6px; color: var(--text); text-decoration: none; font-size: 14px; }
nav a:hover { background: var(--accent-soft); }
nav a.active { background: var(--accent); color: white; }

main { padding: 28px 36px; max-width: 1100px; }
main h2 { margin-top: 0; }
main p.lede { color: var(--muted); margin-top: -8px; }

.card { background: var(--panel); border: 1px solid var(--border); border-radius: 10px; padding: 16px 18px; margin-bottom: 14px; }
.card h3 { margin: 0 0 8px; font-size: 15px; }
.card .meta { color: var(--muted); font-size: 12px; }

.grid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

button, .btn { background: var(--accent); color: white; border: none; padding: 8px 14px; border-radius: 6px; font-size: 13px; cursor: pointer; }
button.secondary { background: white; color: var(--text); border: 1px solid var(--border); }
button.danger { background: var(--danger); }
button:disabled { opacity: 0.5; cursor: not-allowed; }

input, select, textarea { font-family: inherit; font-size: 13px; padding: 7px 9px; border: 1px solid var(--border); border-radius: 6px; background: white; }
textarea { width: 100%; min-height: 90px; resize: vertical; }
.row { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.row > * { flex: 0 0 auto; }
.row .grow { flex: 1 1 auto; }

table { width: 100%; border-collapse: collapse; }
th, td { text-align: left; padding: 8px 10px; border-bottom: 1px solid var(--border); font-size: 13px; vertical-align: top; }
th { color: var(--muted); font-weight: 500; font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; }

.flag { color: var(--danger); font-weight: 600; }
.muted { color: var(--muted); }
.tag { display: inline-block; background: var(--accent-soft); color: var(--accent); padding: 2px 8px; border-radius: 999px; font-size: 11px; margin-right: 4px; }
.empty { color: var(--muted); font-style: italic; }
.ai-output { background: var(--accent-soft); border-left: 3px solid var(--accent); padding: 10px 12px; border-radius: 6px; margin-top: 8px; font-size: 13px; }
.toast { position: fixed; bottom: 20px; right: 20px; background: var(--text); color: white; padding: 10px 16px; border-radius: 6px; font-size: 13px; opacity: 0; transition: opacity 0.2s; pointer-events: none; }
.toast.show { opacity: 1; }

.invite-banner { background: var(--warn-soft); border-bottom: 2px solid var(--warn); color: var(--text); padding: 12px 18px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 14px; }
.invite-banner code { background: rgba(0,0,0,0.08); padding: 1px 6px; border-radius: 4px; font-size: 13px; }
.invite-banner-actions { display: flex; gap: 8px; }
.invite-banner button { padding: 6px 12px; font-size: 13px; }
.invite-banner button.secondary { background: transparent; border: 1px solid var(--border); color: var(--text); }

/* ── Chat / mediation view ────────────────────────────────────────────── */
.chat-layout { display: grid; grid-template-columns: 240px 1fr; gap: 14px; align-items: start; }
.chat-sidebar { background: var(--panel); border: 1px solid var(--border); border-radius: 10px; padding: 12px; position: sticky; top: 16px; }
.chat-list { list-style: none; padding: 0; margin: 0; }
.chat-list li { padding: 8px 10px; border-radius: 6px; cursor: pointer; margin-bottom: 2px; }
.chat-list li:hover { background: var(--accent-soft); }
.chat-list li.active { background: var(--accent); color: white; }
.chat-list li.active .chat-list-meta { color: rgba(255,255,255,0.85); }
.chat-list-topic { font-size: 13px; font-weight: 500; }
.chat-list-meta { font-size: 11px; color: var(--muted); margin-top: 2px; }
.chat-list li.empty { color: var(--muted); font-style: italic; cursor: default; }
.chat-list li.empty:hover { background: transparent; }

.chat-pane { padding: 0; display: flex; flex-direction: column; min-height: 520px; }
.chat-header { display: flex; justify-content: space-between; align-items: center; padding: 14px 18px; border-bottom: 1px solid var(--border); }
.chat-scroll { flex: 1; overflow-y: auto; padding: 16px 18px; max-height: 60vh; }
.chat-composer { border-top: 1px solid var(--border); padding: 12px 18px; }

.bubble-row { display: flex; margin-bottom: 12px; }
.bubble-row.mine { justify-content: flex-end; }
.bubble-row.theirs { justify-content: flex-start; }
.bubble { max-width: 70%; padding: 10px 12px; border-radius: 14px; background: var(--panel); border: 1px solid var(--border); }
.bubble-row.mine .bubble { background: var(--accent); color: white; border-color: var(--accent); }
.bubble-row.mine .bubble .bubble-speaker { color: rgba(255,255,255,0.85); }
.bubble-row.mine .bubble .link { color: rgba(255,255,255,0.9); }
.bubble-speaker { font-size: 11px; color: var(--muted); margin-bottom: 2px; font-weight: 500; }
.bubble-text { font-size: 14px; line-height: 1.4; white-space: pre-wrap; word-wrap: break-word; }
.bubble-actions { margin-top: 4px; }
.bubble-clarify { margin-top: 6px; }
.bubble-row.mine .bubble-clarify .ai-output { background: rgba(255,255,255,0.15); color: white; border-left-color: rgba(255,255,255,0.5); }

.summary-block { position: relative; padding-right: 32px; }
.summary-close { position: absolute; top: 4px; right: 6px; background: none; border: none; color: var(--muted); font-size: 18px; line-height: 1; padding: 2px 6px; cursor: pointer; border-radius: 4px; }
.summary-close:hover { background: var(--border); color: var(--text); }

.clarify-block { position: relative; padding-right: 32px; }
.clarify-close { position: absolute; top: 4px; right: 6px; background: none; border: none; color: var(--muted); font-size: 18px; line-height: 1; padding: 2px 6px; cursor: pointer; border-radius: 4px; }
.clarify-close:hover { background: var(--border); color: var(--text); }
.suggested-reply { margin-top: 10px; padding: 10px 12px; background: white; border: 1px dashed var(--accent); border-radius: 8px; }
.bubble-row.mine .suggested-reply { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); color: white; }
.suggested-reply-text { font-size: 14px; line-height: 1.4; font-style: italic; }

.link { background: none; border: none; color: var(--accent); padding: 0; font-size: 12px; cursor: pointer; text-decoration: underline; }
.link:hover { opacity: 0.8; }

.who-toggle { background: white; color: var(--text); border: 1px solid var(--border); padding: 4px 12px; font-size: 12px; border-radius: 999px; cursor: pointer; }
.who-toggle.active { background: var(--accent); color: white; border-color: var(--accent); }

.tone-modal-overlay { position: fixed; inset: 0; background: rgba(20, 20, 30, 0.55); display: flex; align-items: center; justify-content: center; z-index: 1000; padding: 20px; }
.tone-modal { background: white; border-radius: 12px; max-width: 480px; width: 100%; padding: 22px 24px; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.tone-modal-header { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.tone-modal-reason { font-size: 14px; color: var(--text); margin-bottom: 14px; line-height: 1.4; }
.tone-modal-original, .tone-modal-softer { margin-bottom: 12px; }
.tone-modal-quote { padding: 8px 12px; border-left: 3px solid var(--border); background: #f7f7f9; border-radius: 4px; font-size: 13px; line-height: 1.4; white-space: pre-wrap; }
.tone-modal-quote.softer { border-left-color: var(--accent); background: #f4f8ff; }
.tone-modal-topic { margin-bottom: 12px; padding: 10px 12px; background: #fff4e0; border-left: 3px solid #e8c994; border-radius: 4px; }
.tone-modal-topic-body { font-size: 13px; line-height: 1.45; color: #5a3a08; }
.tone-modal-actions { display: flex; gap: 8px; justify-content: flex-end; margin-top: 16px; flex-wrap: wrap; }

.mediate-modal { max-width: 580px; }
.mediate-section { margin-bottom: 14px; }
.mediate-section-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); margin-bottom: 4px; }
.mediate-section-body { font-size: 14px; line-height: 1.5; }
.mediate-next .mediate-section-body { background: #f4f8ff; border-left: 3px solid var(--accent); padding: 10px 12px; border-radius: 4px; }
.mediate-sides { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.mediate-side { background: #faf9f6; border: 1px solid var(--border); border-radius: 8px; padding: 10px 12px; }
.mediate-side-name { font-weight: 600; font-size: 13px; margin-bottom: 6px; }
.mediate-side-row { font-size: 12px; line-height: 1.4; margin-bottom: 4px; }
.mediate-side-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); display: block; }
@media (max-width: 600px) { .mediate-sides { grid-template-columns: 1fr; } }

/* ── Responsive: tablet & mobile ───────────────────────────────────────── */
@media (max-width: 900px) {
  body { grid-template-columns: 220px 1fr; }
  main { padding: 20px 22px; }
  .chat-layout { grid-template-columns: 200px 1fr; }
  .chat-scroll { max-height: 55vh; }
}

/* ── Mobile shell: bottom tab bar + slim top bar + two-screen chat ──────── */
.mobile-tabs { display: none; }
.mobile-menu-btn { display: none; }
.chat-back { display: none; }
.chat-overflow { display: none; }

@media (max-width: 720px) {
  /* App shell: column flow, fixed top bar + bottom tab bar */
  body {
    display: block;
    min-height: 100dvh;
    padding-top: var(--top-h, 52px);
    padding-bottom: calc(var(--tab-h, 60px) + env(safe-area-inset-bottom));
  }

  /* Slim top bar — brand only; account moves to floating button on the right */
  .sidebar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    flex-direction: row;
    align-items: center;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 10px 14px;
    padding-top: calc(10px + env(safe-area-inset-top));
    gap: 12px;
    height: auto;
  }
  .brand h1 { font-size: 18px; margin: 0; }
  .brand small { display: none; }
  .user-switch { display: none; }   /* family/account moves to the avatar sheet */
  .sidebar nav { display: none; }   /* replaced by bottom tab bar */

  /* Account avatar button — floats top-right inside the slim top bar */
  .mobile-menu-btn {
    display: flex;
    align-items: center; justify-content: center;
    position: fixed;
    top: calc(8px + env(safe-area-inset-top));
    right: 12px;
    z-index: 60;
    width: 36px; height: 36px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent);
    border: 1px solid var(--border);
    cursor: pointer;
    padding: 0;
  }
  .mobile-menu-btn:active { background: var(--accent); color: white; }

  /* Bottom tab bar */
  .mobile-tabs {
    display: flex;
    flex-direction: row;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 50;
    background: var(--panel);
    border-top: 1px solid var(--border);
    padding: 6px 4px;
    padding-bottom: calc(6px + env(safe-area-inset-bottom));
    gap: 2px;
    justify-content: space-around;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.04);
  }
  .mobile-tabs .tab {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 6px 4px;
    border: none;
    background: none;
    color: var(--muted);
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    border-radius: 8px;
    min-height: 48px;
    cursor: pointer;
  }
  .mobile-tabs .tab svg { width: 22px; height: 22px; }
  .mobile-tabs .tab.active { color: var(--accent); }
  .mobile-tabs .tab:active { background: var(--accent-soft); }

  /* Main view */
  main { padding: 14px; max-width: none; }
  main h2 { font-size: 20px; margin-top: 0; }
  main p.lede { font-size: 14px; }

  /* Cards & grid */
  .card { padding: 14px; margin-bottom: 12px; }
  .grid { grid-template-columns: 1fr; gap: 12px; }

  /* iOS Safari zooms on inputs with font-size < 16px */
  input, select, textarea { font-size: 16px; padding: 9px 10px; }
  button, .btn { font-size: 14px; padding: 9px 14px; min-height: 38px; }
  button.small, .btn.small { font-size: 12px; padding: 6px 10px; min-height: 0; }

  /* Tables: horizontal scroll instead of squishing */
  table { display: block; overflow-x: auto; white-space: nowrap; }
  th, td { font-size: 12px; padding: 6px 8px; }

  /* ─── Chat: two-screen pattern (list ↔ active conversation) ─────────── */
  .chat-layout { grid-template-columns: 1fr; gap: 0; }
  /* Default state: no active chat — show the list full-width, hide the pane */
  .chat-sidebar {
    position: static;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px;
    max-height: none;
  }
  .chat-pane { display: none; }

  /* Active state: hide the list, show the pane filling the viewport */
  body.chat-mobile-active main { padding: 0; }
  body.chat-mobile-active main h2,
  body.chat-mobile-active main p.lede { display: none; }
  body.chat-mobile-active .chat-sidebar { display: none; }
  body.chat-mobile-active .chat-pane {
    display: flex;
    flex-direction: column;
    border: none;
    border-radius: 0;
    background: var(--panel);
    height: calc(100dvh - var(--top-h, 52px) - var(--tab-h, 60px) - env(safe-area-inset-top) - env(safe-area-inset-bottom));
  }

  .chat-header {
    padding: 8px 12px;
    flex-wrap: nowrap;
    gap: 6px;
    border-bottom: 1px solid var(--border);
  }
  .chat-back {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 36px; height: 36px;
    border-radius: 8px;
    background: none;
    border: none;
    color: var(--accent);
    padding: 0;
    cursor: pointer;
    flex: 0 0 auto;
  }
  .chat-back:active { background: var(--accent-soft); }
  .chat-header-title { flex: 1 1 auto; min-width: 0; }
  .chat-header-title h3 { font-size: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .chat-header-title .muted { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  /* Hide the wide action row, show a single ⋯ button that toggles it */
  .chat-header-actions { display: none; position: absolute; right: 8px; top: 48px; background: var(--panel); border: 1px solid var(--border); border-radius: 10px; padding: 6px; flex-direction: column; gap: 4px; box-shadow: 0 8px 24px rgba(0,0,0,0.12); z-index: 20; min-width: 200px; }
  .chat-header-actions.show-overflow { display: flex; }
  .chat-header-actions button { width: 100%; text-align: left; justify-content: flex-start; }
  .chat-overflow {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 36px; height: 36px; padding: 0;
    font-size: 20px;
    background: none;
    border: 1px solid var(--border);
    color: var(--text);
    flex: 0 0 auto;
  }
  .chat-header { position: relative; }

  /* Conversation list back outside active state */
  .chat-list-delete { opacity: 0.5; }
  .chat-list li { padding-right: 28px; padding: 12px 28px 12px 12px; }
  .chat-list-topic { font-size: 14px; }
  .chat-list-meta { font-size: 12px; }

  /* Scroll + composer: composer pinned to bottom of pane */
  .chat-scroll { flex: 1 1 auto; padding: 12px; max-height: none; min-height: 0; overflow-y: auto; -webkit-overflow-scrolling: touch; }
  .chat-composer { border-top: 1px solid var(--border); padding: 10px 12px; background: var(--panel); }
  .chat-composer .row { flex-wrap: nowrap; }
  .chat-composer .msg { flex: 1 1 auto; min-width: 0; }
  .bubble { max-width: 85%; }
  .bubble-text { font-size: 15px; }
  .topics-bar { padding: 8px 12px; }

  /* Modals: fit screen, action buttons stack full-width */
  .tone-modal-overlay { padding: 12px; align-items: flex-start; padding-top: 32px; }
  .tone-modal { padding: 18px 18px 16px; max-width: 100%; max-height: calc(100vh - 64px); overflow-y: auto; }
  .tone-modal-header { font-size: 16px; }
  .tone-modal-actions { flex-direction: column-reverse; align-items: stretch; gap: 6px; }
  .tone-modal-actions button { width: 100%; }
  .mediate-modal { max-width: 100%; }

  /* Popovers: don't overflow viewport */
  .tone-popover, .demo-popover { width: 260px; max-width: calc(100vw - 32px); right: 0; }

  /* Invite banner stacks */
  .invite-banner { flex-direction: column; align-items: stretch; gap: 8px; }
  .invite-banner-actions { justify-content: flex-end; }

  /* Toast moves up so composer doesn't cover it */
  .toast { bottom: calc(70px + env(safe-area-inset-bottom)); left: 12px; right: 12px; text-align: center; }
}

@media (max-width: 420px) {
  main { padding: 12px; }
  .bubble { max-width: 90%; }
  .chat-header-title h3 { font-size: 14px; }
  .topic-chip { font-size: 11px; }
}

/* Touch devices: no hover-to-reveal */
@media (hover: none) {
  .chat-list-delete { opacity: 0.6; }
}

/* ── Bottom sheet (More menu, account menu) ────────────────────────────── */
.sheet-overlay {
  position: fixed; inset: 0;
  background: rgba(20, 20, 30, 0.45);
  z-index: 200;
  display: flex; align-items: flex-end; justify-content: center;
  animation: sheet-fade 0.15s ease;
}
.sheet {
  width: 100%;
  max-width: 480px;
  background: var(--panel);
  border-radius: 16px 16px 0 0;
  padding: 12px 16px calc(20px + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 30px rgba(0,0,0,0.18);
  animation: sheet-slide 0.18s ease;
  display: flex; flex-direction: column; gap: 4px;
}
.sheet-handle {
  width: 40px; height: 4px;
  background: var(--border);
  border-radius: 999px;
  margin: 0 auto 8px;
}
.sheet-title { font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; padding: 0 4px; }
.sheet-list { display: flex; flex-direction: column; gap: 2px; }
.sheet-item {
  display: block;
  padding: 14px 12px;
  font-size: 15px;
  color: var(--text);
  text-decoration: none;
  border-radius: 8px;
}
.sheet-item:active { background: var(--accent-soft); }
.sheet-cancel {
  margin-top: 10px;
  padding: 12px;
  font-size: 15px;
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
}
.sheet-cancel.danger { color: var(--danger); border-color: var(--danger-soft); }
.sheet-account { padding: 4px 4px 12px; border-bottom: 1px solid var(--border); margin-bottom: 8px; }
.sheet-account-name { font-size: 15px; font-weight: 600; }
.sheet-account-role { font-size: 12px; color: var(--muted); text-transform: capitalize; }
.sheet-field-label { display: block; font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin: 6px 4px 4px; }
.sheet-family { padding: 10px; font-size: 15px; border-radius: 8px; border: 1px solid var(--border); width: 100%; }
@keyframes sheet-slide { from { transform: translateY(100%); } to { transform: translateY(0); } }
@keyframes sheet-fade { from { opacity: 0; } to { opacity: 1; } }

.disposition-control { display: flex; flex-direction: column; gap: 2px; padding: 4px 10px; border: 1px solid var(--border); border-radius: 8px; background: white; }
.disposition-control input[type=range] { width: 120px; accent-color: var(--accent); }
.chat-popover-wrap, .tone-popover-wrap, .demo-popover-wrap { position: relative; }
.chat-list li { position: relative; }
.chat-list-delete { position: absolute; top: 4px; right: 4px; background: none; border: none; color: var(--muted); font-size: 18px; line-height: 1; padding: 2px 6px; cursor: pointer; border-radius: 4px; opacity: 0; transition: opacity 0.15s; }
.chat-list li:hover .chat-list-delete { opacity: 1; }
.chat-list-delete:hover { background: rgba(220, 40, 40, 0.1); color: #c0392b; }
.chat-unread-badge { display: inline-block; background: var(--danger, #d33); color: white; font-size: 10px; font-weight: 700; padding: 1px 7px; border-radius: 999px; margin-left: 6px; vertical-align: middle; }
.chat-list li.active .chat-unread-badge { background: white; color: var(--accent); }

.topics-bar { padding: 8px 18px; border-bottom: 1px solid var(--border); background: #fbfaf7; }
.topic-chip { display: inline-flex; align-items: center; gap: 4px; background: #fff4e0; border: 1px solid #e8c994; color: #7a5410; font-size: 12px; padding: 2px 8px; border-radius: 999px; }
.topic-del { background: none; border: none; color: #a07635; cursor: pointer; font-size: 14px; line-height: 1; padding: 0 2px; }
.topic-del:hover { color: #c0392b; }
.bubble-topic-icon { margin-left: 4px; font-size: 12px; }
.sensitive-callout { background: #fff4e0; border: 1px solid #e8c994; color: #7a5410; padding: 1px 6px; border-radius: 4px; font-weight: 600; white-space: nowrap; }
.tone-popover, .demo-popover { position: absolute; top: calc(100% + 6px); right: 0; z-index: 50; background: white; border: 1px solid var(--border); border-radius: 8px; padding: 12px 14px; box-shadow: 0 8px 24px rgba(0,0,0,0.12); width: 280px; box-sizing: border-box; }
.tone-popover .row { flex-wrap: nowrap; }
.tone-popover .muted { white-space: nowrap; flex-shrink: 0; }
.tone-popover input[type=range] { flex: 1 1 auto; min-width: 0; width: 100%; accent-color: var(--accent); margin: 0; }
.demo-popover input[type=range] { accent-color: var(--accent); }
