/* ==========================================================================
   Pricing page — editorial hero + two calculators + compact FAQ
   Matches terminals/clover quality bar. No shelves concept.
   ========================================================================== */

/* ---------- Shared section primitives ---------- */
.px-section-head { max-width: 62ch; margin: 0 0 28px; }
.px-section-head__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  line-height: 1.06;
  letter-spacing: -0.028em;
  color: var(--color-text);
  margin: 12px 0 14px;
}
.px-section-head__sub {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--color-text-2);
  max-width: 58ch;
}

/* ---------- Hero ---------- */
.px-hero {
  padding: 88px 0 48px;
  background:
    radial-gradient(1200px 500px at 85% -10%, rgb(3 116 73 / 0.06), transparent 60%),
    linear-gradient(180deg, var(--color-bg), var(--color-surface-2));
  border-bottom: 1px solid var(--color-divider);
}
@media (max-width: 900px) { .px-hero { padding: 56px 0 36px; } }

.px-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.9fr);
  gap: 64px;
  align-items: end;
}
@media (max-width: 900px) {
  .px-hero__grid { grid-template-columns: 1fr; gap: 32px; }
}

.px-hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--color-text);
  margin: 16px 0 20px;
}
.px-hero__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--color-primary);
}
.px-hero__sub {
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--color-text-2);
  max-width: 54ch;
  margin-bottom: 28px;
}
.px-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.px-hero__meta {
  border-top: 1px solid var(--color-border);
  padding-top: 8px;
}
.px-hero__meta-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-divider);
}
.px-hero__meta-row:last-child { border-bottom: none; }
.px-hero__meta-k {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 600;
}
.px-hero__meta-v {
  font-size: 1rem;
  color: var(--color-text);
  font-weight: 600;
}

/* ---------- Calculator sections ---------- */
.px-calc {
  padding: 56px 0;
  border-bottom: 1px solid var(--color-divider);
}
@media (max-width: 900px) { .px-calc { padding: 40px 0; } }

.px-calc--dark {
  background: var(--color-surface-2);
}

/* Panel — the card holding inputs + results */
.px-calc__panel {
  margin-top: 24px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 1px 0 rgba(10,11,20,0.02), 0 20px 50px -30px rgba(10,11,20,0.12);
  display: grid;
  gap: 24px;
}
.px-calc__panel--dark {
  background: var(--color-bg);
}
@media (max-width: 700px) { .px-calc__panel { padding: 20px; border-radius: 16px; } }

/* ---------- Inputs ---------- */
.px-calc__inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
}
@media (max-width: 700px) { .px-calc__inputs { grid-template-columns: 1fr; } }

.px-field {
  display: grid;
  gap: 10px;
}
.px-field__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.px-field__label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: -0.005em;
}
.px-field__value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.01em;
}
.px-field__range {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

/* Range slider — cross-browser */
.px-field input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: var(--color-divider);
  border-radius: 999px;
  outline: none;
  cursor: pointer;
  margin: 4px 0;
}
.px-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 3px solid var(--color-bg);
  box-shadow: 0 2px 8px rgba(3, 116, 73, 0.35);
  cursor: grab;
  transition: transform 0.15s ease;
}
.px-field input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.1); }
.px-field input[type="range"]::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.05); }
.px-field input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 3px solid var(--color-bg);
  box-shadow: 0 2px 8px rgba(3, 116, 73, 0.35);
  cursor: grab;
}
.px-field input[type="range"]:focus-visible {
  outline: 3px solid rgb(3 116 73 / 0.25);
  outline-offset: 4px;
}

/* ---------- Results ---------- */
.px-calc__results {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 1px;
  background: var(--color-border);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}
@media (max-width: 800px) {
  .px-calc__results { grid-template-columns: 1fr; }
}

.px-result {
  background: var(--color-bg);
  padding: 24px 20px;
  display: grid;
  gap: 8px;
  align-content: start;
}
.px-result--hero {
  background: linear-gradient(180deg, #0a0b14 0%, #12162a 100%);
  color: #fff;
  padding: 28px 24px;
}
[data-theme="dark"] .px-result--hero {
  background: linear-gradient(180deg, #004428 0%, #037449 100%);
}

.px-result__k {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 600;
}
.px-result--hero .px-result__k { color: rgba(255,255,255,0.6); }

.px-result__v {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1;
  letter-spacing: -0.028em;
  color: var(--color-text);
}
.px-result--hero .px-result__v { color: #fff; }

.px-result__sub {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  letter-spacing: -0.005em;
}
.px-result--hero .px-result__sub { color: rgba(255,255,255,0.6); }

/* ==========================================================================
   Receipt / statement teardown — 0% savings calculator
   ========================================================================== */

.px-calc__panel--receipt { padding: 24px; gap: 22px; }
@media (max-width: 700px) {
  .px-calc__panel--receipt { padding: 16px; gap: 18px; }
}

.px-receipt {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .px-receipt { grid-template-columns: 1fr; }
}

/* ----- LEFT: the "statement" ----- */
.px-receipt__doc {
  position: relative;
  background:
    /* subtle horizontal ruling, like a printed statement */
    repeating-linear-gradient(
      180deg,
      transparent 0 38px,
      rgba(10, 11, 20, 0.03) 38px 39px
    ),
    #fafaf7;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 24px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}
/* Perforated top edge — receipt vibe */
.px-receipt__doc::before {
  content: "";
  position: absolute;
  inset: auto 0 auto 0;
  top: -6px;
  height: 12px;
  background-image: radial-gradient(circle at 6px 6px, var(--color-bg) 4px, transparent 4.5px);
  background-size: 14px 12px;
  background-repeat: repeat-x;
  pointer-events: none;
}
@media (max-width: 700px) { .px-receipt__doc { padding: 20px 18px 16px; } }

.px-receipt__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(10, 11, 20, 0.18);
}
.px-receipt__eyebrow {
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 700;
  margin: 0 0 4px;
}
.px-receipt__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--color-text);
  margin: 0;
}
.px-receipt__stamp {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: #b42318;
  border: 1.5px solid #b42318;
  border-radius: 6px;
  padding: 4px 8px;
  transform: rotate(-4deg);
  letter-spacing: 0.04em;
  white-space: nowrap;
  opacity: 0.85;
  align-self: flex-start;
}
.px-receipt__stamp--warn {
  color: #92400e;
  border-color: #92400e;
}
.px-receipt__stamp--good {
  color: #047857;
  border-color: #047857;
}

.px-receipt__lede {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-text-muted, #475467);
  margin: 0 0 16px 0;
}

.px-receipt__lines {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.px-receipt__line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px dotted rgba(10, 11, 20, 0.14);
  position: relative;
}
.px-receipt__line:last-child { border-bottom: none; }
.px-receipt__k {
  font-size: 0.9375rem;
  color: var(--color-text);
  letter-spacing: -0.005em;
}
.px-receipt__sub {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-left: 6px;
  letter-spacing: 0.01em;
}
.px-receipt__v {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
/* Strike-through on everything that PayMullet eliminates */
.px-receipt__line:not(:last-child) .px-receipt__v {
  position: relative;
  color: var(--color-text-muted);
}
.px-receipt__line:not(:last-child) .px-receipt__v::after {
  content: "";
  position: absolute;
  left: -3px;
  right: -3px;
  top: 50%;
  height: 2px;
  background: #b42318;
  transform: translateY(-50%) rotate(-2deg);
  border-radius: 2px;
  opacity: 0.8;
}
/* Plain variant — no strike-throughs, used for MCA term sheet */
.px-receipt__lines--plain .px-receipt__line .px-receipt__v {
  color: var(--color-text);
}
.px-receipt__lines--plain .px-receipt__line .px-receipt__v::after {
  display: none;
}

.px-receipt__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-top: 6px;
  padding-top: 12px;
  border-top: 2px solid rgba(10, 11, 20, 0.88);
}
.px-receipt__total-k {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text);
}
.px-receipt__total-v {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

/* ----- RIGHT: PayMullet green panel ----- */
.px-receipt__swap {
  background: linear-gradient(165deg, #037449 0%, #025a39 55%, #014028 100%);
  color: #fff;
  border-radius: 14px;
  padding: 26px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 44px -22px rgba(3, 116, 73, 0.5);
}
.px-receipt__swap::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 200px at 110% -20%, rgba(255,255,255,0.15), transparent 60%),
    radial-gradient(400px 200px at -10% 110%, rgba(0,0,0,0.25), transparent 60%);
  pointer-events: none;
}
.px-receipt__swap > * { position: relative; z-index: 1; }

.px-receipt__eyebrow--light { color: rgba(255, 255, 255, 0.7); margin-bottom: 10px; }

/* Subtitle under receipt H3 (both sides) */
.px-receipt__subtitle {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin: 4px 0 0;
  line-height: 1.4;
}
.px-receipt__subtitle--light {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

/* New green-panel zero-fee line items */
.px-receipt__swap-lines {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.px-receipt__swap-lines li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.18);
}
.px-receipt__swap-lines li:last-child { border-bottom: none; padding-bottom: 0; }
.px-receipt__swap-lk {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
}
.px-receipt__swap-lv {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}

.px-receipt__swap-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-top: 4px;
  padding-top: 14px;
  border-top: 2px solid rgba(255, 255, 255, 0.35);
}
.px-receipt__swap-total-k {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}
.px-receipt__swap-total-v {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

.px-receipt__swap-explain {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  margin: 4px 0 0;
}

/* White-on-dark primary button (for inside the green panel) */
.btn--primary-on-dark {
  background: #fff;
  color: #014028;
  border: 1px solid #fff;
  font-weight: 700;
}
.btn--primary-on-dark:hover {
  background: #f5fbf8;
  color: #014028;
  border-color: #f5fbf8;
}
.btn--primary-on-dark:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.5);
  outline-offset: 3px;
}

/* ---------- Full-width Your Savings block ---------- */
.px-savings {
  margin-top: 28px;
  padding: 28px 28px 24px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f3faf6 0%, #ffffff 100%);
  border: 1px solid rgba(3, 116, 73, 0.18);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}
.px-savings__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.px-savings__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.625rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--color-text);
  margin: 0;
}
.px-savings__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.px-savings__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 18px 14px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(3, 116, 73, 0.14);
}
.px-savings__cell--hero {
  background: linear-gradient(165deg, #037449 0%, #025a39 100%);
  color: #fff;
  border-color: #025a39;
  box-shadow: 0 16px 36px -18px rgba(3, 116, 73, 0.45);
}
.px-savings__k {
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-text-muted);
}
.px-savings__cell--hero .px-savings__k { color: rgba(255, 255, 255, 0.78); }
.px-savings__v {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--color-text);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.px-savings__cell--hero .px-savings__v { color: #fff; }
.px-savings__cta {
  margin: 4px 0 0;
}
@media (max-width: 640px) {
  .px-savings { padding: 22px 18px; }
  .px-savings__grid { grid-template-columns: 1fr; gap: 10px; }
  .px-savings__cell { flex-direction: row; justify-content: space-between; align-items: baseline; padding: 14px 16px; }
  .px-savings__v { font-size: 1.5rem; }
}

/* ---------- How it works ---------- */
.px-calc__footer {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid var(--color-divider);
}
.px-calc__footer--how { display: block; }
.px-how__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--color-text);
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}
.px-how__list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.px-how__list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--color-text);
}
.px-how__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #037449;
}
@media (max-width: 800px) {
  .px-calc__footer { flex-direction: column; align-items: stretch; }
}
.px-calc__fineprint {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  max-width: 62ch;
  margin: 0;
}

/* ---------- FAQ ---------- */
.px-faq { padding: 80px 0; }
@media (max-width: 900px) { .px-faq { padding: 56px 0; } }

.px-faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
@media (max-width: 800px) { .px-faq__grid { grid-template-columns: 1fr; } }

.px-faq__item {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 18px 22px;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.px-faq__item:hover { border-color: var(--color-border-strong, var(--color-text-muted)); }
.px-faq__item[open] { background: var(--color-bg); }

.px-faq__item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text);
  letter-spacing: -0.005em;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.px-faq__item summary::-webkit-details-marker { display: none; }
.px-faq__item summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--color-text-muted);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.px-faq__item[open] summary::after { content: "−"; }

.px-faq__item p {
  margin: 12px 0 2px;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--color-text-2);
}

/* ---------- Shared CTA band (reuse terminals) ---------- */
.terminals-cta {
  padding: 80px 0 100px;
}
.terminals-cta__card {
  background: linear-gradient(135deg, #0a0b14 0%, #12162a 60%, #004428 140%);
  color: #fff;
  border-radius: 24px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
}
@media (max-width: 800px) {
  .terminals-cta__card { grid-template-columns: 1fr; padding: 32px; }
}
.terminals-cta__card h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -0.028em;
  margin: 0 0 10px;
  color: #ffffff;
}
.terminals-cta__card p {
  font-size: 1.0625rem;
  line-height: 1.55;
  margin: 0;
  max-width: 50ch;
  color: rgba(255, 255, 255, 0.82);
}
.terminals-cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (max-width: 800px) { .terminals-cta__actions { justify-content: flex-start; } }

/* ghost-on-dark fallback (if not already in styles.css) */
.btn--ghost-on-dark {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.btn--ghost-on-dark:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ---------- MCA Honest Math card ---------- */
.px-honest__stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.px-honest__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.px-honest__item--hero {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  margin-bottom: 2px;
}
.px-honest__k {
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}
.px-honest__v {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0;
  line-height: 1.05;
  font-variant-numeric: tabular-nums;
}
.px-honest__v--xl {
  font-size: clamp(2.25rem, 4vw, 3rem);
  letter-spacing: -0.035em;
  line-height: 1;
}
.px-honest__hint {
  font-size: 0.8125rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.7);
  margin: 2px 0 0;
}

.px-honest__apr {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.px-honest__apr-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0;
}
.px-honest__apr-k {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}
.px-honest__apr-v {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.px-honest__apr-hint {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

/* Soft hint shown under sliders (e.g. MCA advance vs daily volume cap) */
.px-field__hint {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--color-text-muted);
  margin: 8px 0 0;
}
.px-field__hint a {
  color: var(--color-brand);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}
.px-field__hint[hidden] { display: none; }
