:root {
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: #24392f;
  background: #f7f8f4;
  font-synthesis: none;
  --green: #173e32;
  --lime: #d6edaa;
  --muted: #79837c;
  --line: #e3e7df;
  --white: #fff;
  --radius: 18px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  outline-offset: 4px;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
.btn {
  border: 0;
  border-radius: 9px;
  padding: 12px 18px;
  background: var(--green);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition:
    background 0.18s,
    transform 0.18s;
  font-size: 13px;
}
button:hover,
.btn:hover {
  background: #2b5745;
  transform: translateY(-1px);
}
button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}
.btn.light,
button.light {
  background: white;
  color: var(--green);
  border: 1px solid var(--line);
}
.btn.soft,
button.soft {
  background: #edf2e8;
  color: var(--green);
}
button.danger {
  background: #fff1ed;
  color: #a24232;
  border: 1px solid #efdbd4;
}
button.small,
.btn.small {
  font-size: 12px;
  padding: 8px 12px;
}
.icon {
  width: 19px;
  height: 19px;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}
.mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 29px;
  font-weight: 800;
  font-style: italic;
  color: var(--lime);
  background: var(--green);
  width: 37px;
  height: 37px;
  border-radius: 12px;
  line-height: 1;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
  font-size: 21px;
  letter-spacing: -0.8px;
}
.brand span:last-child {
  font-weight: 400;
  color: #71816e;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 10px;
  font-weight: 700;
  color: #7d8a7b;
}
.muted {
  color: var(--muted);
}
.smalltext {
  font-size: 12px;
  line-height: 1.7;
}
.shell {
  display: grid;
  grid-template-columns: 236px 1fr;
  min-height: 100vh;
}
.sidebar {
  padding: 31px 20px 22px;
  background: #fff;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0 auto 0 0;
  width: 236px;
  z-index: 20;
}
.sidebar .brand {
  margin: 0 8px 41px;
}
.product-label {
  margin: 0 13px 15px;
}
.nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.nav a {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  color: #718075;
  font-size: 13px;
  border-radius: 9px;
}
.nav a:hover {
  background: #f5f7f1;
}
.nav a.active {
  background: #eaf1e2;
  color: #25432f;
  font-weight: 650;
}
.nav .count {
  margin-left: auto;
  background: #d6e6c7;
  border-radius: 5px;
  padding: 2px 6px;
  font-size: 10px;
}
.nav-separator {
  height: 1px;
  background: var(--line);
  margin: 23px 12px;
}
.sidebar-bottom {
  margin-top: auto;
}
.sidebar-note {
  background: #f7f8f1;
  padding: 17px;
  border-radius: 12px;
  margin-top: 30px;
}
.sidebar-note p {
  font-size: 12px;
  line-height: 1.6;
  color: #7a8376;
}
.profile {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 23px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.avatar {
  width: 35px;
  height: 35px;
  background: #eee8df;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
}
.profile strong {
  display: block;
  font-size: 12px;
}
.profile small {
  font-size: 10px;
  color: var(--muted);
}
.main {
  grid-column: 2;
  min-width: 0;
}
.topbar {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 42px;
  border-bottom: 1px solid var(--line);
  background: #fdfefb;
  font-size: 12px;
  color: #7f897e;
}
.topbar .right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.workspace-tag {
  color: #40583e;
  border: 1px solid #dce4d2;
  padding: 7px 10px;
  border-radius: 6px;
  font-size: 10px;
  background: #f3f7ec;
}
.content {
  max-width: 1500px;
  margin: auto;
  padding: 35px 42px 50px;
}
.page-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 27px;
}
.page-heading h1 {
  margin: 0 0 9px;
  font-weight: 550;
  font-size: 28px;
  letter-spacing: -1px;
}
.page-heading p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.money-hero {
  border-radius: 19px;
  background: var(--green);
  padding: 29px 32px;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  position: relative;
  overflow: hidden;
  color: #fff;
  margin-bottom: 22px;
  min-height: 202px;
}
.money-hero:after {
  content: "";
  position: absolute;
  right: 15%;
  top: -130px;
  width: 370px;
  height: 370px;
  border: 1px solid #ffffff10;
  border-radius: 50%;
  box-shadow:
    0 0 0 40px #ffffff04,
    0 0 0 80px #ffffff03;
  pointer-events: none;
}
.money-hero .eyebrow {
  color: #c4d4be;
  letter-spacing: 1px;
}
.money-hero h2 {
  font-size: 46px;
  font-weight: 450;
  letter-spacing: -2px;
  margin: 13px 0 11px;
}
.money-hero p {
  font-size: 12px;
  color: #c4d2c7;
}
.hero-tip {
  align-self: center;
  background: #ffffff0d;
  border: 1px solid #ffffff16;
  border-radius: 12px;
  padding: 20px;
  max-width: 280px;
  z-index: 1;
}
.hero-tip strong {
  font-size: 13px;
  display: block;
  margin-bottom: 9px;
  color: #e1f0c9;
}
.hero-tip p {
  line-height: 1.7;
  margin: 0;
  font-size: 11px;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 25px;
}
.metric {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 20px;
}
.metric .label {
  display: flex;
  justify-content: space-between;
  color: #7e877c;
  font-size: 11px;
  align-items: center;
  gap: 8px;
}
.metric .label .icon {
  width: 16px;
  height: 16px;
  color: #8b9980;
}
.metric strong {
  display: block;
  font-size: 27px;
  font-weight: 550;
  letter-spacing: -1px;
  margin: 15px 0 8px;
}
.metric small {
  font-size: 10px;
  color: #87917f;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(270px, 1fr);
  gap: 22px;
  margin-bottom: 22px;
}
.panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: 15px;
  overflow: hidden;
}
.panel-pad {
  padding: 23px;
}
.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 23px 16px;
  gap: 15px;
}
.panel-head h2 {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}
.panel-head p {
  font-size: 11px;
  color: var(--muted);
  margin: 7px 0 0;
}
.panel-head a {
  font-size: 11px;
  color: #6e8562;
  white-space: nowrap;
}
.empty {
  padding: 39px 22px;
  text-align: center;
  color: #829078;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.empty .empty-icon {
  width: 46px;
  height: 46px;
  background: #f0f4e8;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #6e8959;
  margin-bottom: 5px;
}
.empty strong {
  font-size: 13px;
  font-weight: 550;
  color: #43573b;
}
.empty p {
  font-size: 12px;
  line-height: 1.7;
  margin: 0;
  max-width: 340px;
}
.empty .btn {
  margin-top: 9px;
}
.flow {
  padding: 10px 24px 25px;
}
.flow-row {
  display: flex;
  gap: 13px;
  padding: 13px 0;
  align-items: center;
}
.flow-row + .flow-row {
  border-top: 1px solid #f1f3ed;
}
.step-number {
  border: 1px solid #e1e8d8;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 11px;
  color: #7d916c;
}
.flow-row strong {
  font-size: 12px;
  font-weight: 550;
  display: block;
}
.flow-row p {
  font-size: 10px;
  color: #8d9784;
  margin: 5px 0 0;
}
.flow-row .pill {
  margin-left: auto;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 5px;
  background: #eff2ea;
  color: #718366;
  font-size: 10px;
  padding: 5px 8px;
  white-space: nowrap;
}
.pill.won,
.pill.connected {
  background: #eaf5e7;
  color: #497b37;
}
.pill.hot {
  background: #fff0dd;
  color: #ac722c;
}
.pill.waiting,
.pill.contacted {
  background: #eef1ff;
  color: #6574b1;
}
.pill.lost,
.pill.error,
.pill.uncertain {
  background: #ffede8;
  color: #b56550;
}
.pill.draft,
.pill.paused {
  background: #f2f1ed;
  color: #938774;
}
.notice {
  padding: 14px 17px;
  background: #f0f4e7;
  border: 1px solid #dee7d1;
  border-radius: 10px;
  font-size: 12px;
  line-height: 1.7;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.notice.warn {
  background: #fff8e9;
  border-color: #efe2bf;
  color: #8c712b;
}
.table-wrap {
  overflow: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  white-space: nowrap;
}
th {
  text-align: left;
  background: #fafbf7;
  font-weight: 500;
  color: #8a9480;
  font-size: 10px;
  padding: 13px 20px;
  border-block: 1px solid #edf0e7;
}
td {
  padding: 16px 20px;
  border-bottom: 1px solid #f0f2ed;
}
td strong {
  font-weight: 550;
  display: block;
}
td small {
  font-size: 10px;
  color: #87917e;
  display: block;
  margin-top: 5px;
}
tbody tr[data-quote] {
  cursor: pointer;
}
tbody tr:hover {
  background: #fcfdf9;
}
.toolbar {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 20px;
  flex-wrap: wrap;
}
.search {
  flex: 1;
  min-width: 180px;
}
.toolbar input,
.toolbar select {
  font-size: 12px;
  padding: 10px 12px;
  margin: 0;
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: 11px;
  color: var(--muted);
}
.timeline {
  padding: 2px 23px 22px;
}
.event {
  display: flex;
  gap: 13px;
  padding: 14px 0;
  align-items: flex-start;
}
.event + .event {
  border-top: 1px solid #f0f2eb;
}
.event-dot {
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: #f0f4e8;
  display: grid;
  place-items: center;
  color: #799362;
  flex-shrink: 0;
}
.event-dot .icon {
  width: 14px;
  height: 14px;
}
.event strong {
  font-size: 12px;
  font-weight: 550;
  display: block;
}
.event p {
  font-size: 11px;
  margin: 5px 0;
  color: #829077;
}
.event time {
  font-size: 10px;
  color: #a0a694;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-grid .wide {
  grid-column: 1/-1;
}
label {
  display: block;
  font-size: 12px;
  color: #687663;
}
input,
textarea,
select {
  display: block;
  width: 100%;
  border: 1px solid #dfe5d8;
  border-radius: 8px;
  padding: 12px;
  background: white;
  color: #34452e;
  margin-top: 8px;
  min-width: 0;
}
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid #b8cf9b;
  border-color: transparent;
}
textarea {
  min-height: 100px;
  resize: vertical;
}
input[type="checkbox"] {
  width: 16px;
  display: inline-block;
  margin: 0 8px 0 0;
  accent-color: var(--green);
}
input[type="file"] {
  font-size: 12px;
}
.checkbox {
  display: flex;
  align-items: center;
  gap: 6px;
}
.form-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 25px;
}
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 1fr);
  gap: 22px;
}
.connection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 22px;
}
.provider-logo {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.gmail {
  color: #c95648;
}
.outlook {
  color: #3482be;
}
.connection h2 {
  font-size: 18px;
  font-weight: 550;
}
.connection p {
  font-size: 12px;
  color: #7d8974;
  line-height: 1.8;
  overflow-wrap: anywhere;
}
.connection .actions {
  margin-top: 25px;
}
.section-title {
  font-size: 17px;
  font-weight: 550;
  margin: 0 0 8px;
}
.section-subtitle {
  font-size: 12px;
  color: #859078;
  margin: 0 0 24px;
  line-height: 1.7;
}
.sequence-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin: 15px 0;
}
.sequence-card header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 17px;
}
.sequence-card h3 {
  font-size: 13px;
  margin: 0;
}
.sequence-card .day-field {
  width: 100px;
}
.help {
  font-size: 11px;
  color: #929b87;
  line-height: 1.6;
  margin-top: 10px;
}
.danger-zone {
  border-color: #eddbd3;
  margin-top: 24px;
}
.dropzone {
  border: 2px dashed #cddabb;
  border-radius: 13px;
  background: #f7faef;
  text-align: center;
  padding: 40px 20px;
  color: #73905d;
}
.dropzone.over {
  background: #e8f1d7;
}
.dropzone strong {
  display: block;
  font-size: 15px;
  color: #425d32;
  margin: 15px 0 9px;
}
.dropzone p {
  font-size: 12px;
  line-height: 1.8;
}
.dropzone input {
  max-width: 320px;
  margin: 20px auto 0;
  background: white;
}
.email-body {
  white-space: pre-wrap;
  font-family: inherit;
  font-size: 12px;
  line-height: 1.8;
  background: #fafbf7;
  border-radius: 9px;
  padding: 15px;
  overflow-wrap: anywhere;
}
.details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 23px 0;
}
.details dt {
  font-size: 11px;
  color: #8a9581;
}
.details dd {
  font-size: 13px;
  margin: 7px 0 0;
  overflow-wrap: anywhere;
}
.financial {
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -1.6px;
  margin: 18px 0 7px;
}
.bar-row {
  display: grid;
  grid-template-columns: 80px 1fr 85px;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  margin: 20px 0;
}
.bar {
  height: 10px;
  border-radius: 4px;
  background: #f0f3e9;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: #b4cc8e;
  border-radius: 4px;
  min-width: 0;
}
.chart-empty {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a0aa95;
  font-size: 11px;
  border-bottom: 1px dashed #e5e9df;
}
.notification {
  padding: 12px;
  border-radius: 8px;
  background: #f8faf3;
  margin-bottom: 8px;
  font-size: 12px;
}
.notification button {
  float: right;
}
dialog {
  border: 1px solid var(--line);
  border-radius: 18px;
  max-width: 650px;
  width: calc(100% - 32px);
  padding: 28px;
  color: var(--green);
  box-shadow: 0 25px 100px #173e3226;
}
dialog::backdrop {
  background: #183d3266;
  backdrop-filter: blur(3px);
}
dialog h2 {
  font-size: 23px;
  font-weight: 550;
  margin: 0 0 12px;
}
dialog p {
  font-size: 13px;
  line-height: 1.7;
  color: #7c8973;
}
#toast {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--green);
  color: white;
  padding: 14px 22px;
  border-radius: 10px;
  z-index: 100;
  font-size: 13px;
  max-width: 90%;
  box-shadow: 0 8px 30px #173e3220;
  transition: transform 0.25s;
}
#toast.show {
  transform: translateX(-50%) translateY(0);
}
#toast.error {
  background: #943f32;
}
#toast:empty {
  display: none;
}
.loading {
  min-height: 65vh;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #8b967e;
}
.skeleton {
  height: 120px;
  background: linear-gradient(90deg, #edf1e7, #f9fbf5, #edf1e7);
  background-size: 200%;
  border-radius: 15px;
  animation: shimmer 1.5s infinite;
  margin: 20px 0;
}
@keyframes shimmer {
  to {
    background-position: -200%;
  }
}
.menu-toggle {
  display: none;
}
.auth-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.auth-story {
  background: var(--green);
  color: white;
  padding: 55px 65px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.auth-story .brand .mark {
  background: #d6edaa;
  color: var(--green);
}
.auth-story .brand span:last-child {
  color: #b4c9ad;
}
.auth-story h1 {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 58px;
  line-height: 1.12;
  max-width: 500px;
  letter-spacing: -2px;
}
.auth-story h1 em {
  color: var(--lime);
}
.auth-story p {
  color: #bccdb7;
  line-height: 1.9;
  font-size: 14px;
  max-width: 380px;
}
.auth-story .smalltext {
  font-size: 11px;
}
.auth-form {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}
.auth-form > div {
  width: 380px;
}
.auth-form h2 {
  font-size: 29px;
  font-weight: 550;
  letter-spacing: -1px;
  margin-bottom: 10px;
}
.auth-form label {
  margin-top: 20px;
}
.auth-form button {
  width: 100%;
  margin-top: 25px;
}
.auth-form .switch {
  font-size: 12px;
  color: #8b9681;
  text-align: center;
  margin-top: 25px;
}
.auth-form .switch a {
  color: var(--green);
  text-decoration: underline;
}
.inline-error {
  font-size: 12px;
  color: #a84435;
  margin: 15px 0;
  line-height: 1.7;
}
.landing {
  background: #f8f9f2;
}
.landing-nav {
  max-width: 1250px;
  margin: auto;
  padding: 25px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.landing-links {
  display: flex;
  gap: 30px;
  font-size: 13px;
  color: #728168;
  align-items: center;
}
.landing-hero {
  max-width: 1250px;
  margin: auto;
  padding: 80px 40px 90px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 70px;
}
.landing-hero h1 {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 65px;
  letter-spacing: -3px;
  line-height: 1.06;
  margin: 25px 0;
}
.landing-hero h1 em {
  color: #7a935e;
}
.landing-hero > div > p {
  font-size: 15px;
  color: #839174;
  line-height: 1.85;
  max-width: 420px;
}
.landing-hero .actions {
  margin-top: 30px;
}
.landing-hero .trust {
  font-size: 11px;
  margin-top: 22px;
}
.landing-preview {
  background: white;
  border: 1px solid #e4e8d9;
  border-radius: 18px;
  box-shadow: 0 25px 70px #3f5b2310;
  transform: rotate(-2deg);
  overflow: hidden;
}
.preview-top {
  padding: 18px;
  border-bottom: 1px solid #edf0e4;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  align-items: center;
}
.preview-body {
  padding: 22px;
}
.preview-hero {
  padding: 25px;
  background: var(--green);
  color: #fff;
  border-radius: 12px;
}
.preview-hero span {
  font-size: 10px;
  color: #cfdbbf;
}
.preview-hero strong {
  display: block;
  font-size: 35px;
  font-weight: 450;
  margin: 15px 0;
}
.preview-hero p {
  font-size: 11px;
  color: #d8e5cb;
  margin: 0;
}
.preview-steps {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}
.preview-step {
  flex: 1;
  background: #f1f5e7;
  border-radius: 9px;
  padding: 15px 9px;
  font-size: 11px;
}
.preview-step strong {
  display: block;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 6px;
}
.preview-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 0;
  font-size: 11px;
  color: #7d8f69;
}
.landing-section {
  max-width: 1170px;
  margin: auto;
  padding: 75px 35px;
}
.landing-section.center {
  text-align: center;
}
.landing-section h2 {
  font-family: Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  letter-spacing: -1px;
  margin: 15px 0 25px;
}
.landing-section > p {
  color: #839174;
  font-size: 14px;
  line-height: 1.9;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  text-align: left;
  margin-top: 40px;
}
.feature {
  padding: 28px;
  border: 1px solid #e1e7d4;
  border-radius: 15px;
  background: #fff;
}
.feature .icon {
  color: #8ba369;
  width: 26px;
  height: 26px;
}
.feature h3 {
  font-size: 17px;
  font-weight: 550;
  margin: 25px 0 14px;
}
.feature p {
  font-size: 13px;
  color: #859575;
  line-height: 1.85;
}
.landing-band {
  background: #eaf0df;
}
.faq {
  max-width: 750px;
  margin: 30px auto;
}
.faq details {
  border-bottom: 1px solid #dfe5d3;
  padding: 22px 0;
  text-align: left;
}
.faq summary {
  font-size: 15px;
  cursor: pointer;
}
.faq p {
  font-size: 13px;
  color: #819170;
  line-height: 1.9;
}
.final-cta {
  background: var(--green);
  color: white;
  border-radius: 22px;
  padding: 60px;
  text-align: center;
}
.final-cta h2 {
  margin-top: 0;
}
.final-cta p {
  color: #bdcfac;
  font-size: 14px;
  margin-bottom: 28px;
}
.final-cta .btn {
  background: var(--lime);
  color: var(--green);
}
.landing-footer {
  max-width: 1170px;
  margin: auto;
  padding: 30px 35px 45px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #94a184;
  font-size: 11px;
}
.mobile-only {
  display: none;
}
@media (min-width: 1550px) {
  .content {
    padding-top: 42px;
  }
  .money-hero {
    min-height: 235px;
    padding: 36px;
  }
  .money-hero h2 {
    font-size: 54px;
  }
}
@media (max-width: 1100px) {
  .shell {
    grid-template-columns: 205px 1fr;
  }
  .sidebar {
    width: 205px;
    padding-inline: 15px;
  }
  .content {
    padding: 28px 25px;
  }
  .topbar {
    padding: 0 25px;
  }
  .metrics {
    gap: 10px;
  }
  .metric {
    padding: 16px;
  }
  .metric strong {
    font-size: 24px;
  }
  .money-hero {
    padding: 25px;
  }
  .hero-tip {
    max-width: 230px;
  }
  .dashboard-grid,
  .split {
    grid-template-columns: 1fr;
  }
  .landing-hero {
    gap: 35px;
  }
  .landing-hero h1 {
    font-size: 52px;
  }
  .auth-story {
    padding: 45px;
  }
  .auth-story h1 {
    font-size: 49px;
  }
}
@media (max-width: 760px) {
  .shell {
    display: block;
  }
  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.2s;
    width: 235px;
    box-shadow: 20px 0 40px #183d3210;
  }
  .sidebar.open {
    transform: translateX(0);
  }
  .main {
    width: 100%;
  }
  .topbar {
    padding: 0 18px;
    height: 65px;
  }
  .topbar .right {
    gap: 10px;
  }
  .topbar .date {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
    padding: 8px;
    background: transparent;
    color: var(--green);
  }
  .content {
    padding: 23px 17px;
  }
  .page-heading {
    align-items: flex-start;
  }
  .page-heading h1 {
    font-size: 25px;
  }
  .page-heading .actions .btn {
    padding: 10px;
    font-size: 11px;
  }
  .page-heading p {
    line-height: 1.6;
  }
  .money-hero {
    padding: 24px;
    min-height: auto;
  }
  .money-hero h2 {
    font-size: 37px;
  }
  .hero-tip {
    display: none;
  }
  .metrics {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .metric {
    padding: 16px;
  }
  .metric strong {
    font-size: 25px;
  }
  .dashboard-grid,
  .connection-grid {
    grid-template-columns: 1fr;
    gap: 17px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-grid .wide {
    grid-column: auto;
  }
  .landing-links > a:not(.btn) {
    display: none;
  }
  .landing-nav {
    padding: 20px;
  }
  .landing-hero {
    grid-template-columns: 1fr;
    padding: 45px 23px;
    gap: 40px;
  }
  .landing-hero h1 {
    font-size: 52px;
    max-width: 480px;
  }
  .landing-preview {
    transform: rotate(0);
    max-width: 500px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .landing-section {
    padding: 50px 23px;
  }
  .landing-section h2 {
    font-size: 35px;
  }
  .final-cta {
    padding: 35px 20px;
  }
  .landing-footer {
    padding: 25px;
    gap: 20px;
  }
  .auth-page {
    display: block;
  }
  .auth-story {
    padding: 25px;
  }
  .auth-story > div:not(:first-child),
  .auth-story > p {
    display: none;
  }
  .auth-form {
    padding: 35px 25px;
  }
  .auth-form > div {
    width: 100%;
    max-width: 420px;
  }
  .details {
    gap: 15px;
  }
  .financial {
    font-size: 32px;
  }
  .workspace-tag {
    font-size: 9px;
  }
  .mobile-only {
    display: block;
  }
  .toolbar {
    padding: 15px;
    gap: 9px;
  }
  .toolbar select {
    width: auto;
    flex: 1;
  }
  .panel-pad {
    padding: 20px;
  }
  button,
  .btn {
    min-height: 38px;
  }
  .page-heading {
    flex-wrap: wrap;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

.mt22 {
  margin-top: 22px;
}
.mt15 {
  margin-top: 15px;
}
.mb22 {
  margin-bottom: 22px;
}
.loading .skeleton {
  width: 280px;
}

.line-editor {
  display: grid;
  grid-template-columns: 1fr 75px 100px 35px;
  gap: 8px;
  align-items: end;
}
.line-editor input {
  font-size: 12px;
  padding: 10px;
}
.line-editor button {
  height: 38px;
}
@media (max-width: 500px) {
  .line-editor {
    grid-template-columns: 1fr 60px 75px 30px;
    gap: 4px;
  }
}
