@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,300;12..96,500;12..96,700;12..96,800&family=JetBrains+Mono:wght@400;500&family=Inter:wght@400;500;600&display=swap');

/* ─── RESET & ROOT ─────────────────────────────────────────────────────────── */
.vb-probate *,
.vb-probate *::before,
.vb-probate *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.vb-probate {
  --vb-dark:     #0E1116;
  --vb-card:     #14181F;
  --vb-card2:    #1A1F26;
  --vb-brass:    #B0833D;
  --vb-brass2:   #8E6726;
  --vb-brass-bg: rgba(176,131,61,.07);
  --vb-b-brass:  rgba(176,131,61,.22);
  --vb-b-warm:   rgba(239,231,216,.10);
  --vb-ivory:    #EFE7D8;
  --vb-stone:    #B5AFA0;
  --vb-stone2:   #5A5C5E;

  font-family: 'Inter', sans-serif;
  background: var(--vb-dark);
  color: var(--vb-ivory);
  border-radius: 2px;
  overflow: hidden;
  width: 100%;
  /* Long unbroken strings (URL-shaped firm names, long-domain emails, etc.) would otherwise
     get clipped by `overflow: hidden` on narrow viewports. Break them at any character
     when no natural break point exists. */
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* ─── SHELL ─────────────────────────────────────────────────────────────────── */
.vb-pt-shell {
  display: flex;
  min-height: 580px;
}

/* ─── LEFT PANEL ─────────────────────────────────────────────────────────────── */
.vb-pt-left {
  width: 250px;
  flex-shrink: 0;
  background: var(--vb-dark);
  border-right: 1px solid var(--vb-b-brass);
  display: flex;
  flex-direction: column;
  padding: 28px 20px 24px;
  gap: 24px;
}

/* Badge */
.vb-pt-badge {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vb-pt-badge-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border: 1px solid var(--vb-b-brass);
  border-radius: 2px;
  background: var(--vb-brass-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vb-brass);
}

.vb-pt-badge-icon svg {
  width: 20px;
  height: 20px;
}

.vb-pt-badge-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.vb-pt-badge-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--vb-ivory);
  line-height: 1.2;
}

.vb-pt-badge-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--vb-brass);
  letter-spacing: .04em;
}

/* Section Steps */
.vb-pt-steps {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.vb-pt-section {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vb-pt-section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--vb-stone2);
  padding: 10px 0 5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.vb-pt-section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--vb-b-warm);
}

.vb-pt-step {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 5px 0;
  transition: opacity .2s;
}

.vb-pt-step--pending {
  opacity: .35;
}

.vb-pt-step--active {
  opacity: 1;
}

.vb-pt-step--done {
  opacity: .7;
}

.vb-pt-step-dot {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--vb-stone2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--vb-stone2);
  background: transparent;
  transition: border-color .2s, background .2s, color .2s;
}

.vb-pt-step--active .vb-pt-step-dot {
  border-color: var(--vb-brass);
  box-shadow: 0 0 0 2px var(--vb-brass-bg);
  color: var(--vb-brass);
}

.vb-pt-step--done .vb-pt-step-dot {
  border-color: var(--vb-brass2);
  background: var(--vb-brass-bg);
  color: var(--vb-brass);
}

.vb-pt-step-name {
  font-size: 12px;
  color: var(--vb-stone);
  line-height: 1.3;
  transition: color .2s;
}

.vb-pt-step--active .vb-pt-step-name {
  color: var(--vb-ivory);
  font-weight: 500;
}

.vb-pt-step--done .vb-pt-step-name {
  color: var(--vb-stone);
}

/* Live Card */
.vb-pt-live-card {
  background: var(--vb-brass-bg);
  border: 1px solid var(--vb-b-brass);
  border-radius: 2px;
  padding: 12px 14px;
}

.vb-pt-live-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--vb-stone);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.vb-pt-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vb-brass);
  flex-shrink: 0;
  animation: vb-pulse 2s ease-in-out infinite;
}

@keyframes vb-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.85); }
}

.vb-pt-live-range {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--vb-ivory);
  line-height: 1;
}

.vb-pt-live-range-empty {
  font-family: 'JetBrains Mono', monospace;
  font-size: 20px;
  color: var(--vb-stone2);
}

.vb-pt-live-unit {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: var(--vb-stone);
  margin-top: 3px;
}

/* ─── RIGHT PANEL ────────────────────────────────────────────────────────────── */
.vb-pt-right {
  flex: 1;
  background: var(--vb-card);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

/* ─── ANIMATION ─────────────────────────────────────────────────────────────── */
.vb-pt-pane {
  display: flex;
  flex-direction: column;
  flex: 1;
}

@keyframes vb-slide-in-fwd {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes vb-slide-in-bck {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}

.vb-pt-anim-fwd {
  animation: vb-slide-in-fwd .28s cubic-bezier(.22,.68,0,1.2) both;
}

.vb-pt-anim-bck {
  animation: vb-slide-in-bck .28s cubic-bezier(.22,.68,0,1.2) both;
}

/* ─── WELCOME ────────────────────────────────────────────────────────────────── */
.vb-pt-welcome {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  gap: 20px;
}

.vb-pt-welcome-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--vb-brass);
}

.vb-pt-welcome-heading {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--vb-ivory);
  line-height: 1.2;
}

.vb-pt-welcome-heading em {
  font-style: italic;
  color: var(--vb-brass);
}

.vb-pt-welcome-body {
  font-size: 14px;
  color: var(--vb-stone);
  line-height: 1.65;
  max-width: 480px;
}

.vb-pt-welcome-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.vb-pt-feature-pill {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .06em;
  color: var(--vb-stone);
  background: var(--vb-b-warm);
  border: 1px solid var(--vb-b-warm);
  border-radius: 2px;
  padding: 4px 10px;
}

.vb-pt-welcome-cta {
  margin-top: 8px;
}

/* ─── QUESTION PANE ─────────────────────────────────────────────────────────── */
.vb-pt-q-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--vb-brass);
  margin-bottom: 10px;
}

.vb-pt-q-text {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--vb-ivory);
  line-height: 1.2;
  margin-bottom: 28px;
}

.vb-pt-q-text em {
  font-style: italic;
  color: var(--vb-brass);
}

/* Cards grid */
.vb-pt-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

.vb-pt-card {
  background: var(--vb-card2);
  border: 1px solid var(--vb-b-warm);
  border-radius: 2px;
  padding: 14px 16px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--vb-stone);
  transition: border-color .15s, background .15s, color .15s;
  text-align: left;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
}

.vb-pt-card:hover {
  border-color: var(--vb-b-brass);
  color: var(--vb-ivory);
  background: var(--vb-brass-bg);
}

.vb-pt-card--selected {
  border-color: var(--vb-brass) !important;
  background: var(--vb-brass-bg) !important;
  color: var(--vb-ivory) !important;
}

.vb-pt-card--selected::after {
  content: '';
  position: absolute;
  top: 7px;
  right: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vb-brass);
}

.vb-pt-card-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: var(--vb-stone2);
  margin-bottom: 6px;
  letter-spacing: .05em;
}

/* Select input */
.vb-pt-select-wrap {
  position: relative;
  margin-bottom: 20px;
}

.vb-pt-select {
  width: 100%;
  max-width: 320px;
  appearance: none;
  -webkit-appearance: none;
  background: var(--vb-card2);
  border: 1px solid var(--vb-b-warm);
  border-radius: 2px;
  color: var(--vb-ivory);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 12px 40px 12px 14px;
  cursor: pointer;
  transition: border-color .15s;
  outline: none;
}

.vb-pt-select:focus {
  border-color: var(--vb-brass);
}

.vb-pt-select option {
  background: var(--vb-card2);
  color: var(--vb-ivory);
}

.vb-pt-select-arrow {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 286px;
  transform: translateY(-50%);
  color: var(--vb-brass);
  font-size: 12px;
}

/* Hint */
.vb-pt-hint {
  font-size: 12px;
  color: var(--vb-stone2);
  margin-top: -10px;
  margin-bottom: 18px;
  line-height: 1.5;
}

/* Keyboard hint bar */
.vb-pt-kb-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--vb-b-warm);
  margin-top: auto;
  padding-top: 14px;
  flex-shrink: 0;
}

.vb-pt-kb-hint {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--vb-stone2);
  display: flex;
  align-items: center;
  gap: 5px;
}

.vb-pt-kb-key {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 18px;
  padding: 0 5px;
  border: 1px solid var(--vb-stone2);
  border-radius: 2px;
  font-size: 9px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--vb-stone2);
}

/* Nav */
.vb-pt-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  flex-shrink: 0;
}

/* Buttons */
.vb-pt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  padding: 11px 22px;
  transition: opacity .15s, background .15s;
  text-decoration: none;
  line-height: 1;
}

.vb-pt-btn:disabled {
  opacity: .4;
  cursor: not-allowed;
}

.vb-pt-btn-primary {
  background: var(--vb-brass);
  color: var(--vb-dark);
}

.vb-pt-btn-primary:hover:not(:disabled) {
  background: #C49246;
}

.vb-pt-btn-ghost {
  background: transparent;
  color: var(--vb-stone);
  border: 1px solid var(--vb-b-warm);
}

.vb-pt-btn-ghost:hover:not(:disabled) {
  color: var(--vb-ivory);
  border-color: var(--vb-b-brass);
}

.vb-pt-btn-arrow {
  font-size: 15px;
  line-height: 1;
}

/* Progress crumbs */
.vb-pt-progress {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.vb-pt-prog-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vb-stone2);
  transition: background .2s;
}

.vb-pt-prog-dot--active {
  background: var(--vb-brass);
}

.vb-pt-prog-dot--done {
  background: var(--vb-brass2);
}

.vb-pt-prog-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--vb-stone2);
  letter-spacing: .04em;
}

/* ─── REVEAL ─────────────────────────────────────────────────────────────────── */
.vb-pt-reveal {
  display: flex;
  gap: 36px;
  flex: 1;
}

.vb-pt-reveal-left {
  flex-shrink: 0;
  width: 160px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding-top: 4px;
}

.vb-pt-reveal-range-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--vb-ivory);
  line-height: 1;
  letter-spacing: -.01em;
}

.vb-pt-reveal-range-unit {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--vb-stone);
  margin-top: 2px;
}

.vb-pt-reveal-sub {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--vb-stone2);
  margin-top: 8px;
  line-height: 1.5;
}

.vb-pt-reveal-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow-y: auto;
  max-height: calc(100vh - 180px);
  padding-right: 4px;
}

.vb-pt-reveal-right::-webkit-scrollbar {
  width: 4px;
}

.vb-pt-reveal-right::-webkit-scrollbar-track {
  background: transparent;
}

.vb-pt-reveal-right::-webkit-scrollbar-thumb {
  background: var(--vb-b-brass);
  border-radius: 2px;
}

/* Eyebrow + track badge */
.vb-pt-reveal-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--vb-brass);
  margin-bottom: 6px;
}

.vb-pt-track-pill {
  display: inline-flex;
  align-items: center;
  background: var(--vb-brass-bg);
  border: 1px solid var(--vb-b-brass);
  border-radius: 2px;
  padding: 4px 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--vb-brass);
}

.vb-pt-reveal-headline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--vb-ivory);
  line-height: 1.3;
}

.vb-pt-reveal-headline em {
  font-style: italic;
  color: var(--vb-brass);
}

/* Phase timeline */
.vb-pt-phases {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vb-pt-phases-heading {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--vb-stone2);
  margin-bottom: 14px;
}

.vb-pt-phase {
  display: flex;
  gap: 14px;
  padding-bottom: 20px;
  opacity: 0;
  transition: opacity .35s ease;
}

.vb-pt-phase--visible {
  opacity: 1;
}

.vb-pt-phase-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 14px;
}

.vb-pt-phase-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--vb-brass);
  background: var(--vb-card);
  flex-shrink: 0;
  margin-top: 3px;
}

.vb-pt-phase-connector {
  width: 1px;
  flex: 1;
  background: var(--vb-b-brass);
  margin-top: 4px;
  min-height: 16px;
}

.vb-pt-phase:last-child .vb-pt-phase-connector {
  display: none;
}

.vb-pt-phase-body {
  flex: 1;
  padding-bottom: 4px;
}

.vb-pt-phase-name {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--vb-ivory);
  line-height: 1.3;
}

.vb-pt-phase-dur {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--vb-brass);
  margin-top: 2px;
  letter-spacing: .04em;
}

.vb-pt-phase-detail {
  font-size: 12px;
  color: var(--vb-stone);
  line-height: 1.6;
  margin-top: 5px;
}

/* Shortcuts section */
.vb-pt-shortcuts {
  background: var(--vb-brass-bg);
  border: 1px solid var(--vb-b-brass);
  border-radius: 2px;
  padding: 16px;
}

.vb-pt-shortcuts-heading {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--vb-brass);
  margin-bottom: 10px;
}

.vb-pt-shortcut {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 0;
  border-bottom: 1px solid var(--vb-b-brass);
}

.vb-pt-shortcut:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.vb-pt-shortcut:first-of-type {
  padding-top: 0;
}

.vb-pt-shortcut-name {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--vb-ivory);
}

.vb-pt-shortcut-desc {
  font-size: 12px;
  color: var(--vb-stone);
  line-height: 1.5;
}

.vb-pt-shortcut-reduce {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--vb-brass);
  margin-top: 2px;
}

/* Complexity flags */
.vb-pt-flags {
  background: rgba(200,130,40,.08);
  border: 1px solid rgba(200,130,40,.30);
  border-radius: 2px;
  padding: 16px;
}

.vb-pt-flags-heading {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #C88228;
  margin-bottom: 10px;
}

.vb-pt-flag {
  font-size: 12px;
  color: var(--vb-stone);
  line-height: 1.6;
  padding: 4px 0;
  border-bottom: 1px solid rgba(200,130,40,.15);
}

.vb-pt-flag:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.vb-pt-flag-name {
  font-weight: 600;
  color: var(--vb-ivory);
}

/* State note */
.vb-pt-state-note {
  font-style: italic;
  font-size: 12px;
  color: var(--vb-stone2);
  line-height: 1.6;
}

/* Disclaimer */
.vb-pt-disclaimer {
  background: var(--vb-b-warm);
  border: 1px solid var(--vb-b-warm);
  border-radius: 2px;
  padding: 14px 16px;
}

.vb-pt-disclaimer-headline {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--vb-stone);
  margin-bottom: 6px;
}

.vb-pt-disclaimer-body {
  font-size: 11px;
  color: var(--vb-stone2);
  line-height: 1.65;
}

/* Lead gate */
.vb-pt-lead-gate {
  border-top: 1px solid var(--vb-b-warm);
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vb-pt-lead-heading {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--vb-ivory);
}

.vb-pt-lead-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vb-pt-input-row {
  display: flex;
  gap: 10px;
}

.vb-pt-input-row .vb-pt-input-wrap {
  flex: 1;
}

.vb-pt-input-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vb-pt-input-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--vb-stone);
  letter-spacing: .03em;
}

.vb-pt-input {
  background: var(--vb-card2);
  border: 1px solid var(--vb-b-warm);
  border-radius: 2px;
  color: var(--vb-ivory);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  padding: 10px 12px;
  width: 100%;
  outline: none;
  transition: border-color .15s;
}

.vb-pt-input:focus {
  border-color: var(--vb-brass);
}

.vb-pt-input::placeholder {
  color: var(--vb-stone2);
}

.vb-pt-textarea {
  resize: vertical;
  min-height: 80px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
}

/* Ack checkbox */
.vb-pt-ack-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 2px;
}

.vb-pt-ack-check {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--vb-brass);
  cursor: pointer;
}

.vb-pt-ack-label {
  font-size: 11px;
  color: var(--vb-stone);
  line-height: 1.55;
  cursor: pointer;
}

/* Lead submit */
.vb-pt-lead-submit {
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.vb-pt-btn-submit {
  font-size: 14px;
  padding: 13px 28px;
}

.vb-pt-submit-note {
  font-size: 11px;
  color: var(--vb-stone2);
}

/* Status messages */
.vb-pt-status {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  padding: 8px 12px;
  border-radius: 2px;
  margin-top: 4px;
}

.vb-pt-status--success {
  background: rgba(80,160,80,.12);
  border: 1px solid rgba(80,160,80,.30);
  color: #7ec87e;
}

.vb-pt-status--error {
  background: rgba(200,60,60,.10);
  border: 1px solid rgba(200,60,60,.28);
  color: #e07070;
}

/* Engagement wall */
.vb-pt-engage-wall {
  font-size: 12px;
  color: var(--vb-stone2);
  font-style: italic;
  line-height: 1.6;
  margin-top: 4px;
}

/* Honeypot */
.vb-pt-hp {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ─── MOBILE ─────────────────────────────────────────────────────────────────── */
@media (max-width: 680px) {
  .vb-pt-shell {
    flex-direction: column;
    min-height: unset;
  }

  .vb-pt-left {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--vb-b-brass);
    flex-direction: row;
    align-items: center;
    padding: 14px 16px;
    gap: 12px;
  }

  .vb-pt-steps {
    display: none;
  }

  .vb-pt-live-card {
    margin-left: auto;
    padding: 8px 12px;
    flex-shrink: 0;
  }

  .vb-pt-live-range {
    font-size: 18px;
  }

  .vb-pt-live-label {
    margin-bottom: 3px;
  }

  .vb-pt-mobile-dots {
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .vb-pt-right {
    padding: 24px 18px;
  }

  .vb-pt-q-text {
    font-size: 20px;
  }

  .vb-pt-cards {
    grid-template-columns: 1fr 1fr;
  }

  .vb-pt-reveal {
    flex-direction: column;
    gap: 20px;
  }

  .vb-pt-reveal-left {
    width: 100%;
    flex-direction: row;
    align-items: baseline;
    gap: 12px;
    border-bottom: 1px solid var(--vb-b-warm);
    padding-bottom: 16px;
  }

  .vb-pt-reveal-range-num {
    font-size: 32px;
  }

  .vb-pt-reveal-right {
    max-height: unset;
  }

  .vb-pt-input-row {
    flex-direction: column;
  }
}

@media (min-width: 681px) {
  .vb-pt-mobile-dots {
    display: none;
  }
}
