
:root {
  --font-sans:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, system-ui,
    sans-serif;
  --font-mono: ui-monospace, "SF Mono", "Cascadia Mono", Menlo, Consolas, monospace;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e4e8ee;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-700: #334155;
  --slate-900: #0f172a;
  --bg: #f4f6f9;
  --surface: #ffffff;
  --raise: #fafbfc;
  --border: #e4e8ee;
  --control-border: #8a93a3;
  --ink: #0f172a;
  --ink-2: #334155;
  --muted: #55606f;
  --faint: #7a8393;
  --primary: #0f172a;
  --primary-hover: #1e293b;
  --primary-ink: #ffffff;
  --focus: #0f172a;
  --ok-fg: #0b6e4f;
  --ok-bg: #e9f3ee;
  --ok-bd: #c7e4d6;
  --soon-fg: #8a5300;
  --soon-bg: #fbf0da;
  --soon-bd: #eedbb0;
  --late-fg: #a11c15;
  --late-bg: #fbe9e7;
  --late-bd: #f1ccc7;
  --vac-fg: #55606f;
  --vac-bg: #edf1f5;
  --vac-bd: #dee4ec;
  --ok: #0b6e4f;
  --soon: #b26b00;
  --late: #b3261e;
  --vac: #6b6b64;
  --r-sm: 4px;
  --r: 5px;
  --r-lg: 8px;
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-12: 48px;
  --shadow-overlay: 0 10px 30px -22px rgba(15, 23, 42, 0.5);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  font-size: 17px;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-variant-numeric: tabular-nums;
}
h1,
h2,
h3,
h4 {
  margin: 0 0 0.4em;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
h1 {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h2 {
  font-size: 1.3rem;
  font-weight: 700;
}
h3 {
  font-size: 1.06rem;
  font-weight: 700;
}
p {
  margin: 0 0 1em;
}
small,
.u-small {
  font-size: 0.82rem;
}
.u-overline {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.u-muted,
.muted {
  color: var(--muted);
}
.u-mono {
  font-family: var(--font-mono);
}
.u-tabular,
.tnum {
  font-variant-numeric: tabular-nums;
}
b,
strong {
  font-weight: 600;
}
a {
  color: var(--ink);
  text-underline-offset: 2px;
}
:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}
.btn--primary:focus-visible {
  outline-color: var(--focus);
  box-shadow:
    0 0 0 2px #fff,
    0 0 0 5px var(--focus);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  min-height: 44px;
  padding: 11px 16px;
  border-radius: var(--r-sm);
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--control-border);
}
.btn--primary {
  background: var(--primary);
  color: var(--primary-ink);
  border-color: var(--primary);
}
.btn--primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
}
.btn--secondary {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--control-border);
}
.btn--ghost {
  background: transparent;
  color: var(--ink-2);
  border: 1px solid transparent;
}
.btn--danger {
  background: var(--surface);
  color: var(--late-fg);
  border: 1px solid var(--late-bd);
}
.btn--block {
  width: 100%;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-field {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 60px;
  padding: 16px;
  font-size: 1.05rem;
  font-weight: 600;
  background: var(--surface);
  border: 1px solid var(--control-border);
  border-radius: var(--r-lg);
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
}
.btn-field--primary {
  background: var(--primary);
  color: #fff;
  border-color: #334155;
}
.field {
  margin-bottom: 13px;
}
.field > label,
form > label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 5px;
}
.input,
.select,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--ink);
  min-height: 44px;
  padding: 11px 12px;
  background: var(--surface);
  border: 1px solid var(--control-border);
  border-radius: var(--r-sm);
}
.input::placeholder,
input::placeholder {
  color: var(--muted);
}
input[type="checkbox"] {
  min-height: auto;
  width: auto;
}
input[type="search"] {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 1rem;
  min-height: 44px;
  padding: 11px 12px;
  background: var(--surface);
  border: 1px solid var(--control-border);
  border-radius: var(--r-sm);
}
select,
.select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' fill='none' stroke='%2355606F' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.money-input {
  position: relative;
  display: block;
}
.money-input .cur {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}
.money-input input {
  padding-left: 26px;
}
.seg {
  display: inline-flex;
  border: 1px solid var(--control-border);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.seg > a,
.seg > button {
  font-size: 0.86rem;
  font-weight: 600;
  padding: 10px 14px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-2);
  background: var(--surface);
  border: 0;
  cursor: pointer;
  text-decoration: none;
}
.seg > a[aria-current="true"],
.seg > button[aria-pressed="true"],
.seg > .is-active {
  background: var(--primary);
  color: #fff;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 3px 10px 3px 8px;
  border-radius: var(--r-sm);
  border: 1px solid;
  white-space: nowrap;
}
.badge svg {
  width: 15px;
  height: 15px;
  flex: none;
}
.badge--ok {
  color: var(--ok-fg);
  background: var(--ok-bg);
  border-color: var(--ok-bd);
}
.badge--soon {
  color: var(--soon-fg);
  background: var(--soon-bg);
  border-color: var(--soon-bd);
}
.badge--late {
  color: var(--late-fg);
  background: var(--late-bg);
  border-color: var(--late-bd);
}
.badge--vac {
  color: var(--vac-fg);
  background: var(--vac-bg);
  border-color: var(--vac-bd);
}
.fill--ok {
  fill: var(--ok);
}
.fill--soon {
  fill: var(--soon);
}
.fill--late {
  fill: var(--late);
}
.table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
}
.table th {
  text-align: left;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
}
.table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
}
.table tbody tr:last-child td {
  border-bottom: 0;
}
.table tbody tr:hover {
  background: var(--slate-100);
}
.table .num,
.table .amount,
.table .tnum {
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.table .amount,
.table .num {
  font-weight: 600;
}
.table .amount--due {
  color: var(--late-fg);
}
.table a {
  color: var(--ink);
  text-decoration: none;
}
.table a:hover {
  text-decoration: underline;
}
.table tr.rowlink {
  cursor: pointer;
}
.table tr.rowlink:hover {
  background: var(--slate-100);
}
.table .sort-th {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.table .sort-th:hover {
  text-decoration: underline;
  color: var(--ink);
}
.table .sort-th.is-active {
  color: var(--ink);
}
.table .sort-ind {
  margin-left: 5px;
  color: var(--faint);
  font-size: 0.9em;
}
.table .sort-th.is-active .sort-ind {
  color: var(--ink);
}
.filters {
  display: flex;
  gap: 10px 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 14px;
}
.search {
  display: flex;
  gap: 8px;
  flex: 1 1 240px;
  max-width: 420px;
  margin: 0;
}
.search input,
.search > .btn {
  min-height: 46px;
  flex: 1;
  min-width: 0;
}
.search > .btn {
  flex: 0 0 auto;
}
.toggle-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 8px 14px;
  border: 1px solid var(--control-border);
  border-radius: var(--r-sm);
  background: var(--surface);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
}
.toggle-chip .toggle-box {
  width: 20px;
  height: 20px;
  flex: none;
  border: 2px solid var(--control-border);
  border-radius: var(--r-sm);
  background: var(--surface);
}
.toggle-chip.is-on {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}
.toggle-chip.is-on .toggle-box {
  border-color: #fff;
  background:
    #fff
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 8.4l3 3 6-6.4' fill='none' stroke='%230F172A' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / 14px no-repeat;
}
.table .lot-cell {
  font-weight: 700;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 16px 20px;
  margin-bottom: var(--sp-4);
}
.card > :last-child {
  margin-bottom: 0;
}
.card--flush {
  padding: 0;
  overflow-x: auto;
}
.stats {
  display: flex;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: var(--sp-4);
}
.stats > .stat {
  flex: 1;
  padding: 12px 16px;
  border-right: 1px solid var(--border);
}
.stats > .stat:last-child {
  border-right: 0;
}
.stat > b {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.stat > span {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.stat > b.is-due {
  color: var(--late-fg);
}
.app {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
}
.sidebar {
  background: var(--surface);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: 16px 14px;
  gap: 10px;
  position: sticky;
  top: 0;
  align-self: start;
  height: 100vh;
  overflow-y: auto;
}
.side-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 4px 6px 4px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}
.side-brand img {
  height: 30px;
  width: auto;
  display: block;
}
.park-switch {
  position: relative;
}
.park-switch > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 10px;
  border: 1px solid var(--control-border);
  border-radius: var(--r-sm);
  font-weight: 600;
}
.park-switch > summary::-webkit-details-marker {
  display: none;
}
.park-switch .ps-name {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.park-switch .ps-chev {
  width: 16px;
  height: 16px;
  flex: none;
  color: var(--muted);
}
.park-switch[open] .ps-chev {
  transform: rotate(180deg);
}
.park-switch .ps-menu {
  position: absolute;
  left: 0;
  right: 0;
  margin-top: 4px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-overlay);
  padding: 4px;
  z-index: 20;
}
.park-switch .ps-menu a {
  display: block;
  padding: 10px 10px;
  min-height: 44px;
  border-radius: var(--r-sm);
  text-decoration: none;
  color: var(--ink-2);
}
.park-switch .ps-menu a:hover {
  background: var(--slate-100);
}
.park-switch .ps-add {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: var(--ink);
}
.park-switch .ps-plus {
  font-size: 1.2rem;
  line-height: 1;
  color: var(--muted);
}
.park-switch .ps-all {
  border-top: 1px solid var(--border);
  margin-top: 4px;
  padding-top: 12px;
}
.nav {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.nav a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 10px;
  min-height: 44px;
  font-size: 1rem;
  color: var(--ink-2);
  text-decoration: none;
  border-radius: var(--r-sm);
}
.nav a:hover {
  background: var(--slate-100);
}
.nav a.is-active {
  background: var(--slate-100);
  color: var(--ink);
  font-weight: 600;
}
.nav a svg {
  width: 18px;
  height: 18px;
  flex: none;
  color: var(--slate-500);
}
.nav-group-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 10px 8px 4px;
}
.side-foot {
  margin-top: auto;
  padding: 12px 8px 4px;
  border-top: 1px solid var(--border);
  font-size: 0.86rem;
  color: var(--muted);
}
.side-foot a {
  color: var(--ink-2);
  font-weight: 600;
  text-decoration: none;
  display: block;
  margin-top: 2px;
}
.side-foot .tiny {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 4px;
}
.nav-adv {
  margin: 2px 0 2px;
}
.nav-adv > summary {
  list-style: none;
  cursor: pointer;
  padding: 8px 10px;
  min-height: 40px;
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: var(--muted);
  border-radius: var(--r-sm);
}
.nav-adv > summary::-webkit-details-marker {
  display: none;
}
.nav-adv > summary::after {
  content: "▸";
  margin-left: 6px;
  font-size: 0.7rem;
}
.nav-adv[open] > summary::after {
  content: "▾";
}
.nav-adv > summary:hover {
  background: var(--slate-100);
}
.nav-adv a {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 10px 8px 22px;
  font-size: 0.92rem;
  color: var(--ink-2);
  text-decoration: none;
  border-radius: var(--r-sm);
}
.nav-adv a:hover {
  background: var(--slate-100);
}
.nav-adv a.is-active {
  background: var(--slate-100);
  color: var(--ink);
  font-weight: 600;
}
.plainbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.mobile-foot {
  display: none;
}
.main {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.subbar {
  padding: 14px 24px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.subbar-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.subbar h1 {
  margin: 0;
  font-size: 1.35rem;
}
.subbar .sub-period {
  color: var(--muted);
  font-size: 1rem;
}
.subbar-actions {
  margin-left: auto;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.subbar-aside {
  margin-top: 12px;
}
.content {
  padding: 22px 24px 48px;
  width: 100%;
}
.demo-banner {
  background: #fbf3de;
  border-bottom: 1px solid var(--soon-bd);
  color: #6b4e12;
  padding: 12px 24px;
  font-size: 1rem;
  text-align: center;
}
.demo-banner b {
  color: #5a3f0c;
}
.demo-banner a {
  color: #5a3f0c;
  font-weight: 700;
  text-decoration: underline;
  white-space: nowrap;
}
.backlink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-2);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.crumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.crumb a {
  color: var(--muted);
  text-decoration: none;
}
.crumb a:hover {
  text-decoration: underline;
  color: var(--ink);
}
.crumb-sep {
  color: var(--faint);
  font-weight: 400;
}
.backlink:hover {
  text-decoration: underline;
}
.row-between {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.actions--end {
  margin-top: 16px;
}
.more {
  position: relative;
}
.more > summary {
  list-style: none;
}
.more > summary::-webkit-details-marker {
  display: none;
}
.more-caret {
  display: inline-block;
  margin-left: 2px;
  font-size: 0.9em;
  color: var(--muted);
}
.more[open] > summary .more-caret {
  transform: rotate(180deg);
}
.more-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 210px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-overlay);
  padding: 4px;
  z-index: 20;
  display: flex;
  flex-direction: column;
}
.more-menu a,
.more-menu button {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  border: 0;
  background: transparent;
  border-radius: var(--r-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-2);
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}
.more-menu a:hover,
.more-menu button:hover {
  background: var(--slate-100);
}
.more-menu .more-item--danger {
  color: var(--late-fg);
}
.plat {
  width: 100%;
  height: auto;
  display: block;
  background: #edf0f4;
  border: 1px solid var(--border);
  border-radius: var(--r);
}
.plat .lot-num {
  fill: #fff;
  font-weight: 700;
  font-family: var(--font-sans);
}
.plat a {
  cursor: pointer;
}
.plat a:focus-visible {
  outline: 3px solid var(--focus);
}
.plat .lot--vacant {
  fill: none;
  stroke: var(--slate-300);
  stroke-width: 2;
  stroke-dasharray: 5 4;
}
.plat .vac-num {
  fill: var(--slate-500);
  font-weight: 700;
}
.plat .lot-badge-bg {
  fill: #fff;
  stroke: rgba(0, 0, 0, 0.28);
  stroke-width: 1;
}
.plat .lot-badge {
  color: var(--ink);
}
.plat .lot-badge--current {
  color: var(--ok);
}
.plat .lot-badge--due_soon {
  color: var(--soon);
}
.plat .lot-badge--past_due {
  color: var(--late);
}
.map-legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
}
.map-legend .legend-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-2);
}
.map-legend .legend-swatch {
  width: 22px;
  height: 22px;
  flex: none;
}
.map-legend .legend-glyph {
  color: #fff;
}
.ledger-total td {
  font-weight: 700;
  border-top: 2px solid var(--border);
  font-size: 1.05rem;
}
.amt-neg {
  color: var(--ok-fg);
}
.narrow {
  max-width: 460px;
}
.stack > * + * {
  margin-top: 16px;
}
.value-panel {
  margin-top: 24px;
  padding: 20px;
  background: var(--raise);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.value-title {
  font-size: 1.1rem;
  margin: 0 0 14px;
}
.value-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.value-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--ink-2);
}
.value-check {
  width: 24px;
  height: 24px;
  flex: none;
  padding: 4px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--ok-bg);
  color: var(--ok-fg);
}
.lp {
  max-width: 720px;
  margin: 0 auto;
}
.lp-hero {
  text-align: center;
  padding: 12px 0 8px;
}
.lp-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.lp-hero h1 {
  font-size: 2rem;
  line-height: 1.1;
  margin: 0 0 12px;
}
.lp-lead {
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 34rem;
  margin: 0 auto 22px;
}
.lp-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.lp-cta {
  min-height: 52px;
  padding: 14px 26px;
  font-size: 1.05rem;
}
.lp-cta-note {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 32rem;
  margin: 14px auto 0;
}
.lp-trust {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
}
.lp-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--ink-2);
}
.lp-trust .value-check {
  width: 20px;
  height: 20px;
  padding: 3px;
}
.lp-section {
  margin-top: 40px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.lp-h2 {
  font-size: 1.35rem;
  margin: 0 0 18px;
}
.lp-values {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}
.lp-value {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 1.02rem;
  line-height: 1.45;
  color: var(--ink-2);
}
.lp-band {
  margin: 24px 0 8px;
  padding: 28px;
  text-align: center;
  background: var(--slate-900);
  color: #fff;
  border-radius: var(--r-lg);
}
.lp-band .lp-h2 {
  color: #fff;
}
.lp-band-lead {
  font-size: 1.05rem;
  color: var(--slate-300);
  max-width: 32rem;
  margin: 0 auto 20px;
}
.lp-concierge {
  font-size: 0.98rem;
  color: var(--slate-300);
  max-width: 34rem;
  margin: 20px auto 0;
}
.lp-concierge a {
  color: #fff;
  font-weight: 600;
}
.lp-more {
  margin: 14px 0 0;
}
.lp-more a {
  color: var(--slate-400);
  font-size: 0.95rem;
}
@media (max-width: 560px) {
  .lp-hero h1 {
    font-size: 1.65rem;
  }
  .lp-lead {
    font-size: 1.08rem;
  }
  .lp-cta {
    width: 100%;
  }
  .lp-values {
    grid-template-columns: 1fr;
  }
  .lp-section,
  .lp-band {
    padding: 22px 18px;
  }
}
.settings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  align-items: start;
}
.settings-grid .card {
  margin-bottom: 0;
}
.park-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.park-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px;
  text-decoration: none;
  color: var(--ink);
}
.park-card:hover {
  border-color: var(--control-border);
}
.park-card .pc-name {
  font-weight: 700;
  font-size: 1.1rem;
}
.park-card .pc-go {
  color: var(--muted);
  font-size: 0.9rem;
}
@media (max-width: 720px) {
  .app {
    grid-template-columns: 1fr;
  }
  .sidebar {
    flex-flow: row wrap;
    align-items: center;
    gap: 8px 10px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
    padding: 10px 14px;
    position: static;
    height: auto;
    overflow: visible;
  }
  .side-brand {
    flex: 0 0 auto;
    padding: 2px 4px;
  }
  .park-switch {
    flex: 1 1 auto;
    min-width: 0;
  }
  .nav-group-label {
    display: none;
  }
  .nav--park {
    flex: 1 0 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
  }
  .nav--park a {
    flex-direction: column;
    gap: 3px;
    min-height: 54px;
    padding: 8px 4px;
    text-align: center;
    font-size: 0.8rem;
    justify-content: center;
  }
  .nav--setup,
  .nav-adv,
  .side-foot {
    display: none;
  }
  .mobile-foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px 16px;
    margin-top: auto;
    padding: 12px 16px;
    border-top: 1px solid var(--border);
    background: var(--surface);
    font-size: 0.92rem;
    color: var(--muted);
  }
  .mobile-foot .mf-links {
    display: flex;
    gap: 8px 20px;
  }
  .mobile-foot .mf-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    color: var(--ink-2);
    font-weight: 600;
    text-decoration: none;
  }
  .mobile-foot .mf-links a svg {
    width: 18px;
    height: 18px;
    color: var(--slate-500);
  }
  .mobile-foot .mf-support a {
    color: var(--ink-2);
    font-weight: 600;
    text-decoration: none;
  }
  .stats {
    flex-wrap: wrap;
  }
  .stats > .stat {
    flex: 1 0 45%;
    border-bottom: 1px solid var(--border);
  }
  .content {
    padding: 18px 14px 40px;
  }
  .subbar {
    padding: 14px 16px;
  }
  .filters {
    flex-direction: column;
    align-items: stretch;
  }
  .search {
    max-width: none;
    flex: 0 0 auto;
  }
  .settings-grid {
    grid-template-columns: 1fr;
  }
  .demo-banner {
    padding: 12px 16px;
    text-align: left;
  }
  .subbar-actions {
    margin-left: 0;
    width: 100%;
  }
  .table th,
  .table td {
    padding: 12px 10px;
  }
  .actions:not(.above) {
    flex-direction: column;
    align-items: stretch;
  }
  .actions:not(.above) > .btn {
    width: 100%;
  }
  .actions:not(.above) > .more,
  .actions:not(.above) > .more > summary {
    width: 100%;
  }
  .meter-entry thead {
    display: none;
  }
  .meter-entry tbody tr {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 14px;
    border-bottom: 1px solid var(--border);
  }
  .meter-entry tbody tr:last-child {
    border-bottom: 0;
  }
  .meter-entry td {
    display: block;
    padding: 0;
    border: 0;
    text-align: left;
  }
  .meter-entry td.lot-cell {
    order: 0;
    font-size: 1.05rem;
  }
  .meter-entry td.m-tenant {
    order: 1;
    color: var(--muted);
  }
  .meter-entry td.m-input {
    order: 2;
    margin-top: 4px;
  }
  .meter-entry td.m-input input {
    width: 100%;
    text-align: left !important;
    font-size: 1.15rem;
    min-height: 54px;
  }
  .meter-entry td.m-last {
    order: 3;
    font-size: 1.15rem;
    color: var(--ink-2);
    text-align: left;
  }
  .res-table thead,
  .wl-table thead {
    display: none;
  }
  .res-table tbody tr,
  .wl-table tbody tr {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 10px;
    padding: 14px 12px;
    border-bottom: 1px solid var(--border);
  }
  .res-table tbody tr:last-child,
  .wl-table tbody tr:last-child {
    border-bottom: 0;
  }
  .res-table td,
  .wl-table td {
    display: block;
    padding: 0;
    border: 0;
    text-align: left;
    font-size: 1rem;
  }
  .res-table .lot-cell {
    order: 0;
    font-weight: 700;
  }
  .res-table .lot-cell::before {
    content: "Lot ";
  }
  .res-table .res-name {
    order: 1;
    flex: 1 1 auto;
    font-weight: 600;
  }
  .res-table .res-lease {
    order: 2;
    margin-left: auto;
  }
  .res-table .res-phone,
  .res-table .res-lang,
  .res-table .res-rent,
  .res-table .res-bal {
    order: 3;
    flex: 0 0 auto;
    color: var(--muted);
    font-weight: 400;
    font-size: 0.95rem;
    text-align: left;
  }
  .res-table .res-rent::before {
    content: "Rent ";
    color: var(--faint);
  }
  .res-table .res-bal::before {
    content: "Balance ";
    color: var(--faint);
  }
  .res-table .res-bal.amount--due {
    color: var(--late-fg);
    font-weight: 600;
  }
  .wl-table .lot-cell {
    order: 0;
    font-size: 1.05rem;
    font-weight: 700;
  }
  .wl-table .lot-cell::before {
    content: "Lot ";
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--muted);
  }
  .wl-table .wl-status {
    order: 1;
  }
  .wl-table .wl-bal {
    order: 2;
    margin-left: auto;
    font-weight: 700;
    text-align: right;
  }
  .wl-table .wl-bal.amount--due {
    color: var(--late-fg);
  }
  .wl-table .wl-tenant {
    order: 3;
    flex: 1 0 100%;
    color: var(--ink-2);
  }
  .wl-table .wl-actions {
    order: 4;
    flex: 1 0 100%;
    margin-top: 6px;
  }
  .wl-table .wl-actions .actions {
    justify-content: flex-start;
  }
  .wl-table .wl-actions .actions .btn {
    flex: 1 1 auto;
  }
  .wl-table .wl-actions > .btn {
    width: 100%;
  }
  .led-table thead {
    display: none;
  }
  .led-table tbody tr {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 2px 10px;
    padding: 12px 14px;
    border-bottom: 1px solid var(--border);
  }
  .led-table tbody tr:last-child {
    border-bottom: 0;
  }
  .led-table td {
    display: block;
    padding: 0;
    border: 0;
    text-align: left;
    font-size: 1rem;
  }
  .led-table .led-desc {
    order: 0;
    flex: 1 1 55%;
    font-weight: 600;
  }
  .led-table .led-amt {
    order: 1;
    margin-left: auto;
    text-align: right;
    font-weight: 700;
  }
  .led-table .led-date {
    order: 2;
    flex: 0 0 auto;
    color: var(--muted);
    font-size: 0.95rem;
  }
  .led-table .led-bal {
    order: 3;
    margin-left: auto;
    color: var(--muted);
    font-weight: 400;
    text-align: right;
    font-size: 0.95rem;
  }
  .led-table .led-bal::before {
    content: "Balance ";
    color: var(--faint);
  }
  .led-table .led-by,
  .led-table .led-blank {
    display: none;
  }
  .led-table tr.ledger-total {
    border-top: 2px solid var(--border);
  }
}
.report-section {
  margin-top: 28px;
}
.report-subhead {
  margin: 22px 0 10px;
  font-size: 1.05rem;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
}
.report-subhead .wl-count {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
  background: var(--slate-100);
  border-radius: 999px;
  padding: 1px 9px;
}
.res-lang {
  color: var(--muted);
}
.res-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 16px;
}
.res-meta a {
  margin-left: auto;
}
.mh-lot {
  margin-bottom: 16px;
}
.mh-lot-head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}
.mh-tenant {
  font-size: 0.9rem;
  color: var(--muted);
}
.mh-empty {
  padding: 12px 16px;
  margin: 0;
}
.mh-usage {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}
.mh-edit {
  padding: 2px 10px;
  font-size: 0.85rem;
}
.mh-edit-form {
  max-width: 460px;
}
.mh-meta {
  margin-top: 0;
}
.imp-file {
  display: block;
  width: 100%;
}
.imp-hint {
  margin: 6px 0 0;
  font-size: 0.86rem;
  color: var(--muted);
}
.imp-hint code {
  background: var(--slate-100);
  padding: 1px 5px;
  border-radius: 4px;
}
.imp-summary {
  margin: 0 0 16px;
}
.imp-warn {
  border: 1px solid var(--soon-bd);
  background: var(--soon-bg);
  border-radius: var(--r);
  padding: 12px 14px;
  margin: 0 0 16px;
}
.imp-warn ul {
  margin: 8px 0 0;
  padding-left: 18px;
}
.imp-warn li {
  margin: 2px 0;
}
.imp-warn-line {
  font-weight: 600;
}
.imp-confirm {
  margin-top: 16px;
}
