:root {
  --ink: #233b32;
  --muted: #7b827b;
  --green: #214e3f;
  --line: #e7e9e1;
  --paper: #f7f8f3;
  --white: #fff;
  --lime: #e0ecad;
  --amber: #a87936;
  --font:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Microsoft YaHei", sans-serif;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
button,
a {
  touch-action: manipulation;
}
button {
  color: inherit;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #95b599;
  outline-offset: 3px;
}
a {
  color: inherit;
  text-decoration: none;
}
svg.icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  vertical-align: middle;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1 {
  font-size: 31px;
  letter-spacing: -1.3px;
  font-weight: 650;
  line-height: 1.5;
}
h2 {
  font-size: 17px;
  font-weight: 620;
}
h3 {
  font-size: 15px;
}
p {
  line-height: 1.8;
}
small {
  font-size: 11px;
}
.sidebar {
  width: 222px;
  position: fixed;
  inset: 0 auto 0 0;
  background: #f0f2e9;
  border-right: 1px solid #e1e5d8;
  display: flex;
  flex-direction: column;
  padding: 32px 20px;
  z-index: 10;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 650;
  letter-spacing: 1px;
  padding: 0 7px;
}
.brand-mark {
  height: 43px;
  width: 43px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: var(--lime);
  border-radius: 13px;
}
.brand-mark .icon {
  width: 25px;
  height: 25px;
}
.brand-sub {
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  margin-top: 2px;
  color: #707b68;
}
.workspace {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #dee3d5;
  background: #f9faf6;
  border-radius: 10px;
  padding: 13px 10px;
  margin: 38px 0 30px;
}
.workspace-avatar {
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: #e3e9d5;
  width: 33px;
  height: 33px;
  font-weight: 600;
}
.workspace strong {
  font-size: 12px;
}
.workspace small {
  display: block;
  font-size: 10px;
  color: var(--muted);
  margin-top: 4px;
}
.workspace-check {
  margin-left: auto;
  color: #789068;
}
.workspace-check .icon {
  width: 14px;
}
.nav-label {
  color: #949c8d;
  font-size: 10px;
  letter-spacing: 1.7px;
  margin: 0 14px 13px;
}
.nav-item {
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  border-radius: 8px;
  color: #717b6d;
  text-align: left;
  margin: 5px 0;
}
.nav-item.active {
  background: #214e3f;
  color: #fff;
  box-shadow: 0 3px 8px #214e3f12;
}
.nav-item:hover:not(.active) {
  background: #e5e9dd;
}
.nav-item .icon {
  width: 18px;
}
.nav-item span:not(.nav-count) {
  flex: 1;
}
.nav-count {
  font-size: 10px;
  background: #e0e5d6;
  padding: 2px 6px;
  border-radius: 4px;
  color: #647753;
}
.nav-item.active .nav-count {
  background: #ffffff25;
  color: #e0ecad;
}
.sidebar-bottom {
  margin-top: auto;
}
.storage-note {
  display: flex;
  gap: 9px;
  color: #7e8a73;
  font-size: 11px;
  padding: 16px 4px;
}
.storage-note .icon {
  width: 15px;
}
.storage-note small {
  display: block;
  font-size: 9px;
  line-height: 1.8;
  margin-top: 4px;
}
.profile {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-top: 1px solid #dce3d2;
  background: none;
  width: 100%;
  padding: 20px 1px 0;
  text-align: left;
  font-size: 12px;
}
.profile small {
  display: block;
  color: #7b8871;
  font-size: 10px;
  margin-top: 4px;
}
.profile > .icon {
  margin-left: auto;
  width: 14px;
}
.avatar {
  height: 33px;
  width: 33px;
  display: grid;
  place-items: center;
  background: #dac8ac;
  color: #604b33;
  border-radius: 50%;
  font-weight: 600;
}
.avatar.pale {
  background: #e6eddc;
  color: var(--green);
}
.main-shell {
  margin-left: 222px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 0 42px;
  border-bottom: 1px solid var(--line);
  background: #fbfcf8;
}
.breadcrumb {
  display: flex;
  gap: 15px;
  color: #909889;
  font-size: 12px;
}
.breadcrumb strong {
  font-weight: 500;
  color: #53614b;
}
.breadcrumb span {
  color: #c1c6b8;
}
.top-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}
.preview-tag {
  font-size: 11px;
  color: #72816a;
  display: flex;
  gap: 7px;
  align-items: center;
}
.preview-tag i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9bad7e;
}
.icon-button {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
}
.icon-button .icon {
  width: 15px;
}
main {
  padding: 23px 42px 36px;
  max-width: 1560px;
  width: 100%;
  margin: 0 auto;
}
.demo-notice {
  font-size: 11px;
  color: #969d8e;
  display: flex;
  gap: 7px;
  align-items: center;
  margin-bottom: 29px;
  line-height: 1.6;
}
.demo-notice .icon {
  width: 14px;
  height: 14px;
}
.page-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}
.eyebrow {
  font-size: 9px;
  letter-spacing: 2.5px;
  font-weight: 600;
  color: #93a185;
  margin-bottom: 8px;
}
.page-heading p {
  font-size: 12px;
  color: #92988b;
  margin-top: 7px;
  letter-spacing: 0.2px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 41px;
  border-radius: 7px;
  padding: 10px 18px;
  border: 1px solid transparent;
  font-size: 12px;
  white-space: nowrap;
  font-weight: 550;
}
.button .icon {
  width: 16px;
  height: 16px;
}
.primary {
  background: var(--green);
  color: white;
  box-shadow: 0 2px 3px #183d3010;
}
.primary:hover:not(:disabled) {
  background: #143b2c;
}
.secondary {
  background: white;
  color: #4c6352;
  border-color: #dbe2d5;
}
.secondary:hover {
  background: #f5f8ef;
}
.overview-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #465940;
  font-size: 12px;
  margin-bottom: 13px;
}
.overview-label small {
  font-size: 10px;
  color: #a0a594;
  margin-left: 12px;
}
.currency-select {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: #99a08f;
}
.currency-select select {
  border: 0;
  background: none;
  font-size: 11px;
  color: #64775d;
  padding: 6px 3px;
}
.summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr;
  gap: 17px;
  margin-bottom: 31px;
}
.summary-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  padding: 23px 24px;
}
.summary-card > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #8a9284;
  font-size: 12px;
}
.metric-icon {
  font-size: 18px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  background: #f3f6ed;
  border-radius: 50%;
  color: #739269;
}
.metric-icon.expense {
  background: #faf3eb;
  color: #b58b64;
}
.summary-card strong {
  display: block;
  font-size: 30px;
  font-weight: 550;
  letter-spacing: -1px;
  font-variant-numeric: tabular-nums;
  margin: 17px 0 9px;
}
.summary-card p {
  font-size: 10px;
  color: #a3a99b;
}
.summary-card.net {
  background: #e5edce;
  border-color: #dae4bd;
}
.net > div {
  color: #698356;
}
.net strong {
  color: #3f633b;
  position: relative;
  z-index: 1;
}
.net p {
  color: #8ca075;
}
.net p span {
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid #bccb9d;
}
.net .metric-icon {
  background: #d7e3b5;
  color: #6e8a4e;
}
.card-orbit {
  width: 190px;
  height: 190px;
  border: 1px solid #c6d6a56b;
  position: absolute;
  border-radius: 50%;
  right: -90px;
  bottom: -104px;
  box-shadow:
    0 0 0 23px #cedbb52e,
    0 0 0 46px #cedbb51c;
  pointer-events: none;
}
.ledger-section {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 11px;
  overflow: hidden;
}
.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 20px;
  gap: 15px;
}
.section-title > div {
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-title span {
  font-size: 10px;
  color: #9aa18f;
}
.text-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 0;
  font-size: 11px;
  color: #7f8a72;
  padding: 5px 0;
}
.text-button .icon {
  width: 14px;
  height: 14px;
}
.text-button b {
  font-size: 10px;
  font-weight: 500;
  background: #f5ecd8;
  color: #aa8746;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 2px;
}
.filters {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 0 24px 20px;
}
.search-field {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f8f9f5;
  border: 1px solid #ebede4;
  border-radius: 6px;
  padding: 8px 10px;
  min-width: 200px;
  width: 290px;
  color: #a0a796;
}
.search-field .icon {
  width: 14px;
  height: 14px;
}
.search-field input {
  width: 100%;
  border: 0;
  outline: none;
  background: none;
  font-size: 11px;
  padding: 0;
  min-height: 18px;
  color: var(--ink);
}
input::placeholder,
textarea::placeholder {
  color: #a4ad9b;
}
.filter-selects {
  display: flex;
  gap: 8px;
}
.filter-selects select {
  background: white;
  border: 1px solid #e9ece2;
  border-radius: 6px;
  padding: 8px 9px;
  color: #808b75;
  font-size: 11px;
  max-width: 140px;
}
.table-scroll {
  overflow: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  white-space: nowrap;
}
thead {
  background: #f8f9f5;
}
th {
  color: #919a84;
  font-size: 10px;
  font-weight: 400;
  padding: 12px 18px;
}
td {
  padding: 15px 18px;
  border-top: 1px solid #f0f1eb;
  font-size: 11px;
}
th:first-child,
td:first-child {
  padding-left: 24px;
}
th:last-child,
td:last-child {
  padding-right: 20px;
  padding-left: 6px;
}
tbody tr:hover {
  background: #fcfdf9;
}
.date-cell {
  color: #6c7960;
  font-variant-numeric: tabular-nums;
  font-size: 11px;
}
.date-cell small {
  display: block;
  color: #aab19f;
  font-size: 9px;
  margin-top: 5px;
}
.transaction-name {
  display: flex;
  align-items: center;
  gap: 11px;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 0;
}
.transaction-name strong {
  font-weight: 550;
  font-size: 12px;
  color: #4c5d43;
}
.transaction-name small {
  display: block;
  font-size: 10px;
  color: #9ba28f;
  margin-top: 5px;
}
.transaction-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #f6f3ec;
  color: #a5987a;
}
.transaction-icon.income {
  color: #83956a;
  background: #eff4e7;
}
.transaction-icon .icon {
  width: 16px;
  height: 16px;
}
.category {
  font-size: 10px;
  background: #f5f6f0;
  color: #8e977e;
  border-radius: 4px;
  padding: 4px 7px;
}
.account-cell {
  font-size: 10px;
  color: #819070;
}
.account-cell small {
  display: block;
  color: #aeb59f;
  font-size: 9px;
  margin-top: 5px;
}
.amount {
  text-align: right;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.1px;
  font-size: 12px;
  font-weight: 550;
}
.income {
  color: #65845c;
}
.expense {
  color: #45533e;
}
.status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  white-space: nowrap;
  border-radius: 4px;
  padding: 4px 6px;
}
.status i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}
.confirmed {
  background: #f0f5e8;
  color: #8a9b71;
}
.pending {
  background: #faf3e4;
  color: #b79859;
}
.row-more {
  border: 0;
  background: transparent;
  color: #b5bba9;
  padding: 5px;
}
.row-more .icon {
  width: 13px;
}
.align-right {
  text-align: right;
}
.table-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 24px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  color: #a5ad98;
  gap: 12px;
}
.table-footer > span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.table-footer .icon {
  width: 12px;
  height: 12px;
}
.table-footer .text-button {
  font-size: 10px;
}
.bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 21px;
}
.link-card {
  display: flex;
  align-items: center;
  text-align: left;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 9px;
  padding: 19px 22px;
  gap: 14px;
}
.link-card:hover {
  border-color: #b8c7a5;
}
.link-card strong {
  font-size: 12px;
  font-weight: 550;
}
.link-card p {
  font-size: 10px;
  color: #a0a892;
  margin-top: 5px;
}
.link-card > .icon {
  margin-left: auto;
  width: 16px;
  color: #9ca88b;
}
.soft-icon {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  background: #eef3e4;
  color: #879b68;
  border-radius: 9px;
  flex-shrink: 0;
}
.soft-icon .icon {
  width: 18px;
}
.soft-icon.beige {
  background: #f8f2e7;
  color: #b59c70;
}
.app-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 42px 25px;
  font-size: 9px;
  color: #b1b7a6;
  margin-top: auto;
  letter-spacing: 0.5px;
}
.empty {
  text-align: center;
  padding: 55px 20px;
  color: #9ba68d;
}
.empty > .icon {
  width: 30px;
  height: 30px;
  margin-bottom: 12px;
}
.empty h3 {
  font-weight: 500;
  margin-bottom: 9px;
}
.empty p {
  font-size: 12px;
}
.empty.compact {
  padding: 30px;
}
.record-grid {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 23px;
}
.compose-panel,
.white-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 25px;
}
.panel-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 23px;
  border-bottom: 1px solid #eff1e9;
}
.panel-heading p {
  font-size: 10px;
  color: #a2aa96;
  margin-top: 5px;
}
.chat-area {
  display: flex;
  align-items: start;
  gap: 12px;
  margin-top: 30px;
}
.assistant-avatar {
  display: grid;
  place-items: center;
  background: #e7eed6;
  color: #597e42;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 8px;
  font-size: 12px;
}
.assistant-message {
  background: #f5f7ef;
  padding: 18px;
  border-radius: 0 10px 10px 10px;
  font-size: 12px;
}
.assistant-message strong {
  font-weight: 550;
}
.assistant-message p {
  font-size: 11px;
  color: #859577;
  margin-top: 9px;
  line-height: 2;
}
.subtle-note {
  color: #a7af9a;
  font-size: 10px;
  margin-top: 15px;
  padding-top: 12px;
  border-top: 1px solid #e6ebdc;
  line-height: 1.7;
}
.example-actions {
  display: flex;
  gap: 10px;
  margin: 21px 0 30px 42px;
}
.example-actions button {
  border: 1px solid #e3e8d9;
  border-radius: 5px;
  background: white;
  color: #899a76;
  font-size: 10px;
  padding: 7px 10px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.example-actions .icon {
  width: 12px;
  height: 12px;
}
.composer {
  border: 1px solid #dfe6d6;
  border-radius: 9px;
  padding: 15px;
  background: #fdfefb;
}
.composer textarea {
  width: 100%;
  height: 78px;
  resize: vertical;
  border: 0;
  background: none;
  outline: none;
  font-size: 12px;
  line-height: 1.8;
  color: var(--ink);
}
.composer-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}
.attach-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: #8d9d7a;
  cursor: pointer;
}
.attach-button input {
  width: 1px;
  height: 1px;
  position: absolute;
  opacity: 0;
}
.attach-button .icon {
  width: 16px;
}
.attach-button:focus-within {
  outline: 2px solid #8b9f75;
  outline-offset: 5px;
}
.privacy-hint {
  display: flex;
  gap: 5px;
  font-size: 9px;
  color: #a9b29b;
  margin-top: 13px;
}
.privacy-hint .icon {
  width: 12px;
  height: 16px;
}
.record-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.white-card .eyebrow {
  font-size: 8px;
}
.white-card h2 {
  font-size: 16px;
  margin-bottom: 24px;
}
.step {
  display: flex;
  gap: 14px;
  margin-top: 22px;
}
.step > span {
  font-size: 10px;
  color: #8ba16e;
  border: 1px solid #e1e8d8;
  border-radius: 50%;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.step strong {
  font-size: 12px;
  font-weight: 550;
}
.step p {
  font-size: 10px;
  color: #a0aa93;
  margin-top: 5px;
}
.tip-card {
  display: flex;
  gap: 10px;
  background: #efefe4;
  border-radius: 9px;
  padding: 20px;
  color: #8b956e;
}
.tip-card > .icon {
  width: 16px;
  height: 16px;
  margin-top: 2px;
}
.tip-card strong {
  font-size: 12px;
  font-weight: 550;
}
.tip-card p {
  font-size: 10px;
  line-height: 1.9;
  margin-top: 7px;
  color: #9ca58b;
}
.tip-card .text-button {
  margin-top: 8px;
}
.pending-section {
  margin-top: 25px;
}
.pending-section .section-title {
  padding: 10px 0 16px;
}
.pending-item {
  width: 100%;
  display: flex;
  gap: 16px;
  align-items: center;
  text-align: left;
  padding: 18px 22px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 8px;
  margin-bottom: 9px;
}
.pending-item > div {
  flex: 1;
}
.pending-item strong {
  font-size: 12px;
  font-weight: 550;
}
.pending-item small {
  display: block;
  font-size: 10px;
  color: #9da78d;
  margin-top: 5px;
}
.pending-item > b {
  font-size: 15px;
  font-weight: 550;
  font-variant-numeric: tabular-nums;
}
.pending-item > .icon {
  width: 13px;
  color: #b0b8a1;
}
.file-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.file-chips > span {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 8px;
  background: #edf2e3;
  border-radius: 5px;
  font-size: 10px;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.file-chips .icon {
  width: 12px;
  height: 12px;
}
.process-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 30px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-bottom: 18px;
}
.process-strip > span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #8b987b;
}
.process-strip b {
  font-size: 11px;
  font-weight: 400;
  background: #eef3e5;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
}
.process-strip > .icon {
  width: 15px;
  color: #c9d2bc;
}
.inline-notice {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  background: #f6f3e9;
  border: 1px solid #efeadb;
  padding: 13px 16px;
  border-radius: 7px;
  font-size: 11px;
  line-height: 1.8;
  color: #a09573;
  margin-bottom: 20px;
}
.inline-notice .icon {
  height: 17px;
  width: 15px;
  margin-top: 2px;
}
.task-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.task-card {
  display: block;
  text-align: left;
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px;
  min-width: 0;
}
.task-card:hover {
  border-color: #bcc8a9;
}
.task-card-top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
  margin-bottom: 25px;
}
.task-card h2 {
  font-size: 15px;
  overflow-wrap: anywhere;
}
.task-card > p {
  color: #a2ac94;
  font-size: 11px;
  margin-top: 9px;
}
.task-excerpt {
  font-size: 11px;
  color: #99a489;
  line-height: 2;
  margin: 20px 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 66px;
  overflow-wrap: anywhere;
}
.task-card-bottom {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding-top: 15px;
  font-size: 9px;
  color: #a4b191;
}
.task-card-bottom > span:last-child {
  color: #758c5f;
}
.tip-card.wide {
  margin-top: 24px;
}
.report-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #e7ecd9;
  border: 1px solid #dce4cb;
  border-radius: 12px;
  padding: 33px 38px;
  overflow: hidden;
}
.report-banner h2 {
  font-size: 23px;
  letter-spacing: -0.5px;
  margin-top: 12px;
  font-weight: 550;
}
.report-banner p {
  font-size: 12px;
  color: #93a181;
  margin-top: 12px;
}
.report-pill {
  display: inline-block;
  font-size: 10px;
  color: #809364;
  border: 1px solid #c9d5b4;
  padding: 6px 10px;
  border-radius: 5px;
  margin-top: 21px;
}
.report-art {
  display: flex;
  align-items: end;
  gap: 14px;
  height: 125px;
  padding-right: 40px;
  transform: rotate(-4deg);
}
.report-art span {
  width: 27px;
  background: #b2c396;
  border-radius: 6px 6px 0 0;
  transform: skewY(6deg);
}
.report-art span:nth-child(1) {
  height: 33%;
}
.report-art span:nth-child(2) {
  height: 53%;
  background: #c5d0b1;
}
.report-art span:nth-child(3) {
  height: 48%;
}
.report-art span:nth-child(4) {
  height: 77%;
  background: #a0b785;
}
.report-art span:nth-child(5) {
  height: 100%;
  background: #718e5c;
}
.report-section-title {
  padding: 29px 0 20px;
}
.report-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.report-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 26px;
}
.report-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #a3b090;
  font-size: 12px;
  letter-spacing: 1px;
}
.report-top .status {
  letter-spacing: 0;
}
.report-card > h2 {
  font-size: 46px;
  line-height: 1.1;
  font-weight: 400;
  margin-top: 20px;
}
.report-card h2 small {
  font-size: 15px;
  color: #6f835b;
  margin-left: 12px;
  font-weight: 500;
}
.report-card > p {
  font-size: 10px;
  color: #a6b099;
  margin-top: 10px;
}
.report-value {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 24px 0 18px;
  padding: 18px 0;
}
.report-value > span {
  display: block;
  color: #9ba989;
  font-size: 11px;
}
.report-value strong {
  display: block;
  font-size: 28px;
  font-weight: 400;
  color: #c1cbb4;
  margin-top: 8px;
}
.report-value small {
  font-size: 10px;
  color: #b0b99e;
}
.report-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 9px;
  color: #a9b697;
  margin-bottom: 23px;
}
.report-meta .icon {
  width: 12px;
  height: 12px;
  margin-right: 4px;
}
.report-card .button {
  width: 100%;
  justify-content: space-between;
}
dialog {
  border: 1px solid #dee5d4;
  border-radius: 14px;
  box-shadow: 0 20px 100px #13331b30;
  color: var(--ink);
  width: 540px;
  max-width: calc(100% - 32px);
  max-height: 90vh;
  padding: 25px;
  overflow: auto;
  background: #fcfdf9;
}
dialog::backdrop {
  background: #18352850;
  backdrop-filter: blur(3px);
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 23px;
}
.modal-header h2 {
  font-size: 19px;
}
.modal-intro {
  font-size: 12px;
  color: #909e80;
  margin-bottom: 22px;
}
.modal-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding-top: 19px;
  border-top: 1px solid #e4eadb;
}
.detail-hero {
  text-align: center;
  padding: 10px 0 25px;
  border-bottom: 1px solid var(--line);
}
.detail-hero h3 {
  font-size: 36px;
  letter-spacing: -1px;
  font-weight: 550;
  margin: 15px 0 10px;
}
.detail-hero p {
  font-size: 12px;
  color: #869875;
}
.details {
  margin: 21px 0;
}
.details > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  margin: 15px 0;
  font-size: 12px;
}
.details dt {
  color: #99a989;
  flex-shrink: 0;
}
.details dd {
  text-align: right;
  margin: 0;
  overflow-wrap: anywhere;
  max-width: 75%;
}
.detail-block {
  margin-top: 24px;
}
.detail-block h3 {
  font-size: 12px;
  margin-bottom: 14px;
}
.detail-block > p {
  font-size: 11px;
  color: #8b9a7b;
}
.muted {
  color: #9aab88;
  font-size: 11px;
  line-height: 1.8;
}
.history-item {
  display: flex;
  gap: 12px;
  margin: 13px 0;
  align-items: baseline;
}
.history-item > i {
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: #b0c399;
  flex-shrink: 0;
}
.history-item p {
  font-size: 11px;
  color: #6b8357;
}
.history-item small {
  font-size: 9px;
  color: #a5b593;
}
.changes {
  font-size: 10px;
  color: #879977;
  padding-left: 15px;
  line-height: 1.8;
  overflow-wrap: anywhere;
}
.attachment {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px;
  width: 100%;
  text-align: left;
  background: #f1f5e9;
  border: 1px solid #e1e8d5;
  border-radius: 7px;
  margin-bottom: 7px;
  font-size: 11px;
  overflow-wrap: anywhere;
}
.attachment > span {
  flex: 1;
  min-width: 0;
}
.attachment small {
  display: block;
  font-size: 9px;
  color: #9cac87;
  margin-top: 5px;
}
.attachment .icon {
  width: 15px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}
.form-grid label,
.full-label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 11px;
  color: #7f956b;
}
.form-grid input,
.form-grid select,
.full-label input,
.full-label textarea {
  min-width: 0;
  width: 100%;
  border: 1px solid #dfe7d5;
  border-radius: 6px;
  background: white;
  padding: 10px;
  color: #526f3d;
  font-size: 12px;
  min-height: 39px;
}
.full-label {
  margin-top: 17px;
}
.full-label textarea {
  height: 75px;
  resize: vertical;
}
.form-error {
  color: #b04b36;
  font-size: 11px;
  line-height: 1.8;
  margin-top: 16px;
}
.form-error:empty {
  display: none;
}
.file-line {
  display: flex;
  align-items: center;
  gap: 7px;
  overflow-wrap: anywhere;
}
.file-line .icon {
  width: 13px;
}
.role-card {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.role-card h3 {
  font-size: 13px;
  margin-bottom: 4px;
}
.role-card p {
  font-size: 11px;
  color: #94a282;
}
.role-card + .inline-notice {
  margin-top: 12px;
}
.upload-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 12px;
  border: 1px dashed #b4c59f;
  background: #f3f7eb;
  border-radius: 9px;
  margin: 20px 0 12px;
  text-align: center;
  cursor: pointer;
  color: #88a16b;
}
.upload-zone strong {
  font-size: 12px;
}
.upload-zone span {
  font-size: 9px;
}
.upload-zone input {
  font-size: 10px;
  max-width: 100%;
  color: #819c63;
}
.task-note {
  font-size: 12px;
  line-height: 2;
  white-space: pre-wrap;
  background: #f2f5eb;
  padding: 18px;
  border-radius: 8px;
  color: #788f60;
  overflow-wrap: anywhere;
}
#toast {
  position: fixed;
  bottom: 28px;
  left: calc(50% + 111px);
  transform: translate(-50%, 15px);
  padding: 13px 22px;
  background: #244a36;
  color: white;
  border-radius: 9px;
  font-size: 12px;
  box-shadow: 0 5px 25px #153d3320;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
  max-width: 80vw;
  line-height: 1.6;
}
#toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.boot {
  padding: 80px 30px;
  text-align: center;
  color: #6c7d5d;
}
.boot p {
  margin-top: 20px;
}
@media (min-width: 1450px) {
  main {
    padding-left: 55px;
    padding-right: 55px;
  }
  .summary-card strong {
    font-size: 34px;
  }
  td {
    padding-top: 17px;
    padding-bottom: 17px;
  }
  .summary-card {
    padding: 27px;
  }
}
@media (max-width: 1180px) {
  .sidebar {
    width: 190px;
    padding: 28px 14px;
  }
  .main-shell {
    margin-left: 190px;
  }
  .topbar {
    padding: 0 28px;
  }
  main {
    padding: 22px 28px 30px;
  }
  .app-footer {
    padding-left: 28px;
    padding-right: 28px;
  }
  .summary-card {
    padding: 20px;
  }
  .summary-card strong {
    font-size: 26px;
  }
  .filters {
    flex-wrap: wrap;
  }
  .search-field {
    width: 100%;
  }
  .filter-selects {
    width: 100%;
  }
  .filter-selects select {
    flex: 1;
    max-width: none;
  }
  .task-grid {
    grid-template-columns: 1fr 1fr;
  }
  .record-grid {
    grid-template-columns: 1.5fr 1fr;
  }
  .compose-panel,
  .white-card {
    padding: 20px;
  }
  #toast {
    left: calc(50% + 95px);
  }
}
@media (max-width: 900px) {
  .record-grid {
    grid-template-columns: 1fr;
  }
  .record-side {
    display: none;
  }
  .summary-card strong {
    font-size: 23px;
  }
  .summary-card {
    padding: 17px;
  }
  .summary-grid {
    gap: 10px;
  }
  .bottom-grid {
    gap: 10px;
  }
  .link-card {
    padding: 16px 13px;
    gap: 9px;
  }
  .link-card p {
    font-size: 9px;
  }
  .process-strip {
    padding: 18px;
  }
  .process-strip > span {
    font-size: 10px;
  }
  .process-strip b {
    width: 22px;
    height: 22px;
  }
  .report-art {
    padding-right: 0;
    gap: 8px;
  }
  .report-art span {
    width: 20px;
  }
  .report-banner {
    padding: 26px;
  }
  .report-banner h2 {
    font-size: 20px;
  }
  .account-cell {
    display: none;
  }
  th:nth-child(4) {
    display: none;
  }
  .report-meta {
    display: grid;
  }
  .task-card {
    padding: 20px;
  }
}
@media (max-width: 680px) {
  body {
    padding-bottom: 78px;
  }
  .sidebar {
    width: 100%;
    height: 66px;
    inset: auto 0 0;
    padding: 0 5px;
    background: #fbfcf7;
    border-right: 0;
    border-top: 1px solid #dee6d2;
    z-index: 20;
    box-shadow: 0 -5px 20px #36432805;
  }
  .sidebar .brand,
  .workspace,
  .nav-label,
  .sidebar-bottom {
    display: none;
  }
  .sidebar nav {
    display: flex;
    justify-content: space-around;
    height: 100%;
    align-items: center;
  }
  .nav-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 7px 8px;
    margin: 0;
    width: 23%;
    font-size: 10px;
    border-radius: 6px;
    position: relative;
    height: 52px;
  }
  .nav-item.active {
    background: #e7efda;
    color: #527240;
    box-shadow: none;
  }
  .nav-item .icon {
    width: 19px;
    height: 19px;
  }
  .nav-item span:not(.nav-count) {
    flex: 0;
  }
  .nav-count {
    position: absolute;
    top: 3px;
    right: 18%;
    font-size: 8px;
  }
  .main-shell {
    margin: 0;
  }
  .topbar {
    padding: 0 20px;
    min-height: 61px;
  }
  .breadcrumb {
    font-size: 11px;
    gap: 10px;
  }
  .top-actions {
    gap: 12px;
  }
  .preview-tag {
    font-size: 9px;
  }
  main {
    padding: 17px 18px 24px;
  }
  .demo-notice {
    font-size: 9px;
    align-items: flex-start;
    margin-bottom: 23px;
    line-height: 1.8;
  }
  .demo-notice .icon {
    margin-top: 2px;
    flex-shrink: 0;
  }
  .page-heading {
    margin-bottom: 24px;
    align-items: flex-end;
    gap: 8px;
  }
  .eyebrow {
    font-size: 8px;
    letter-spacing: 2px;
    margin-bottom: 8px;
  }
  h1 {
    font-size: 24px;
    letter-spacing: -1px;
  }
  .page-heading p {
    font-size: 10px;
    max-width: 250px;
    margin-top: 8px;
    line-height: 1.9;
  }
  .page-heading > .button {
    min-height: 36px;
    padding: 9px 12px;
    font-size: 10px;
    gap: 4px;
  }
  .page-heading > .button .icon {
    width: 14px;
  }
  .summary-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
  }
  .summary-card {
    padding: 16px;
  }
  .summary-card > div {
    font-size: 10px;
  }
  .metric-icon {
    width: 22px;
    height: 22px;
    font-size: 15px;
  }
  .summary-card strong {
    font-size: 23px;
    letter-spacing: -0.6px;
    margin-top: 14px;
    margin-bottom: 7px;
  }
  .summary-card p {
    font-size: 9px;
  }
  .summary-card.net {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 17px 18px;
  }
  .net > div .metric-icon {
    display: none;
  }
  .net strong {
    text-align: right;
    grid-column: 2;
    grid-row: 1/3;
    margin: 0;
    font-size: 28px;
  }
  .net p {
    margin-top: 8px;
  }
  .overview-label {
    font-size: 11px;
  }
  .overview-label small {
    font-size: 8px;
    margin-left: 6px;
  }
  .currency-select {
    font-size: 9px;
    gap: 3px;
  }
  .currency-select select {
    font-size: 10px;
  }
  .section-title {
    padding: 19px 15px 16px;
  }
  .section-title h2 {
    font-size: 15px;
  }
  .section-title span {
    font-size: 9px;
  }
  .section-title > div {
    gap: 9px;
  }
  .text-button {
    font-size: 10px;
  }
  .filters {
    padding: 0 15px 16px;
    gap: 9px;
  }
  .search-field {
    padding: 9px;
  }
  .filter-selects {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
  }
  .filter-selects select {
    width: 100%;
    padding: 8px 6px;
    font-size: 10px;
  }
  .table-scroll {
    overflow: visible;
  }
  table,
  tbody {
    display: block;
    width: 100%;
  }
  thead {
    display: none;
  }
  tbody tr {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    position: relative;
    border-top: 1px solid #eff1e7;
    padding: 16px 14px;
    gap: 10px 6px;
  }
  td {
    border: 0;
    padding: 0 !important;
  }
  .date-cell {
    grid-column: 1;
    grid-row: 2;
    padding-left: 39px !important;
    font-size: 9px;
    color: #a0ad8e;
  }
  .date-cell small {
    display: inline;
    font-size: 9px;
    margin-left: 5px;
  }
  td:nth-child(2) {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }
  td:nth-child(3),
  td:nth-child(4),
  td:last-child {
    display: none;
  }
  .transaction-name {
    gap: 9px;
    max-width: 100%;
  }
  .transaction-name strong {
    font-size: 11px;
  }
  .transaction-name small {
    font-size: 9px;
    line-height: 1.5;
    margin-top: 4px;
    max-width: 145px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .transaction-icon {
    width: 30px;
    height: 30px;
  }
  .transaction-icon .icon {
    width: 14px;
  }
  .amount {
    grid-column: 2;
    grid-row: 1;
    font-size: 12px;
    padding-top: 4px !important;
  }
  .status {
    font-size: 8px;
  }
  .status.pending,
  .status.confirmed {
    padding: 3px 5px;
  }
  td:nth-child(6) {
    grid-column: 2;
    grid-row: 2;
    text-align: right;
  }
  .table-footer {
    padding: 13px 15px;
    align-items: flex-start;
    font-size: 9px;
    line-height: 1.8;
  }
  .table-footer > span {
    max-width: 220px;
    align-items: flex-start;
  }
  .table-footer > span .icon {
    margin-top: 3px;
  }
  .table-footer .text-button {
    font-size: 9px;
    flex-shrink: 0;
  }
  .bottom-grid {
    grid-template-columns: 1fr;
    margin-top: 15px;
  }
  .link-card {
    padding: 16px;
    gap: 12px;
  }
  .link-card p {
    font-size: 10px;
  }
  .app-footer {
    font-size: 8px;
    padding: 8px 19px 17px;
    gap: 10px;
  }
  #toast {
    left: 50%;
    bottom: 82px;
    max-width: 90vw;
    width: max-content;
    font-size: 11px;
  }
  .compose-panel {
    padding: 18px;
  }
  .panel-heading h2 {
    font-size: 15px;
  }
  .chat-area {
    gap: 8px;
    margin-top: 22px;
  }
  .assistant-message {
    padding: 14px;
  }
  .assistant-message p {
    font-size: 10px;
  }
  .assistant-message strong {
    font-size: 12px;
  }
  .assistant-avatar {
    width: 26px;
    height: 26px;
    font-size: 10px;
  }
  .subtle-note {
    font-size: 9px;
  }
  .example-actions {
    margin: 18px 0 24px 34px;
    gap: 6px;
    flex-wrap: wrap;
  }
  .example-actions button {
    font-size: 9px;
    padding: 7px;
  }
  .composer {
    padding: 12px;
  }
  .composer textarea {
    font-size: 11px;
  }
  .privacy-hint {
    font-size: 8px;
  }
  .pending-item {
    padding: 15px 12px;
    gap: 9px;
  }
  .pending-item .soft-icon {
    width: 29px;
    height: 29px;
  }
  .pending-item strong {
    font-size: 11px;
  }
  .pending-item small {
    font-size: 9px;
  }
  .pending-item > b {
    font-size: 12px;
  }
  .pending-item > .status {
    display: none;
  }
  .process-strip {
    padding: 15px 12px;
    gap: 5px;
    align-items: flex-start;
  }
  .process-strip > span {
    flex-direction: column;
    gap: 8px;
    font-size: 9px;
    text-align: center;
  }
  .process-strip > .icon {
    width: 12px;
    margin-top: 5px;
  }
  .inline-notice {
    font-size: 10px;
    padding: 12px;
  }
  .task-grid {
    grid-template-columns: 1fr;
  }
  .task-card {
    padding: 21px;
  }
  .task-card-top {
    margin-bottom: 18px;
  }
  .task-excerpt {
    min-height: 0;
    margin: 16px 0;
  }
  .tip-card.wide {
    padding: 17px;
  }
  .tip-card strong {
    font-size: 11px;
  }
  .report-banner {
    padding: 25px 22px;
    position: relative;
  }
  .report-banner h2 {
    font-size: 19px;
    position: relative;
    z-index: 1;
  }
  .report-banner p {
    font-size: 10px;
    max-width: 200px;
  }
  .report-art {
    position: absolute;
    right: 8px;
    bottom: 0;
    opacity: 0.2;
    height: 115px;
  }
  .report-pill {
    font-size: 9px;
  }
  .report-grid {
    grid-template-columns: 1fr;
  }
  .report-card {
    padding: 23px;
  }
  .report-meta {
    display: flex;
  }
  .report-card > h2 {
    font-size: 40px;
  }
  .report-section-title {
    padding-top: 25px;
  }
  dialog {
    max-width: calc(100% - 24px);
    padding: 20px;
    max-height: 88dvh;
  }
  .modal-header h2 {
    font-size: 17px;
  }
  .form-grid {
    gap: 14px 11px;
  }
  .form-grid input,
  .form-grid select {
    font-size: 12px;
    padding: 9px 7px;
  }
  .detail-hero h3 {
    font-size: 32px;
  }
  .details > div {
    font-size: 11px;
  }
  .modal-intro {
    font-size: 11px;
  }
  .role-card p {
    font-size: 10px;
  }
  .modal-footer .button {
    font-size: 11px;
    padding: 10px 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
