:root {
  --pmt-btl-bg: #f5f7fb;
  --pmt-btl-card: #ffffff;
  --pmt-btl-text: #172033;
  --pmt-btl-muted: #667085;
  --pmt-btl-line: #e6eaf2;
  --pmt-btl-primary: #2052e8;
  --pmt-btl-primary-dark: #173fb5;
  --pmt-btl-primary-soft: #eef3ff;
  --pmt-btl-success: #0f9f6e;
  --pmt-btl-success-soft: #eaf8f0;
  --pmt-btl-danger: #c81e1e;
  --pmt-btl-danger-soft: #ffecef;
  --pmt-btl-borderline-soft: #eef3ff;
  --pmt-btl-shadow: 0 20px 50px rgba(16, 24, 40, 0.08);
  --pmt-btl-shadow-soft: 0 12px 28px rgba(16, 24, 40, 0.05);
  --pmt-btl-radius-lg: 24px;
  --pmt-btl-radius-md: 16px;
  --pmt-btl-radius-sm: 12px;
}

.pmt-btl-shell * {
  box-sizing: border-box;
}

.pmt-btl-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 24px auto;
  font-family: "Inter", sans-serif;
  color: var(--pmt-btl-text);
}

.pmt-btl-app-card {
  background: #f3f4f6;
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: var(--pmt-btl-radius-lg);
  box-shadow: var(--pmt-btl-shadow);
  padding: 28px;
  position: relative;
  overflow: visible;
}

.hidden {
  display: none !important;
}

.pmt-btl-eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 800;
  color: var(--pmt-btl-primary);
}

.pmt-btl-main-title,
.pmt-btl-loading-title,
.pmt-btl-partial-result-heading-inline h2,
.pmt-btl-full-report-title-row h2,
.pmt-btl-report-card-head h3,
.pmt-btl-unlock-card-head h3,
.pmt-btl-locked-card h3,
.pmt-btl-product-card-head h4 {
  margin: 0;
  color: var(--pmt-btl-text);
  letter-spacing: -0.035em;
}

.pmt-btl-main-title {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.06;
}

.pmt-btl-question-help,
.pmt-btl-result-summary,
.pmt-btl-form-note,
.pmt-btl-email-status,
.pmt-btl-result-body,
.pmt-btl-notice,
.pmt-btl-unlock-lead,
.pmt-btl-full-report-card p,
.pmt-btl-full-report-card li,
.pmt-btl-assumption-note {
  color: var(--pmt-btl-muted);
  line-height: 1.65;
}

.pmt-btl-top-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
  margin-top: 18px;
}

.pmt-btl-top-grid-property {
  grid-column: 1 / 2;
}

.pmt-btl-money-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 22px;
}

.pmt-btl-money-col {
  display: grid;
  gap: 18px;
}

.pmt-btl-profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
  margin-top: 22px;
}

.pmt-btl-field {
  display: flex;
  flex-direction: column;
}

.pmt-btl-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--pmt-btl-text);
}

.pmt-btl-input-wrap {
  display: flex;
  align-items: stretch;
}

.pmt-btl-prefix {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  padding: 0 14px;
  background: #220a56;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  border-radius: 12px 0 0 12px;
  border: 1px solid #220a56;
  border-right: 0;
}

.pmt-btl-input-wrap input,
.pmt-btl-field input[type="text"],
.pmt-btl-field input[type="email"],
.pmt-btl-field input[type="number"],
.pmt-btl-field select {
  width: 100%;
  border: 1px solid rgba(17, 24, 39, 0.09);
  border-radius: 12px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.96);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  font: inherit;
  color: #172033;
  -webkit-text-fill-color: #172033;
  caret-color: #172033;
}

.pmt-btl-input-wrap input {
  border-radius: 0 12px 12px 0;
}

.pmt-btl-input-wrap input:focus,
.pmt-btl-field input[type="text"]:focus,
.pmt-btl-field input[type="email"]:focus,
.pmt-btl-field input[type="number"]:focus,
.pmt-btl-field select:focus {
  outline: none;
  border-color: rgba(32, 82, 232, 0.28);
  box-shadow: 0 0 0 4px rgba(32, 82, 232, 0.08);
  background: #ffffff;
}

.pmt-btl-assumption-note {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(17,24,39,0.06);
  font-size: 14px;
}

.pmt-btl-nav-row,
.pmt-btl-unlock-actions,
.pmt-btl-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pmt-btl-nav-row {
  margin-top: 24px;
}

.pmt-btl-btn {
  appearance: none;
  border: none;
  border-radius: 14px;
  padding: 14px 18px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.16s ease, background 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease, color 0.16s ease;
}

.pmt-btl-btn:hover {
  transform: translateY(-1px);
}

.pmt-btl-btn-primary {
  background: var(--pmt-btl-primary);
  color: white;
  box-shadow: 0 12px 24px rgba(32, 82, 232, 0.16);
  width: 100%;
}

.pmt-btl-btn-primary:hover {
  background: var(--pmt-btl-primary-dark);
}

.pmt-btl-btn-unlock-main {
  position: relative;
  overflow: hidden;
}

.pmt-btl-btn-unlock-main::after,
.pmt-btl-btn-cta-navstyle::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.25),
    rgba(255,255,255,0.6),
    rgba(255,255,255,0.25),
    transparent
  );
  transform: skewX(-20deg);
  animation: pmtBtlShimmer 4.2s ease-in-out infinite;
}

@keyframes pmtBtlShimmer {
  0% { left: -150%; opacity: 0; }
  10% { opacity: 1; }
  40% { left: 150%; opacity: 1; }
  50% { left: 150%; opacity: 0; }
  100% { left: 150%; opacity: 0; }
}

.pmt-btl-btn-edit-quiet {
  background: transparent;
  border: none;
  box-shadow: none;
  color: var(--pmt-btl-muted);
  text-decoration: underline;
  padding: 12px 8px;
  opacity: 0.85;
}

.pmt-btl-btn-edit-quiet:hover {
  background: transparent;
  color: var(--pmt-btl-text);
}

.pmt-btl-btn.is-loading {
  opacity: 0.85;
  cursor: wait;
  transform: none;
}

.pmt-btl-btn.is-loading:hover {
  transform: none;
}

.pmt-btl-btn.is-loading::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-left: 10px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #ffffff;
  border-radius: 50%;
  display: inline-block;
  animation: pmt-btl-btn-spin 0.8s linear infinite;
}

@keyframes pmt-btl-btn-spin {
  to { transform: rotate(360deg); }
}

.pmt-btl-error,
.pmt-btl-email-status {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 10px;
  background: #fff3f3;
  border: 1px solid #efc0c0;
  color: #9a1b1b;
}

.pmt-btl-error:not(:empty),
.pmt-btl-email-status:not(:empty) {
  display: block;
}

#btlLoadingView {
  min-height: 360px;
  padding: 28px 20px 20px;
  position: relative;
  overflow: hidden;
}

#btlLoadingView:not(.hidden) {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#btlLoadingView::before {
  content: "";
  position: absolute;
  inset: 18% 22%;
  background: radial-gradient(circle, rgba(46, 49, 146, 0.09) 0%, rgba(46, 49, 146, 0.03) 42%, rgba(46, 49, 146, 0) 72%);
  filter: blur(10px);
  pointer-events: none;
}

.pmt-btl-loading-title {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 760px;
  text-align: center;
}

.pmt-btl-loading-steps {
  width: 100%;
  max-width: 760px;
  margin-top: 34px;
  padding: 26px 22px 24px;
  border: 1px solid rgba(46, 49, 146, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 250, 255, 0.96));
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.pmt-btl-loading-steps::before {
  content: "";
  position: absolute;
  left: -30%;
  top: 0;
  width: 40%;
  height: 2px;
  background: linear-gradient(90deg, rgba(46, 49, 146, 0), rgba(46, 49, 146, 0.8), rgba(46, 49, 146, 0));
  animation: pmt-btl-loading-scan 1.8s linear infinite;
}

@keyframes pmt-btl-loading-scan {
  0% { left: -30%; }
  100% { left: 110%; }
}

.pmt-btl-loading-typed-line {
  margin: 0;
  min-height: 1.6em;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #12223f;
}

.pmt-btl-loading-typed-line::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1.05em;
  margin-left: 4px;
  vertical-align: -0.12em;
  background: currentColor;
  animation: pmt-btl-caret-blink 1s steps(1) infinite;
}

@keyframes pmt-btl-caret-blink {
  50% { opacity: 0; }
}

.pmt-btl-partial-result-shell,
.pmt-btl-full-report-shell {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pmt-btl-partial-result-top,
.pmt-btl-full-report-hero {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px 28px 24px;
  border-radius: 22px;
  background: linear-gradient(135deg, #ffffff 0%, #f6f8ff 60%, #eef3ff 100%);
  border: 1px solid rgba(32, 82, 232, 0.08);
  box-shadow: 0 20px 40px rgba(16, 24, 40, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.pmt-btl-partial-result-top.is-yes,
.pmt-btl-full-report-hero.is-yes {
  background: linear-gradient(135deg, #ffffff 0%, #f4fbf7 55%, #eaf8f0 100%);
  border-color: rgba(15, 159, 110, 0.16);
}

.pmt-btl-partial-result-top.is-borderline,
.pmt-btl-full-report-hero.is-borderline {
  background: linear-gradient(135deg, #ffffff 0%, #f6f8ff 60%, #eef3ff 100%);
  border-color: rgba(32, 82, 232, 0.12);
}

.pmt-btl-partial-result-top.is-no,
.pmt-btl-full-report-hero.is-no {
  background: linear-gradient(135deg, #ffffff 0%, #fff5f7 55%, #ffecef 100%);
  border-color: rgba(200, 30, 30, 0.14);
}

.pmt-btl-partial-result-heading-inline,
.pmt-btl-full-report-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.pmt-btl-partial-result-heading-inline h2,
.pmt-btl-full-report-title-row h2 {
  font-size: clamp(42px, 5.5vw, 60px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  margin: 0;
}

.pmt-btl-score-pill {
  min-width: auto;
  text-align: center;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(32, 82, 232, 0.12);
  color: #2052e8;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.75);
  white-space: nowrap;
}

.pmt-btl-score-pill.is-yes {
  background: rgba(15, 159, 110, 0.14);
  color: var(--pmt-btl-success);
}

.pmt-btl-score-pill.is-borderline {
  background: rgba(32, 82, 232, 0.12);
  color: var(--pmt-btl-primary);
}

.pmt-btl-score-pill.is-no {
  background: rgba(200, 30, 30, 0.12);
  color: var(--pmt-btl-danger);
}

.pmt-btl-partial-summary-large,
.pmt-btl-result-summary {
  margin: 0;
  font-size: 18px;
  line-height: 1.75;
  max-width: 760px;
  color: #42506a;
}

.pmt-btl-partial-why-card {
  margin-top: 4px;
  padding: 18px 18px 16px;
  border-left: 4px solid var(--pmt-btl-primary);
  border-radius: 18px;
  border-top: 1px solid rgba(17, 24, 39, 0.06);
  border-right: 1px solid rgba(17, 24, 39, 0.06);
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 247, 255, 0.98));
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.pmt-btl-partial-result-top.is-yes .pmt-btl-partial-why-card {
  border-left-color: var(--pmt-btl-success);
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(244,251,247,0.98));
}

.pmt-btl-partial-result-top.is-no .pmt-btl-partial-why-card {
  border-left-color: var(--pmt-btl-danger);
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,244,246,0.98));
}

.pmt-btl-partial-why-label {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pmt-btl-primary);
}

.pmt-btl-partial-why-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.72;
  color: #25324a;
}

.pmt-btl-locked-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.pmt-btl-locked-card,
.pmt-btl-unlock-card,
.pmt-btl-full-report-card,
.pmt-btl-cta-card-report,
.pmt-btl-product-card {
  border-radius: 22px;
  border: 1px solid rgba(17, 24, 39, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 251, 255, 0.99));
  box-shadow: 0 14px 30px rgba(16, 24, 40, 0.045), inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.pmt-btl-locked-card {
  position: relative;
  overflow: hidden;
  min-height: 164px;
  padding: 16px;
}

.pmt-btl-locked-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.04) 22%,
    rgba(255, 255, 255, 0.10) 42%,
    rgba(255, 255, 255, 0.24) 62%,
    rgba(255, 255, 255, 0.55) 82%,
    rgba(255, 255, 255, 0.88) 100%
  );
}

.pmt-btl-locked-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.pmt-btl-locked-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(32, 82, 232, 0.08);
  color: var(--pmt-btl-primary);
  border: 1px solid rgba(32, 82, 232, 0.1);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  position: relative;
  z-index: 2;
}

.pmt-btl-locked-card h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.25;
  position: relative;
  z-index: 2;
}

.pmt-btl-locked-fake-list {
  position: relative;
  z-index: 1;
  margin: 10px 0 0;
  padding-left: 18px;
  color: #5f6c84;
  line-height: 1.6;
  font-size: 13px;
  max-height: 100px;
  overflow: hidden;
  user-select: none;
  pointer-events: none;
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.96) 0%,
    rgba(0, 0, 0, 0.88) 42%,
    rgba(0, 0, 0, 0.52) 74%,
    rgba(0, 0, 0, 0.10) 92%,
    rgba(0, 0, 0, 0) 100%
  );
}

.pmt-btl-locked-fake-list li {
  margin: 0 0 6px;
}

.pmt-btl-unlock-card {
  position: relative;
  overflow: hidden;
  padding: 30px 24px 24px;
  width: 100%;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.99), rgba(244,247,255,0.99));
  border: 1px solid rgba(32, 82, 232, 0.11);
  box-shadow: 0 18px 36px rgba(17, 24, 39, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.pmt-btl-unlock-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.pmt-btl-unlock-card-head h3 {
  font-size: clamp(30px, 3.5vw, 38px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.pmt-btl-unlock-mini-label {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 800;
  color: var(--pmt-btl-primary);
}

.pmt-btl-unlock-value-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(32, 82, 232, 0.08);
  border: 1px solid rgba(32, 82, 232, 0.1);
  color: var(--pmt-btl-primary);
  font-size: 13px;
  font-weight: 700;
}

.pmt-btl-unlock-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 16px 0 20px;
}

.pmt-btl-unlock-feature {
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: 0 8px 18px rgba(16, 24, 40, 0.03);
}

.pmt-btl-unlock-feature strong {
  display: block;
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 6px;
  color: var(--pmt-btl-text);
}

.pmt-btl-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 14px 0 12px;
}

.pmt-btl-field-row label span {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
}

.pmt-btl-full-report-shell > .pmt-btl-eyebrow {
  margin: 0 0 -4px;
}

.pmt-btl-full-report-title-row h2 {
  font-size: clamp(44px, 5.4vw, 62px);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.pmt-btl-scenario-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pmt-btl-scenario-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(32, 82, 232, 0.08);
  border: 1px solid rgba(32, 82, 232, 0.12);
  color: #2052e8;
  font-size: 13px;
  font-weight: 700;
}

.pmt-btl-notice {
  padding: 18px 18px 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 18px;
}

.pmt-btl-full-report-card {
  padding: 24px 24px 22px;
}

.pmt-btl-report-card-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.pmt-btl-report-card-head h3 {
  font-size: 20px;
  line-height: 1.15;
}

.pmt-btl-section-kicker {
  margin: 0 0 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  color: var(--pmt-btl-primary);
}

.pmt-btl-result-body {
  margin: 0;
  line-height: 1.78;
  color: #495973;
  max-width: 70ch;
}

.pmt-btl-product-compare-grid,
.pmt-btl-visual-grid,
.pmt-btl-insight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.pmt-btl-product-card {
  padding: 20px;
}

.pmt-btl-product-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.pmt-btl-product-card-head h4 {
  font-size: 24px;
  line-height: 1;
}

.pmt-btl-product-status {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.pmt-btl-product-status.is-yes {
  background: rgba(15, 159, 110, 0.12);
  color: #0f9f6e;
}

.pmt-btl-product-status.is-borderline {
  background: rgba(32, 82, 232, 0.12);
  color: #2052e8;
}

.pmt-btl-product-status.is-no {
  background: rgba(200, 30, 30, 0.12);
  color: #c81e1e;
}

.pmt-btl-product-card-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.pmt-btl-product-metric {
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: 0 8px 18px rgba(16, 24, 40, 0.03);
}

.pmt-btl-product-metric span {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
}

.pmt-btl-product-metric strong {
  font-size: 18px;
  line-height: 1.2;
  color: #172033;
  letter-spacing: -0.02em;
}

.pmt-btl-compare-row {
  margin-bottom: 16px;
}

.pmt-btl-compare-row:last-child {
  margin-bottom: 0;
}

.pmt-btl-compare-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #44546c;
}

.pmt-btl-compare-head strong {
  color: #172033;
  font-size: 15px;
  white-space: nowrap;
}

.pmt-btl-compare-track {
  width: 100%;
  height: 14px;
  border-radius: 999px;
  overflow: hidden;
  background: #edf2f8;
  border: 1px solid rgba(17, 24, 39, 0.06);
}

.pmt-btl-compare-fill {
  height: 100%;
  width: 0;
  transition: width 0.35s ease;
}

.pmt-btl-compare-fill-rent {
  background: linear-gradient(90deg, #2052e8 0%, #5d7df6 100%);
}

.pmt-btl-compare-fill-ltv {
  background: linear-gradient(90deg, #0f9f6e 0%, #2cc98f 100%);
}

.pmt-btl-constraint-pill {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(17,24,39,0.06);
  color: #334155;
  font-size: 13px;
  font-weight: 700;
}

.pmt-btl-rent-support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}

.pmt-btl-rent-support-item {
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: 0 8px 18px rgba(16, 24, 40, 0.03);
}

.pmt-btl-rent-support-label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
}

.pmt-btl-rent-support-value {
  font-size: 24px;
  line-height: 1;
  color: #172033;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.pmt-btl-rent-gap-card {
  padding: 18px;
  border-radius: 18px;
  border: 2px solid rgba(17,24,39,0.10);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 14px 30px rgba(16, 24, 40, 0.08);
}

.pmt-btl-rent-gap-card.is-positive {
  border-color: rgba(15, 159, 110, 0.26);
  background: linear-gradient(180deg, #f4fbf7 0%, #eaf8f0 100%);
}

.pmt-btl-rent-gap-card.is-negative {
  border-color: rgba(200, 30, 30, 0.26);
  background: linear-gradient(180deg, #fff6f6 0%, #ffecec 100%);
}

.pmt-btl-rent-gap-card.is-neutral {
  border-color: rgba(32, 82, 232, 0.26);
  background: linear-gradient(180deg, #f7f9ff 0%, #eef3ff 100%);
}

.pmt-btl-rent-gap-label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
}

.pmt-btl-rent-gap-value {
  font-size: 24px;
  line-height: 1.2;
  color: #172033;
  letter-spacing: -0.03em;
}

.pmt-btl-breakdown-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pmt-btl-breakdown-item {
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: 0 8px 18px rgba(16, 24, 40, 0.03);
}

.pmt-btl-breakdown-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.pmt-btl-breakdown-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--pmt-btl-text);
}

.pmt-btl-breakdown-value {
  font-size: 14px;
  font-weight: 800;
  text-transform: none;
  letter-spacing: 0.01em;
  color: #64748b;
  text-align: right;
  word-break: break-word;
}

.pmt-btl-bullet-list-structured {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pmt-btl-bullet-list-structured li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(17, 24, 39, 0.06);
  font-size: 15px;
  line-height: 1.68;
  color: #44546c;
}

.pmt-btl-bullet-list-structured li:first-child {
  border-top: none;
}

.pmt-btl-bullet-list-structured li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 0.55em;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(32, 82, 232, 0.08);
}

.pmt-btl-cta-card-report {
  padding: 32px 28px 28px;
  text-align: center;
}

.pmt-btl-cta-card-report::before {
  content: "NEXT STEP";
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2052e8;
}

.pmt-btl-cta-card-report h3 {
  font-size: clamp(30px, 3.5vw, 40px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.pmt-btl-cta-card-report p {
  font-size: 16px;
  line-height: 1.75;
  color: #53627b;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.pmt-btl-cta-actions {
  margin-top: 14px;
  justify-content: center;
}

.pmt-btl-btn-cta-navstyle,
.pmt-btl-btn-cta-navstyle:link,
.pmt-btl-btn-cta-navstyle:visited {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 0;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  background: linear-gradient(180deg, #e1005f 0%, #b8005a 100%);
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(225, 0, 95, 0.26);
  transition: transform 0.16s ease, filter 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
  overflow: hidden;
}

.pmt-btl-btn-cta-navstyle:hover,
.pmt-btl-btn-cta-navstyle:focus {
  background: linear-gradient(180deg, #ec0064 0%, #c0005d 100%);
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(225, 0, 95, 0.32);
}

.pmt-btl-btn-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: #ffffff;
  flex: 0 0 auto;
}

.pmt-btl-btn-cta-icon svg {
  display: block;
  width: 18px;
  height: 18px;
}

.pmt-btl-btn-cta-text {
  display: inline-block;
  color: inherit;
}

@media (max-width: 980px) {
  .pmt-btl-money-grid,
  .pmt-btl-breakdown-grid,
  .pmt-btl-product-compare-grid,
  .pmt-btl-product-card-body,
  .pmt-btl-visual-grid,
  .pmt-btl-insight-grid,
  .pmt-btl-rent-support-grid,
  .pmt-btl-locked-grid,
  .pmt-btl-unlock-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .pmt-btl-shell {
    width: min(100% - 20px, 980px);
    margin: 20px auto 32px;
  }

  .pmt-btl-app-card {
    padding: 20px;
  }

  .pmt-btl-top-grid,
  .pmt-btl-profile-grid,
  .pmt-btl-field-row {
    grid-template-columns: 1fr;
  }

  .pmt-btl-top-grid-property {
    grid-column: auto;
  }

  #btlLoadingView {
    min-height: 300px;
    padding: 14px 10px 10px;
  }

  .pmt-btl-loading-steps {
    margin-top: 24px;
    padding: 20px 16px 18px;
    border-radius: 18px;
  }

  .pmt-btl-partial-result-top,
  .pmt-btl-full-report-hero,
  .pmt-btl-unlock-card {
    padding: 22px 18px 18px;
  }

  .pmt-btl-full-report-card,
  .pmt-btl-product-card,
  .pmt-btl-cta-card-report {
    padding: 22px 18px 20px;
  }

  .pmt-btl-full-report-title-row h2 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .pmt-btl-btn-unlock-main,
  .pmt-btl-btn-cta-navstyle {
    width: 100%;
    min-width: 0;
  }

  .pmt-btl-score-pill,
  .pmt-btl-rent-gap-value,
  .pmt-btl-product-metric strong,
  .pmt-btl-rent-support-value {
    white-space: normal;
  }
}

.pmt-btl-unlock-feature strong {
  font-size: 13px;
  line-height: 1.35;
}

.pmt-btl-unlock-feature span {
  display: block;
  font-size: 13px;
  line-height: 1.6;
  color: #5f6c84;
}

.pmt-btl-form-note {
  font-size: 13px;
  line-height: 1.55;
  opacity: 0.9;
}

#btlFullResultView .pmt-btl-notice {
  font-size: 14px;
  line-height: 1.7;
  color: #5b6880;
}

.pmt-btl-product-metric.is-positive strong {
  color: var(--pmt-btl-success);
}

.pmt-btl-product-metric.is-negative strong {
  color: var(--pmt-btl-danger);
}

.pmt-btl-product-metric.is-neutral strong {
  color: var(--pmt-btl-primary);
}

#btl_best_lane_value {
  font-size: 13px;
  line-height: 1.45;
  white-space: normal;
  word-break: normal;
  overflow-wrap: anywhere;
}

#btl_target_loan_value {
  white-space: nowrap;
}

#btl_gap_5yr_value,
#btl_gap_2yr_value {
  line-height: 1.35;
}

.pmt-btl-product-card .pmt-btl-product-metric strong {
  font-size: 17px;
}

.pmt-btl-product-card .pmt-btl-product-metric span {
  font-size: 12px;
}

.pmt-btl-route-insight-card p,
#btl_route_insight_body {
  max-width: 68ch;
}

.pmt-btl-result-body {
  text-wrap: pretty;
}

.pmt-btl-unlock-consent-note {
  margin: 0;
  max-width: 760px;
  font-size: 12.5px;
  line-height: 1.7;
  color: #7a8699;
  padding-top: 10px;
  border-top: 1px solid rgba(17, 24, 39, 0.06);
}

.pmt-btl-unlock-consent-note a,
.pmt-btl-unlock-consent-note a:link,
.pmt-btl-unlock-consent-note a:visited {
  color: #2052e8;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(32, 82, 232, 0.22);
}