html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

.site-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 0%, rgba(238, 0, 20, 0.08), transparent 28rem),
    radial-gradient(circle at 90% 10%, rgba(5, 108, 184, 0.1), transparent 26rem),
    #ffffff;
  color: #111827;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid #e7ebf0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
}

.site-nav {
  max-width: 1180px;
  margin: 0 auto;
  min-height: 68px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ee0014;
  text-decoration: none;
  font-size: 22px;
  font-weight: 800;
}

.site-brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.site-nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav-links a {
  color: #333333;
  text-decoration: none;
}

.site-nav-links a:hover {
  color: #ee0014;
}

.site-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

.site-card {
  border: 1px solid #e7ebf0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 55px rgba(17, 24, 39, 0.08);
}

.site-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
  gap: 32px;
  align-items: stretch;
}

.site-copy {
  padding: 48px;
}

.site-form-wrap {
  padding: 28px;
}

.site-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #ee0014;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-title {
  margin: 0;
  color: #000000;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 800;
}

.site-subtitle {
  max-width: 700px;
  margin: 22px 0 0;
  color: #333333;
  font-size: 18px;
  line-height: 1.65;
}

.site-panel {
  padding: 28px;
  border: 1px solid #e7ebf0;
  border-radius: 16px;
  background: #f8f9fb;
}

.site-panel h2,
.site-panel h3 {
  margin: 0 0 14px;
  color: #000000;
}

.site-panel p {
  margin: 0;
  color: #333333;
  line-height: 1.6;
}

.site-form {
  display: grid;
  gap: 14px;
}

.site-field {
  display: grid;
  gap: 7px;
}

.site-field label {
  color: #056cb8;
  font-size: 14px;
  font-weight: 500;
}

.site-field input,
.site-field select,
.site-field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #dde4f3;
  border-radius: 10px;
  background: #ffffff;
  color: #000000;
  font: inherit;
  padding: 12px 13px;
  outline: none;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}

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

.site-field input:focus,
.site-field select:focus,
.site-field textarea:focus {
  border-color: #056cb8;
  box-shadow: 0 0 0 3px rgba(5, 108, 184, 0.14);
}

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

.site-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 6px;
}

.site-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.site-button-primary {
  background: #ee0014;
  color: #ffffff;
}

.site-button-primary:hover {
  background: #c60011;
}

.site-button-secondary {
  border-color: #dde4f3;
  background: #ffffff;
  color: #056cb8;
}

.site-button-secondary:hover {
  background: #f3f5f9;
}

.site-status {
  display: none;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.5;
}

.site-status[data-state="success"],
.site-status[data-state="error"],
.site-status[data-state="info"] {
  display: block;
}

.site-status[data-state="success"] {
  border: 1px solid rgba(0, 131, 82, 0.25);
  background: rgba(0, 131, 82, 0.08);
  color: #005c3a;
}

.site-status[data-state="error"] {
  border: 1px solid rgba(238, 0, 20, 0.25);
  background: rgba(238, 0, 20, 0.08);
  color: #9f0010;
}

.site-status[data-state="info"] {
  border: 1px solid rgba(5, 108, 184, 0.25);
  background: rgba(5, 108, 184, 0.08);
  color: #044f87;
}

.site-small {
  color: #333333;
  font-size: 14px;
  line-height: 1.6;
}

.site-small a {
  color: #056cb8;
  font-weight: 800;
  text-decoration: none;
}

.site-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.site-list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #333333;
  line-height: 1.55;
}

.site-list-item span {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fed600;
  color: #000000;
  font-size: 13px;
  font-weight: 800;
}

.site-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.site-metric {
  padding: 20px;
  border: 1px solid #e7ebf0;
  border-radius: 14px;
  background: #ffffff;
}

.site-metric strong {
  display: block;
  color: #000000;
  font-size: 28px;
  line-height: 1.1;
}

.site-metric span {
  display: block;
  margin-top: 8px;
  color: #333333;
  font-size: 14px;
}

.site-setup-page {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: #eef6ff;
  color: #20242c;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.site-setup-header {
  position: fixed;
  top: 0;
  right: 28px;
  z-index: 10;
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #111111;
  font-size: 16px;
}

.site-setup-welcome strong {
  font-weight: 800;
}

.site-setup-power {
  position: relative;
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.site-setup-power::before {
  position: absolute;
  left: 8px;
  top: 8px;
  width: 12px;
  height: 12px;
  border: 2px solid #0b63ff;
  border-top-color: transparent;
  border-radius: 999px;
  content: "";
}

.site-setup-power::after {
  position: absolute;
  left: 13px;
  top: 4px;
  width: 2px;
  height: 11px;
  border-radius: 999px;
  background: #0b63ff;
  content: "";
}

.site-setup-main {
  width: min(100%, 946px);
  margin: 0 auto;
  padding: 66px 0 28px;
  box-sizing: border-box;
}

.site-setup-status {
  margin-bottom: 14px;
}

.site-setup-product {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-setup-brand {
  min-width: 142px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000000;
  text-decoration: none;
}

.site-setup-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.site-setup-brand span {
  display: grid;
  line-height: 1.05;
}

.site-setup-brand strong {
  font-size: 18px;
  font-weight: 700;
}

.site-setup-brand b {
  font-size: 25px;
  font-weight: 800;
}

.site-setup-product p {
  min-height: 58px;
  margin: 0;
  padding-left: 20px;
  border-left: 1px solid #cbd3e2;
  color: #526079;
  font-size: 18px;
  line-height: 1.55;
}

.site-setup-card {
  border-top: 2px solid #2f8cf6;
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(30, 45, 70, 0.12);
  padding: 62px 96px 50px;
}

.site-setup-card h1 {
  margin: 0;
  color: #111111;
  text-align: center;
  font-size: 29px;
  line-height: 1.25;
  font-weight: 500;
}

.site-setup-title-line {
  width: 22px;
  height: 2px;
  margin: 24px auto 38px;
  background: #2f8cf6;
}

.site-setup-form {
  display: grid;
  gap: 58px;
}

.site-setup-section {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  display: grid;
  gap: 24px;
}

.site-setup-section legend {
  margin-bottom: 12px;
  color: #999999;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.site-setup-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 38px;
}

.site-setup-field {
  display: grid;
  gap: 10px;
}

.site-setup-field-full {
  grid-column: 1 / -1;
}

.site-setup-field span {
  color: #333333;
  font-size: 16px;
  line-height: 1.2;
}

.site-setup-field em {
  color: #ed1f24;
  font-style: normal;
}

.site-setup-field input,
.site-setup-field select {
  width: 100%;
  height: 51px;
  box-sizing: border-box;
  border: 1px solid #cfd5e4;
  border-radius: 7px;
  background-color: #ffffff;
  color: #343b4e;
  font: inherit;
  font-size: 16px;
  outline: none;
}

.site-setup-field input {
  padding: 0 12px;
}

.site-setup-field select {
  appearance: none;
  padding: 0 42px 0 12px;
  background-image:
    linear-gradient(45deg, transparent 50%, #8f94a5 50%),
    linear-gradient(135deg, #8f94a5 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 22px,
    calc(100% - 12px) 22px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.site-setup-field input:focus,
.site-setup-field select:focus {
  border-color: #2f8cf6;
  box-shadow: 0 0 0 3px rgba(47, 140, 246, 0.12);
}

.site-setup-add {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  background: transparent;
  color: #2c3142;
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

.site-setup-add span {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #3a95f8;
  color: #ffffff;
  font-size: 20px;
  line-height: 1;
}

.site-setup-tax {
  gap: 16px;
}

.site-setup-tax p {
  margin: 0;
  color: #111111;
  font-size: 16px;
  line-height: 1.55;
}

.site-setup-tax p span {
  width: 17px;
  height: 17px;
  display: inline-grid;
  place-items: center;
  margin-right: 10px;
  border-radius: 999px;
  background: #2f8cf6;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
}

.site-setup-note {
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  padding: 26px 0;
  color: #666666;
}

.site-setup-note h2 {
  margin: 0 0 14px;
  color: #666666;
  font-size: 16px;
  font-weight: 800;
}

.site-setup-note ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 14px;
  font-size: 16px;
  line-height: 1.6;
}

.site-setup-note-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 34px;
  margin-top: 18px;
  color: #6c7591;
  font-size: 15px;
}

.site-setup-note-grid span::before {
  margin-right: 10px;
  color: #ff8a00;
  content: "*";
  font-weight: 800;
}

.site-setup-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-setup-submit {
  min-width: 167px;
  height: 53px;
  border: 0;
  border-radius: 5px;
  background: #4094f4;
  color: #ffffff;
  font: inherit;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

.site-setup-submit:hover {
  background: #247fdf;
}

.site-setup-submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

.site-setup-actions a {
  color: #666666;
  font-size: 16px;
}

.site-setup-summary {
  min-height: 420px;
}

.site-setup-illustration {
  position: fixed;
  z-index: 0;
  width: 230px;
  height: 230px;
  pointer-events: none;
  opacity: 0.85;
}

.site-setup-illustration::before {
  position: absolute;
  left: 78px;
  top: 82px;
  width: 58px;
  height: 68px;
  border: 7px solid #6ea6ff;
  border-radius: 8px;
  background:
    linear-gradient(#a9ccff 0 0) 12px 16px / 9px 9px no-repeat,
    linear-gradient(#a9ccff 0 0) 30px 16px / 9px 9px no-repeat,
    linear-gradient(#a9ccff 0 0) 12px 34px / 9px 9px no-repeat,
    linear-gradient(#a9ccff 0 0) 30px 34px / 9px 9px no-repeat,
    linear-gradient(#a9ccff 0 0) 12px 52px / 9px 9px no-repeat,
    linear-gradient(#a9ccff 0 0) 30px 52px / 9px 9px no-repeat,
    #ddecff;
  content: "";
  transform: rotate(3deg);
}

.site-setup-illustration::after {
  position: absolute;
  left: 2px;
  top: 18px;
  width: 68px;
  height: 90px;
  border: 5px solid #bdd9ff;
  background:
    linear-gradient(45deg, transparent 40%, #bdd9ff 41% 45%, transparent 46%) 10px 12px / 42px 18px no-repeat,
    linear-gradient(#bdd9ff 0 0) 18px 42px / 34px 5px no-repeat,
    linear-gradient(#bdd9ff 0 0) 18px 58px / 28px 5px no-repeat,
    #edf6ff;
  content: "";
  transform: rotate(-44deg);
}

.site-setup-illustration-left {
  left: -8px;
  top: -4px;
}

.site-setup-illustration-right {
  right: -20px;
  bottom: -24px;
  transform: rotate(180deg);
}

.site-app-ready {
  overflow: hidden;
}

.site-app-shell[hidden] {
  display: none;
}

.site-app-shell {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 268px minmax(0, 1fr) 48px;
  background: #ffffff;
  color: #0f1733;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.site-app-sidebar {
  min-width: 0;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #c8cbd8;
  background: #f5f6ff;
}

.site-app-logo {
  height: 54px;
  display: flex;
  align-items: center;
  gap: 9px;
  box-sizing: border-box;
  padding: 0 14px;
  background: #222842;
  color: #ffffff;
  text-decoration: none;
  font-size: 22px;
  font-weight: 700;
}

.site-app-logo img {
  width: 31px;
  height: 31px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.site-app-nav {
  display: grid;
  gap: 4px;
  padding: 18px 7px 0;
}

.site-app-nav a {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 6px;
  color: #111936;
  font-size: 17px;
  text-decoration: none;
  padding: 0 26px;
}

.site-app-nav a:hover,
.site-app-nav-active {
  background: #408cff;
  color: #ffffff !important;
}

.site-app-nav-icon {
  width: 21px;
  display: inline-grid;
  place-items: center;
  color: inherit;
  font-size: 22px;
}

.site-app-configure {
  min-height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: auto 7px 88px;
  border-radius: 6px;
  background: #e9e8ff;
  color: #131a38;
  font-size: 17px;
  text-decoration: none;
}

.site-app-configure span {
  color: #2476dd;
  font-size: 28px;
  line-height: 1;
}

.site-app-tour {
  margin: 0 24px 18px;
  border: 1px solid #e2e5f1;
  border-radius: 12px;
  background: #ffffff;
  text-align: center;
  padding: 0 14px 18px;
}

.site-app-tour-screen {
  width: 78px;
  height: 52px;
  margin: -31px auto 14px;
  border-radius: 7px;
  background:
    linear-gradient(135deg, #7384ff, #4da3ff);
  box-shadow: 0 9px 0 -3px #665aff, 0 14px 0 -6px #6f89ff;
}

.site-app-tour strong {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border-radius: 999px;
  background: #f0f0ff;
  color: #111936;
  font-size: 12px;
  text-transform: uppercase;
  padding: 0 15px;
}

.site-app-tour strong::before {
  width: 13px;
  height: 13px;
  margin-right: 6px;
  border-radius: 999px;
  background: #408cff;
  content: "";
}

.site-app-tour p {
  margin: 14px 0 0;
  color: #111936;
  font-size: 16px;
  line-height: 1.45;
}

.site-app-workspace {
  min-width: 0;
  display: grid;
  grid-template-rows: 54px minmax(0, 1fr);
}

.site-app-topbar {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid #1f243b;
  background: #222842;
  color: #ffffff;
  padding: 0 20px;
}

.site-app-refresh,
.site-app-icon-button,
.site-app-avatar,
.site-app-grid-button {
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
}

.site-app-refresh {
  position: relative;
  width: 23px;
  height: 23px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-right-color: transparent;
  border-radius: 999px;
}

.site-app-refresh::after {
  position: absolute;
  right: -2px;
  top: 2px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  content: "";
  transform: rotate(35deg);
}

.site-app-search {
  width: min(376px, 30vw);
  height: 43px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #68708f;
  border-radius: 7px;
  background: #343a56;
  padding: 0 13px;
}

.site-app-search span {
  width: 16px;
  height: 16px;
  border: 2px solid #ffffff;
  border-radius: 999px;
  opacity: 0.9;
}

.site-app-search span::after {
  display: block;
  width: 8px;
  height: 2px;
  margin: 12px 0 0 12px;
  background: #ffffff;
  content: "";
  transform: rotate(45deg);
}

.site-app-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  background: transparent;
  color: #ffffff;
  font: inherit;
  font-size: 16px;
  outline: none;
}

.site-app-search input::placeholder {
  color: #aab1c9;
  opacity: 1;
}

.site-app-trial {
  min-width: 0;
  margin-left: auto;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-app-subscribe {
  color: #3e86ff;
  font-size: 14px;
  text-decoration: none;
}

.site-app-org {
  max-width: 190px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-left: 1px solid #6c7187;
  background: transparent;
  color: #ffffff;
  font: inherit;
  font-size: 16px;
  font-weight: 800;
  padding-left: 20px;
  text-decoration: none;
  cursor: pointer;
}

.site-app-org span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-app-org i {
  width: 8px;
  height: 8px;
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  transform: rotate(45deg) translateY(-2px);
}

.site-app-add {
  width: 41px;
  height: 41px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 4px;
  background: #408cff;
  color: #ffffff;
  font-size: 35px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.site-app-icon-button {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  font-size: 22px;
  text-decoration: none;
}

.site-app-avatar {
  width: 41px;
  height: 41px;
  display: block;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 38%, #ffffff 0 13px, transparent 14px),
    radial-gradient(circle at 50% 80%, #ffffff 0 17px, transparent 18px),
    #e5e9f6;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.72);
}

.site-app-grid-button {
  width: 29px;
  height: 29px;
  display: block;
  background:
    radial-gradient(circle, #ffffff 0 2px, transparent 3px) 0 0 / 9px 9px;
}

.site-app-content {
  min-width: 0;
  overflow: auto;
  background: #ffffff;
}

.site-app-hero {
  min-height: 105px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid #eceef7;
  background:
    radial-gradient(circle at 10px 10px, rgba(100, 118, 255, 0.12) 0 3px, transparent 4px) 0 0 / 68px 68px,
    #ffffff;
  padding: 0 24px;
}

.site-app-lock {
  width: 58px;
  height: 58px;
  border: 1px solid #e3e7f3;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 8px 25px rgba(28, 43, 90, 0.08);
  position: relative;
}

.site-app-lock::before {
  position: absolute;
  left: 21px;
  top: 20px;
  width: 15px;
  height: 18px;
  border: 2px solid #7c849f;
  border-radius: 2px;
  content: "";
}

.site-app-lock::after {
  position: absolute;
  left: 23px;
  top: 13px;
  width: 11px;
  height: 13px;
  border: 2px solid #7c849f;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  content: "";
}

.site-app-hero h1 {
  margin: 0 0 6px;
  color: #000000;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
}

.site-app-hero p {
  margin: 0;
  color: #5e6680;
  font-size: 16px;
  text-transform: uppercase;
}

.site-app-tabs {
  height: 64px;
  display: flex;
  align-items: end;
  gap: 24px;
  border-bottom: 1px solid #e3e6f1;
  padding: 0 18px;
}

.site-app-tabs a {
  height: 45px;
  color: #0f1733;
  font-size: 18px;
  text-decoration: none;
}

.site-app-tab-active {
  border-bottom: 4px solid #408cff;
}

.site-app-kpis {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 37px;
  padding: 26px 24px 24px;
}

.site-app-kpi-card,
.site-app-cash-card {
  border: 1px solid #dde2f0;
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
}

.site-app-kpi-card header,
.site-app-cash-card header {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid #e9ebf4;
  background: #fbfbff;
  padding: 0 26px;
}

.site-app-kpi-card h2,
.site-app-cash-card h2 {
  margin: 0;
  color: #0f1733;
  font-size: 22px;
  font-weight: 800;
}

.site-app-kpi-card header a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #000000;
  font-size: 16px;
  text-decoration: none;
}

.site-app-kpi-card header a span {
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #1687ff;
  color: #ffffff;
  line-height: 1;
}

.site-app-kpi-card p {
  margin: 22px 26px 8px;
  color: #3f4b72;
  font-size: 16px;
}

.site-app-kpi-card strong {
  display: block;
  margin: 0 26px 18px;
  color: #000000;
  font-size: 27px;
  font-weight: 500;
}

.site-app-progress {
  height: 14px;
  margin: 0 26px 27px;
  background: #f3f3f3;
}

.site-app-kpi-card footer {
  min-height: 42px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  color: #333c5e;
  font-size: 19px;
  padding: 0 26px 18px;
}

.site-app-dashboard-timer {
  display: grid;
  gap: 18px;
  margin: 0 24px 26px;
  border: 1px solid #dde2f0;
  border-radius: 12px;
  background: #ffffff;
  padding: 22px 26px;
}

.site-app-dashboard-timer header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.site-app-dashboard-timer h2,
.site-app-dashboard-timer p {
  margin: 0;
}

.site-app-dashboard-timer h2 {
  color: #0f1733;
  font-size: 22px;
  font-weight: 800;
}

.site-app-dashboard-timer p {
  margin-top: 6px;
  color: #5e6680;
  font-size: 15px;
  line-height: 1.4;
}

.site-app-dashboard-timer header span {
  border-radius: 999px;
  background: #eef5ff;
  color: #116bd8;
  padding: 7px 11px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.site-app-dashboard-timer strong {
  color: #000000;
  font-size: 36px;
  line-height: 1;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.site-app-dashboard-timer-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.site-app-dashboard-timer-actions button,
.site-app-dashboard-timer-actions a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border-radius: 8px;
  padding: 0 18px;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.site-app-dashboard-timer-actions button:first-child {
  border: 1px solid #1687ff;
  background: #1687ff;
  color: #ffffff;
}

.site-app-dashboard-timer-actions button:not(:first-child),
.site-app-dashboard-timer-actions a {
  border: 1px solid #d7deec;
  background: #ffffff;
  color: #18223d;
}

.site-app-support-card {
  display: grid;
  gap: 18px;
  margin: 0 24px 26px;
  border: 1px solid #dde2f0;
  border-radius: 12px;
  background: #ffffff;
  padding: 22px 26px;
}

.site-app-support-card > header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.site-app-support-card h2,
.site-app-support-card p {
  margin: 0;
}

.site-app-support-card h2 {
  color: #0f1733;
  font-size: 22px;
  font-weight: 800;
}

.site-app-support-card > header p {
  margin-top: 6px;
  color: #5e6680;
  font-size: 15px;
  line-height: 1.4;
}

.site-app-support-tabs {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid #d7deec;
  border-radius: 9px;
  background: #f7f9ff;
  padding: 3px;
}

.site-app-support-tabs button {
  min-height: 32px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #3f4b72;
  padding: 0 14px;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.site-app-support-tabs .site-app-support-tab-active {
  background: #ffffff;
  color: #0f1733;
  box-shadow: 0 2px 10px rgba(20, 37, 83, 0.08);
}

.site-app-support-search {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #d7deec;
  border-radius: 8px;
  padding: 0 12px;
  color: #6f7893;
}

.site-app-support-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: #0f1733;
  font: inherit;
  font-size: 15px;
}

.site-app-support-list {
  display: grid;
  gap: 12px;
}

.site-app-support-search + .site-app-support-list {
  margin-top: 14px;
}

.site-app-support-item,
.site-app-help-item {
  border: 1px solid #edf0f6;
  border-radius: 9px;
  background: #fbfcff;
  padding: 14px;
}

.site-app-support-item header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.site-app-support-item strong,
.site-app-help-item summary span {
  color: #0f1733;
  font-size: 16px;
  font-weight: 800;
}

.site-app-support-item header span,
.site-app-help-item summary small {
  color: #6f7893;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-app-support-item p,
.site-app-help-item p {
  margin-top: 10px;
  color: #3f4b72;
  font-size: 14px;
  line-height: 1.45;
}

.site-app-support-item a {
  display: inline-flex;
  margin-top: 10px;
  color: #116bd8;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.site-app-help-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
}

.site-app-support-empty {
  border: 1px dashed #d7deec;
  border-radius: 9px;
  background: #fbfcff;
  padding: 18px;
  color: #5e6680;
  font-size: 15px;
  text-align: center;
}

.site-app-dot-blue,
.site-app-dot-orange,
.site-app-dot-muted,
.site-app-dot-green,
.site-app-dot-red {
  width: 11px;
  height: 11px;
  display: inline-block;
  border-radius: 3px;
}

.site-app-dot-blue {
  background: #266ee8;
}

.site-app-dot-orange {
  margin-left: 18px;
  background: #ff781f;
}

.site-app-dot-muted {
  background: #bfc4dc;
}

.site-app-dot-green {
  background: #23b980;
}

.site-app-dot-red {
  background: #dc445b;
}

.site-app-cash-card {
  margin: 26px 24px 60px;
}

.site-app-cash-card header button {
  border: 0;
  background: transparent;
  color: #1b2544;
  font: inherit;
  font-size: 16px;
  cursor: pointer;
}

.site-app-chart-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 28px;
  min-height: 360px;
  padding: 32px 26px 28px;
}

.site-app-chart {
  position: relative;
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  border-left: 1px solid #d8deef;
  background:
    repeating-linear-gradient(to bottom, transparent 0 calc(20% - 1px), #d9def0 calc(20% - 1px) 20%);
}

.site-app-chart span {
  position: relative;
  left: -30px;
  top: -8px;
  color: #344066;
  font-size: 12px;
}

.site-app-chart-summary {
  display: grid;
  align-content: start;
  gap: 10px;
  color: #273156;
}

.site-app-chart-summary p {
  margin: 8px 0 0;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 16px;
}

.site-app-chart-summary strong {
  display: block;
  color: #000000;
  font-size: 21px;
  font-weight: 500;
}

.site-app-rail {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 17px;
  border-left: 1px solid #d9dce8;
  background: #ffffff;
  padding-top: 68px;
}

.site-app-rail button {
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: #5a6380;
  font: inherit;
  font-size: 19px;
  cursor: pointer;
}

.site-app-rail button:first-child {
  border-radius: 5px;
  background: #ff993e;
  color: #ffffff;
  font-weight: 800;
}

.site-app-assist {
  position: fixed;
  right: 62px;
  bottom: 25px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #ff5b42;
  border-radius: 999px;
  background: #ffffff;
  color: #1b1b1b;
  font: inherit;
  font-size: 16px;
  cursor: pointer;
  padding: 0 16px;
  box-shadow: 0 8px 20px rgba(39, 54, 98, 0.08);
}

.site-app-assist span {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #8566f6;
  color: #ffffff;
  font-size: 18px;
}

.site-app-hidden-meta {
  display: none;
}

.site-stitch-frame-shell {
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr);
  background: #ffffff;
}

.site-stitch-frame-shell > :not(.site-stitch-frame) {
  display: none !important;
}

.site-stitch-frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #ffffff;
}

.site-module-page {
  margin: 0;
  min-height: 100vh;
  background: #f4f7f9;
  color: #181c1e;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.site-module-page .material-symbols-outlined {
  font-size: 21px;
  line-height: 1;
}

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

.site-module-sidebar {
  min-width: 0;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #cfd6e2;
  background: #f1f4f6;
}

.site-module-logo {
  height: 56px;
  display: flex;
  align-items: center;
  gap: 9px;
  box-sizing: border-box;
  background: #081a3c;
  color: #ffffff;
  text-decoration: none;
  padding: 0 18px;
}

.site-module-logo strong {
  font-size: 21px;
  font-weight: 800;
}

.site-module-logo em {
  color: #cbd6ef;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.site-module-logo .material-symbols-outlined {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 2px solid #ffffff;
  border-radius: 4px;
}

.site-module-nav {
  display: grid;
  gap: 2px;
  padding: 16px 0;
}

.site-module-nav a {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 4px solid transparent;
  color: #414754;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  padding: 0 16px;
}

.site-module-nav a:hover,
.site-module-nav-active {
  border-left-color: #0059bb !important;
  background: rgba(196, 212, 255, 0.45);
  color: #0059bb !important;
}

.site-module-workspace {
  min-width: 0;
  display: grid;
  grid-template-rows: 56px minmax(0, 1fr);
}

.site-module-topbar {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid #d9dde7;
  background: #081a3c;
  color: #ffffff;
  padding: 0 24px;
}

.site-module-search {
  width: min(420px, 45vw);
  height: 38px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.72);
  padding: 0 12px;
}

.site-module-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  background: transparent;
  color: #ffffff;
  font: inherit;
  font-size: 14px;
  outline: none;
}

.site-module-search input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.site-module-topbar > strong {
  margin-left: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
}

.site-module-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
}

.site-module-icon:hover {
  background: rgba(255, 255, 255, 0.12);
}

.site-module-content {
  min-width: 0;
  overflow: auto;
  padding: 28px 24px 48px;
}

.site-module-status {
  margin-bottom: 16px;
}

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

.site-module-heading p {
  margin: 0 0 3px;
  color: #0059bb;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-module-heading h1 {
  margin: 0;
  color: #181c1e;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 800;
}

.site-module-primary,
.site-module-secondary {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 4px;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  padding: 0 16px;
}

.site-module-primary {
  border: 1px solid #0059bb;
  background: #0059bb;
  color: #ffffff;
}

.site-module-secondary {
  border: 1px solid #c1c6d7;
  background: #ffffff;
  color: #414754;
}

.site-module-primary:disabled,
.site-module-secondary:disabled {
  cursor: wait;
  opacity: 0.65;
}

.site-module-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  gap: 20px;
  align-items: start;
}

.site-module-panel {
  border: 1px solid #cfd6e2;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(13, 27, 62, 0.06);
  overflow: hidden;
}

.site-module-panel-header {
  min-height: 59px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid #e0e3e5;
  background: #fbfcff;
  padding: 0 18px;
}

.site-module-panel-header h2 {
  margin: 0;
  color: #181c1e;
  font-size: 18px;
  font-weight: 800;
}

.site-module-panel-header span {
  color: #5d6470;
  font-size: 13px;
  font-weight: 700;
}

.site-module-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  background: #eff6ff;
  color: #0059bb;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  padding: 0 9px;
  white-space: nowrap;
}

.site-module-table-wrap {
  overflow: auto;
}

.site-module-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.site-module-table th,
.site-module-table td {
  border-bottom: 1px solid #edf0f4;
  text-align: left;
  padding: 13px 16px;
  vertical-align: middle;
}

.site-module-table th {
  color: #687181;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-module-table td {
  color: #222733;
}

.site-module-table b {
  display: block;
  color: #111827;
  font-size: 14px;
}

.site-module-table small {
  color: #667085;
}

.site-module-table-link {
  color: inherit;
  text-decoration: none;
}

.site-module-table-link:hover b {
  color: #0059bb;
}

.site-module-empty {
  padding: 34px 18px !important;
  color: #667085 !important;
  text-align: center !important;
}

.site-module-row-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.site-module-row-actions button {
  min-height: 30px;
  border: 1px solid #d8deea;
  border-radius: 4px;
  background: #ffffff;
  color: #0059bb;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  padding: 0 9px;
}

.site-module-row-actions button[data-article-delete] {
  color: #ba1a1a;
}

.site-module-row-actions button[data-supplier-delete] {
  color: #ba1a1a;
}

.site-module-row-actions button[data-quote-delete] {
  color: #ba1a1a;
}

.site-module-form {
  display: grid;
  gap: 15px;
  padding: 18px;
}

.site-module-form label {
  display: grid;
  gap: 7px;
  color: #384252;
  font-size: 13px;
  font-weight: 700;
}

.site-module-form input,
.site-module-form select,
.site-module-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #c7cfdd;
  border-radius: 5px;
  background: #ffffff;
  color: #111827;
  font: inherit;
  font-size: 14px;
  padding: 0 12px;
  outline: none;
}

.site-module-form input,
.site-module-form select {
  height: 42px;
}

.site-module-form textarea {
  min-height: 86px;
  resize: vertical;
  padding-top: 10px;
  padding-bottom: 10px;
}

.site-module-form input[type="color"] {
  padding: 4px;
}

.site-module-form input:focus,
.site-module-form select:focus,
.site-module-form textarea:focus {
  border-color: #0059bb;
  box-shadow: 0 0 0 3px rgba(0, 89, 187, 0.12);
}

.site-module-password-field {
  position: relative;
  display: block;
}

.site-module-password-field input {
  padding-right: 58px;
}

.site-module-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.site-module-check {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px !important;
}

.site-module-check input {
  width: 18px;
  height: 18px;
  accent-color: #0059bb;
}

.site-module-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-module-separator {
  width: calc(100% - 36px);
  border: 0;
  border-top: 1px solid #dce2ec;
  margin: 4px auto;
}

.site-sales-total,
.site-module-total {
  display: inline-grid;
  justify-items: end;
  gap: 3px;
  color: #5d6470;
  font-size: 13px;
  font-weight: 700;
}

.site-sales-total b,
.site-module-total strong {
  color: #0059bb;
  font-size: 26px;
  line-height: 1;
}

.site-sales-grid {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
}

.site-sales-lines {
  max-height: 260px;
  border: 1px solid #edf0f4;
  border-radius: 6px;
}

.site-notifications-list {
  display: grid;
  gap: 12px;
}

.site-notification-card {
  display: grid;
  gap: 10px;
  border: 1px solid #dce2ec;
  border-radius: 8px;
  background: #ffffff;
  padding: 14px;
}

.site-notification-unread {
  border-color: rgba(0, 89, 187, 0.3);
  box-shadow: 0 8px 24px rgba(0, 89, 187, 0.08);
}

.site-notification-card button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.site-notification-card > button {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  gap: 8px 12px;
  align-items: start;
  width: 100%;
  padding: 0;
}

.site-notification-card .material-symbols-outlined {
  grid-row: span 2;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: #edf4ff;
  color: #0059bb;
}

.site-notification-card b {
  color: #111827;
  font-size: 15px;
}

.site-notification-card small {
  color: #6b7280;
  font-size: 12px;
}

.site-notification-card em {
  grid-column: 2 / -1;
  color: #4b5563;
  font-style: normal;
  line-height: 1.45;
}

.site-notification-card > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid #edf0f4;
  padding-top: 10px;
  color: #6b7280;
  font-size: 12px;
  font-weight: 700;
}

.site-notification-card > div button {
  color: #0059bb;
  font-weight: 800;
}

.site-notification-card > div button:disabled {
  color: #9ca3af;
  cursor: default;
}

.site-notification-empty {
  color: #6b7280;
  text-align: center;
}

.site-notification-detail {
  display: grid;
  gap: 12px;
}

.site-notification-detail h2 {
  margin: 0;
  color: #111827;
  font-size: 22px;
}

.site-notification-detail p {
  margin: 0;
  color: #4b5563;
  line-height: 1.6;
}

.site-notification-detail small {
  color: #6b7280;
}

.site-notification-detail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.site-notification-detail-head span,
.site-notification-detail-head strong {
  border-radius: 999px;
  background: #edf4ff;
  color: #0059bb;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
}

.site-subscription-plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.site-subscription-plan {
  display: grid;
  gap: 16px;
  align-content: start;
  min-height: 100%;
  border: 1px solid #dce2ec;
  border-radius: 8px;
  background: #ffffff;
  padding: 18px;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.05);
}

.site-subscription-current {
  border-color: rgba(0, 89, 187, 0.45);
  box-shadow: 0 14px 34px rgba(0, 89, 187, 0.12);
}

.site-subscription-plan header {
  display: grid;
  gap: 6px;
}

.site-subscription-plan header span {
  color: #111827;
  font-size: 20px;
  font-weight: 800;
}

.site-subscription-plan header strong {
  color: #0059bb;
  font-size: 30px;
  line-height: 1;
}

.site-subscription-plan header small {
  color: #6b7280;
  font-size: 13px;
  font-weight: 700;
}

.site-subscription-plan ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.45;
}

.site-subscription-plan li {
  display: flex;
  gap: 8px;
}

.site-subscription-plan li::before {
  content: "✓";
  color: #008b5f;
  font-weight: 900;
}

.site-subscription-plan button {
  margin-top: auto;
}

.site-report-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.site-report-kpis article {
  min-height: 94px;
  display: grid;
  align-content: center;
  gap: 8px;
  border: 1px solid #cfd6e2;
  border-radius: 8px;
  background: #ffffff;
  padding: 16px;
  box-shadow: 0 12px 34px rgba(13, 27, 62, 0.05);
}

.site-report-kpis span {
  color: #687181;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-report-kpis strong {
  color: #111827;
  font-size: 24px;
  line-height: 1.1;
}

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

.site-settings-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.site-settings-summary article {
  min-height: 88px;
  display: grid;
  align-content: center;
  gap: 8px;
  border: 1px solid #cfd6e2;
  border-radius: 8px;
  background: #ffffff;
  padding: 16px;
  box-shadow: 0 12px 34px rgba(13, 27, 62, 0.05);
}

.site-settings-summary span {
  color: #687181;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-settings-summary strong {
  color: #111827;
  font-size: 20px;
  line-height: 1.15;
  word-break: break-word;
}

.site-settings-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 20px;
  align-items: start;
}

.site-template-layout {
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
}

.site-template-section {
  display: grid;
  gap: 13px;
  padding-top: 14px;
  border-top: 1px solid #e5e7eb;
}

.site-template-section:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.site-template-section h3 {
  margin: 0;
  color: #111827;
  font-size: 15px;
  line-height: 1.3;
}

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

.site-template-preview {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 12px;
  border-top: 4px solid #0f5ea8;
  padding: 18px;
}

.site-template-preview strong {
  color: #111827;
  font-size: 24px;
  line-height: 1.15;
}

.site-template-preview span,
.site-template-preview p,
.site-template-preview small {
  color: #4b5563;
}

.site-template-preview-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.site-template-preview-line b,
.site-template-preview-line em {
  color: #111827;
  font-style: normal;
}

.site-template-preview table {
  width: 100%;
  border-collapse: collapse;
  color: #111827;
  font-size: 13px;
}

.site-template-preview td {
  padding: 8px 0;
  border-bottom: 1px solid #edf0f5;
}

.site-template-preview td:last-child {
  text-align: right;
}

.site-settings-form {
  padding: 22px;
}

.site-settings-note {
  display: grid;
  gap: 14px;
  padding: 20px;
  color: #4f5b6d;
  font-size: 15px;
  line-height: 1.6;
}

.site-settings-note p {
  margin: 0;
}

.site-app-lock-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #f8fafc;
  padding: 24px;
}

.site-app-lock-card {
  width: min(100%, 420px);
  display: grid;
  justify-items: center;
  gap: 16px;
  border: 1px solid #e3e8f1;
  border-radius: 12px;
  background: #ffffff;
  padding: 34px 28px;
  box-shadow: 0 24px 80px rgba(14, 29, 63, 0.14);
}

.site-app-lock-avatar {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #eaf4ff;
  color: #1677ff;
  font-size: 26px;
  font-weight: 900;
}

.site-app-lock-card h1,
.site-app-lock-card p {
  margin: 0;
  text-align: center;
}

.site-app-lock-card h1 {
  color: #111827;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 800;
}

.site-app-lock-card p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.4;
}

.site-app-lock-card input {
  width: min(100%, 220px);
  height: 54px;
  box-sizing: border-box;
  border: 1px solid #d6dde8;
  border-radius: 9px;
  background: #ffffff;
  color: #111827;
  font: inherit;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 8px;
  text-align: center;
  outline: 0;
}

.site-app-lock-card input:focus {
  border-color: #1677ff;
  box-shadow: 0 0 0 3px rgba(22, 119, 255, 0.12);
}

.site-banking-summary,
.site-documents-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.site-banking-summary article,
.site-documents-summary article {
  min-height: 88px;
  display: grid;
  align-content: center;
  gap: 8px;
  border: 1px solid #cfd6e2;
  border-radius: 8px;
  background: #ffffff;
  padding: 16px;
  box-shadow: 0 12px 34px rgba(13, 27, 62, 0.05);
}

.site-banking-summary span,
.site-documents-summary span {
  color: #687181;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-banking-summary strong,
.site-documents-summary strong {
  color: #111827;
  font-size: 22px;
  line-height: 1.15;
  word-break: break-word;
}

.site-document-actions {
  align-items: center;
}

.site-document-sheet {
  max-width: 980px;
  display: grid;
  gap: 24px;
  border: 1px solid #d8dee8;
  border-radius: 8px;
  background: #ffffff;
  padding: 28px;
  box-shadow: 0 18px 46px rgba(13, 27, 62, 0.08);
}

.site-document-sheet-header,
.site-document-party-grid,
.site-document-total-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.site-document-sheet-header {
  align-items: start;
  border-bottom: 2px solid #111827;
  padding-bottom: 18px;
}

.site-document-sheet-header div,
.site-document-party-grid article,
.site-document-total-grid div {
  display: grid;
  gap: 6px;
}

.site-document-sheet-header div:last-child {
  justify-items: end;
  text-align: right;
}

.site-document-sheet-header span,
.site-document-party-grid span,
.site-document-total-grid span,
.site-document-party-grid small {
  color: #687181;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-document-sheet-header strong {
  color: #111827;
  font-size: 24px;
  line-height: 1.15;
}

.site-document-party-grid strong,
.site-document-total-grid strong {
  color: #111827;
  font-size: 20px;
  line-height: 1.15;
  word-break: break-word;
}

.site-document-total-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #d8dee8;
  padding-top: 18px;
}

.site-document-total-grid div {
  border: 1px solid #d8dee8;
  border-radius: 8px;
  padding: 14px;
}

.site-document-notes {
  display: grid;
  gap: 12px;
}

.site-document-notes h2 {
  margin: 0;
  color: #111827;
  font-size: 18px;
}

@media print {
  .site-module-sidebar,
  .site-module-topbar,
  .site-document-actions .site-module-actions,
  .site-module-status {
    display: none !important;
  }

  .site-module-shell,
  .site-module-workspace,
  .site-module-content {
    display: block;
    min-height: auto;
    padding: 0;
    background: #ffffff;
  }

  .site-document-sheet {
    max-width: none;
    border: 0;
    box-shadow: none;
    padding: 0;
  }
}

.site-banking-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  margin-bottom: 20px;
}

.site-module-row-actions button[data-sale-line-remove] {
  color: #ba1a1a;
}

.site-module-row-actions button[data-purchase-line-remove] {
  color: #ba1a1a;
}

.site-app-shell.site-app-stitch {
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: 54px minmax(0, 1fr);
  background: #ffffff;
}

.site-app-stitch .material-symbols-outlined {
  font-size: 22px;
  line-height: 1;
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
}

.site-app-stitch .site-app-topbar {
  grid-row: 1;
  width: 100%;
  box-sizing: border-box;
  gap: 16px;
  padding: 0 18px 0 0;
}

.site-app-product {
  width: 268px;
  height: 54px;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 268px;
  background: #222842;
  color: #ffffff;
  text-decoration: none;
  padding: 0 15px;
}

.site-app-product .material-symbols-outlined {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 2px solid #ffffff;
  border-radius: 4px;
  color: #ffffff;
  font-size: 24px;
}

.site-app-product strong {
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
}

.site-app-product em {
  color: #dfe5ff;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
}

.site-app-stitch .site-app-refresh {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
}

.site-app-stitch .site-app-refresh::after {
  display: none;
}

.site-app-stitch .site-app-search {
  width: min(376px, 29vw);
}

.site-app-stitch .site-app-search > .material-symbols-outlined {
  width: auto;
  height: auto;
  border: 0;
  color: #ffffff;
  opacity: 0.95;
}

.site-app-stitch .site-app-search > .material-symbols-outlined::after {
  display: none;
}

.site-app-stitch .site-app-add {
  font-size: 0;
}

.site-app-stitch .site-app-add .material-symbols-outlined {
  color: #ffffff;
  font-size: 30px;
}

.site-app-stitch .site-app-icon-button {
  display: grid;
  place-items: center;
}

.site-app-stitch .site-app-icon-button .material-symbols-outlined {
  color: #ffffff;
  font-size: 22px;
}

.site-app-layout {
  min-height: 0;
  grid-row: 2;
  display: grid;
  grid-template-columns: 268px minmax(0, 1fr) 48px;
}

.site-app-stitch .site-app-sidebar {
  min-height: 0;
  overflow: hidden;
}

.site-app-stitch .site-app-nav a {
  gap: 13px;
  padding: 0 27px;
}

.site-app-stitch .site-app-nav a .material-symbols-outlined {
  width: 21px;
  color: inherit;
  font-size: 23px;
}

.site-app-stitch .site-app-configure .material-symbols-outlined {
  color: #2476dd;
  font-size: 22px;
}

.site-app-stitch .site-app-tour-screen {
  display: grid;
  place-items: center;
  color: #ffffff;
}

.site-app-stitch .site-app-tour-screen .material-symbols-outlined {
  color: #ffffff;
  font-size: 29px;
  font-variation-settings:
    "FILL" 1,
    "wght" 500,
    "GRAD" 0,
    "opsz" 24;
}

.site-app-stitch .site-app-lock {
  display: grid;
  place-items: center;
}

.site-app-stitch .site-app-lock::before,
.site-app-stitch .site-app-lock::after {
  display: none;
}

.site-app-stitch .site-app-lock .material-symbols-outlined {
  color: #7c849f;
  font-size: 30px;
}

.site-app-stitch .site-app-kpi-card header a .material-symbols-outlined {
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #1687ff;
  color: #ffffff;
  font-size: 16px;
  font-variation-settings:
    "FILL" 1,
    "wght" 500,
    "GRAD" 0,
    "opsz" 20;
}

.site-app-stitch .site-app-cash-card header button {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.site-app-stitch .site-app-cash-card header button .material-symbols-outlined {
  color: #8b92aa;
  font-size: 20px;
}

.site-app-stitch .site-app-rail button {
  display: grid;
  place-items: center;
}

.site-app-stitch .site-app-rail .material-symbols-outlined {
  color: inherit;
  font-size: 22px;
}

@media (max-width: 1120px) {
  .site-app-stitch .site-app-search {
    width: min(300px, 35vw);
  }

  .site-app-stitch .site-app-trial,
  .site-app-stitch .site-app-subscribe,
  .site-app-stitch .site-app-icon-button,
  .site-app-stitch .site-app-avatar,
  .site-app-stitch .site-app-grid-button {
    display: none;
  }
}

.site-auth-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  color: #000000;
}

.site-auth-topbar {
  min-height: 76px;
  border-bottom: 1px solid #eeeeee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 32px;
  box-sizing: border-box;
}

.site-auth-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #000000;
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
}

.site-auth-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.site-auth-toplink {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 18px;
  font-weight: 500;
}

.site-auth-toplink a,
.site-auth-lang a {
  color: #0057ff;
  font-weight: 800;
  text-decoration: none;
}

.site-auth-main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 86px 24px 64px;
  box-sizing: border-box;
}

.site-auth-box {
  width: min(100%, 600px);
}

.site-auth-box h1 {
  margin: 0 0 44px;
  color: #000000;
  font-size: 29px;
  line-height: 1.25;
  letter-spacing: 0;
  font-weight: 800;
}

.site-auth-form {
  display: grid;
  gap: 16px;
}

.site-auth-field {
  position: relative;
  display: block;
}

.site-auth-field > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-auth-field input {
  width: 100%;
  height: 82px;
  box-sizing: border-box;
  border: 1px solid #777777;
  border-radius: 9px;
  background: #ffffff;
  color: #000000;
  font: inherit;
  font-size: 20px;
  font-weight: 600;
  padding: 0 58px 0 20px;
  outline: none;
}

.site-auth-field input::placeholder {
  color: #687282;
  opacity: 1;
}

.site-auth-field input:focus {
  border-color: #056cb8;
  box-shadow: 0 0 0 3px rgba(5, 108, 184, 0.12);
}

.site-auth-password button {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  transform: translateY(-50%);
  cursor: pointer;
}

.site-eye,
.site-eye::before,
.site-eye::after {
  position: absolute;
  display: block;
  content: "";
}

.site-eye {
  left: 5px;
  top: 11px;
  width: 23px;
  height: 14px;
  border: 2px solid #000000;
  border-radius: 50%;
  transform: rotate(12deg);
}

.site-eye::before {
  left: 7px;
  top: 3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #000000;
}

.site-eye::after {
  left: -2px;
  top: 6px;
  width: 29px;
  height: 2px;
  background: #000000;
  transform: rotate(38deg);
  transform-origin: center;
}

.site-auth-password button[data-visible="true"] .site-eye::after {
  display: none;
}

.site-auth-note {
  margin: 0 0 6px;
  color: #000000;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 700;
}

.site-auth-check {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #5e6672;
  font-size: 18px;
  line-height: 1.45;
}

.site-auth-check input {
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
  margin: 2px 0 0;
  accent-color: #ee0014;
}

.site-auth-check a {
  color: #0057ff;
  font-weight: 700;
}

.site-auth-submit {
  width: 100%;
  height: 70px;
  border: 0;
  border-radius: 5px;
  background: #ee1f28;
  color: #ffffff;
  font: inherit;
  font-size: 24px;
  font-weight: 800;
  cursor: pointer;
}

.site-auth-submit:hover {
  background: #d9151e;
}

.site-auth-submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

.site-auth-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin-top: 10px;
  color: #4c5563;
  font-size: 18px;
  font-weight: 800;
}

.site-social {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid #d4d7dc;
  background: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: 20px;
  font-weight: 800;
}

.site-social-google {
  color: #4285f4;
}

.site-google-identity-host {
  overflow: hidden;
}

.site-google-identity-host > div {
  display: grid;
  place-items: center;
}

.site-social img {
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
}

.site-social-linkedin {
  border-color: #0a66c2;
  background: #0a66c2;
  color: #ffffff;
}

.site-social-microsoft {
  grid-template-columns: repeat(2, 13px);
  grid-template-rows: repeat(2, 13px);
  gap: 2px;
  border-color: transparent;
}

.site-social-microsoft span {
  width: 13px;
  height: 13px;
  display: block;
}

.site-social-microsoft span:nth-child(1) {
  background: #f25022;
}

.site-social-microsoft span:nth-child(2) {
  background: #7fba00;
}

.site-social-microsoft span:nth-child(3) {
  background: #00a4ef;
}

.site-social-microsoft span:nth-child(4) {
  background: #ffb900;
}

.site-auth-lang {
  text-align: center;
  font-size: 14px;
}

.site-auth-footer {
  min-height: 58px;
  border-top: 1px solid #dddddd;
  display: grid;
  place-items: center;
  color: #000000;
  font-size: 17px;
  font-weight: 500;
  text-align: center;
  padding: 0 24px;
}

.site-login-page {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background:
    linear-gradient(152deg, transparent 0 42%, rgba(255, 255, 255, 0.75) 42.2% 100%),
    linear-gradient(26deg, rgba(255, 255, 255, 0.78) 0 38%, transparent 38.2% 100%),
    linear-gradient(148deg, transparent 0 58%, rgba(226, 229, 233, 0.42) 58.2% 100%),
    linear-gradient(328deg, rgba(237, 239, 242, 0.62) 0 34%, transparent 34.2% 100%),
    #f5f6f8;
  color: #000000;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.site-login-main {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 72px 24px 56px;
  box-sizing: border-box;
}

.site-login-card {
  width: min(100%, 626px);
  min-height: 676px;
  box-sizing: border-box;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 64px rgba(17, 24, 39, 0.12);
  padding: 62px 62px 48px;
}

.site-login-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #000000;
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
}

.site-login-logo img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.site-login-card h1 {
  margin: 26px 0 8px;
  color: #000000;
  font-size: 31px;
  line-height: 1.18;
  letter-spacing: 0;
  font-weight: 500;
}

.site-login-subtitle {
  margin: 0 0 34px;
  color: #111111;
  font-size: 21px;
  line-height: 1.4;
}

.site-login-form {
  display: grid;
  gap: 26px;
}

.site-login-email,
.site-login-password {
  position: relative;
  display: block;
}

.site-login-email > span,
.site-login-password > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-login-email input,
.site-login-password input {
  width: 100%;
  height: 56px;
  box-sizing: border-box;
  border: 1px solid #e3e5ea;
  background: #ffffff;
  color: #000000;
  font: inherit;
  font-size: 20px;
  outline: none;
}

.site-login-email input {
  border-radius: 8px;
  padding: 0 104px 0 16px;
  font-weight: 600;
}

.site-login-email input::placeholder,
.site-login-password input::placeholder {
  color: #aeb7c4;
  opacity: 1;
}

.site-login-password input {
  border-radius: 0;
  background: #fafafa;
  padding: 0 58px 0 18px;
  color: #111111;
}

.site-login-email input:focus,
.site-login-password input:focus {
  border-color: #2196f3;
  box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.12);
}

.site-login-email button {
  position: absolute;
  top: 50%;
  right: 16px;
  border: 0;
  background: transparent;
  color: #0b8cff;
  font: inherit;
  font-size: 17px;
  font-weight: 700;
  transform: translateY(-50%);
  cursor: pointer;
}

.site-login-password button[data-password-toggle] {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  transform: translateY(-50%);
  cursor: pointer;
}

.site-login-forgot {
  justify-self: end;
  margin-top: -10px;
  border: 0;
  background: transparent;
  color: #0b8cff;
  font: inherit;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}

.site-login-submit {
  width: 100%;
  height: 56px;
  margin-top: 18px;
  border: 0;
  border-radius: 4px;
  background: #2196f3;
  color: #ffffff;
  font: inherit;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
}

.site-login-submit:hover {
  background: #0b83df;
}

.site-login-submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

.site-login-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
  font-size: 15px;
  font-weight: 700;
}

.site-login-links a {
  color: #0b8cff;
  text-decoration: none;
}

.site-accounts-host:not(.site-mobile-auth) {
  background: #ffffff;
}

.site-accounts-host:not(.site-mobile-auth).site-login-page {
  background: #ffffff;
}

.site-accounts-host:not(.site-mobile-auth) .site-login-main,
.site-accounts-host:not(.site-mobile-auth) .site-auth-main {
  align-items: flex-start;
  display: flex;
  justify-content: center;
  padding: 74px 24px 52px;
}

.site-accounts-host:not(.site-mobile-auth) .site-login-card,
.site-accounts-host:not(.site-mobile-auth) .site-auth-box {
  width: min(100%, 440px);
  min-height: 0;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
  padding: 0;
}

.site-accounts-host:not(.site-mobile-auth) .site-login-logo,
.site-accounts-host:not(.site-mobile-auth) .site-auth-logo {
  gap: 12px;
  font-size: 20px;
  font-weight: 800;
}

.site-accounts-host:not(.site-mobile-auth) .site-login-logo img,
.site-accounts-host:not(.site-mobile-auth) .site-auth-logo img {
  width: 54px;
  height: 54px;
}

.site-accounts-host:not(.site-mobile-auth) .site-login-card h1,
.site-accounts-host:not(.site-mobile-auth) .site-auth-box h1 {
  margin-top: 32px;
  color: #202124;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.1;
}

.site-accounts-host:not(.site-mobile-auth) .site-login-subtitle {
  margin-bottom: 36px;
  color: #3c4043;
  font-size: 20px;
}

.site-accounts-host:not(.site-mobile-auth) .site-auth-topbar {
  min-height: 72px;
  border-bottom-color: #e5e7eb;
  padding-inline: 40px;
}

.site-accounts-host:not(.site-mobile-auth) .site-auth-toplink {
  color: #5f6368;
  font-size: 15px;
  font-weight: 400;
}

.site-accounts-host:not(.site-mobile-auth) .site-auth-toplink a,
.site-accounts-host:not(.site-mobile-auth) .site-auth-lang a,
.site-accounts-host:not(.site-mobile-auth) .site-login-links a,
.site-accounts-host:not(.site-mobile-auth) .site-login-forgot,
.site-accounts-host:not(.site-mobile-auth) .site-support-link {
  color: #1a73e8;
}

.site-accounts-host:not(.site-mobile-auth) .site-login-email input,
.site-accounts-host:not(.site-mobile-auth) .site-login-password input,
.site-accounts-host:not(.site-mobile-auth) .site-auth-field input,
.site-accounts-host:not(.site-mobile-auth) .site-otp-field input {
  height: 58px;
  border: 1px solid #dadce0;
  border-radius: 4px;
  background: #ffffff;
  color: #202124;
  font-size: 17px;
  font-weight: 400;
}

.site-accounts-host:not(.site-mobile-auth) .site-login-email input:focus,
.site-accounts-host:not(.site-mobile-auth) .site-login-password input:focus,
.site-accounts-host:not(.site-mobile-auth) .site-auth-field input:focus,
.site-accounts-host:not(.site-mobile-auth) .site-otp-field input:focus {
  border-color: #1a73e8;
  box-shadow: 0 0 0 1px #1a73e8;
}

.site-accounts-host:not(.site-mobile-auth) .site-login-submit,
.site-accounts-host:not(.site-mobile-auth) .site-auth-submit {
  height: 50px;
  border-radius: 25px;
  background: #1a73e8;
  font-size: 16px;
  font-weight: 700;
}

.site-accounts-host:not(.site-mobile-auth) .site-login-submit:hover,
.site-accounts-host:not(.site-mobile-auth) .site-auth-submit:hover {
  background: #155fc0;
}

.site-accounts-host:not(.site-mobile-auth) .site-auth-note {
  color: #3c4043;
  font-size: 15px;
  font-weight: 400;
}

.site-accounts-host:not(.site-mobile-auth) .site-auth-check {
  color: #5f6368;
  font-size: 15px;
}

.site-accounts-host:not(.site-mobile-auth) .site-auth-socials {
  color: #3c4043;
  font-size: 15px;
  font-weight: 500;
}

.site-accounts-host:not(.site-mobile-auth) .site-auth-footer,
.site-accounts-host:not(.site-mobile-auth) .site-login-footer {
  border-top: 0;
  color: #5f6368;
  font-size: 13px;
  font-weight: 400;
}

.site-forgot-card {
  min-height: 626px;
  padding-top: 54px;
}

.site-forgot-form {
  display: grid;
  gap: 22px;
  margin-top: 24px;
}

.site-forgot-email {
  max-width: 340px;
}

.site-forgot-email input {
  height: 58px;
}

.site-forgot-card h1 {
  margin: 0;
  font-size: 28px;
  font-weight: 600;
}

.site-forgot-copy {
  max-width: 430px;
  margin: -14px 0 4px;
  color: #111111;
  font-size: 18px;
  line-height: 1.45;
}

.site-forgot-copy strong {
  font-weight: 800;
}

.site-otp-field {
  position: relative;
  display: block;
}

.site-otp-field > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-otp-field input {
  width: 100%;
  height: 68px;
  box-sizing: border-box;
  border: 1px solid #d9dce2;
  background: #fafafa;
  color: #111111;
  font: inherit;
  font-size: 20px;
  outline: none;
  padding: 0 18px;
}

.site-otp-field input::placeholder {
  color: #aeb7c4;
  opacity: 1;
}

.site-otp-field input:focus {
  border-color: #2196f3;
  box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.12);
}

.site-otp-resend {
  justify-self: start;
  margin-top: -18px;
  border: 0;
  background: transparent;
  color: #4c5563;
  font: inherit;
  font-size: 18px;
  cursor: pointer;
  padding: 0;
}

.site-otp-resend:not(:disabled) {
  color: #0b8cff;
  font-weight: 700;
}

.site-support-link {
  justify-self: center;
  margin-top: 16px;
  color: #0b8cff;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}

.site-reset-card {
  width: min(100%, 600px);
  min-height: 626px;
  padding: 54px 50px 52px;
}

.site-reset-card .site-login-logo {
  gap: 0;
}

.site-reset-card h1 {
  margin: 24px 0 10px;
  font-size: 28px;
  font-weight: 600;
}

.site-reset-copy {
  max-width: 500px;
  margin: 0;
  color: #111111;
  font-size: 18px;
  line-height: 1.45;
}

.site-reset-form {
  gap: 38px;
  margin-top: 28px;
}

.site-reset-form .site-login-submit {
  margin-top: 0;
}

.site-reset-support {
  display: block;
  width: max-content;
  margin: 52px auto 0;
}

.site-reset-success-card {
  width: min(100%, 600px);
  min-height: 626px;
  padding: 52px 50px;
  text-align: center;
}

.site-reset-success-logo {
  display: flex;
  justify-content: center;
  color: #000000;
  text-decoration: none;
}

.site-reset-success-logo img {
  width: 86px;
  height: 86px;
  object-fit: contain;
}

.site-success-mark {
  position: relative;
  width: 50px;
  height: 50px;
  margin: 32px auto 18px;
  border-radius: 999px;
  background: #45c764;
}

.site-success-mark::before {
  position: absolute;
  left: 15px;
  top: 12px;
  width: 20px;
  height: 12px;
  border-left: 5px solid #ffffff;
  border-bottom: 5px solid #ffffff;
  content: "";
  transform: rotate(-45deg);
}

.site-reset-success-card h1 {
  margin: 0 0 10px;
  font-size: 27px;
  font-weight: 600;
}

.site-reset-success-copy {
  max-width: 490px;
  margin: 0 auto;
  color: #000000;
  font-size: 18px;
  line-height: 1.45;
}

.site-reset-success-copy strong {
  font-weight: 800;
}

.site-reset-success-action {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  margin: 28px auto 0;
  text-decoration: none;
}

.site-login-footer {
  min-height: 60px;
  display: grid;
  place-items: center;
  color: #777777;
  font-size: 18px;
  text-align: center;
  padding: 0 24px 24px;
}

.site-mobile-auth {
  min-height: 100vh;
  background: #ffffff;
  color: #17172e;
}

.site-mobile-auth-header {
  height: 58px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 0 0 auto;
  box-sizing: border-box;
  background: #f0efff;
  padding: 0 18px;
  color: #000000;
}

.site-mobile-auth-close {
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  color: #000000;
  cursor: pointer;
  font: inherit;
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
  padding: 0;
}

.site-mobile-auth-header span {
  display: block;
  min-width: 0;
  color: #000000;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.08;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-mobile-auth .site-login-main,
.site-mobile-auth .site-auth-main {
  display: block;
  flex: 1 1 auto;
  padding: 0;
}

.site-login-page.site-mobile-auth {
  background: #ffffff;
}

.site-login-page.site-mobile-auth .site-login-card {
  width: min(100%, 568px);
  min-height: 0;
  margin: 0 auto;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
  box-sizing: border-box;
  padding: 60px 30px 24px;
}

.site-login-page.site-mobile-auth .site-login-logo {
  height: 58px;
  gap: 0;
}

.site-login-page.site-mobile-auth .site-login-logo img {
  width: auto;
  height: 58px;
}

.site-login-page.site-mobile-auth .site-login-logo span {
  display: none;
}

.site-login-page.site-mobile-auth .site-login-card h1 {
  margin: 28px 0 8px;
  color: #000000;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
}

.site-login-page.site-mobile-auth .site-login-subtitle {
  margin: 0 0 58px;
  color: #000000;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
}

.site-login-page.site-mobile-auth .site-login-form {
  display: block;
}

.site-login-page.site-mobile-auth .site-login-email,
.site-login-page.site-mobile-auth .site-login-password {
  margin: 0;
}

.site-login-page.site-mobile-auth .site-login-email {
  margin-bottom: 44px;
}

.site-login-page.site-mobile-auth .site-login-form[data-mobile-password-step="true"] .site-login-email {
  margin-bottom: 22px;
}

.site-login-page.site-mobile-auth .site-login-password {
  margin-bottom: 8px;
}

.site-login-page.site-mobile-auth .site-login-email > span,
.site-login-page.site-mobile-auth .site-login-password > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-login-page.site-mobile-auth .site-login-email input,
.site-login-page.site-mobile-auth .site-login-password input {
  width: 100%;
  height: 48px;
  border: 0;
  border-bottom: 2px solid #1e9bf0;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
  color: #000000;
  font-size: 18px;
  font-weight: 400;
  padding: 0 44px 12px 0;
}

.site-login-page.site-mobile-auth .site-login-email input::placeholder,
.site-login-page.site-mobile-auth .site-login-password input::placeholder {
  color: #b7b7b7;
}

.site-login-page.site-mobile-auth .site-login-email input:focus,
.site-login-page.site-mobile-auth .site-login-password input:focus {
  border-color: #1e9bf0;
  box-shadow: none;
}

.site-login-page.site-mobile-auth .site-login-email button {
  display: none;
}

.site-login-page.site-mobile-auth .site-login-forgot {
  display: block;
  width: max-content;
  margin: 0 0 44px auto;
  color: #1e9bf0;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 0;
}

.site-login-page.site-mobile-auth .site-login-forgot[hidden],
.site-login-page.site-mobile-auth .site-login-password[hidden] {
  display: none;
}

.site-login-page.site-mobile-auth .site-login-submit {
  height: 52px;
  margin: 0;
  border-radius: 5px;
  background: #1e9bf0;
  font-size: 17px;
  font-weight: 700;
}

.site-login-page.site-mobile-auth .site-auth-socials {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
  margin-top: 48px;
  color: #333333;
  font-size: 17px;
  font-weight: 700;
}

.site-login-page.site-mobile-auth .site-auth-socials .site-social {
  align-self: center;
  width: 40px;
  height: 42px;
  border: 0;
  border-radius: 4px;
  background: #f1f3f4;
  font-size: 24px;
}

.site-login-page.site-mobile-auth .site-login-links {
  display: none;
  margin-top: 28px;
  font-size: 15px;
}

.site-login-page.site-mobile-auth .site-login-footer {
  min-height: 44px;
  color: #777777;
  font-size: 13px;
  padding: 0 24px 18px;
}

.site-auth-page.site-mobile-auth {
  display: flex;
  flex-direction: column;
  background: #ffffff;
}

.site-auth-page.site-mobile-auth .site-auth-topbar,
.site-auth-page.site-mobile-auth .site-auth-footer {
  display: none;
}

.site-auth-page.site-mobile-auth .site-auth-box {
  width: min(100%, 568px);
  margin: 0 auto;
  box-sizing: border-box;
  padding: 32px 24px 30px;
}

.site-auth-page.site-mobile-auth .site-auth-box h1 {
  margin: 0 0 34px;
  color: #17172e;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.1;
}

.site-auth-page.site-mobile-auth .site-auth-form {
  display: block;
}

.site-auth-page.site-mobile-auth .site-auth-field {
  margin-bottom: 28px;
}

.site-auth-page.site-mobile-auth .site-auth-field > span {
  position: static;
  display: block;
  width: auto;
  height: auto;
  margin: 0 0 8px;
  clip: auto;
  color: #17172e;
  font-size: 15px;
  font-weight: 500;
  overflow: visible;
  white-space: normal;
}

.site-auth-page.site-mobile-auth .site-auth-field input {
  height: 54px;
  border: 1px solid #d5d7de;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: none;
  color: #17172e;
  font-size: 16px;
  font-weight: 400;
  padding: 0 52px 0 16px;
}

.site-auth-page.site-mobile-auth .site-auth-field input::placeholder {
  color: #8a8a8f;
}

.site-auth-page.site-mobile-auth .site-auth-field input:focus {
  border-color: #d5d7de;
  box-shadow: none;
}

.site-auth-page.site-mobile-auth .site-auth-note {
  margin: -4px 0 22px;
  color: #17172e;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
}

.site-auth-page.site-mobile-auth .site-auth-check {
  margin: 0 0 34px;
  color: #17172e;
  font-size: 16px;
  line-height: 1.35;
}

.site-auth-page.site-mobile-auth .site-auth-check input {
  display: none;
}

.site-auth-page.site-mobile-auth .site-auth-check a {
  color: #1d74bb;
  font-weight: 400;
  text-decoration: underline;
}

.site-auth-page.site-mobile-auth .site-auth-submit {
  height: 56px;
  border-radius: 32px;
  background: #11123d;
  font-size: 18px;
  font-weight: 400;
}

.site-auth-page.site-mobile-auth .site-auth-socials {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  margin-top: 34px;
  color: #000000;
  font-size: 15px;
  font-weight: 400;
  text-align: center;
}

.site-auth-page.site-mobile-auth .site-auth-socials .site-social {
  width: 112px;
  height: 48px;
  border: 1.2px solid #000000;
  border-radius: 8px;
  background: #ffffff;
}

.site-auth-page.site-mobile-auth .site-social-linkedin,
.site-auth-page.site-mobile-auth .site-social-microsoft,
.site-login-page.site-mobile-auth .site-social-linkedin,
.site-login-page.site-mobile-auth .site-social-microsoft {
  display: none;
}

.site-auth-page.site-mobile-auth .site-auth-lang {
  display: none;
}

@media (max-width: 860px) {
  .site-nav {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .site-nav-links {
    flex-wrap: wrap;
  }

  .site-grid {
    grid-template-columns: 1fr;
  }

  .site-copy,
  .site-form-wrap {
    padding: 24px;
  }

  .site-two,
  .site-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .site-setup-header {
    position: static;
    min-height: 58px;
    justify-content: flex-end;
    padding: 0 18px;
  }

  .site-setup-main {
    width: 100%;
    padding: 0 18px 28px;
  }

  .site-setup-product {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 8px 0 18px;
  }

  .site-setup-product p {
    min-height: auto;
    padding-left: 0;
    border-left: 0;
    font-size: 16px;
  }

  .site-setup-card {
    padding: 36px 22px 34px;
  }

  .site-setup-card h1 {
    font-size: 25px;
  }

  .site-setup-title-line {
    margin-bottom: 30px;
  }

  .site-setup-form {
    gap: 38px;
  }

  .site-setup-section {
    gap: 20px;
  }

  .site-setup-section legend {
    font-size: 15px;
    letter-spacing: 3px;
  }

  .site-setup-grid,
  .site-setup-note-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .site-setup-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-setup-submit {
    width: 100%;
  }

  .site-setup-illustration {
    display: none;
  }

  .site-app-ready {
    overflow: auto;
  }

  .site-app-shell {
    position: static;
    min-height: 100vh;
    grid-template-columns: 1fr;
  }

  .site-app-sidebar {
    border-right: 0;
  }

  .site-app-logo {
    height: 58px;
  }

  .site-app-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 12px;
  }

  .site-app-nav a {
    padding: 0 14px;
    font-size: 15px;
  }

  .site-app-configure {
    margin: 10px 12px 52px;
  }

  .site-app-tour {
    display: none;
  }

  .site-app-workspace {
    grid-template-rows: auto minmax(0, 1fr);
  }

  .site-app-topbar {
    min-height: auto;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 12px;
  }

  .site-app-search {
    width: 100%;
    order: 10;
  }

  .site-app-trial,
  .site-app-subscribe,
  .site-app-icon-button,
  .site-app-avatar,
  .site-app-grid-button {
    display: none;
  }

  .site-app-org {
    margin-left: auto;
  }

  .site-app-hero {
    min-height: 92px;
    padding: 14px 18px;
  }

  .site-app-tabs {
    height: auto;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 18px;
    padding: 14px 18px 0;
  }

  .site-app-tabs a {
    font-size: 16px;
  }

  .site-app-kpis {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px 18px;
  }

  .site-app-kpi-card h2,
  .site-app-cash-card h2 {
    font-size: 20px;
  }

  .site-app-kpi-card footer {
    font-size: 16px;
  }

  .site-app-dashboard-timer,
  .site-app-support-card {
    margin: 0 18px 20px;
    padding: 18px;
  }

  .site-app-dashboard-timer header,
  .site-app-support-card > header {
    flex-direction: column;
  }

  .site-app-support-tabs,
  .site-app-dashboard-timer-actions {
    width: 100%;
  }

  .site-app-support-tabs button,
  .site-app-dashboard-timer-actions button,
  .site-app-dashboard-timer-actions a {
    flex: 1;
  }

  .site-app-help-item summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-app-cash-card {
    margin: 0 18px 82px;
  }

  .site-app-chart-wrap {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .site-app-chart {
    min-height: 250px;
  }

  .site-app-rail {
    display: none;
  }

  .site-app-assist {
    right: 16px;
    bottom: 16px;
  }

  .site-app-shell.site-app-stitch {
    grid-template-rows: auto minmax(0, 1fr);
  }

  .site-app-stitch .site-app-topbar {
    align-items: center;
    flex-wrap: wrap;
    padding: 0 12px 10px;
  }

  .site-app-product {
    width: calc(100% + 24px);
    flex-basis: calc(100% + 24px);
    margin: 0 -12px;
  }

  .site-app-layout {
    grid-template-columns: 1fr;
  }

  .site-app-stitch .site-app-sidebar {
    max-height: none;
  }

  .site-app-stitch .site-app-nav a {
    padding: 0 14px;
  }

  .site-app-stitch .site-app-search {
    width: 100%;
    order: 10;
  }

  .site-module-shell {
    grid-template-columns: 1fr;
  }

  .site-module-sidebar {
    border-right: 0;
  }

  .site-module-logo {
    height: 58px;
  }

  .site-module-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 12px;
  }

  .site-module-nav a {
    min-height: 40px;
    font-size: 13px;
    padding: 0 12px;
  }

  .site-module-workspace {
    grid-template-rows: auto minmax(0, 1fr);
  }

  .site-module-topbar {
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 12px;
  }

  .site-module-search {
    width: 100%;
    order: 5;
  }

  .site-module-content {
    padding: 22px 16px 42px;
  }

  .site-module-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-module-grid {
    grid-template-columns: 1fr;
  }

  .site-report-kpis {
    grid-template-columns: 1fr;
  }

  .site-settings-summary,
  .site-settings-grid,
  .site-banking-summary,
  .site-banking-grid,
  .site-documents-summary,
  .site-document-sheet-header,
  .site-document-party-grid,
  .site-document-total-grid,
  .site-subscription-plans {
    grid-template-columns: 1fr;
  }

  .site-document-sheet {
    padding: 18px;
  }

  .site-document-sheet-header div:last-child {
    justify-items: start;
    text-align: left;
  }

  .site-module-form-row {
    grid-template-columns: 1fr;
  }

  .site-auth-topbar {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 20px;
  }

  .site-auth-toplink {
    font-size: 15px;
  }

  .site-auth-main {
    padding: 54px 20px 48px;
  }

  .site-auth-box h1 {
    margin-bottom: 28px;
    font-size: 25px;
  }

  .site-auth-field input {
    height: 68px;
    font-size: 17px;
  }

  .site-auth-note,
  .site-auth-check,
  .site-auth-socials {
    font-size: 15px;
  }

  .site-auth-submit {
    height: 60px;
    font-size: 19px;
  }

  .site-auth-socials {
    flex-wrap: wrap;
  }

  .site-login-main {
    padding: 42px 18px 34px;
  }

  .site-login-card {
    min-height: auto;
    padding: 34px 24px 30px;
  }

  .site-login-card h1 {
    font-size: 28px;
  }

  .site-forgot-card {
    padding-top: 34px;
  }

  .site-forgot-form {
    gap: 20px;
  }

  .site-forgot-email {
    max-width: none;
  }

  .site-forgot-card h1 {
    font-size: 25px;
  }

  .site-forgot-copy,
  .site-otp-field input,
  .site-otp-resend,
  .site-support-link {
    font-size: 16px;
  }

  .site-reset-card {
    min-height: auto;
    padding: 34px 24px 38px;
  }

  .site-reset-card h1 {
    font-size: 25px;
  }

  .site-reset-copy {
    font-size: 16px;
  }

  .site-reset-form {
    gap: 24px;
    margin-top: 24px;
  }

  .site-reset-support {
    margin-top: 36px;
  }

  .site-reset-success-card {
    min-height: auto;
    padding: 34px 24px 42px;
  }

  .site-reset-success-logo img {
    width: 72px;
    height: 72px;
  }

  .site-success-mark {
    margin-top: 28px;
  }

  .site-reset-success-card h1 {
    font-size: 25px;
  }

  .site-reset-success-copy {
    font-size: 16px;
  }

  .site-login-subtitle,
  .site-login-email input,
  .site-login-password input {
    font-size: 17px;
  }

  .site-login-footer {
    font-size: 14px;
  }

}
