@font-face {
  font-family: "Manrope";
  src: url("manrope.woff2") format("woff2");
  font-display: swap;
}

:root {
  --ink: #14211b;
  --muted: #6f776f;
  --soft: #939b91;
  --brand: #1c4b3d;
  --brand-strong: #123428;
  --brand-soft: #e6efe4;
  --sage: #c8dca2;
  --sage-dark: #63836f;
  --accent: #b98431;
  --coral: #bd7059;
  --paper: #f7f6ef;
  --surface: #fffef8;
  --surface-2: #fbfaf4;
  --line: #e5e7de;
  --line-strong: #d7dccf;
  --shadow: 0 18px 42px rgba(34, 47, 38, .1);
  --shadow-soft: 0 8px 22px rgba(34, 47, 38, .07);
  --sidebar: #16241f;
  --sidebar-soft: #22372f;
  --radius: 8px;
  --focus: 0 0 0 3px rgba(185, 132, 49, .2);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(247, 246, 239, .96), rgba(241, 243, 235, .98)),
    var(--paper);
}

body.modal-open,
body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: .52;
}

img,
svg {
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  transition: transform .18s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.initial-loader,
.connection-error {
  min-height: 100vh;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  padding: 24px;
  text-align: center;
  color: var(--muted);
}

.connection-error h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 46px);
}

.connection-error p {
  max-width: 540px;
  margin: 0;
}

.brand-mark {
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  border-radius: var(--radius);
  color: #f9f4e8;
  background: linear-gradient(140deg, var(--brand-strong), var(--brand));
  box-shadow: var(--shadow-soft);
  font-size: 30px;
  font-weight: 850;
  text-transform: uppercase;
}

.brand-mark span {
  color: var(--sage);
}

.app-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 288px minmax(0, 1fr);
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 20px 16px;
  color: #eaf0e5;
  background:
    linear-gradient(180deg, rgba(28, 75, 61, .34), transparent 34%),
    var(--sidebar);
  border-right: 1px solid rgba(255, 255, 255, .08);
  overflow-y: auto;
}

.brand {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 2px 8px 18px;
}

.brand img {
  width: 112px;
  max-height: 38px;
  object-fit: contain;
  filter: brightness(1.08);
}

.brand-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, .2);
}

.books-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  color: #cfe0ca;
}

.workspace-card {
  width: 100%;
  min-height: 64px;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, .06);
  text-align: left;
  transition: border-color .16s ease, background .16s ease, transform .16s ease;
}

.workspace-card:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .09);
}

.workspace-card strong,
.workspace-options strong {
  display: block;
  font-size: 13px;
  line-height: 1.2;
}

.workspace-card small,
.workspace-options small {
  display: block;
  margin-top: 3px;
  color: rgba(234, 240, 229, .72);
  font-size: 11px;
}

.workspace-avatar,
.client-avatar,
.service-icon,
.activity-icon,
.metric-icon,
.empty-icon,
.settings-icon,
.note-spark {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}

.workspace-avatar {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: #f4ead6;
  color: var(--brand-strong);
  font-weight: 850;
}

.demo-avatar {
  background: rgba(200, 220, 162, .18);
  color: var(--sage);
}

.nav-caption {
  margin: 22px 10px 8px;
  color: rgba(234, 240, 229, .48);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
}

.nav-caption-second {
  margin-top: 18px;
}

.nav-item {
  width: 100%;
  min-height: 42px;
  display: grid;
  grid-template-columns: 20px 1fr auto;
  align-items: center;
  gap: 12px;
  margin: 3px 0;
  padding: 10px 10px;
  border: 0;
  border-radius: var(--radius);
  color: rgba(234, 240, 229, .74);
  background: transparent;
  text-align: left;
  transition: background .16s ease, color .16s ease;
}

.nav-item:hover,
.nav-item.active,
.nav-item[aria-current="page"] {
  color: #fff;
  background: rgba(255, 255, 255, .09);
}

.nav-item.active {
  box-shadow: inset 3px 0 0 var(--sage);
}

.nav-count {
  min-width: 22px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  padding: 0 6px;
  border-radius: 999px;
  color: var(--brand-strong);
  background: var(--sage);
  font-size: 11px;
  font-weight: 850;
}

.sidebar-bottom {
  margin-top: auto;
  padding-top: 22px;
}

.sidebar-note {
  display: grid;
  gap: 9px;
  padding: 14px;
  margin: 4px 0 10px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  color: #f7f7ee;
  background: rgba(255, 255, 255, .055);
}

.sidebar-note strong {
  font-size: 13px;
  line-height: 1.35;
}

.sidebar-note span:last-child {
  color: rgba(234, 240, 229, .64);
  font-size: 12px;
}

.note-spark {
  width: 30px;
  height: 30px;
  border-radius: var(--radius);
  color: var(--sage);
  background: rgba(200, 220, 162, .12);
}

.sidebar-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 14px 8px 0;
  color: rgba(234, 240, 229, .48);
  font-size: 11px;
}

.sync-dot,
.demo-dot,
.small-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--sage);
}

.sync-dot {
  box-shadow: 0 0 0 4px rgba(200, 220, 162, .12);
}

.small-dot {
  display: inline-block;
}

.small-dot.amber {
  background: var(--accent);
}

.small-dot.coral {
  background: var(--coral);
}

.small-dot.green {
  background: var(--sage-dark);
}

.sidebar-backdrop {
  display: none;
}

.main-shell {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 34px;
  border-bottom: 1px solid rgba(229, 231, 222, .86);
  background: rgba(247, 246, 239, .88);
  backdrop-filter: blur(18px);
}

.breadcrumb,
.topbar-actions,
.heading-actions,
.section-toolbar,
.list-toolbar,
.table-footer,
.summary-actions,
.modal-actions {
  display: flex;
  align-items: center;
}

.breadcrumb {
  min-width: 0;
  gap: 8px;
  color: var(--soft);
  font-size: 13px;
}

.breadcrumb strong {
  min-width: 0;
  color: var(--ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.topbar-actions {
  gap: 10px;
}

.topbar-divider {
  width: 1px;
  height: 28px;
  background: var(--line);
}

.search-trigger,
.period-select,
.table-search,
.catalogue-select {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--muted);
}

.search-trigger {
  width: min(34vw, 360px);
  justify-content: flex-start;
  padding: 0 10px;
}

.search-trigger span {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

kbd {
  min-width: 45px;
  padding: 3px 6px;
  border: 1px solid var(--line);
  border-bottom-width: 2px;
  border-radius: 5px;
  background: #f5f4ed;
  color: var(--soft);
  font-size: 11px;
  text-align: center;
}

.icon-button,
.profile-avatar {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--brand);
  background: var(--surface);
  transition: border-color .16s ease, background .16s ease, transform .16s ease, color .16s ease;
}

.icon-button:hover,
.profile-avatar:hover,
.search-trigger:hover,
.period-select:hover,
.table-search:focus-within {
  border-color: #c8d2bf;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.icon-button:active,
.button:active,
.nav-item:active {
  transform: translateY(1px);
}

.icon-button.small {
  width: 32px;
  height: 32px;
}

.mobile-menu {
  display: none;
}

.notification-button {
  position: relative;
}

.notification-button i {
  position: absolute;
  top: 10px;
  right: 11px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--coral);
  box-shadow: 0 0 0 3px var(--surface);
}

.profile-avatar {
  color: #f9f4e8;
  background: var(--brand);
  border-color: var(--brand);
  font-weight: 850;
}

.demo-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 22px 34px 0;
  padding: 12px 14px;
  border: 1px solid #d7e2c7;
  border-radius: var(--radius);
  color: #324638;
  background: #eef5e5;
}

.demo-bar span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

.demo-bar button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  color: var(--brand);
  background: transparent;
  font-weight: 800;
  white-space: nowrap;
}

main {
  flex: 1;
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 34px;
}

.main-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 34px 26px;
  color: var(--soft);
  font-size: 12px;
}

.main-footer span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.footer-dot {
  padding: 0 7px;
}

.page-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 24px;
}

.page-heading h1 {
  margin: 4px 0 8px;
  color: var(--ink);
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.05;
  letter-spacing: 0;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .16em;
}

.page-description {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.heading-actions {
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.button,
.text-button,
.inline-action,
.client-invoice-link,
.activity-all,
.add-line-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease;
}

.button {
  padding: 0 15px;
  border: 1px solid transparent;
  white-space: nowrap;
}

.button.primary {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 10px 18px rgba(28, 75, 61, .18);
}

.button.primary:hover {
  background: var(--brand-strong);
  border-color: var(--brand-strong);
  box-shadow: 0 14px 24px rgba(28, 75, 61, .22);
}

.button.secondary {
  color: var(--brand);
  background: var(--surface);
  border-color: var(--line-strong);
}

.button.secondary:hover {
  border-color: #c5d1bd;
  box-shadow: var(--shadow-soft);
}

.button.full-width {
  width: 100%;
}

.text-button,
.inline-action,
.client-invoice-link,
.activity-all,
.add-line-button {
  border: 0;
  color: var(--brand);
  background: transparent;
}

.text-button:hover,
.inline-action:hover,
.client-invoice-link:hover,
.activity-all:hover,
.add-line-button:hover {
  color: var(--brand-strong);
}

.panel,
.metric-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 254, 248, .9);
  box-shadow: var(--shadow-soft);
}

.panel {
  padding: 22px;
}

.panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.panel-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

.panel-heading p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.metric-card {
  min-height: 164px;
  position: relative;
  overflow: hidden;
  padding: 18px;
}

.metric-primary {
  color: #f9fbf5;
  background:
    linear-gradient(135deg, var(--brand-strong), var(--brand) 62%, #466b52);
  border-color: transparent;
}

.metric-top,
.metric-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.metric-top span:first-child {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.metric-primary .metric-top span:first-child,
.metric-primary .metric-foot,
.metric-primary .metric-icon {
  color: rgba(249, 251, 245, .78);
}

.metric-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
  color: var(--brand);
  background: var(--brand-soft);
}

.metric-value {
  margin: 18px 0 12px;
  font-size: clamp(23px, 2.1vw, 34px);
  line-height: 1.05;
  font-weight: 850;
  letter-spacing: 0;
}

.metric-foot {
  justify-content: flex-start;
  color: var(--muted);
  font-size: 12px;
}

.trend-chip,
.subtle-pill,
.count-chip,
.category-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 24px;
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--brand);
  background: var(--brand-soft);
  font-size: 12px;
  font-weight: 800;
}

.metric-decoration {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: flex;
  align-items: flex-end;
  gap: 5px;
  opacity: .24;
}

.metric-decoration i {
  width: 9px;
  min-height: 30px;
  border-radius: 999px;
  background: #fff;
}

.metric-decoration i:nth-child(2) {
  height: 48px;
}

.metric-decoration i:nth-child(3) {
  height: 68px;
}

.metric-decoration i:nth-child(4) {
  height: 44px;
}

.metric-decoration i:nth-child(5) {
  height: 78px;
}

.analytics-grid,
.bottom-grid,
.reports-grid,
.settings-layout,
.editor-layout,
.invoice-detail-layout {
  display: grid;
  gap: 16px;
}

.analytics-grid {
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, .7fr);
  align-items: stretch;
  margin-bottom: 16px;
}

.bottom-grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .75fr);
}

.reports-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.chart-legend {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--soft);
  font-size: 12px;
}

.chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.chart-legend i {
  width: 10px;
  height: 10px;
  border-radius: 3px;
}

.chart-legend .green {
  background: var(--brand);
}

.chart-legend .pale-green {
  background: var(--sage);
}

.cash-summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.cash-summary strong {
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1;
}

.cash-summary span {
  color: var(--muted);
  font-size: 13px;
}

.chart-container {
  width: 100%;
  overflow: hidden;
}

.cash-chart {
  width: 100%;
  height: auto;
  min-height: 190px;
}

.chart-bar rect {
  transition: opacity .16s ease;
}

.chart-bar:hover rect,
.chart-bar:focus rect {
  opacity: .82;
}

.chart-caption {
  display: flex;
  justify-content: space-between;
  color: var(--soft);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .12em;
}

.chart-caption span {
  letter-spacing: 0;
  font-weight: 700;
}

.donut-wrap {
  position: relative;
  width: 172px;
  height: 172px;
  margin: 4px auto 20px;
}

.donut-wrap svg {
  width: 172px;
  height: 172px;
}

.donut-center {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  pointer-events: none;
}

.donut-center strong {
  font-size: 30px;
  line-height: 1;
}

.donut-center span {
  color: var(--muted);
  font-size: 12px;
}

.donut-legend {
  display: grid;
  gap: 10px;
}

.donut-legend div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
}

.donut-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.donut-legend i {
  width: 9px;
  height: 9px;
  border-radius: 999px;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.mini-stats div {
  min-height: 90px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.mini-stats span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.mini-stats strong {
  display: block;
  margin-top: 10px;
  font-size: 24px;
  line-height: 1.15;
}

.mini-stats small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.table-scroll {
  width: 100%;
  overflow-x: auto;
  scrollbar-width: thin;
}

.data-table,
.line-table,
.paper-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th,
.data-table td,
.line-table th,
.line-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.data-table th,
.line-table th {
  color: var(--soft);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.data-table tbody tr {
  transition: background .16s ease;
}

.data-table tbody tr:hover {
  background: rgba(230, 239, 228, .36);
}

.data-table small,
.client-cell small,
.service-meta,
.overdue-text {
  display: block;
  margin-top: 3px;
  color: var(--soft);
  font-size: 12px;
}

.compact-table th,
.compact-table td {
  padding-top: 12px;
  padding-bottom: 12px;
}

.align-right {
  text-align: right !important;
}

.row-action {
  width: 48px;
}

.amount {
  white-space: nowrap;
}

.client-cell {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 210px;
}

.client-avatar {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--brand);
  font-size: 12px;
  font-weight: 850;
}

.color-0 { background: #1c4b3d; }
.color-1 { background: #7b6f4a; }
.color-2 { background: #597c6d; }
.color-3 { background: #a96e58; }
.color-4 { background: #54718a; }
.color-5 { background: #8a7352; }

.status {
  min-width: 94px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}

.status i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
}

.status.paid {
  color: #26614d;
  background: #e3f1e5;
}

.status.unpaid,
.status.partial,
.status.draft {
  color: #7b6121;
  background: #f4edd4;
}

.status.overdue,
.status.void {
  color: #9d4e3c;
  background: #f6e2dc;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tab {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: var(--surface-2);
  font-weight: 800;
}

.tab span {
  min-width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  padding: 0 6px;
  border-radius: 999px;
  background: #eeeade;
  font-size: 11px;
}

.tab.active {
  color: var(--brand);
  background: var(--brand-soft);
  border-color: #cadbbb;
}

.list-toolbar,
.section-toolbar {
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.table-search {
  padding: 0 11px;
}

.table-search input,
.command-search input {
  min-width: 210px;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}

.table-footer {
  justify-content: space-between;
  gap: 14px;
  padding-top: 16px;
  color: var(--muted);
  font-size: 13px;
}

.table-footer div {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.client-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.client-card,
.service-card {
  min-height: 276px;
  display: flex;
  flex-direction: column;
}

.client-card-top,
.service-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.client-card h2,
.service-card h2 {
  margin: 18px 0 5px;
  font-size: 19px;
  line-height: 1.25;
}

.client-card p,
.service-card p {
  margin: 0;
  color: var(--muted);
}

.client-contact {
  display: grid;
  gap: 9px;
  margin: 18px 0;
  color: var(--muted);
  font-size: 13px;
}

.client-contact span {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-width: 0;
  word-break: break-word;
}

.client-card-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.client-card-stats span {
  color: var(--soft);
  font-size: 12px;
}

.client-card-stats strong {
  display: block;
  margin-top: 4px;
}

.client-invoice-link {
  justify-content: flex-start;
  margin-top: 14px;
}

.service-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  color: #fff;
}

.service-price {
  margin-top: auto;
  padding-top: 18px;
  font-size: 28px;
  line-height: 1;
  font-weight: 850;
}

.service-price span {
  color: var(--soft);
  font-size: 13px;
  font-weight: 700;
}

.service-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.service-meta span {
  padding: 5px 8px;
  border-radius: 999px;
  background: #f1efe6;
}

.activity-list {
  display: grid;
  gap: 14px;
}

.activity-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
}

.activity-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  color: var(--brand);
  background: var(--brand-soft);
}

.activity-icon.payment {
  color: #26614d;
  background: #e3f1e5;
}

.activity-icon.expense {
  color: #9d4e3c;
  background: #f6e2dc;
}

.activity-icon.system {
  color: #7b6121;
  background: #f4edd4;
}

.activity-item strong {
  display: block;
}

.activity-item p {
  margin: 3px 0;
  color: var(--muted);
}

.activity-item time {
  color: var(--soft);
  font-size: 12px;
}

.activity-all {
  margin-top: 18px;
}

.overview-bottom-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 16px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--brand);
  background: #f4f2e8;
  font-weight: 800;
}

.overview-bottom-note span {
  color: var(--muted);
  font-weight: 700;
}

.green-text { color: #24614c; }
.coral-text { color: #a8513d; }
.muted { color: var(--muted); }
.padded { padding: 16px 0; }

.breakdown-list,
.ranking-list,
.summary-rows,
.payment-history-item,
.form-grid,
.workspace-options,
.help-steps {
  display: grid;
  gap: 12px;
}

.breakdown-label,
.summary-rows > div,
.payment-history-item,
.ranking-list > div,
.paper-totals > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.progress-track {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #eceee5;
}

.progress-track i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), var(--sage-dark));
}

.ranking-list > div {
  min-height: 48px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}

.ranking-list > div:last-child {
  border-bottom: 0;
}

.rank {
  color: var(--accent);
  font-weight: 850;
}

.report-date {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--brand);
  background: var(--surface);
  font-weight: 800;
}

.report-date span {
  color: var(--soft);
  font-weight: 700;
}

.report-note,
.form-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.summary-rows {
  gap: 0;
}

.summary-rows > div {
  min-height: 44px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.summary-rows > div:last-child {
  border-bottom: 0;
}

.summary-subtotal,
.summary-total,
.paper-total {
  color: var(--ink);
  font-weight: 850;
}

.summary-total {
  font-size: 18px;
}

.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.span-two {
  grid-column: 1 / -1;
}

.field {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.field > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.field b {
  color: var(--coral);
}

.field input,
.field select,
.field textarea,
.period-select select,
.catalogue-select select {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--surface);
  outline: 0;
}

.field input,
.field select,
.field textarea {
  padding: 10px 12px;
}

.field textarea {
  resize: vertical;
  min-height: 86px;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.period-select:focus-within,
.catalogue-select:focus-within,
.icon-button:focus-visible,
.button:focus-visible,
.nav-item:focus-visible,
.search-trigger:focus-visible {
  outline: 0;
  border-color: var(--accent);
  box-shadow: var(--focus);
}

.period-select,
.catalogue-select {
  position: relative;
  padding: 0 10px;
}

.period-select select,
.catalogue-select select {
  appearance: none;
  min-width: 165px;
  padding: 0 26px 0 0;
  border: 0;
  background: transparent;
  font-weight: 800;
}

.settings-layout {
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: start;
}

.settings-aside {
  display: grid;
  gap: 16px;
}

.business-brand {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f4f2e8;
}

.business-brand .brand-mark {
  width: 48px;
  height: 48px;
  font-size: 24px;
}

.business-brand strong,
.business-brand span {
  min-width: 0;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}

.settings-workspace,
.settings-tip {
  display: grid;
  gap: 10px;
}

.settings-workspace h3,
.settings-tip h3 {
  margin: 0;
}

.settings-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  color: var(--brand);
  background: var(--brand-soft);
}

.editor-layout {
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: start;
}

.editor-main,
.editor-aside {
  display: grid;
  gap: 16px;
}

.editor-aside {
  position: sticky;
  top: 92px;
}

.client-preview {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f4f2e8;
}

.client-preview[hidden] {
  display: none;
}

.client-preview strong,
.client-preview span {
  display: block;
}

.client-preview span {
  color: var(--muted);
  font-size: 13px;
}

.line-table {
  min-width: 900px;
}

.line-table input {
  width: 100%;
  min-height: 38px;
  padding: 8px 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
  outline: 0;
}

.line-table input:focus {
  border-color: var(--accent);
  box-shadow: var(--focus);
}

.line-table .item-cell {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 280px;
}

.line-table .item-desc-input {
  font-weight: 600;
  color: var(--ink);
}

.line-table .item-details-input {
  width: 100%;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fafbf9;
  font-size: 13px;
  line-height: 1.4;
  resize: vertical;
  min-height: 46px;
  outline: 0;
  transition: border-color .15s, background .15s;
}

.line-table .item-details-input:focus {
  background: #fff;
  border-color: var(--accent);
  box-shadow: var(--focus);
}

.line-table .item-sub-row {
  display: flex;
  gap: 8px;
}

.line-table .item-sub-row input {
  font-size: 12px;
  min-height: 32px;
  padding: 4px 8px;
  background: #fbfbf8;
}

.line-table .item-sub-row .hsn-input {
  flex: 1 1 120px;
}

.line-table .item-sub-row .unit-input {
  flex: 1 1 120px;
}

.disabled-input {
  color: var(--soft) !important;
  background: #f1f0e8 !important;
}

.add-line-button {
  margin-top: 12px;
}

.invoice-summary {
  background: #fbfaf2;
}

.summary-actions {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

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

.invoice-tip {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: var(--radius);
  color: #f9fbf5;
  background: var(--brand-strong);
}

.invoice-tip h3,
.invoice-tip p {
  margin: 0;
}

.invoice-tip p,
.invoice-tip span {
  color: rgba(249, 251, 245, .72);
}

.invoice-tip span {
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .16em;
}

.invoice-detail-layout {
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: start;
}

.detail-aside {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 92px;
}

.detail-back {
  margin-bottom: 16px;
}

.heading-status {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.invoice-meta-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.invoice-meta-summary div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.invoice-meta-summary span,
.payment-history-item span {
  color: var(--muted);
  font-size: 12px;
}

.invoice-meta-summary strong {
  display: block;
  margin-top: 4px;
}

.detail-note {
  margin: 12px 0 0;
  color: var(--muted);
}

.payment-history-panel {
  overflow: hidden;
}

.payment-history-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.payment-history-item:last-child {
  border-bottom: 0;
}

.invoice-paper {
  position: relative;
  max-width: 940px;
  margin: 0 auto;
  padding: 44px;
  border: 1px solid #ded6c3;
  border-radius: var(--radius);
  color: #1b211d;
  background: #fffefa;
  box-shadow: var(--shadow);
}

.paper-top,
.paper-billing,
.paper-notes {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) minmax(250px, .55fr);
}

.paper-brand img {
  width: 142px;
  max-height: 52px;
  object-fit: contain;
  margin-bottom: 10px;
}

.paper-brand p,
.paper-company span,
.paper-billing span,
.paper-footer span,
.paper-notes p,
.paper-table span {
  color: #657064;
}

.paper-title {
  display: grid;
  justify-items: end;
  align-content: start;
  gap: 5px;
}

.paper-title span,
.paper-label {
  color: var(--accent);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.paper-title strong {
  font-size: 26px;
}

.paper-company {
  display: grid;
  gap: 3px;
  margin: 18px 0 28px;
  padding: 14px 0;
  border-top: 1px solid #e9e2d1;
  border-bottom: 1px solid #e9e2d1;
}

.paper-company strong {
  font-size: 16px;
}

.paper-billing {
  align-items: start;
  margin-bottom: 30px;
}

.paper-billing h3 {
  margin: 6px 0 8px;
  font-size: 22px;
}

.paper-billing div,
.paper-dates,
.paper-notes div {
  display: grid;
  gap: 4px;
}

.paper-dates {
  gap: 0;
  border: 1px solid #e9e2d1;
  border-radius: var(--radius);
}

.paper-dates div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 44px;
  padding: 9px 12px;
  border-bottom: 1px solid #e9e2d1;
}

.paper-dates div:last-child {
  border-bottom: 0;
}

.paper-table {
  margin: 10px 0 28px;
}

.paper-table th {
  padding: 12px 10px;
  border-bottom: 2px solid #d9d0bc;
  color: #6d675b;
  font-size: 11px;
  letter-spacing: .08em;
  text-align: left;
}

.paper-table td {
  padding: 14px 10px;
  border-bottom: 1px solid #eee7d8;
  vertical-align: top;
}

.paper-table td strong {
  display: block;
  font-size: 13.5px;
  color: #17241f;
}

.paper-item-details {
  margin: 4px 0 6px;
  font-size: 12.5px;
  line-height: 1.45;
  color: #4f5b53;
  white-space: pre-wrap;
}

.paper-item-sub {
  display: flex;
  gap: 12px;
  font-size: 11.5px;
  color: #7b8478;
}

.paper-unit {
  color: #7b8478;
  font-size: 12px;
  font-weight: 500;
}

.paper-totals {
  width: min(100%, 390px);
  margin-left: auto;
  display: grid;
  gap: 0;
}

.paper-totals > div {
  min-height: 40px;
  padding: 9px 0;
  border-bottom: 1px solid #e9e2d1;
}

.paper-total {
  font-size: 20px;
}

.paper-notes {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid #e9e2d1;
}

.paper-notes p {
  margin: 5px 0 0;
}

.paper-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 34px;
  padding-top: 16px;
  border-top: 1px solid #e9e2d1;
}

.paper-demo-label {
  position: absolute;
  inset: auto 44px 18px auto;
  color: rgba(189, 112, 89, .8);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .12em;
}

.empty-state {
  display: grid;
  place-items: center;
  gap: 10px;
  min-height: 280px;
  padding: 32px;
  border: 1px dashed #cad4c2;
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
  background: rgba(250, 250, 244, .68);
}

.empty-state h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
}

.empty-state p {
  max-width: 420px;
  margin: 0;
}

.empty-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  color: var(--brand);
  background: var(--brand-soft);
}

.modal-backdrop {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(20, 33, 27, .56);
  backdrop-filter: blur(8px);
}

.modal {
  width: min(100%, 620px);
  max-height: min(86vh, 900px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, .36);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 30px 80px rgba(18, 34, 26, .28);
}

.modal-wide {
  width: min(100%, 820px);
}

.modal-heading {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 22px 22px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 254, 248, .96);
}

.modal-heading h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.18;
}

.modal-heading p {
  margin: 5px 0 0;
  color: var(--muted);
}

.modal form,
.workspace-options,
.help-steps,
.confirm-message,
.help-foot,
.command-search,
.search-results {
  margin: 0 22px 22px;
}

.modal-actions {
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}

.workspace-options button,
.search-results button {
  width: 100%;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
  text-align: left;
}

.workspace-options small,
.search-results small {
  color: var(--muted);
}

.confirm-message {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid #ecd7c9;
  border-radius: var(--radius);
  color: #7d4c3d;
  background: #fff3ed;
}

.confirm-message p {
  margin: 0;
}

.payment-balance {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f4f2e8;
}

.command-search {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 13px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fff;
}

.command-search input {
  width: 100%;
  font-size: 16px;
}

.search-section-label {
  margin: 14px 0 8px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .14em;
}

.small-empty {
  color: var(--muted);
  text-align: center;
}

.help-steps > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
}

.help-steps > div > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--brand);
  background: var(--brand-soft);
  font-weight: 850;
}

.help-steps h3,
.help-steps p {
  margin: 0;
}

.help-steps p {
  color: var(--muted);
}

.help-foot {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px;
  border-radius: var(--radius);
  color: var(--brand);
  background: var(--brand-soft);
}

#toast-root {
  position: fixed;
  z-index: 1500;
  right: 20px;
  bottom: 20px;
  display: grid;
  gap: 10px;
  width: min(360px, calc(100vw - 40px));
}

.toast {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  padding: 13px 14px;
  border: 1px solid #c9ddc7;
  border-radius: var(--radius);
  color: #244c3e;
  background: #f2f8ee;
  box-shadow: var(--shadow);
}

.toast.error {
  color: #8e4434;
  border-color: #eccfc5;
  background: #fff3ed;
}

@media (max-width: 1180px) {
  .metrics-grid,
  .mini-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .analytics-grid,
  .bottom-grid,
  .reports-grid,
  .settings-layout,
  .editor-layout,
  .invoice-detail-layout {
    grid-template-columns: 1fr;
  }

  .editor-aside,
  .detail-aside {
    position: static;
  }

  .client-grid,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 940px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: fixed;
    z-index: 900;
    inset: 0 auto 0 0;
    width: min(320px, 86vw);
    transform: translateX(-102%);
    transition: transform .2s ease;
  }

  .nav-open .sidebar {
    transform: translateX(0);
  }

  .sidebar-backdrop {
    position: fixed;
    z-index: 850;
    inset: 0;
    display: none;
    background: rgba(20, 33, 27, .48);
  }

  .nav-open .sidebar-backdrop {
    display: block;
  }

  .mobile-menu {
    display: inline-grid;
  }

  .topbar {
    padding: 0 18px;
  }

  main {
    padding: 26px 18px;
  }

  .demo-bar {
    margin: 18px 18px 0;
  }

  .main-footer {
    padding: 16px 18px 22px;
  }

  .search-trigger {
    width: 44px;
    justify-content: center;
  }

  .search-trigger span,
  .search-trigger kbd,
  .topbar-divider {
    display: none;
  }
}

@media (max-width: 720px) {
  .page-heading,
  .demo-bar,
  .main-footer,
  .overview-bottom-note,
  .paper-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .heading-actions,
  .section-toolbar,
  .list-toolbar,
  .table-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .heading-actions .button,
  .heading-actions .period-select,
  .section-toolbar .table-search,
  .table-search input {
    width: 100%;
  }

  .metrics-grid,
  .mini-stats,
  .client-grid,
  .service-grid,
  .form-grid,
  .invoice-meta-summary {
    grid-template-columns: 1fr;
  }

  .business-brand,
  .paper-top,
  .paper-billing,
  .paper-notes {
    grid-template-columns: 1fr;
  }

  .paper-title {
    justify-items: start;
  }

  .invoice-paper {
    padding: 24px;
  }

  .paper-dates div {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .modal-backdrop {
    align-items: end;
    padding: 12px;
  }

  .modal {
    max-height: 92vh;
  }
}

@media (max-width: 470px) {
  .topbar-actions {
    gap: 6px;
  }

  .breadcrumb span,
  .breadcrumb > .icon {
    display: none;
  }

  .panel {
    padding: 18px;
  }

  .page-heading h1 {
    font-size: 30px;
  }
}

@media print {
  @page {
    margin: 12mm;
  }

  body {
    background: #fff;
  }

  body * {
    visibility: hidden !important;
  }

  .invoice-paper,
  .invoice-paper * {
    visibility: visible !important;
  }

  .invoice-paper {
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .paper-demo-label {
    display: none;
  }
}

.pin-screen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: radial-gradient(circle at 50% 20%, #204b3e, #13241e 70%);
}

.pin-card {
  width: 100%;
  max-width: 400px;
  padding: 40px 32px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .25);
  text-align: center;
  color: var(--ink);
}

.pin-card .brand-mark {
  margin: 0 auto 16px;
  width: 52px;
  height: 52px;
  font-size: 26px;
}

.pin-card h1 {
  font-size: 22px;
  margin: 0 0 8px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.pin-card p {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 24px;
}

.pin-card #pin-input {
  text-align: center;
  font-size: 24px;
  letter-spacing: .25em;
  padding: 12px;
  height: 52px;
  border: 2px solid var(--line);
  border-radius: 10px;
  background: #fbfaf5;
}

.pin-card #pin-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(185, 132, 49, .2);
}

.pin-card button {
  margin-top: 14px;
  height: 48px;
  font-size: 15px;
}

.login-card .field {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 6px;
}

.login-card .field span {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.login-card input {
  height: 46px;
  padding: 10px 14px;
  font-size: 15px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: #fbfaf5;
  width: 100%;
  letter-spacing: normal;
  text-align: left;
  outline: 0;
  color: var(--ink);
  transition: border-color .15s, background .15s, box-shadow .15s;
}

.login-card input:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(185, 132, 49, .2);
}

