/* Vizzibo Child Support Estimator — Design System v2 */

@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');

/* ─── Root Variables ─────────────────────────────────────────────────────── */

.vb-childsupport {
  --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;

  display: block;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--vb-ivory);
  background: var(--vb-dark);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  /* Long unbroken strings (URL-shaped firm names, long-domain emails, etc.) shouldn't
     overflow on narrow viewports. Break them at any character when no natural break exists. */
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* ─── Shell / Split Layout ───────────────────────────────────────────────── */

.vb-cs-shell {
  display: flex;
  min-height: 560px;
  background: var(--vb-dark);
}

/* ─── Left Panel ─────────────────────────────────────────────────────────── */

.vb-cs-left {
  width: 250px;
  flex-shrink: 0;
  background: var(--vb-dark);
  border-right: 1px solid var(--vb-b-brass);
  display: flex;
  flex-direction: column;
  padding: 32px 0 28px;
  gap: 0;
}

/* Badge */
.vb-cs-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 22px 28px;
  border-bottom: 1px solid var(--vb-b-warm);
}

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

.vb-cs-badge-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.vb-cs-badge-name {
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: var(--vb-ivory);
  line-height: 1.2;
}

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

/* Steps */
.vb-cs-steps {
  padding: 24px 22px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vb-cs-step-group {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vb-cs-step-group:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 10px;
  top: 28px;
  bottom: -12px;
  width: 1px;
  background: var(--vb-b-warm);
}

.vb-cs-step-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}

.vb-cs-step-marker {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

/* Done: solid brass dot with checkmark */
.vb-cs-step-row.is-done .vb-cs-step-marker {
  background: var(--vb-brass);
  color: var(--vb-dark);
  border: none;
}

.vb-cs-step-row.is-done .vb-cs-step-marker::after {
  content: '✓';
  font-size: 11px;
  font-family: Inter, sans-serif;
  font-weight: 700;
}

/* Active: brass ring with number */
.vb-cs-step-row.is-active .vb-cs-step-marker {
  background: transparent;
  border: 1.5px solid var(--vb-brass);
  color: var(--vb-brass);
}

/* Pending: faded */
.vb-cs-step-row.is-pending .vb-cs-step-marker {
  background: transparent;
  border: 1px solid var(--vb-stone2);
  color: var(--vb-stone2);
}

.vb-cs-step-label {
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}

.vb-cs-step-row.is-done .vb-cs-step-label   { color: var(--vb-stone); }
.vb-cs-step-row.is-active .vb-cs-step-label  { color: var(--vb-ivory); }
.vb-cs-step-row.is-pending .vb-cs-step-label { color: var(--vb-stone2); }

/* Live estimate card */
.vb-cs-live-card {
  margin: 20px 16px 0;
  background: var(--vb-brass-bg);
  border: 1px solid var(--vb-b-brass);
  border-radius: 2px;
  padding: 16px;
}

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

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

.vb-cs-live-amount {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--vb-ivory);
  line-height: 1;
  margin-bottom: 4px;
}

.vb-cs-live-amount.is-empty {
  color: var(--vb-stone2);
  font-size: 18px;
}

.vb-cs-live-range {
  font-family: Inter, sans-serif;
  font-size: 11px;
  color: var(--vb-stone);
  margin-bottom: 10px;
}

.vb-cs-live-track {
  height: 3px;
  background: var(--vb-b-warm);
  border-radius: 2px;
  overflow: hidden;
}

.vb-cs-live-fill {
  height: 100%;
  background: var(--vb-brass);
  border-radius: 2px;
  transition: width 0.4s ease;
}

/* ─── Right Panel ────────────────────────────────────────────────────────── */

.vb-cs-right {
  flex: 1;
  background: var(--vb-card);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  position: relative;
  overflow: hidden;
}

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

/* Question */
.vb-cs-question {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.2;
  color: var(--vb-ivory);
  margin: 0 0 8px;
}

.vb-cs-question em {
  font-style: italic;
  color: var(--vb-brass);
  font-weight: 700;
}

.vb-cs-question span {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--vb-stone);
  display: inline-block;
  margin-left: 4px;
}

/* Answer cards grid */
.vb-cs-answers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 20px 0 8px;
}

.vb-cs-answers.is-single-col {
  grid-template-columns: 1fr;
}

.vb-cs-answers.is-count-row {
  grid-template-columns: repeat(5, 1fr);
}

.vb-cs-ans {
  position: relative;
  background: var(--vb-card2);
  border: 1px solid var(--vb-b-warm);
  border-radius: 2px;
  padding: 14px 16px 14px 40px;
  cursor: pointer;
  transition: border-color .15s, background .15s, box-shadow .15s;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-height: 54px;
  user-select: none;
}

.vb-cs-ans:hover {
  border-color: var(--vb-brass);
}

.vb-cs-ans.is-selected {
  border-color: var(--vb-brass);
  background: var(--vb-brass-bg);
  box-shadow: inset 0 0 0 1px var(--vb-brass);
}

.vb-cs-ans-num {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 500;
  color: var(--vb-stone2);
  line-height: 1;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--vb-stone2);
  border-radius: 2px;
}

.vb-cs-ans.is-selected .vb-cs-ans-num {
  color: var(--vb-brass);
  border-color: var(--vb-brass);
}

.vb-cs-ans-title {
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--vb-ivory);
  line-height: 1.2;
}

.vb-cs-ans-sub {
  font-family: Inter, sans-serif;
  font-size: 12px;
  color: var(--vb-stone);
  line-height: 1.3;
}

/* Count cards (1,2,3,4,5+) — tighter centered style */
.vb-cs-answers.is-count-row .vb-cs-ans {
  padding: 14px 8px;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 52px;
}

.vb-cs-answers.is-count-row .vb-cs-ans-num {
  position: static;
  display: none;
}

.vb-cs-answers.is-count-row .vb-cs-ans-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 20px;
}

/* Money input */
.vb-cs-money-wrap {
  position: relative;
  display: block;
  margin: 20px 0 4px;
}

.vb-cs-dollar {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--vb-stone);
  pointer-events: none;
  z-index: 1;
  line-height: 1;
}

.vb-cs-money-wrap .vb-cs-input {
  padding-left: 30px;
  margin: 0;
}

/* Inputs */
.vb-cs-input,
.vb-cs-select {
  width: 100%;
  padding: 12px 14px;
  background: var(--vb-card2);
  border: 1px solid var(--vb-b-warm);
  border-radius: 2px;
  font-family: Inter, sans-serif;
  font-size: 15px;
  color: var(--vb-ivory);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  margin: 20px 0 4px;
}

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

.vb-cs-input:focus,
.vb-cs-select:focus {
  border-color: var(--vb-brass);
  box-shadow: 0 0 0 2px rgba(176,131,61,.18);
}

.vb-cs-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B5AFA0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

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

textarea.vb-cs-input {
  min-height: 80px;
  resize: vertical;
  padding: 12px 14px;
}

/* Hint text below inputs */
.vb-cs-hint {
  font-family: Inter, sans-serif;
  font-size: 12px;
  color: var(--vb-stone2);
  margin: 4px 0 0;
}

/* Honeypot */
.vb-cs-hp {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  pointer-events: none;
  tab-index: -1;
}

/* ─── Keyboard Hint Bar ──────────────────────────────────────────────────── */

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

.vb-cs-kb-key {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 6px;
  border: 1px solid var(--vb-stone2);
  border-radius: 2px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 500;
  color: var(--vb-stone2);
  line-height: 1.4;
  white-space: nowrap;
}

/* ─── Nav Row ────────────────────────────────────────────────────────────── */

.vb-cs-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 32px;
  gap: 12px;
}

.vb-cs-btn-back {
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--vb-stone);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .15s;
}

.vb-cs-btn-back:hover { color: var(--vb-ivory); }
.vb-cs-btn-back.is-hidden { visibility: hidden; pointer-events: none; }

.vb-cs-btn-continue {
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--vb-dark);
  background: var(--vb-brass);
  border: none;
  border-radius: 2px;
  padding: 12px 24px;
  cursor: pointer;
  transition: background .15s, transform .1s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.vb-cs-btn-continue:hover { background: var(--vb-brass2); }
.vb-cs-btn-continue:disabled {
  opacity: .35;
  cursor: not-allowed;
  transform: none;
  pointer-events: none;
}

/* ─── Welcome Screen ─────────────────────────────────────────────────────── */

.vb-cs-welcome {
  background: var(--vb-card);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  padding: 48px 40px;
}

.vb-cs-welcome-inner {
  max-width: 520px;
  width: 100%;
}

.vb-cs-welcome-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--vb-brass);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.vb-cs-welcome-eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--vb-brass);
}

.vb-cs-welcome-h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.1;
  color: var(--vb-ivory);
  margin: 0 0 16px;
}

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

.vb-cs-welcome-lede {
  font-family: Inter, sans-serif;
  font-size: 15px;
  color: var(--vb-stone);
  margin: 0 0 28px;
  line-height: 1.6;
}

.vb-cs-welcome-bullets {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vb-cs-welcome-bullets li {
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: var(--vb-stone);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.vb-cs-welcome-bullets li::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 1px;
  background: var(--vb-brass);
  margin-top: 8px;
  flex-shrink: 0;
}

.vb-cs-btn-start {
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--vb-dark);
  background: var(--vb-brass);
  border: none;
  border-radius: 2px;
  padding: 14px 28px;
  cursor: pointer;
  transition: background .15s, transform .1s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.vb-cs-btn-start:hover {
  background: var(--vb-brass2);
  transform: translateY(-1px);
}

.vb-cs-welcome-fineprint {
  font-family: Inter, sans-serif;
  font-size: 11px;
  color: var(--vb-stone2);
  margin-top: 14px;
}

/* ─── Reveal Screen ──────────────────────────────────────────────────────── */

.vb-cs-reveal-shell {
  display: flex;
  min-height: 560px;
  background: var(--vb-dark);
}

/* Reveal left — ring side */
.vb-cs-reveal-left {
  width: 220px;
  flex-shrink: 0;
  background: var(--vb-dark);
  border-right: 1px solid var(--vb-b-brass);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  gap: 16px;
}

.vb-cs-ring-wrap {
  position: relative;
  width: 110px;
  height: 110px;
}

.vb-cs-ring-wrap svg {
  width: 110px;
  height: 110px;
  transform: rotate(-90deg);
}

.vb-cs-ring-track {
  fill: none;
  stroke: var(--vb-b-warm);
  stroke-width: 6;
}

.vb-cs-ring-fill {
  fill: none;
  stroke: var(--vb-brass);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 289;
  stroke-dashoffset: 289;
  transition: stroke-dashoffset 1.2s cubic-bezier(.22,.61,.36,1);
}

.vb-cs-ring-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  transform: rotate(0deg);
}

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

.vb-cs-ring-caption-main {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--vb-stone);
  text-align: center;
  line-height: 1.4;
}

/* Reveal right */
.vb-cs-reveal-right {
  flex: 1;
  background: var(--vb-card);
  padding: 40px 40px;
  overflow-y: auto;
  min-width: 0;
}

.vb-cs-reveal-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--vb-brass);
  margin-bottom: 10px;
}

.vb-cs-reveal-headline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--vb-ivory);
  margin: 0 0 6px;
  line-height: 1.2;
}

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

.vb-cs-reveal-num-wrap {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 14px 0 4px;
}

.vb-cs-reveal-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: var(--vb-ivory);
  line-height: 1;
}

.vb-cs-reveal-permonth {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--vb-stone);
}

.vb-cs-reveal-range {
  font-family: Inter, sans-serif;
  font-size: 13px;
  color: var(--vb-stone);
  margin-bottom: 20px;
}

/* Breakdown table */
.vb-cs-breakdown {
  background: var(--vb-card2);
  border: 1px solid var(--vb-b-warm);
  border-radius: 2px;
  padding: 16px 20px;
  margin: 0 0 20px;
}

.vb-cs-breakdown-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--vb-brass);
  margin: 0 0 12px;
}

.vb-cs-breakdown ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vb-cs-breakdown li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  color: var(--vb-stone);
  line-height: 1.4;
}

.vb-cs-breakdown li::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 1px;
  background: var(--vb-brass);
  margin-top: 8px;
  flex-shrink: 0;
}

.vb-cs-breakdown li strong {
  color: var(--vb-ivory);
  font-weight: 500;
}

.vb-cs-pt-note {
  font-family: Inter, sans-serif;
  font-size: 12px;
  color: var(--vb-stone2);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--vb-b-warm);
  line-height: 1.5;
}

/* Disclaimer */
.vb-cs-disclaimer {
  background: rgba(176,131,61,.04);
  border: 1px solid var(--vb-b-brass);
  border-radius: 2px;
  padding: 14px 16px;
  margin-bottom: 20px;
}

.vb-cs-disclaimer-head {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--vb-brass);
  margin: 0 0 6px;
}

.vb-cs-disclaimer p,
.vb-cs-disclaimer-body {
  font-family: Inter, sans-serif;
  font-size: 12px;
  color: var(--vb-stone2);
  line-height: 1.5;
  margin: 0;
}

/* Lead gate (reveal contact form) */
.vb-cs-leadgate {
  border-top: 1px solid var(--vb-b-warm);
  padding-top: 22px;
  margin-top: 4px;
}

.vb-cs-leadgate-head {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--vb-ivory);
  margin: 0 0 6px;
}

.vb-cs-leadgate-sub {
  font-family: Inter, sans-serif;
  font-size: 13px;
  color: var(--vb-stone);
  margin: 0 0 16px;
}

.vb-cs-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.vb-cs-ack {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 14px 0 16px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  color: var(--vb-stone);
  line-height: 1.5;
  cursor: pointer;
}

.vb-cs-ack input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--vb-brass);
}

.vb-cs-btn-submit {
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--vb-dark);
  background: var(--vb-brass);
  border: none;
  border-radius: 2px;
  padding: 13px 24px;
  cursor: pointer;
  width: 100%;
  transition: background .15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.vb-cs-btn-submit:hover { background: var(--vb-brass2); }
.vb-cs-btn-submit:disabled {
  opacity: .35;
  cursor: not-allowed;
  pointer-events: none;
}

/* ─── Confirmation Screen ────────────────────────────────────────────────── */

.vb-cs-confirmation {
  background: var(--vb-card);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  padding: 48px 40px;
  text-align: center;
}

.vb-cs-confirmation-inner {
  max-width: 440px;
}

.vb-cs-check-mark {
  font-size: 36px;
  color: var(--vb-brass);
  margin-bottom: 16px;
  display: block;
  font-family: Inter, sans-serif;
}

.vb-cs-conf-head {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--vb-ivory);
  margin: 0 0 12px;
  line-height: 1.15;
}

.vb-cs-conf-head em {
  font-style: italic;
  color: var(--vb-brass);
}

.vb-cs-conf-lede {
  font-family: Inter, sans-serif;
  font-size: 15px;
  color: var(--vb-stone);
  margin: 0 0 20px;
}

.vb-cs-calendar {
  margin: 20px 0;
  padding: 16px;
  border: 1px dashed var(--vb-b-brass);
  border-radius: 2px;
  background: var(--vb-brass-bg);
}

.vb-cs-engagement-wall {
  font-family: Inter, sans-serif;
  font-size: 12px;
  color: var(--vb-stone2);
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--vb-b-warm);
  line-height: 1.5;
}

/* ─── Transitions ────────────────────────────────────────────────────────── */

.vb-cs-right-inner {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.vb-cs-anim-fwd {
  animation: vbCsSlideInFwd 0.28s cubic-bezier(.22,.61,.36,1) both;
}

.vb-cs-anim-bck {
  animation: vbCsSlideInBck 0.28s cubic-bezier(.22,.61,.36,1) both;
}

@keyframes vbCsSlideInFwd {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes vbCsSlideInBck {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes vbCsPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(0.7); }
}

@keyframes vbCsRingDraw {
  from { stroke-dashoffset: 289; }
  to   { stroke-dashoffset: 0; }
}

/* ─── Mobile: top bar collapses left panel ───────────────────────────────── */

.vb-cs-top-bar {
  display: none;
  align-items: center;
  justify-content: space-between;
  background: var(--vb-dark);
  border-bottom: 1px solid var(--vb-b-brass);
  padding: 10px 16px;
  gap: 12px;
}

.vb-cs-top-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.vb-cs-top-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--vb-stone2);
  transition: background .2s;
}

.vb-cs-top-dot.is-done   { background: var(--vb-brass); }
.vb-cs-top-dot.is-active { background: var(--vb-brass); box-shadow: 0 0 0 2px rgba(176,131,61,.3); }

.vb-cs-top-amount {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--vb-ivory);
}

.vb-cs-top-amount.is-empty {
  font-size: 13px;
  color: var(--vb-stone2);
  font-family: Inter, sans-serif;
  font-weight: 400;
}

@media (max-width: 640px) {
  .vb-cs-shell {
    flex-direction: column;
  }

  .vb-cs-left {
    display: none;
  }

  .vb-cs-top-bar {
    display: flex;
  }

  .vb-cs-right {
    padding: 28px 20px 24px;
  }

  .vb-cs-question {
    font-size: 21px;
  }

  .vb-cs-answers {
    grid-template-columns: 1fr 1fr;
  }

  .vb-cs-answers.is-count-row {
    grid-template-columns: repeat(5, 1fr);
  }

  .vb-cs-answers.is-single-col {
    grid-template-columns: 1fr;
  }

  .vb-cs-nav {
    padding-top: 20px;
  }

  .vb-cs-welcome {
    padding: 32px 20px;
  }

  .vb-cs-reveal-shell {
    flex-direction: column;
  }

  .vb-cs-reveal-left {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--vb-b-brass);
    flex-direction: row;
    justify-content: center;
    padding: 20px 20px;
    gap: 20px;
  }

  .vb-cs-ring-wrap {
    width: 80px;
    height: 80px;
  }

  .vb-cs-ring-wrap svg {
    width: 80px;
    height: 80px;
  }

  .vb-cs-reveal-num {
    font-size: 36px;
  }

  .vb-cs-reveal-right {
    padding: 24px 20px;
  }

  .vb-cs-field-row {
    grid-template-columns: 1fr;
  }

  .vb-cs-confirmation {
    padding: 32px 20px;
  }
}
