html, body { height: 100%; }
body.app-body { overflow: hidden; }

.app-topbar {
  height: 58px;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-inline: var(--space-4);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  position: relative;
  z-index: var(--z-nav);
}
.app-topbar .brand__word { font-size: var(--text-md); }
.topbar-sep { width: 1px; height: 24px; background: var(--border); }
.topbar-spacer { flex: 1; }
.topbar-burger { display: none; }
@media (max-width: 720px) { .topbar-burger { display: inline-flex; } }

.sec-badge {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: 4px var(--space-2) 4px 4px; border-radius: var(--radius-md);
  color: var(--text-secondary); font-size: var(--text-sm);
  transition: background var(--dur-fast) var(--ease-out);
}
.sec-badge:hover { background: var(--surface-hover); }
.sec-badge__glyph { width: 24px; height: 24px; display: grid; place-items: center; border-radius: var(--radius-sm); background: var(--bg-inset); color: var(--text); }
.sec-badge__glyph svg { width: 14px; height: 14px; }
.sec-badge__v { font-weight: var(--weight-medium); color: var(--text); letter-spacing: -0.004em; }
.sec-badge__dot { position: relative; width: 6px; height: 6px; margin-left: 2px; border-radius: 50%; background: var(--text-subtle); }
.sec-badge__dot.live { background: var(--text); }
.sec-badge__dot.live::after {
  content: ""; position: absolute; inset: -2px; border-radius: 50%;
  border: 1px solid var(--text); opacity: 0;
  animation: sec-pulse 2.6s var(--ease-out) infinite;
}
@keyframes sec-pulse { 0% { transform: scale(0.5); opacity: 0.55; } 100% { transform: scale(2); opacity: 0; } }
@media (max-width: 620px) { .sec-badge__v { display: none; } }
@media (prefers-reduced-motion: reduce) { .sec-badge__dot.live::after { animation: none; } }

.avatar-btn { border-radius: 50%; padding: 0; }
.avatar-btn:focus-visible { outline-offset: 3px; }
.avatar-menu {
  position: absolute;
  top: calc(100% - 4px);
  right: var(--space-4);
  width: 268px;
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-2);
  z-index: var(--z-drawer);
  transform-origin: top right;
  animation: menu-in var(--dur) var(--ease-out);
}
@keyframes menu-in { from { opacity: 0; transform: translateY(-6px) scale(0.98); } }
.avatar-menu[hidden] { display: none; }
.avatar-menu__head { display: flex; align-items: center; gap: var(--space-3); padding: var(--space-3); }
.avatar-menu__id { min-width: 0; }
.avatar-menu__name { font-weight: var(--weight-semibold); font-size: var(--text-sm); }
.avatar-menu__mail { font-family: var(--font-mono); font-size: var(--text-xs); color: var(--text-muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.avatar-menu__note { font-size: var(--text-2xs); color: var(--text-subtle); margin-top: 2px; }
.menu-item {
  display: flex; align-items: center; gap: var(--space-3);
  width: 100%; padding: var(--space-3); border-radius: var(--radius-sm);
  font-size: var(--text-sm); color: var(--text-secondary); text-align: left;
}
.menu-item:hover { background: var(--surface-hover); color: var(--text); }
.menu-item svg { width: 17px; height: 17px; color: var(--text-muted); }
.menu-item:hover svg { color: var(--text); }

.app {
  display: grid;
  grid-template-columns: 244px minmax(340px, 400px) 1fr;
  height: calc(100dvh - 58px);
  overflow: hidden;
}
@media (max-width: 1080px) { .app { grid-template-columns: 220px 1fr; } }
@media (max-width: 720px)  { .app { grid-template-columns: 1fr; } }

.app__sidebar {
  border-right: 1px solid var(--border);
  background: var(--bg-subtle);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  overflow-y: auto;
  overflow-x: hidden;
}
.side-compose { width: 100%; }
.side-group__label {
  display: flex; align-items: center; justify-content: space-between;
  font-size: var(--text-2xs); text-transform: uppercase; letter-spacing: var(--tracking-eyebrow);
  color: var(--text-subtle); padding: 0 var(--space-2) var(--space-2);
}
.side-group__label button { color: var(--text-subtle); display: inline-flex; }
.side-group__label button:hover { color: var(--text); }
.side-group__label button svg { width: 15px; height: 15px; }

.side-item {
  display: flex; align-items: center; gap: var(--space-3);
  width: 100%; padding: var(--space-2) var(--space-3); border-radius: var(--radius-sm);
  font-size: var(--text-sm); color: var(--text-secondary); text-align: left;
  transition: background var(--dur-fast), color var(--dur-fast);
}
.side-item:hover { background: var(--surface-hover); color: var(--text); }
.side-item.active { background: var(--surface-active); color: var(--text); font-weight: var(--weight-medium); }
.side-item__icon { width: 17px; height: 17px; flex: none; color: var(--text-muted); display: inline-flex; }
.side-item.active .side-item__icon { color: var(--text); }
.side-item__label { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.side-item__label.mono { font-family: var(--font-mono); font-size: var(--text-xs); }
.side-item__count { font-size: var(--text-2xs); font-family: var(--font-mono); color: var(--text-muted); }
.side-item__badge {
  min-width: 18px; height: 18px; padding-inline: 5px;
  display: inline-grid; place-items: center;
  background: var(--primary); color: var(--primary-text);
  border-radius: var(--radius-full); font-size: var(--text-2xs); font-weight: var(--weight-semibold);
}
.side-item__ttl { font-size: var(--text-2xs); font-family: var(--font-mono); color: var(--text-subtle); border: 1px solid var(--border); border-radius: var(--radius-xs); padding: 1px 4px; }
.side-item__ttl.burn { color: var(--text); border-color: var(--border-strong); }
.side-empty { font-size: var(--text-xs); color: var(--text-subtle); padding: var(--space-2) var(--space-3); }
.side-group--grow { flex: 1; min-height: 0; overflow-y: auto; overflow-x: hidden; }
.side-group__actions { display: inline-flex; gap: 2px; }

.side-persona { margin-bottom: 2px; }
.side-persona__head {
  display: flex; align-items: center; gap: var(--space-2);
  width: 100%; padding: var(--space-2) var(--space-2); border-radius: var(--radius-sm);
  font-size: var(--text-sm); font-weight: var(--weight-medium); color: var(--text-secondary); text-align: left;
  transition: background var(--dur-fast), color var(--dur-fast);
}
.side-persona__head:hover { background: var(--surface-hover); color: var(--text); }
.side-persona__head.active { background: var(--surface-active); color: var(--text); }
.side-persona__caret { display: inline-flex; color: var(--text-subtle); transition: transform var(--dur-fast) var(--ease-out); }
.side-persona__caret.open { transform: rotate(90deg); }
.side-persona__icon { display: inline-flex; align-items: center; justify-content: center; color: var(--text-muted); width: 22px; height: 22px; border-radius: var(--radius-full); flex: none; transition: background var(--dur-fast), color var(--dur-fast); }
.side-persona__kids { margin-left: var(--space-3); padding-left: var(--space-2); border-left: 1px solid var(--border-subtle); }
.side-sub { padding-top: var(--space-3); }

.side-manage {
  display: flex; align-items: center; gap: var(--space-3);
  width: 100%; padding: var(--space-3); margin-top: auto;
  border: 1px solid var(--border); border-radius: var(--radius-md);
  font-size: var(--text-sm); color: var(--text-secondary); background: var(--surface);
  transition: background var(--dur-fast), border-color var(--dur-fast);
}
.side-manage:hover { background: var(--surface-hover); border-color: var(--border-strong); color: var(--text); }
.side-manage svg { width: 16px; height: 16px; color: var(--text-muted); }

.reader-burn {
  display: flex; align-items: center; gap: var(--space-3);
  margin: var(--space-4) 0; padding: var(--space-3) var(--space-4);
  border: 1px solid var(--border-strong); border-radius: var(--radius-md);
  background: var(--bg-subtle); font-size: var(--text-sm); color: var(--text);
}
.reader-burn svg { width: 18px; height: 18px; flex: none; }

.mgr__field { margin-top: var(--space-3); }
.mgr__field-label { font-size: var(--text-xs); color: var(--text-muted); margin-bottom: var(--space-2); display: block; }
.mgr__life { display: flex; flex-wrap: wrap; gap: var(--space-1); }
.mgr__life button {
  padding: var(--space-1) var(--space-3); border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-size: var(--text-xs); color: var(--text-muted); transition: all var(--dur-fast);
}
.mgr__life button.active { background: var(--primary); color: var(--primary-text); border-color: var(--primary); }
.mgr__life button.burn.active { background: var(--text); }

.app__list { display: flex; flex-direction: column; border-right: 1px solid var(--border); background: var(--surface); overflow: hidden; }
.list-head {
  display: flex; align-items: center; gap: var(--space-3);
  padding: var(--space-4) var(--space-4) var(--space-3);
  border-bottom: 1px solid var(--border-subtle);
}
.list-head__title { font-size: var(--text-md); font-weight: var(--weight-semibold); }
.list-head__count { font-size: var(--text-xs); color: var(--text-muted); font-family: var(--font-mono); }
.list-head__spacer { flex: 1; }
.dir-tabs { display: inline-flex; padding: 3px; background: var(--bg-inset); border-radius: var(--radius-md); gap: 2px; margin: var(--space-3) var(--space-4) 0; }
.dir-tab { flex: 1; padding: var(--space-2); border-radius: var(--radius-sm); font-size: var(--text-sm); font-weight: var(--weight-medium); color: var(--text-muted); }
.dir-tab.active { background: var(--surface-raised); color: var(--text); box-shadow: var(--shadow-xs); }
.list-search { display: flex; align-items: center; gap: var(--space-2); margin: var(--space-3) var(--space-4) 0; padding: 0 var(--space-3); height: 36px; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--surface-sunken); color: var(--text-muted); }
.list-search:focus-within { border-color: var(--border-strong); color: var(--text); }
.list-search svg { width: 16px; height: 16px; flex: none; }
.list-search input { flex: 1; min-width: 0; border: none; background: none; outline: none; font-size: var(--text-sm); color: var(--text); }
.list-search input::placeholder { color: var(--text-muted); }
.list-search input::-webkit-search-cancel-button { -webkit-appearance: none; appearance: none; }

.reader__atts { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-5); }
.compose__atts { display: flex; flex-wrap: wrap; gap: var(--space-2); padding: 0 var(--space-4) var(--space-2); }
.compose__atts:empty { display: none; }
.att-chip { display: inline-flex; align-items: center; gap: var(--space-2); max-width: 260px; padding: var(--space-2) var(--space-3); border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--surface-sunken); font-size: var(--text-sm); color: var(--text); transition: border-color var(--dur-fast); }
button.att-chip:hover { border-color: var(--border-strong); }
.att-chip svg { flex: none; color: var(--text-muted); }
.att-chip__name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.att-chip__size { flex: none; font-family: var(--font-mono); font-size: var(--text-2xs); color: var(--text-muted); }
.att-chip--compose { cursor: default; }
.att-chip__x { display: inline-flex; padding: 0; margin-left: 2px; color: var(--text-muted); }
.att-chip__x:hover { color: var(--text); }

.mlist { flex: 1; overflow-y: auto; overflow-x: hidden; padding: var(--space-2); }
.mrow {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px var(--space-3);
  padding: var(--space-3);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background var(--dur-fast);
  border: 1px solid transparent;
}
.mrow:hover { background: var(--surface-hover); }
.mrow.active { background: var(--surface-active); border-color: var(--border-subtle); }
.mrow.cursor { box-shadow: inset 2px 0 0 var(--text); }
.mrow__top { display: flex; align-items: center; gap: var(--space-2); min-width: 0; grid-column: 1; }
.mrow__who { font-size: var(--text-sm); font-weight: var(--weight-medium); color: var(--text-secondary); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mrow.unread .mrow__who { color: var(--text); font-weight: var(--weight-semibold); }
.mrow.unread .mrow__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--text); flex: none; }
.mrow__time { grid-column: 2; grid-row: 1; font-size: var(--text-xs); color: var(--text-subtle); font-family: var(--font-mono); white-space: nowrap; }
.mrow__subject { grid-column: 1 / -1; font-size: var(--text-sm); color: var(--text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mrow.unread .mrow__subject { font-weight: var(--weight-medium); }
.mrow__preview { grid-column: 1 / -1; font-size: var(--text-xs); color: var(--text-muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mrow__alias { font-size: var(--text-2xs); font-family: var(--font-mono); color: var(--text-subtle); border: 1px solid var(--border-subtle); border-radius: var(--radius-xs); padding: 0 4px; flex: none; }

.mrow { position: relative; }
.mrow__tools {
  position: absolute; top: 50%; right: var(--space-2); transform: translateY(-50%);
  display: none; align-items: center; gap: 2px;
  background: var(--surface-raised); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 2px; box-shadow: var(--shadow-md);
  z-index: 1;
}
.mrow:hover .mrow__tools, .mrow__tools:focus-within { display: inline-flex; }
.mrow:hover .mrow__time { opacity: 0; }
.mrow__tool {
  display: inline-grid; place-items: center; width: 26px; height: 26px;
  border-radius: var(--radius-xs); color: var(--text-muted);
  transition: background var(--dur-fast), color var(--dur-fast);
}
.mrow__tool:hover { background: var(--surface-hover); color: var(--text); }
.mrow__tool.danger:hover { color: #e5484d; }

.mrow-skel { padding: var(--space-3); display: flex; flex-direction: column; gap: var(--space-2); }

.app__reader { background: var(--bg); overflow-y: auto; overflow-x: hidden; position: relative; display: flex; flex-direction: column; }
.reader-empty {
  margin: auto; text-align: center; color: var(--text-muted);
  display: flex; flex-direction: column; align-items: center; gap: var(--space-2); padding: var(--space-8);
}

.reader { display: flex; flex-direction: column; min-height: 100%; }
.reader__bar { display: flex; align-items: center; gap: var(--space-2); padding: var(--space-3) var(--space-4); border-bottom: 1px solid var(--border-subtle); position: sticky; top: 0; background: color-mix(in srgb, var(--bg) 88%, transparent); backdrop-filter: blur(8px); z-index: 2; }
.reader__bar-back { display: none; }
@media (max-width: 1080px) { .reader__bar-back { display: inline-flex; } }
.reader__bar-spacer { flex: 1; }
.reader__body-wrap { padding: var(--space-6) clamp(var(--space-5), 4vw, var(--space-10)); max-width: 760px; width: 100%; margin-inline: auto; }
.reader__subject { font-size: var(--text-2xl); letter-spacing: var(--tracking-tight); line-height: var(--leading-snug); }
.reader__meta { margin-top: var(--space-5); display: flex; flex-direction: column; gap: var(--space-2); padding-bottom: var(--space-5); border-bottom: 1px solid var(--border-subtle); }
.reader__route { display: flex; align-items: center; gap: var(--space-3); font-size: var(--text-sm); }
.reader__avatar { flex: none; }
.reader__from { font-weight: var(--weight-semibold); }
.reader__to { color: var(--text-muted); font-family: var(--font-mono); font-size: var(--text-xs); }
.reader__time { font-size: var(--text-xs); color: var(--text-subtle); }
.reader__tags { display: flex; gap: var(--space-2); margin-top: var(--space-2); }
.reader__body { margin-top: var(--space-6); font-size: var(--text-md); line-height: var(--leading-relaxed); color: var(--text); white-space: pre-wrap; word-break: break-word; }
.reader__body a { color: var(--text); text-decoration: underline; text-underline-offset: 2px; text-decoration-color: var(--text-subtle); }
.reader__body a:hover { text-decoration-color: currentColor; }

.compose { display: flex; flex-direction: column; min-height: 100%; }
.compose__form { padding: var(--space-6) clamp(var(--space-5), 4vw, var(--space-10)); max-width: 760px; width: 100%; margin-inline: auto; display: flex; flex-direction: column; gap: var(--space-4); flex: 1; }
.compose__row { display: grid; grid-template-columns: 64px 1fr; align-items: center; gap: var(--space-3); border-bottom: 1px solid var(--border-subtle); padding-bottom: var(--space-3); }
.compose__row label { font-size: var(--text-sm); color: var(--text-muted); }
.compose__row .input, .compose__row .select { border: none; padding: var(--space-1) 0; min-height: 32px; background: transparent; }
.compose__row .input:focus, .compose__row .select:focus { box-shadow: none; }
.compose__body { flex: 1; border: none; padding: var(--space-2) 0; resize: none; min-height: 220px; font-size: var(--text-md); line-height: var(--leading-relaxed); background: transparent; }
.compose__body:focus { box-shadow: none; }
.compose__foot { display: flex; align-items: center; gap: var(--space-3); padding: var(--space-4) clamp(var(--space-5), 4vw, var(--space-10)); border-top: 1px solid var(--border-subtle); }
.compose__status { font-size: var(--text-sm); color: var(--text-muted); }

@media (max-width: 1080px) {
  .app__reader {
    position: fixed; inset: 58px 0 0 auto;
    width: min(620px, 100%);
    border-left: 1px solid var(--border);
    box-shadow: var(--shadow-xl);
    transform: translateX(100%);
    transition: transform var(--dur-slow) var(--ease-out);
    z-index: var(--z-drawer);
  }
  .app.reader-open .app__reader { transform: translateX(0); }
  .app__reader-scrim { position: fixed; inset: 58px 0 0 0; background: var(--overlay); z-index: calc(var(--z-drawer) - 1); opacity: 0; pointer-events: none; transition: opacity var(--dur); }
  .app.reader-open .app__reader-scrim { opacity: 1; pointer-events: auto; }
}
@media (min-width: 1081px) { .app__reader-scrim { display: none; } }

@media (max-width: 720px) {
  .app__sidebar {
    position: fixed; inset: 58px 0 0 0; z-index: var(--z-drawer);
    width: min(300px, 84%); border-right: 1px solid var(--border);
    transform: translateX(-100%); transition: transform var(--dur-slow) var(--ease-out);
  }
  .app.sidebar-open .app__sidebar { transform: translateX(0); box-shadow: var(--shadow-xl); }
  .app__sidebar-scrim { position: fixed; inset: 58px 0 0 0; background: var(--overlay); z-index: calc(var(--z-drawer) - 1); opacity: 0; pointer-events: none; transition: opacity var(--dur); }
  .app.sidebar-open .app__sidebar-scrim { opacity: 1; pointer-events: auto; }
  .app__reader { inset: 58px 0 0 0; width: 100%; }
}
@media (min-width: 721px) { .app__sidebar-scrim { display: none; } }

.unlock-body { display: flex; flex-direction: column; gap: var(--space-4); }
.unlock-body .field-error { margin-top: -6px; }

.fp-banner { position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-toast); }

.mgr__seg { margin-bottom: var(--space-3); width: 100%; }
.mgr__seg .segment { display: flex; width: 100%; }
.mgr__seg .segment button { flex: 1; }
.mgr__input-row { display: flex; gap: var(--space-2); align-items: stretch; }
.mgr__input-row .input-affix { flex: 1; }
.mgr__foot { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); margin-top: var(--space-3); }
.mgr__err { font-size: var(--text-xs); color: var(--text); }

.addr-pop {
  position: fixed; z-index: calc(var(--z-toast) + 1);
  width: min(320px, calc(100vw - 24px));
  background: var(--surface-raised); border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl); padding: var(--space-4);
  animation: ctxmenu-in 120ms var(--ease-out);
}

.drag-ghost {
  position: fixed; top: 0; left: 0; z-index: calc(var(--z-toast) + 1);
  pointer-events: none; font-family: var(--font-sans); font-size: var(--text-xs);
  padding: var(--space-2) var(--space-3); border-radius: var(--radius-sm);
  background: var(--text); color: var(--bg); box-shadow: var(--shadow-lg);
  max-width: 240px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.side-item.is-dragging, .side-persona__head.is-dragging, .mrow.is-dragging { opacity: 0.5; }
.input--inline {
  flex: 1; min-width: 0; height: 26px; padding: 0 var(--space-2); font-size: var(--text-sm);
  border: 1px solid var(--border-strong); border-radius: var(--radius-xs); background: var(--surface);
}
[data-drop-kind].is-drop-target { background: var(--surface-active); box-shadow: inset 0 0 0 1.5px var(--border-strong); }

.onboard {
  position: fixed; inset: 0; z-index: var(--z-modal);
  background: var(--bg);
  display: grid; place-items: center; padding: var(--space-5);
  overflow-y: auto;
  overflow-x: hidden;
}
.onboard__card { width: 100%; max-width: 520px; animation: modal-in var(--dur-slow) var(--ease-out); }
.onboard__step { font-size: var(--text-2xs); text-transform: uppercase; letter-spacing: var(--tracking-eyebrow); color: var(--text-subtle); }
.onboard__card h2 { font-size: var(--text-2xl); letter-spacing: var(--tracking-tight); margin-top: var(--space-3); }
.onboard__sub { margin-top: var(--space-3); color: var(--text-secondary); font-size: var(--text-md); line-height: var(--leading-relaxed); }
.onboard__choices { margin-top: var(--space-6); display: flex; flex-direction: column; gap: var(--space-3); }
.choice { display: flex; gap: var(--space-4); padding: var(--space-4); border: 1px solid var(--border); border-radius: var(--radius-lg); cursor: pointer; transition: border-color var(--dur-fast), background var(--dur-fast); }
.choice:hover { border-color: var(--border-strong); }
.choice:has(input:checked) { border-color: var(--text); background: var(--bg-subtle); box-shadow: 0 0 0 1px var(--text); }
.choice input { position: absolute; opacity: 0; }
.choice__radio { flex: none; width: 20px; height: 20px; border: 1px solid var(--border-strong); border-radius: 50%; margin-top: 2px; display: grid; place-items: center; }
.choice__radio::after { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--text); transform: scale(0); transition: transform var(--dur-fast) var(--ease-spring); }
.choice:has(input:checked) .choice__radio { border-color: var(--text); }
.choice:has(input:checked) .choice__radio::after { transform: scale(1); }
.choice__title { display: flex; align-items: center; gap: var(--space-2); font-weight: var(--weight-semibold); font-size: var(--text-sm); }
.choice__body p { margin-top: var(--space-1); font-size: var(--text-sm); color: var(--text-muted); line-height: var(--leading-snug); }
.onboard__pass { margin-top: var(--space-4); }
.onboard__note { font-size: var(--text-xs); color: var(--text-muted); margin-top: var(--space-2); }
.onboard__actions { margin-top: var(--space-6); display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); }
.onboard__err { font-size: var(--text-sm); color: var(--text); }
.onboard__code { margin-top: var(--space-5); }
.onboard__alias { display: flex; gap: var(--space-2); margin-top: var(--space-5); align-items: stretch; }
.onboard__alias .input-affix { flex: 1; }
.onboard__progress { display: flex; gap: 6px; margin-top: var(--space-6); }
.onboard__progress span { height: 3px; flex: 1; border-radius: var(--radius-full); background: var(--border); }
.onboard__progress span.on { background: var(--text); }
