:root {
  --bg: #1a1820;
  --bg-2: #0c0e16;
  --panel: rgba(255, 255, 255, 0.025);
  --border: rgba(255, 255, 255, 0.06);
  --border-strong: rgba(255, 255, 255, 0.12);
  --fg: #e6e4dd;
  --dim: #8a8a82;
  --bright: #f5f3ec;
  --accent: #c8a86e;
  --accent-soft: rgba(200, 168, 110, 0.08);
  --green: #7adda9;
  --yellow: #f0c674;
  --red: #f0786a;
  --blue: #5da3ff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family:
    "DM Sans",
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.005em;
}

.erase-shell {
  max-width: 920px;
  margin: 0 auto;
  padding: 32px 24px 96px;
}

/* ── HERO ── */
.hero {
  text-align: center;
  margin: clamp(32px, 8vw, 72px) 0 56px;
}
.eyebrow {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.brand {
  font-family: "DM Serif Display", "EB Garamond", serif;
  font-weight: 400;
  font-size: clamp(40px, 8vw, 64px);
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.015em;
  color: var(--bright);
}
.tagline {
  margin: 18px auto 28px;
  max-width: 580px;
  color: var(--fg);
  opacity: 0.85;
  font-size: 17px;
  line-height: 1.55;
}
.hero-cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.microcopy {
  margin: 12px 0 0;
  font-size: 12px;
  color: var(--dim);
  font-style: italic;
}

/* ── BUTTONS ── */
.btn-primary,
.btn-ghost,
.btn-danger,
button {
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  padding: 11px 22px;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 150ms ease;
  letter-spacing: 0.01em;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--fg);
}
.btn-primary {
  background: var(--accent);
  color: #1a1408;
  border-color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.btn-primary:hover {
  filter: brightness(1.08);
}
.btn-ghost {
  color: var(--fg);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--bright);
}
.btn-danger {
  color: var(--red);
  border-color: rgba(240, 120, 106, 0.4);
}
button:hover {
  border-color: var(--accent);
  color: var(--bright);
}
button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ── HOW IT WORKS ── */
.howto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 0 0 64px;
}
.step {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  position: relative;
}
.step .num {
  position: absolute;
  top: -12px;
  left: 18px;
  background: var(--bg);
  color: var(--accent);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 0 8px;
}
.step h3 {
  margin: 6px 0 8px;
  font-size: 15px;
  color: var(--bright);
  font-weight: 500;
}
.step p {
  margin: 0;
  font-size: 14px;
  color: var(--fg);
  opacity: 0.75;
  line-height: 1.55;
}

/* ── CARDS ── */
.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 28px;
  margin: 0 0 22px;
  backdrop-filter: blur(10px);
}
.card.hidden {
  display: none;
}
.card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 18px;
}
.card-head h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  color: var(--bright);
  font-family: "DM Serif Display", "EB Garamond", serif;
  font-weight: 400;
}
.hint {
  font-size: 11px;
  color: var(--dim);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: 0.06em;
}

/* ── FORM ── */
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.grid .span2 {
  grid-column: 1 / -1;
}
label {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px;
  color: var(--dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
input,
textarea {
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--fg);
  padding: 11px 14px;
  border-radius: 8px;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 14px;
  text-transform: none;
  letter-spacing: normal;
}
input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
textarea {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  resize: vertical;
}
.row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 16px;
}
.status {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
  color: var(--dim);
}
.status.ok {
  color: var(--green);
}
.status.err {
  color: var(--red);
}

/* ── BROKERS ── */
.brokers {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.broker {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 18px;
  padding: 16px 18px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  align-items: center;
}
.broker .name {
  font-weight: 500;
  color: var(--bright);
  font-size: 15.5px;
  letter-spacing: -0.005em;
}
.broker .meta {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  color: var(--dim);
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.broker .actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.broker .actions button {
  padding: 7px 14px;
  font-size: 12px;
}

.badge {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 4px;
  border: 1px solid currentColor;
}
.badge-pending {
  color: var(--dim);
}
.badge-sent {
  color: var(--blue);
}
.badge-acknowledged {
  color: var(--yellow);
}
.badge-removed {
  color: var(--green);
}
.badge-failed {
  color: var(--red);
}

/* ── BODY CARD ── */
.body-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.body-actions button {
  padding: 7px 14px;
  font-size: 12px;
}
.body-text {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 13px;
  color: var(--fg);
  white-space: pre-wrap;
  word-break: break-word;
  max-height: 60vh;
  overflow: auto;
  margin: 0;
}

/* ── REPORT CARD ── */
.report-card {
  border-color: rgba(200, 168, 110, 0.25);
}

/* ── PRICING ── */
.pricing {
  margin: 64px 0 32px;
  text-align: center;
}
.pricing h2 {
  font-family: "DM Serif Display", "EB Garamond", serif;
  font-weight: 400;
  font-size: clamp(24px, 5vw, 36px);
  margin: 0 0 12px;
  color: var(--bright);
  letter-spacing: -0.01em;
}
.pricing-sub {
  max-width: 560px;
  margin: 0 auto 36px;
  color: var(--dim);
  font-size: 15px;
  line-height: 1.55;
}
.tier-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  text-align: left;
}
.tier {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.tier-pro {
  border-color: var(--accent);
  background: linear-gradient(
    180deg,
    rgba(200, 168, 110, 0.05),
    rgba(200, 168, 110, 0)
  );
}
.tier .ribbon {
  position: absolute;
  top: -12px;
  right: 18px;
  background: var(--accent);
  color: #1a1408;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin: 0;
}
.tier h3 {
  font-family: "DM Serif Display", "EB Garamond", serif;
  font-weight: 400;
  font-size: 22px;
  margin: 0 0 8px;
  color: var(--bright);
}
.tier .price {
  margin: 0 0 18px;
  font-size: 34px;
  font-weight: 600;
  color: var(--bright);
  font-family: "DM Sans", system-ui, sans-serif;
  letter-spacing: -0.01em;
}
.tier .price span {
  font-size: 13px;
  font-weight: 400;
  color: var(--dim);
  letter-spacing: 0;
  margin-left: 6px;
}
.tier ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}
.tier ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--fg);
  font-size: 14px;
  line-height: 1.5;
}
.tier ul li::before {
  content: "✓";
  color: var(--accent);
  margin-right: 10px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
}
.tier-pro ul li::before {
  color: var(--accent);
}
.tier .btn-primary,
.tier .btn-ghost,
.tier button {
  width: 100%;
  text-align: center;
}

/* ── PRIVACY ── */
.privacy-block {
  margin: 56px 0 0;
  padding: 32px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.privacy-block h2 {
  font-family: "DM Serif Display", "EB Garamond", serif;
  font-weight: 400;
  font-size: 24px;
  margin: 0 0 18px;
  color: var(--bright);
}
.privacy-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.privacy-list li {
  padding: 14px 0;
  border-top: 1px solid var(--border);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--fg);
  opacity: 0.88;
}
.privacy-list li:first-child {
  border-top: 0;
  padding-top: 0;
}
.privacy-list strong {
  color: var(--bright);
}

/* ═══════════════════════════════════════════════════════════════════
   VIEWS — single-page router shows one .view at a time
   ═══════════════════════════════════════════════════════════════════ */
.view {
  display: none;
  animation: viewIn 220ms ease both;
}
.view.active {
  display: block;
}
@keyframes viewIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .view {
    animation: none;
  }
}

.view-head {
  margin: 8px 0 28px;
}
.view-title {
  font-family: "DM Serif Display", "EB Garamond", serif;
  font-weight: 400;
  font-size: clamp(30px, 6vw, 46px);
  line-height: 1.06;
  margin: 0 0 12px;
  letter-spacing: -0.015em;
  color: var(--bright);
}
.view-sub {
  max-width: 660px;
  margin: 0;
  color: var(--fg);
  opacity: 0.82;
  font-size: 16px;
  line-height: 1.6;
}
.view-sub a,
.card-foot a,
.dir-meta-line a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 168, 110, 0.35);
}
.view-sub a:hover {
  color: var(--bright);
}
.section-title {
  font-family: "DM Serif Display", "EB Garamond", serif;
  font-weight: 400;
  font-size: 24px;
  color: var(--bright);
  margin: 36px 0 16px;
}

/* ── Start: lead cards ── */
.lead-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin: 40px 0 0;
}
.lead-card {
  display: block;
  text-decoration: none;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  transition: all 160ms ease;
}
.lead-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.lead-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  color: var(--bright);
  font-weight: 600;
}
.lead-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg);
  opacity: 0.72;
}
.card-foot {
  margin: 18px 0 0;
  font-size: 13px;
  color: var(--dim);
}

/* ═══════════════════════ BROKER DIRECTORY ═══════════════════════ */
.dir-toolbar {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dir-search {
  width: 100%;
  font-size: 15px;
}
.dir-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.dir-chip {
  padding: 6px 14px;
  font-size: 12px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: 0.04em;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--dim);
  cursor: pointer;
}
.dir-chip.active {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--bright);
}
.dir-stats {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  color: var(--dim);
  letter-spacing: 0.03em;
}
.directory {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}
.dir-item {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
}
.dir-item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}
.dir-item-headline {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}
.dir-name {
  font-weight: 500;
  color: var(--bright);
  font-size: 15px;
}
.dir-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.dir-badge {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 4px;
  border: 1px solid var(--border-strong);
  color: var(--dim);
}
.dir-badge.guided {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-soft);
}
.dir-badge.method {
  color: var(--blue);
  border-color: rgba(93, 163, 255, 0.4);
}
.dir-badge.prio-crucial {
  color: var(--red);
  border-color: rgba(240, 120, 106, 0.5);
}
.dir-badge.prio-high {
  color: var(--yellow);
  border-color: rgba(240, 198, 116, 0.45);
}
.dir-badge.paid {
  color: var(--yellow);
}
.dir-badge.unverified {
  color: var(--dim);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
}
.dir-action {
  flex: none;
  align-self: center;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 14px;
  transition: all 140ms ease;
}
.dir-action:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.dir-detail {
  margin-top: 12px;
}
.dir-detail summary {
  cursor: pointer;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  color: var(--dim);
  letter-spacing: 0.05em;
}
.dir-detail summary:hover {
  color: var(--fg);
}
.dir-instructions {
  margin: 12px 0 8px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--fg);
  opacity: 0.85;
}
.dir-meta-line {
  margin: 6px 0;
  font-size: 12.5px;
  color: var(--dim);
  word-break: break-word;
}
.dir-meta-line code {
  color: var(--fg);
  font-size: 12px;
}
.dir-meta-line a {
  color: var(--blue);
}
.dir-more {
  text-align: center;
  margin: 18px 0 0;
}
.dir-empty {
  text-align: center;
  color: var(--dim);
  padding: 32px 0;
  font-size: 14px;
}

/* ═══════════════════════ STATUS DASHBOARD ═══════════════════════ */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 10px;
  margin-bottom: 22px;
}
.stat-cell {
  text-align: center;
  padding: 16px 8px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.stat-num {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--bright);
  line-height: 1;
}
.stat-num.c-sent {
  color: var(--blue);
}
.stat-num.c-ack {
  color: var(--yellow);
}
.stat-num.c-removed {
  color: var(--green);
}
.stat-num.c-failed {
  color: var(--red);
}
.stat-label {
  margin-top: 8px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dim);
}
.progress-wrap {
  margin-top: 4px;
}
.progress-track {
  height: 8px;
  border-radius: 999px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--accent));
  border-radius: 999px;
  transition: width 400ms ease;
}
.progress-label {
  margin-top: 10px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
  color: var(--dim);
}
.status-hint {
  margin: 18px 0 0;
  padding: 14px 16px;
  background: var(--accent-soft);
  border: 1px solid rgba(200, 168, 110, 0.25);
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--fg);
}
.status-list-card h2 {
  font-family: "DM Serif Display", "EB Garamond", serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--bright);
  margin: 0 0 16px;
}
.status-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.status-broker {
  font-weight: 500;
  color: var(--bright);
  font-size: 14.5px;
}
.status-sub {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  color: var(--dim);
  margin-top: 4px;
}
.status-empty {
  text-align: center;
  padding: 44px 28px;
}
.status-empty h2 {
  font-family: "DM Serif Display", "EB Garamond", serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--bright);
  margin: 0 0 10px;
}
.status-empty p {
  max-width: 420px;
  margin: 0 auto 22px;
  color: var(--dim);
  font-size: 14px;
  line-height: 1.55;
}

/* ═══════════════════════ LEARN — law cards ═══════════════════════ */
.learn-explainer {
  line-height: 1.6;
}
.learn-explainer h2 {
  font-family: "DM Serif Display", "EB Garamond", serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--bright);
  margin: 0 0 12px;
}
.learn-explainer p {
  margin: 0;
  font-size: 14.5px;
  color: var(--fg);
  opacity: 0.85;
}
.learn-steps {
  margin: 0;
  padding-left: 20px;
}
.learn-steps li {
  margin: 0 0 12px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--fg);
  opacity: 0.88;
}
.learn-steps strong {
  color: var(--bright);
}
.law-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 14px;
}
.law-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 24px;
}
.law-card-head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}
.law-id {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 4px;
  padding: 2px 7px;
  flex: none;
}
.law-card-head h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--bright);
  line-height: 1.3;
}
.law-cite {
  margin: 0 0 10px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11.5px;
  color: var(--dim);
}
.law-applies {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--fg);
  opacity: 0.8;
}
.law-rights {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.law-right {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--green);
  border: 1px solid rgba(122, 221, 169, 0.3);
  border-radius: 4px;
  padding: 2px 7px;
}
.law-deadlines {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.law-deadline {
  font-size: 13px;
  color: var(--dim);
}
.law-deadline strong {
  color: var(--bright);
  font-size: 15px;
}
.law-enforce {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--fg);
  opacity: 0.7;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* ── directory instruction links (parsed from markdown) ── */
.dir-instructions a {
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(93, 163, 255, 0.35);
}
.dir-instructions a:hover {
  color: var(--bright);
}

/* antidoxx is portrait-friendly reading/forms content, so the shared chrome's
   "rotate to landscape" hint is wrong here. Suppress it CSS-only on this site.
   (We deliberately do NOT set the chrome's dl-rotate-dismissed localStorage
   key — it's shared across all path-based domainless.fun sites and would
   wrongly silence the hint on /music, /code, etc.) */
#dl-rotate-toast {
  display: none !important;
}

/* ── responsive ── */
@media (max-width: 560px) {
  .dir-item-top {
    flex-direction: column;
    gap: 10px;
  }
  .dir-action {
    align-self: flex-start;
  }
  .stat-num {
    font-size: 24px;
  }
}

/* Multi-tier Pro cadence picker (2026-07-02) */
.tier-cadence {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 10px 0 14px;
  text-align: left;
}
.tier-cadence label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92em;
  cursor: pointer;
}
.tier-cadence input {
  accent-color: currentColor;
}
