/* onboarding.css — "Get started" flow styles (extends mila.css) */

.ob-page { padding: var(--s-12) 0 var(--s-24); min-height: calc(100vh - 64px); }
.ob-wrap { max-width: 660px; margin: 0 auto; display: flex; flex-direction: column; gap: var(--s-6); }
.ob-wrap.wide { max-width: 920px; }

/* Smaller input text on the "Tell us about your business" step */
.form-grid .field { font-size: 13px; }
.form-grid .field::placeholder { font-size: 13px; }

.ob-card-head { display: flex; flex-direction: column; gap: 6px; margin-bottom: var(--s-6); }
.ob-title { font-size: var(--t-24); font-weight: 700; color: var(--fg-strong); letter-spacing: var(--tr-snug); }

.ob-actions { display: flex; align-items: center; justify-content: space-between; gap: var(--s-4); margin-top: var(--s-8); }
.ob-actions .btn-lg { min-width: 140px; justify-content: center; }
.ob-error-msg {
  font-size: var(--t-13); font-weight: 500; color: var(--bear-600);
  opacity: 0; transform: translateY(2px); transition: opacity var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.ob-error-msg.show { opacity: 1; transform: none; }
.form-field.error .field { border-color: var(--bear-500); background: var(--bear-50); }
.form-field.error .field:focus { box-shadow: 0 0 0 3px rgba(216, 57, 43, 0.18); }

/* ------- Help tooltip ----------------------------------------- */
.help-tip {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 13px; height: 13px; border-radius: 50%; border: 1px solid var(--border-strong);
  color: var(--fg-subtle); font-size: 9px; font-weight: 700; line-height: 1;
  font-family: var(--font-sans); cursor: help; margin: 0 2px 0 4px; vertical-align: middle;
  transition: color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.help-tip:hover, .help-tip:focus { color: var(--mila-accent); border-color: var(--mila-accent); outline: none; }
.help-bubble {
  position: absolute; bottom: calc(100% + 9px); left: 50%;
  transform: translateX(-50%) translateY(4px);
  width: 230px; max-width: 60vw; background: var(--ink-900); color: var(--ink-50);
  font-size: 12px; font-weight: 400; line-height: 1.45; letter-spacing: 0;
  text-transform: none; text-align: left;
  padding: 9px 11px; border-radius: var(--r-md); box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none; z-index: 6;
  transition: opacity var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.help-bubble::after {
  content: ""; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  border: 5px solid transparent; border-top-color: var(--ink-900);
}
.help-tip:hover .help-bubble, .help-tip:focus .help-bubble { opacity: 1; transform: translateX(-50%); }
.btn-ghost { background: transparent; color: var(--fg-muted); border-color: transparent; }
.btn-ghost:hover { color: var(--fg-strong); background: var(--ink-100); }

/* ------- Progress bar ----------------------------------------- */
.ob-progress { display: flex; gap: 10px; padding: 0 2px; }
.ob-seg {
  flex: 1; display: flex; flex-direction: column; gap: 7px;
  border: 0; background: transparent; padding: 0; margin: 0;
  text-align: left; font: inherit; cursor: default;
}
.ob-seg.clickable { cursor: pointer; }
.ob-seg.clickable:hover .ob-seg-label { color: var(--fg-strong); }
.ob-seg.clickable:hover .ob-seg-bar { background: var(--ink-200); }
.ob-seg-bar { height: 4px; border-radius: 2px; background: var(--ink-150); position: relative; overflow: hidden; }
.ob-seg-fill {
  position: absolute; inset: 0; border-radius: 2px;
  background: var(--mila-accent); transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s var(--ease-out);
}
.ob-seg-label {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: var(--tr-wide); text-transform: uppercase; color: var(--fg-subtle);
  transition: color var(--dur-fast) var(--ease-out);
}
.ob-seg.done .ob-seg-label { color: var(--fg-muted); }
.ob-seg.now .ob-seg-label { color: var(--mila-accent); }

/* ------- Back affordance on confirmation/scheduling ----------- */
.ob-back {
  display: inline-flex; align-items: center; gap: 6px;
  border: 0; background: transparent; padding: 4px 2px; margin-bottom: var(--s-2);
  font-family: var(--font-sans); font-size: 13px; font-weight: 500; color: var(--fg-muted);
  cursor: pointer; align-self: flex-start; white-space: nowrap;
  transition: color var(--dur-fast) var(--ease-out);
}
.ob-back:hover { color: var(--fg-strong); }
.ob-back svg { flex-shrink: 0; }
.ob-proceed-link {
  margin-top: var(--s-5); background: transparent; border-color: transparent;
  color: var(--fg-muted); font-weight: 500; white-space: nowrap;
}
.ob-proceed-link:hover { color: var(--mila-accent); background: var(--mila-accent-soft); }
/* Side-by-side ← Back / Return to homepage → on the call-request screen. */
.ob-done-actions {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  flex-wrap: wrap;
}
.ob-done-actions .ob-proceed-link { margin-top: var(--s-5); }

/* Top-right Back button on the Pricing card (in-card, not the nav bar).
   Vertically centered against the card heading via top:50% + translate. */
.ob-step-back {
  position: absolute; top: 50%; right: 0; transform: translateY(-50%);
  display: inline-flex; align-items: center; gap: 6px;
  border: 0; background: transparent; padding: 4px 0 4px 8px;
  font-family: var(--font-sans); font-size: 13px; font-weight: 500; color: var(--fg-muted);
  cursor: pointer; white-space: nowrap;
  transition: color var(--dur-fast) var(--ease-out);
}
.ob-step-back:hover { color: var(--fg-strong); }
.ob-step-back svg { flex-shrink: 0; }

/* Inline link button used inside the 'finish the Business page' error msg. */
.ob-inline-link {
  display: inline; border: 0; background: transparent; padding: 0;
  font: inherit; color: inherit; cursor: pointer; text-decoration: underline;
  font-weight: 600;
}
.ob-inline-link:hover { color: var(--fg-strong); }

/* Loud, pulsing red badge for the 'finish Business page' prompt so it's
   obviously the next thing to do. */
.ob-error-badge {
  display: flex; align-items: center; gap: 8px;
  margin: 10px 0 4px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fdecec;
  border: 1px solid #f3b5b5;
  color: #a51010;
  font-size: 13.5px; font-weight: 500;
  animation: obErrorPulse 1.8s ease-in-out infinite;
}
.ob-error-badge svg { flex-shrink: 0; }
@keyframes obErrorPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.0); border-color: #f3b5b5; }
  50%      { box-shadow: 0 0 0 6px rgba(220, 38, 38, 0.18); border-color: #e57272; }
}

/* ------- File chips ------------------------------------------- */
.chip-x {
  border: 0; background: transparent; color: var(--fg-subtle);
  font-size: 15px; line-height: 1; cursor: pointer; padding: 0 0 0 2px;
}
.chip-x:hover { color: var(--bear-500); }

/* ------- Number search (loading) ------------------------------- */
.ob-loading { display: flex; flex-direction: column; gap: var(--s-3); padding: var(--s-4) 0 var(--s-2); align-items: flex-start; }
.ob-load-bubble {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-sunken); border: 1px solid var(--border);
  border-radius: 16px; border-bottom-left-radius: 5px;
  padding: 10px 16px; font-size: 14px; color: var(--fg);
  animation: chip-pop 0.32s var(--ease-out) both;
}
.ob-spin {
  width: 14px; height: 14px; flex-shrink: 0; border-radius: 50%;
  border: 2px solid var(--ink-200); border-top-color: var(--mila-accent);
  animation: ob-rotate 0.8s linear infinite;
}
@keyframes ob-rotate { to { transform: rotate(360deg); } }
.ob-spin-light { border-color: rgba(255,255,255,0.4); border-top-color: #fff; }

/* ------- Payment ----------------------------------------------- */
.ob-pay-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: var(--s-10); align-items: start; }
.ob-plan {
  background: var(--bg-sunken); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: var(--s-6);
  display: flex; flex-direction: column; gap: var(--s-4);
}
.ob-price { display: flex; align-items: baseline; gap: 4px; position: relative; }
.ob-price-num {
  font-family: var(--font-mono); font-size: var(--t-56); font-weight: 700;
  color: var(--fg-strong); font-variant-numeric: tabular-nums;
  transition: color var(--dur-fast) var(--ease-out);
}
.ob-price-per { font-size: var(--t-15); color: var(--fg-muted); }
.ob-price-hl {
  color: var(--mila-accent); font-weight: 700;
  background: var(--mila-accent-soft);
  padding: 0 4px; border-radius: 4px;
}
.ob-price.burst .ob-price-num {
  animation: obPriceBurst 1.65s cubic-bezier(.4,1.6,.6,1) 1;
  color: var(--bull-600);
}
@keyframes obPriceBurst {
  0%   { transform: scale(1); }
  35%  { transform: scale(1.18); }
  60%  { transform: scale(0.96); }
  100% { transform: scale(1); }
}
/* Promo confetti — light cousin of the post-payment Confetti canvas. */
.ob-confetti {
  position: absolute; inset: -40px -20px -40px -20px;
  pointer-events: none; z-index: 2;
  width: calc(100% + 40px); height: calc(100% + 80px);
}

/* Left column wrapper: plan card + promo row stacked. */
.ob-pay-left { display: flex; flex-direction: column; gap: 10px; }

/* Promo input row — outside (below) the plan card, left-aligned to it. */
.ob-promo {
  display: grid; grid-template-columns: 1fr auto; gap: 6px;
  align-items: center;
}
.ob-promo-input {
  width: 100%; padding: 7px 10px; border-radius: 7px;
  border: 1px solid var(--border); background: transparent;
  font: inherit; font-size: 13px; font-weight: 400; color: var(--fg);
  transition: border-color var(--dur-fast) var(--ease-out);
}
.ob-promo-input::placeholder { color: var(--fg-subtle); }
.ob-promo-input:focus { outline: none; border-color: var(--mila-accent); }
.ob-promo-input:disabled { opacity: 0.6; }
.ob-promo-apply {
  padding: 7px 12px; border-radius: 7px;
  background: transparent; border: 1px solid var(--border);
  font: inherit; font-size: 12px; font-weight: 500; color: var(--fg-muted);
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
/* Only fill the Apply button once there's actual text to apply. */
.ob-promo-apply:not(:disabled) {
  background: var(--ink-100); color: var(--fg);
}
.ob-promo-apply:hover:not(:disabled) { background: var(--ink-150); border-color: var(--border-strong); }
.ob-promo-apply:disabled { cursor: not-allowed; }
.ob-promo-error { color: #b91c1c; font-size: 12px; margin-top: 4px; display: block; }
.ob-promo-success { color: var(--bull-600); font-size: 12.5px; margin-top: 4px; display: block; font-weight: 500; }

.ob-promo.applied { grid-template-columns: 1fr; }
.ob-promo-applied {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 10px; border-radius: 7px;
  background: #ecfdf5; border: 1px solid #86efac;
  color: #065f46;
  animation: obPromoIn 0.45s cubic-bezier(.4,1.6,.6,1);
}
.ob-promo-applied-text { flex: 1; font-size: 12.5px; font-weight: 400; }
.ob-promo-remove {
  border: 0; background: transparent; font-size: 16px; line-height: 1;
  color: #065f46; cursor: pointer; padding: 0 2px;
}
.ob-promo-remove:hover { color: #022c22; }
@keyframes obPromoIn {
  0%   { opacity: 0; transform: translateY(-6px) scale(0.96); }
  60%  { transform: translateY(0) scale(1.03); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* ------- Payment: plan switch (Premium / Standard) ------------- */
.ob-plan-head { display: flex; align-items: center; justify-content: space-between; gap: var(--s-3); }
.ob-plan-switch {
  flex-shrink: 0; margin-right: -6px;
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--bg-raised); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 6px 11px; font-family: var(--font-sans); font-size: 11px; font-weight: 600;
  color: var(--fg-muted); cursor: pointer;
  transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.ob-plan-switch:hover { border-color: var(--border-strong); background: var(--ink-100); color: var(--fg-strong); }

.ob-plan-off { color: var(--fg-subtle); }
.ob-q-sup { margin-left: 2px; line-height: 0; }
.help-bubble .hb-p { display: block; }
.help-bubble .hb-p + .hb-p { margin-top: 7px; }
.ob-plan-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 0; padding: 0; }
.ob-plan-list li { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; color: var(--fg); line-height: 1.45; }
.ob-plan-list li svg { margin-top: 2px; }
.ob-strike { color: var(--fg-subtle); text-decoration: line-through; }
.ob-free {
  color: var(--bull-600); font-weight: 700; text-transform: uppercase;
  font-size: 11px; letter-spacing: var(--tr-wide); font-family: var(--font-mono);
}

/* ------- Payment: start-mode selection ------------------------ */
.ob-mode { display: flex; flex-direction: column; gap: 8px; margin-bottom: var(--s-2); }
.ob-mode-opt {
  display: flex; align-items: flex-start; gap: 11px; text-align: left;
  background: var(--bg-raised); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 12px 14px; cursor: pointer;
  transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.ob-mode-opt:hover:not(.active) { border-color: var(--border-strong); background: var(--ink-100); }
.ob-mode-opt.active { border-color: var(--mila-accent); background: var(--mila-accent-soft); }
.ob-mode-dot {
  width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
  border: 2px solid var(--border-strong); background: var(--bg-raised);
  transition: border-color var(--dur-fast) var(--ease-out);
}
.ob-mode-opt.active .ob-mode-dot { border-color: var(--mila-accent); border-width: 5px; }
.ob-mode-text { display: flex; flex-direction: column; gap: 2px; }
.ob-mode-title { font-size: 14px; font-weight: 600; color: var(--fg-strong); }
.ob-mode-sub { font-size: 12px; color: var(--fg-muted); line-height: 1.4; }
.ob-callbox { display: flex; flex-direction: column; gap: var(--s-4); padding-top: var(--s-2); }
.ob-callbox p { font-size: 14px; color: var(--fg-muted); line-height: var(--lh-base); text-wrap: pretty; }

/* ------- Payment: method tabs (card / PayPal) ------------------ */
.ob-paytabs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.ob-paytab {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--bg-raised); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 11px 10px; font-family: var(--font-sans); font-size: 13px; font-weight: 600;
  color: var(--fg-muted); cursor: pointer;
  transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.ob-paytab:hover:not(.active) { border-color: var(--border-strong); background: var(--ink-100); }
.ob-paytab.active { border-color: var(--mila-accent); background: var(--mila-accent-soft); color: var(--fg-strong); }
.ob-paytab svg { width: 18px; height: 18px; }
.ob-paypal-wordmark { font-style: italic; font-weight: 800; letter-spacing: -0.01em; }
.ob-paypal { display: flex; flex-direction: column; gap: var(--s-4); }
.ob-paypal-copy { font-size: 14px; color: var(--fg-muted); line-height: var(--lh-base); text-wrap: pretty; }
.ob-paypal-btn { width: 100%; justify-content: center; background: #FFC439; color: #003087; border-color: #E6A93C; }
.ob-paypal-btn:hover:not(:disabled) { background: #F0B72E; }
.ob-paypal-btn:active:not(:disabled) { background: #E8AF2A; box-shadow: none; }

/* Apple Pay tab + checkout button — black pill, white glyph, brand-correct. */
.ob-applepay-wordmark {
  display: inline-flex; align-items: center; gap: 4px;
  font-weight: 600; letter-spacing: -0.01em;
}
.ob-applepay-wordmark svg { width: 14px; height: 16px; }
.ob-applepay-btn {
  width: 100%; justify-content: center;
  background: #000; color: #fff; border-color: #000;
  display: inline-flex; align-items: center;
  font-weight: 500; letter-spacing: -0.01em;
}
.ob-applepay-btn:hover:not(:disabled) { background: #222; border-color: #222; }
.ob-applepay-btn:active:not(:disabled) { background: #1a1a1a; box-shadow: none; }
.ob-applepay-btn svg { color: #fff; }

/* Stripe CardElement host — matches the rest of the .field inputs. */
.ob-card-host {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  min-height: 44px;
  transition: border-color var(--dur-fast) var(--ease-out);
}
.ob-card-host.StripeElement--focus,
.ob-card-host.StripeElement--complete { border-color: var(--mila-accent); }
.ob-card-host.StripeElement--invalid { border-color: #b91c1c; }
.ob-checkout { display: flex; flex-direction: column; gap: var(--s-4); }
.ob-card-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
.ob-stripe-note {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  font-size: var(--t-12); color: var(--fg-subtle);
}

/* ------- Confirmation + scheduling ----------------------------- */
.ob-done-head {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: var(--s-3); padding: var(--s-4) 0 var(--s-6);
}
.ob-done-badge {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--bull-50); color: var(--bull-600);
  display: flex; align-items: center; justify-content: center;
  animation: chip-pop 0.4s var(--ease-out) both;
}
.ob-done-head p {
  font-size: var(--t-15); color: var(--fg-muted); max-width: 48ch;
  line-height: var(--lh-loose); text-wrap: pretty;
}
.ob-divider {
  display: flex; align-items: center; gap: var(--s-4);
  color: var(--fg-subtle); font-size: var(--t-12); font-family: var(--font-mono);
  letter-spacing: var(--tr-wide); text-transform: uppercase;
  margin: var(--s-2) 0 var(--s-5);
}
.ob-divider::before, .ob-divider::after { content: ""; flex: 1; height: 1px; background: var(--border); }
.ob-sched { display: flex; flex-direction: column; gap: var(--s-4); }
.ob-sched-copy { font-size: 14px; color: var(--fg-muted); line-height: var(--lh-base); text-wrap: pretty; }
.ob-days, .ob-times { display: flex; flex-wrap: wrap; gap: 8px; }
.ob-chip {
  font-family: var(--font-sans); font-size: 13px; font-weight: 500; color: var(--fg);
  background: var(--bg-raised); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 8px 13px; cursor: pointer;
  transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.ob-chip:hover:not(:disabled):not(.active) { border-color: var(--border-strong); background: var(--ink-100); }
.ob-chip.active { border-color: var(--mila-accent); background: var(--mila-accent-soft); color: var(--mila-accent); font-weight: 600; }
.ob-chip:disabled { opacity: 0.35; cursor: default; }
.ob-chip-time { font-family: var(--font-mono); font-size: 12px; }
.ob-booked {
  display: flex; align-items: flex-start; gap: 10px;
  background: var(--bull-50); border: 1px solid var(--bull-100);
  border-radius: var(--r-md); padding: var(--s-4) var(--s-5);
  font-size: 14px; color: var(--fg); line-height: 1.5;
}

/* ------- Full-window booking celebration ----------------------- */
.ob-celebrate {
  /* Sit below the sticky 56-px nav so the EZText wordmark stays visible on
     the 'You're set up' / booking-confirmed screens. */
  position: fixed; top: 56px; right: 0; bottom: 0; left: 0; z-index: 90;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg); padding: var(--s-6); overflow: hidden;
}
.ob-confetti { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.ob-celebrate-back {
  position: absolute; top: var(--s-6); left: var(--s-6); z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--border); background: var(--bg-raised); border-radius: var(--r-md);
  padding: 8px 12px; font-family: var(--font-sans); font-size: 13px; font-weight: 500; color: var(--fg-muted);
  cursor: pointer;
  transition: border-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.ob-celebrate-back:hover { border-color: var(--border-strong); color: var(--fg-strong); background: var(--ink-100); }
.ob-celebrate-inner {
  position: relative; z-index: 1; text-align: center; max-width: 480px;
  display: flex; flex-direction: column; align-items: center; gap: var(--s-3);
}
.ob-done-badge-lg { width: 72px; height: 72px; }
.ob-celebrate-title {
  font-size: var(--t-32); font-weight: 700; color: var(--fg-strong);
  letter-spacing: var(--tr-tight); margin-top: var(--s-1);
}
.ob-celebrate-when {
  font-family: var(--font-mono); font-size: var(--t-18); font-weight: 600;
  color: var(--accent); letter-spacing: var(--tr-mono);
}
.ob-celebrate-copy {
  font-size: var(--t-15); color: var(--fg-muted);
  line-height: var(--lh-loose); max-width: 42ch; text-wrap: pretty;
}
.ob-celebrate-back { margin-top: var(--s-5); }

@media (max-width: 760px) {
  .ob-pay-grid { grid-template-columns: 1fr; gap: 16px; }
  /* When "Speak with our team first" is chosen, drop the plan card + promo
     row from the layout entirely so the mode picker + scheduling box ride
     to the top of the viewport. */
  .ob-pay-grid.call-mode .ob-pay-left { display: none; }
  .ob-celebrate-title { font-size: var(--t-28); }
  /* Compact the subscription card so the whole step fits the screen. */
  .ob-page { padding: 12px 0 32px; }
  .demo-card { padding: 16px 16px; }
  .ob-card-head .ob-title { font-size: 22px; }
  .ob-plan { padding: 14px 12px; }
  .ob-plan-head .t-eyebrow { font-size: 12px; }
  .ob-plan-switch { font-size: 12px; padding: 6px 10px; }
  .ob-price-num { font-size: 32px; }
  .ob-plan-list li { font-size: 13px; line-height: 1.35; }
  /* Lock the height of the swapping bullet so toggling Standard/Premium
     doesn't reflow the rest of the card. The Standard variant (with the
     popover sup) is the taller of the two. */
  .ob-plan-list li:last-child { min-height: 44px; }
  .ob-plan-list li.ob-plan-off { min-height: 44px; }
  /* Checkout side: shrink fields and gaps. */
  .ob-checkout { gap: 10px; }
  .ob-mode-opt { padding: 10px 12px; }
  .ob-mode-title { font-size: 14px; }
  .ob-mode-sub { font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .ob-load-bubble, .ob-done-badge { animation: none; }
  .ob-spin { animation: none; }
}

/* ── Next button "Skip to Pricing" hover-morph ──────────────── */
.ob-next {
  min-width: 140px;
  min-height: 52px;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}
.ob-next-skip {
  background: #a8a8a8;
  color: #fff;
  border: 1px solid #9a9a9a;
  box-shadow: 0 1px 2px rgba(0,0,0,0.06);
  padding: 6px 18px;
}
.ob-next-skip:hover {
  background: #9a9a9a;
  color: #fff;
}
.ob-next-skip-stack {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  gap: 2px;
}
.ob-next-skip-small {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.95;
}
.ob-next-skip-big {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.005em;
}
