:root {
  font-family: Arial, Helvetica, sans-serif;
  color: #242832;
  background: #f5f6f8;
  font-synthesis: none;
  --accent: #eb5636;
  --line: #e3e6eb;
  --muted: #667080;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
a {
  color: inherit;
  text-underline-offset: 3px;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #ef9c63;
  outline-offset: 3px;
}
button {
  border: 0;
  background: none;
  color: inherit;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1 {
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -1px;
}
h2 {
  font-size: 21px;
  line-height: 1.3;
}
h3 {
  font-size: 17px;
}
p {
  line-height: 1.6;
}
small,
.meta {
  font-size: 13px;
  color: var(--muted);
}
.muted {
  color: var(--muted);
}
.skip {
  position: fixed;
  top: -60px;
  left: 20px;
  z-index: 100;
  background: white;
  padding: 12px;
}
.skip:focus {
  top: 0;
}
.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: 224px;
  background: #222630;
  color: #bac0cc;
  padding: 28px 16px;
  display: flex;
  flex-direction: column;
  z-index: 10;
}
.brand {
  color: white;
  font-size: 25px;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: -1px;
  padding: 0 10px;
}
.brand em {
  font-weight: 400;
  font-style: normal;
}
.brand i {
  font-style: normal;
  color: #ff7558;
  margin-right: 8px;
}
.worksp {
  margin: 27px 0 23px;
  padding: 13px 10px;
  background: #2d323e;
  border: 1px solid #414650;
  border-radius: 9px;
  font-size: 14px;
  color: #fff;
}
.worksp small {
  color: #b3bbc8;
  display: block;
  margin-top: 4px;
}
.navcaption {
  font-size: 12px;
  letter-spacing: 1.1px;
  padding: 0 12px;
  margin-bottom: 10px;
}
.sidebar nav {
  display: grid;
  gap: 4px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  text-decoration: none;
  font-size: 15px;
  border-radius: 8px;
}
.nav.active {
  background: #3b3232;
  color: #ff987c;
}
.nav:hover {
  background: #323744;
}
.nav .symbol {
  width: 20px;
  text-align: center;
  font-size: 18px;
}
.sidebar .bottom {
  margin-top: auto;
  padding: 24px 10px 0;
  font-size: 13px;
}
.bottom a {
  display: block;
  margin-top: 12px;
}
.main {
  margin-left: 224px;
  min-width: 0;
}
.topbar {
  height: 66px;
  border-bottom: 1px solid var(--line);
  background: white;
  padding: 0 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 14px;
}
.demo {
  background: #fff0e7;
  color: #9e4323;
  border: 1px solid #f5ceb6;
  padding: 5px 10px;
  border-radius: 30px;
  font-size: 13px;
  white-space: nowrap;
}
.content {
  padding: 30px 34px 40px;
  max-width: 1580px;
  margin: auto;
}
.heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}
.heading p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 1.4px;
  color: var(--accent);
  font-weight: bold;
  margin-bottom: 9px;
}
.button {
  border-radius: 7px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  background: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
  min-height: 42px;
}
.button.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}
.button.danger {
  color: #af3434;
  border-color: #e5b8b8;
}
.button:hover {
  filter: brightness(0.96);
}
.button.text {
  border: 0;
  background: none;
  color: var(--accent);
  padding: 5px;
}
.notice {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  background: #fff8f1;
  border: 1px solid #f0dfce;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 23px;
  color: #75532f;
}
.notice .button {
  margin-left: auto;
  flex-shrink: 0;
}
.notice b {
  display: block;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 22px;
}
.metric {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px 20px;
}
.metric span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}
.metric strong {
  display: block;
  font-size: 30px;
  line-height: 1.3;
  margin: 8px 0 3px;
  letter-spacing: -1px;
}
.metric small {
  display: block;
}
.panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px;
  margin-bottom: 20px;
  min-width: 0;
}
.panel.flush {
  padding: 0;
}
.panelhead {
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.toolbar {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  padding: 17px 22px;
  border-bottom: 1px solid var(--line);
}
.toolbar label {
  font-size: 14px;
}
.toolbar input {
  max-width: 260px;
}
.toolbar select {
  width: auto;
  min-width: 185px;
}
.tablewrap {
  overflow: auto;
}
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 14px;
}
th {
  text-align: left;
  padding: 12px 20px;
  background: #fafbfc;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.55px;
  font-weight: 500;
}
td {
  border-top: 1px solid #eff0f3;
  padding: 18px 20px;
  vertical-align: middle;
}
.adname {
  display: flex;
  gap: 13px;
  align-items: center;
  min-width: 240px;
}
.thumb {
  width: 49px;
  height: 49px;
  border-radius: 9px;
  background: #f1ebe5;
  color: #906244;
  display: grid;
  place-items: center;
  font-size: 21px;
  flex-shrink: 0;
}
.thumb.property {
  background: #e7ece7;
  color: #536e56;
}
.thumb.jobs {
  background: #eeebf4;
  color: #786096;
}
.thumb.services {
  background: #e5edf1;
  color: #547686;
}
.adname button {
  text-align: left;
  padding: 0;
  font-size: 15px;
  font-weight: 600;
}
.adname small {
  display: block;
  font-weight: 400;
}
.chip {
  display: inline-flex;
  padding: 4px 9px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  margin: 2px 3px 2px 0;
  background: #eef1f5;
  color: #5b6678;
}
.chip.green {
  background: #e8f4ee;
  color: #28704d;
}
.chip.orange {
  background: #fff0df;
  color: #96602a;
}
.chip.red {
  background: #faeaea;
  color: #a14040;
}
.chip.blue {
  background: #e9f1ff;
  color: #366490;
}
.platformdots {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  min-width: 140px;
}
.logo {
  height: 29px;
  min-width: 29px;
  padding: 3px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  font-size: 12px;
  font-weight: bold;
}
.actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.grid2 {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 22px;
}
.editorgrid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 1fr);
  gap: 22px;
}
.field {
  display: block;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 600;
}
.field input,
.field textarea,
.field select {
  margin-top: 7px;
}
input:not([type='checkbox']),
select,
textarea {
  border: 1px solid #dce0e7;
  border-radius: 7px;
  background: white;
  padding: 10px 12px;
  color: #242832;
  width: 100%;
  min-height: 42px;
}
textarea {
  resize: vertical;
  min-height: 112px;
  line-height: 1.5;
  font-weight: 400;
}
input[type='checkbox'] {
  accent-color: var(--accent);
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}
.formrow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.tab {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  padding: 8px 14px;
  font-size: 14px;
}
.tab.active {
  background: #222630;
  color: white;
  border-color: #222630;
}
.preview {
  background: #faf9f7;
  border-radius: 8px;
  padding: 20px;
}
.previewcover {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  background: #eee6dd;
  color: #ae8362;
  border-radius: 7px;
  margin-bottom: 18px;
}
.preview h2 {
  font-size: 21px;
  margin-bottom: 9px;
}
.preview strong {
  font-size: 25px;
}
.preview .copy {
  white-space: pre-line;
  font-size: 14px;
  margin-top: 15px;
}
.checks {
  display: grid;
  gap: 10px;
}
.checkrow {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
}
.checkrow .end {
  margin-left: auto;
  font-weight: bold;
  white-space: nowrap;
}
.checkrow small {
  display: block;
  margin-top: 4px;
}
.error {
  padding: 13px 16px;
  background: #fff0ed;
  border-left: 3px solid #d36848;
  font-size: 14px;
  margin-bottom: 18px;
}
.success {
  background: #eaf4ee;
  border-color: #458560;
}
.empty {
  padding: 45px;
  text-align: center;
  color: var(--muted);
}
.platformgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.platformcard {
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 18px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.platformcard h3 {
  display: flex;
  gap: 9px;
  align-items: center;
}
.platformcard p {
  font-size: 14px;
  color: var(--muted);
  flex: 1;
}
.platformcard small {
  display: block;
}
.platformcard .button {
  align-self: flex-start;
}
.wallets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}
.wallet {
  padding: 21px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.wallet strong {
  font-size: 27px;
  display: block;
  margin: 14px 0;
}
.wallet .bar {
  height: 6px;
  background: #eef0f3;
  border-radius: 5px;
  margin: 12px 0;
}
.wallet .bar i {
  height: 6px;
  display: block;
  background: var(--accent);
  border-radius: 5px;
}
.wallet p {
  font-size: 14px;
  color: var(--muted);
}
.timeline {
  border-left: 2px solid #e2e5e9;
  margin: 10px 0 10px 7px;
  padding-left: 23px;
}
.event {
  margin-bottom: 22px;
  position: relative;
  font-size: 14px;
}
.event:before {
  content: '';
  width: 9px;
  height: 9px;
  border: 3px solid white;
  box-shadow: 0 0 0 1px #ddd;
  border-radius: 50%;
  position: absolute;
  left: -31px;
  top: 3px;
  background: var(--accent);
}
.event small {
  display: block;
  margin-top: 4px;
}
.phase {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  margin-bottom: 12px;
}
.phase summary {
  cursor: pointer;
  padding: 18px;
  display: flex;
  gap: 16px;
  align-items: center;
  font-weight: bold;
  list-style: none;
}
.phase summary:after {
  content: '+';
  margin-left: auto;
  font-size: 20px;
  color: var(--muted);
}
.phase[open] summary:after {
  content: '−';
}
.phase .phasebody {
  padding: 0 22px 22px 75px;
}
.phasebody p {
  margin-bottom: 12px;
  font-size: 15px;
}
.phasebody .accept {
  background: #f4f7f4;
  padding: 12px 15px;
}
.phaseid {
  font-size: 13px;
  border: 1px solid var(--line);
  padding: 4px 8px;
  color: var(--accent);
}
.source {
  font-size: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.source a {
  font-weight: 600;
}
.source p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 5px;
}
footer {
  font-size: 13px;
  color: var(--muted);
  margin-top: 25px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
dialog {
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 13px;
  max-width: 660px;
  width: calc(100% - 30px);
  max-height: 88vh;
  color: #242832;
  box-shadow: 0 25px 70px #17203130;
}
dialog::backdrop {
  background: #17203170;
}
.modalhead {
  padding: 22px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.modalbody {
  padding: 22px;
}
.modalbody > p {
  margin-bottom: 16px;
}
.modalfoot {
  padding: 17px 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}
.close {
  font-size: 25px;
}
.total {
  font-size: 25px;
  font-weight: bold;
  margin: 17px 0;
}
.budgetgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.tagline {
  font-size: 13px;
  color: var(--muted);
  margin: 12px 0;
}
.list {
  margin: 14px 0;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.7;
}
#toast {
  position: fixed;
  bottom: 22px;
  right: 24px;
  background: #252c37;
  color: white;
  padding: 14px 20px;
  border-radius: 9px;
  max-width: min(500px, calc(100vw - 35px));
  font-size: 14px;
  z-index: 30;
  display: none;
}
.mobilebrand {
  display: none;
}
.reportlink {
  color: var(--accent);
}
.sticky {
  position: sticky;
  top: 20px;
  align-self: start;
}
.callout {
  font-size: 14px;
  padding: 16px 18px;
  border-left: 3px solid var(--accent);
  background: #fff;
  margin-bottom: 20px;
}
.legend {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  padding: 14px 22px;
  font-size: 13px;
  color: var(--muted);
}
.rowaction {
  white-space: nowrap;
  color: var(--accent);
  font-weight: 600;
}
.costline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--line);
}
.right {
  text-align: right;
}
@media (min-width: 1550px) {
  .content {
    padding: 36px 48px;
  }
  .metrics {
    gap: 22px;
  }
  .metric {
    padding: 23px;
  }
}
@media (max-width: 1120px) {
  .sidebar {
    width: 194px;
  }
  .main {
    margin-left: 194px;
  }
  .content {
    padding: 25px 22px;
  }
  .topbar {
    padding: 0 22px;
  }
  .platformgrid,
  .wallets {
    grid-template-columns: repeat(2, 1fr);
  }
  .editorgrid {
    grid-template-columns: 1fr;
  }
  .sticky {
    position: static;
  }
  .metrics {
    gap: 10px;
  }
  .metric {
    padding: 15px;
  }
  .metric strong {
    font-size: 26px;
  }
  .grid2 {
    grid-template-columns: 1fr;
  }
  td,
  th {
    padding: 14px;
  }
}
@media (max-width: 760px) {
  .sidebar {
    position: static;
    width: auto;
    padding: 16px;
  }
  .sidebar .brand {
    font-size: 22px;
  }
  .worksp,
  .navcaption,
  .sidebar .bottom {
    display: none;
  }
  .sidebar nav {
    display: flex;
    overflow: auto;
    margin-top: 15px;
    padding-bottom: 2px;
    gap: 5px;
  }
  .nav {
    white-space: nowrap;
    padding: 9px 10px;
    font-size: 14px;
  }
  .nav .symbol {
    display: none;
  }
  .main {
    margin-left: 0;
  }
  .topbar {
    height: 55px;
    padding: 0 16px;
    font-size: 13px;
  }
  .content {
    padding: 23px 16px;
  }
  .heading {
    align-items: flex-start;
    gap: 15px;
  }
  .heading h1 {
    font-size: 27px;
  }
  .heading > .button {
    font-size: 13px;
    padding: 9px;
  }
  .heading p {
    font-size: 14px;
  }
  .metrics {
    grid-template-columns: 1fr 1fr;
  }
  .metric strong {
    font-size: 26px;
  }
  .metric span {
    font-size: 13px;
  }
  .metric small {
    font-size: 12px;
  }
  .notice {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .notice .button {
    margin-left: 0;
  }
  .panel {
    padding: 17px;
  }
  .panelhead,
  .toolbar {
    padding: 16px;
  }
  .panel.flush {
    padding: 0;
  }
  .platformgrid,
  .wallets {
    grid-template-columns: 1fr;
  }
  .formrow {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .toolbar > * {
    flex: 1;
  }
  .toolbar select {
    min-width: 0;
  }
  .toolbar input {
    max-width: none;
  }
  .phase .phasebody {
    padding: 0 18px 20px;
  }
  .phase summary {
    font-size: 15px;
    gap: 11px;
  }
  .phase summary small {
    display: none;
  }
  .budgetgrid {
    grid-template-columns: 1fr;
  }
  footer {
    flex-direction: column;
    gap: 8px;
  }
  .checkrow {
    padding: 10px;
  }
  .editorgrid {
    gap: 0;
  }
  .topbar > span:first-child {
    max-width: 45%;
  }
  .modalbody {
    padding: 18px;
  }
  .adname {
    min-width: 210px;
  }
}

[hidden] {
  display: none !important;
}
