body.money-owed-record-page {
  --mow-ink: #18212b;
  --mow-muted: rgba(24, 33, 43, 0.72);
  --mow-line: rgba(15, 23, 42, 0.08);
  --mow-green: #afe67e;
  --mow-blue: #dfeaf4;
  --mow-sun: #e9e6bc;
}

body.money-owed-record-page .mow-hero {
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.44fr);
}

body.money-owed-record-page .mow-hero h1 {
  max-width: 15ch;
}

.mow-hero-visual img {
  aspect-ratio: 1586 / 992;
  object-fit: cover;
}

.mow-formula {
  max-width: 34rem;
}

.mow-checklist-card,
.mow-message-card,
.mow-note-examples {
  border: 1px solid var(--mow-line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
}

.mow-checklist-card {
  margin-top: 1.2rem;
  padding: clamp(1.05rem, 2.5vw, 1.35rem);
}

.mow-checklist-card h3 {
  margin-top: 0 !important;
}

.mow-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 0 !important;
  max-width: none !important;
  padding-left: 0 !important;
  list-style: none;
}

.mow-checklist li {
  position: relative;
  margin: 0 !important;
  padding: 0.82rem 0.88rem 0.82rem 2.35rem;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(223, 234, 244, 0.28), rgba(255, 255, 255, 0.88));
  color: rgba(24, 33, 43, 0.82);
  font-weight: 680;
  line-height: 1.35 !important;
}

.mow-checklist li::before {
  position: absolute;
  top: 0.82rem;
  left: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--mow-green);
  color: var(--mow-ink);
  content: "";
  box-shadow: inset 0 0 0 0.28rem rgba(255, 255, 255, 0.68);
}

.mow-ledger-table {
  min-width: 980px;
}

.mow-method-table {
  min-width: 780px;
}

.mow-status {
  display: inline-flex;
  align-items: center;
  min-height: 1.65rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  padding: 0.28rem 0.55rem;
  font-size: 0.78rem;
  font-weight: 820;
  line-height: 1.2;
  white-space: nowrap;
}

.mow-status--paid {
  background: rgba(175, 230, 126, 0.28);
  color: #355428;
}

.mow-status--partial {
  background: rgba(233, 230, 188, 0.35);
  color: #6d5a22;
}

.mow-status--open {
  background: rgba(223, 234, 244, 0.52);
  color: #315a7a;
}

.mow-note-examples {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
  padding: 1rem;
}

.mow-note-examples p {
  margin: 0 !important;
  max-width: none !important;
  color: rgba(24, 33, 43, 0.78);
  font-weight: 700;
}

.mow-related-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mow-product-section .lt-bridgePanel {
  background:
    radial-gradient(circle at top right, rgba(175, 230, 126, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(223, 234, 244, 0.42));
}

.mow-product-section .lt-bridgePanel > p,
.mow-product-section .lt-bridgePanel > h2 {
  max-width: 72ch;
}

.mow-message-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.mow-message-card {
  display: grid;
  gap: 0.8rem;
  align-content: start;
  padding: clamp(1rem, 2.5vw, 1.25rem);
}

.mow-message-card h3 {
  margin: 0 !important;
}

.mow-message-card blockquote {
  margin: 0;
  border-left: 4px solid rgba(175, 230, 126, 0.86);
  color: rgba(24, 33, 43, 0.84);
  font-size: 1rem;
  line-height: 1.65;
  padding: 0.1rem 0 0.1rem 1rem;
}

.mow-message-card .copy-button {
  justify-self: start;
}

.mow-copy-status {
  min-height: 1.25rem;
}

.mow-final-cta {
  background:
    linear-gradient(135deg, rgba(175, 230, 126, 0.24), rgba(223, 234, 244, 0.28)),
    rgba(255, 255, 255, 0.94);
}

@media (max-width: 980px) {
  body.money-owed-record-page .mow-hero {
    grid-template-columns: 1fr;
  }

  body.money-owed-record-page .mow-hero h1 {
    max-width: 22ch;
  }

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

@media (max-width: 736px) {
  .mow-checklist,
  .mow-message-grid,
  .mow-related-grid {
    grid-template-columns: 1fr;
  }

  .mow-checklist-card,
  .mow-message-card,
  .mow-note-examples {
    border-radius: 16px;
  }

  .mow-ledger-table {
    min-width: 860px;
  }

  .mow-method-table {
    min-width: 720px;
  }
}
