/* ============================================================
   Protect & Assist — Guided Setup ("onboarding") wizard
   Scoped under .ob-* so it never collides with app.css (.pa-*)
   ============================================================ */

:root {
  --ob-ink: #0b1b24;
  --ob-body: #45606b;
  --ob-muted: #7c94a0;
  --ob-teal: #0e7490;
  --ob-teal-bright: #0891b2;
  --ob-teal-deep: #0b3b4a;
  --ob-navy: #062733;
  --ob-amber: #f59e0b;
  --ob-amber-ink: #92610a;
  --ob-amber-soft: #fef6e6;
  --ob-green: #059669;
  --ob-green-soft: #e7f6ef;
  --ob-surface: #ffffff;
  --ob-bg: #eef4f6;
  --ob-border: #e0eaee;
  --ob-border-strong: #cfdde2;
  --ob-rail-text: rgba(255, 255, 255, 0.82);
  --ob-shadow-sm: 0 1px 2px rgba(11, 27, 36, 0.06);
  --ob-shadow-md: 0 12px 30px -14px rgba(11, 59, 74, 0.35);
  --ob-shadow-lg: 0 30px 60px -28px rgba(6, 39, 51, 0.55);
  --ob-radius: 18px;
  --ob-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

.ob-body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ob-body);
  background:
    radial-gradient(1200px 600px at 12% -8%, #e3f0f3 0%, rgba(227, 240, 243, 0) 55%),
    radial-gradient(900px 500px at 105% 0%, #eaf3ee 0%, rgba(234, 243, 238, 0) 50%),
    var(--ob-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---------- Shell ---------- */
.ob-shell {
  display: grid;
  grid-template-columns: 340px 1fr;
  height: 100vh;
}
/* on desktop the app owns the viewport; only the step content scrolls */
@media (min-width: 901px) {
  .ob-body { overflow: hidden; }
}

/* ============================================================
   Left journey rail  — the signature element
   ============================================================ */
.ob-rail {
  position: relative;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2.25rem 1.9rem 2rem;
  color: var(--ob-rail-text);
  background:
    linear-gradient(160deg, var(--ob-teal-deep) 0%, var(--ob-navy) 78%);
}

/* soft interlocking-shield watermark */
.ob-rail::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -60px;
  width: 320px;
  height: 320px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.06;
  pointer-events: none;
}

.ob-rail-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: #fff;
  position: relative;
  z-index: 1;
}
.ob-rail-brand img {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  box-shadow: 0 6px 18px -6px rgba(0, 0, 0, 0.5);
}
.ob-rail-brand b {
  display: block;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.ob-rail-brand span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

/* stepper */
.ob-steps {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
}
.ob-step {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  padding: 0.6rem 0.7rem;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--ob-rail-text);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s var(--ob-ease);
}
.ob-step:hover { background: rgba(255, 255, 255, 0.06); }
.ob-step:focus-visible {
  outline: 2px solid var(--ob-amber);
  outline-offset: 2px;
}

/* the connecting line between node centers */
.ob-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 1.58rem;         /* center of the 30px node (0.7rem pad + 15px) */
  top: 2.35rem;
  bottom: -0.15rem;
  width: 2px;
  background: rgba(255, 255, 255, 0.16);
}
.ob-step.is-done:not(:last-child)::before { background: rgba(52, 211, 153, 0.55); }

.ob-node {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  transition: all 0.25s var(--ob-ease);
}
.ob-node svg { width: 16px; height: 16px; }

.ob-step-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
}
.ob-step-sub {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 1px;
}

.ob-step.is-active .ob-node {
  background: var(--ob-amber);
  border-color: var(--ob-amber);
  color: #3a2606;
  box-shadow: 0 0 0 5px rgba(245, 158, 11, 0.2);
}
.ob-step.is-done .ob-node {
  background: #34d399;
  border-color: #34d399;
  color: #05341f;
}
.ob-step:not(.is-active):not(.is-done) .ob-step-label { color: rgba(255, 255, 255, 0.78); }

.ob-rail-foot {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.15rem;
}
.ob-reassure {
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}
.ob-trust {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.85rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
}
.ob-trust svg { width: 14px; height: 14px; }

/* ============================================================
   Right stage
   ============================================================ */
.ob-main {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100vh;
  min-height: 0;
  min-width: 0;
}

.ob-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 2.5rem 0.5rem;
}
.ob-mobile-step {
  display: none;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ob-teal);
}
.ob-exit {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--ob-muted);
  text-decoration: none;
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.ob-exit:hover { color: var(--ob-ink); background: rgba(11, 27, 36, 0.04); }
.ob-exit svg { width: 15px; height: 15px; }

/* thin progress bar */
.ob-progress {
  height: 4px;
  margin: 0.4rem 2.5rem 0;
  background: rgba(11, 59, 74, 0.1);
  border-radius: 999px;
  overflow: hidden;
}
.ob-progress-fill {
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ob-teal-bright), var(--ob-teal));
  transition: width 0.5s var(--ob-ease);
}

.ob-stage {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  display: flex;
  align-items: flex-start;
  padding: 2.2rem 2.5rem 1.5rem;
}
.ob-stage-inner {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
}

/* step-change animation */
@keyframes ob-rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.ob-anim { animation: ob-rise 0.45s var(--ob-ease) both; }

.ob-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ob-teal);
}
.ob-eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--ob-amber);
}

.ob-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0 0.6rem;
}
.ob-medallion {
  flex: 0 0 auto;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--ob-teal-deep);
  background: linear-gradient(155deg, #dff3f6, #eafaf3);
  border: 1px solid #d3ebef;
  box-shadow: inset 0 1px 0 #fff, var(--ob-shadow-sm);
}
.ob-medallion svg { width: 30px; height: 30px; }

.ob-title {
  margin: 0;
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-optical-sizing: auto;
  font-weight: 560;
  font-size: clamp(1.85rem, 1.2rem + 2vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ob-ink);
}

.ob-lede {
  margin: 0.35rem 0 0;
  font-size: 1.06rem;
  line-height: 1.65;
  color: var(--ob-body);
}

/* checklist of "what you'll set up" */
.ob-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}
.ob-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.98rem;
  line-height: 1.45;
  color: var(--ob-ink);
}
.ob-list .ob-tick {
  flex: 0 0 auto;
  margin-top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  background: var(--ob-green-soft);
  color: var(--ob-green);
}
.ob-list .ob-tick svg { width: 14px; height: 14px; }

/* "why it matters" note */
.ob-why {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.5rem;
  padding: 0.95rem 1.1rem;
  border-radius: 14px;
  background: var(--ob-amber-soft);
  border: 1px solid #f6e2b8;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ob-amber-ink);
}
.ob-why svg { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 1px; }
.ob-why b { color: #7a5108; }

/* CTA row inside a step */
.ob-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

/* ---------- Buttons ---------- */
.ob-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.15rem;
  border-radius: 11px;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.12s var(--ob-ease), box-shadow 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
}
.ob-btn:active { transform: translateY(1px); }
.ob-btn svg { width: 17px; height: 17px; }
.ob-btn-lg { padding: 0.85rem 1.4rem; font-size: 1rem; }

.ob-btn-primary {
  color: #fff;
  background: linear-gradient(180deg, var(--ob-teal-bright), var(--ob-teal));
  box-shadow: 0 10px 22px -12px rgba(14, 116, 144, 0.9);
}
.ob-btn-primary:hover { box-shadow: 0 14px 26px -12px rgba(14, 116, 144, 0.95); filter: brightness(1.04); }

.ob-btn-soft {
  color: var(--ob-teal-deep);
  background: #e7f3f5;
  border-color: #d3e9ed;
}
.ob-btn-soft:hover { background: #dcedf0; }
.ob-btn-soft.is-done {
  color: var(--ob-green);
  background: var(--ob-green-soft);
  border-color: #c5e9d7;
}

.ob-btn-ghost {
  color: var(--ob-muted);
  background: transparent;
}
.ob-btn-ghost:hover { color: var(--ob-ink); background: rgba(11, 27, 36, 0.05); }

.ob-btn:focus-visible {
  outline: 2px solid var(--ob-teal);
  outline-offset: 2px;
}

/* ---------- Welcome (step 0) ---------- */
.ob-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--ob-border);
  box-shadow: var(--ob-shadow-sm);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ob-teal);
}
.ob-hero-badge svg { width: 15px; height: 15px; }

.ob-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.75rem;
}
.ob-pillar {
  padding: 1.15rem;
  border-radius: 16px;
  background: var(--ob-surface);
  border: 1px solid var(--ob-border);
  box-shadow: var(--ob-shadow-sm);
}
.ob-pillar .ob-pi {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  margin-bottom: 0.7rem;
}
.ob-pillar .ob-pi svg { width: 22px; height: 22px; }
.ob-pi--shield { background: #e0f2fe; color: #0369a1; }
.ob-pi--heart { background: #fee2e6; color: #be1846; }
.ob-pillar h3 { margin: 0 0 0.25rem; font-size: 1rem; color: var(--ob-ink); }
.ob-pillar p { margin: 0; font-size: 0.88rem; line-height: 1.5; color: var(--ob-body); }

.ob-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.6rem;
  font-size: 0.85rem;
  color: var(--ob-muted);
}
.ob-meta span { display: inline-flex; align-items: center; gap: 0.4rem; }
.ob-meta svg { width: 15px; height: 15px; color: var(--ob-teal); }

/* ---------- Done (last step) ---------- */
.ob-done-badge {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ob-green-soft);
  color: var(--ob-green);
  margin-bottom: 0.4rem;
  animation: ob-pop 0.5s var(--ob-ease) both;
}
.ob-done-badge svg { width: 38px; height: 38px; }
@keyframes ob-pop {
  0% { transform: scale(0.6); opacity: 0; }
  60% { transform: scale(1.08); }
  100% { transform: scale(1); opacity: 1; }
}
.ob-recap {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.ob-recap li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  background: var(--ob-surface);
  border: 1px solid var(--ob-border);
  font-size: 0.94rem;
  color: var(--ob-ink);
}
.ob-recap .ob-rk {
  width: 22px; height: 22px; border-radius: 7px; display: grid; place-items: center;
  background: var(--ob-green-soft); color: var(--ob-green); flex: 0 0 auto;
}
.ob-recap .ob-rk.pending { background: #eef2f4; color: var(--ob-muted); }
.ob-recap .ob-rk svg { width: 13px; height: 13px; }
.ob-recap a { margin-left: auto; font-size: 0.82rem; font-weight: 600; color: var(--ob-teal); text-decoration: none; }
.ob-recap a:hover { text-decoration: underline; }

/* ---------- Footer nav ---------- */
.ob-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem 1.75rem;
  border-top: 1px solid var(--ob-border);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
}
.ob-nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .ob-shell {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }
  .ob-main { height: auto; }
  .ob-rail {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1.1rem;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .ob-rail::after { display: none; }
  .ob-rail-foot { display: none; }
  .ob-rail-brand { flex: 0 0 auto; }
  .ob-rail-brand span { display: none; }
  .ob-steps {
    flex-direction: row;
    gap: 0.4rem;
    flex: 1;
  }
  .ob-step { width: auto; padding: 0.4rem; }
  .ob-step:not(:last-child)::before { display: none; }
  .ob-step-text { display: none; }
  .ob-topbar { padding: 0.9rem 1.25rem 0.4rem; }
  .ob-mobile-step { display: block; }
  .ob-progress { margin: 0.35rem 1.25rem 0; }
  .ob-stage { padding: 1.6rem 1.25rem 1rem; }
  .ob-nav { padding: 0.9rem 1.25rem 1.4rem; }
}
@media (max-width: 560px) {
  .ob-pillars { grid-template-columns: 1fr; }
  .ob-head { gap: 0.8rem; }
  .ob-medallion { width: 52px; height: 52px; }
  .ob-medallion svg { width: 26px; height: 26px; }
  .ob-cta-row .ob-btn { width: 100%; }
  .ob-nav-right { gap: 0.4rem; }
  .ob-btn-ghost.ob-skip-label span { display: none; }
}

/* ============================================================
   Embedded setup forms — the wizard performs real actions
   ============================================================ */
.ob-form { margin-top: 1.5rem; display: grid; gap: 1.1rem; }
.ob-field { display: grid; gap: 0.35rem; }
.ob-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ob-ink);
}
.ob-input {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1.5px solid var(--ob-border-strong);
  border-radius: 10px;
  font: inherit;
  font-size: 1rem;
  color: var(--ob-ink);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.ob-input:focus {
  outline: none;
  border-color: var(--ob-teal-bright);
  box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.15);
}
.ob-input::placeholder { color: #a4b6bf; }
textarea.ob-input { resize: vertical; min-height: 3.2rem; }
.ob-hint {
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--ob-muted);
}
.ob-inline {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.ob-inline .ob-input { flex: 1 1 220px; }
.ob-select-narrow { flex: 0 1 140px !important; }

/* save bar + status */
.ob-savebar { display: flex; align-items: center; gap: 0.8rem; flex-wrap: wrap; }
.ob-savemsg { font-size: 0.88rem; font-weight: 600; }
.ob-savemsg.is-ok { color: var(--ob-green); }
.ob-savemsg.is-err { color: #dc2626; }

/* radio choice cards */
.ob-choices { display: grid; gap: 0.5rem; margin-top: 0.25rem; }
.ob-choice {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.65rem;
  align-items: center;
  padding: 0.8rem 0.95rem;
  border: 1.5px solid var(--ob-border-strong);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
.ob-choice:hover { border-color: var(--ob-teal-bright); }
.ob-choice.is-picked {
  border-color: var(--ob-teal);
  background: #f2fafb;
  box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.12);
}
.ob-choice input {
  grid-row: 1 / span 2;
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--ob-teal);
}
.ob-choice-title { font-weight: 600; font-size: 0.95rem; color: var(--ob-ink); }
.ob-choice-desc { grid-column: 2; font-size: 0.83rem; color: var(--ob-body); line-height: 1.4; }

/* toggle-style row */
.ob-switchrow {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.9rem 1rem;
  border: 1.5px solid var(--ob-border-strong);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}
.ob-switchrow input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 2px;
  accent-color: var(--ob-teal);
  flex: 0 0 auto;
}
.ob-switchrow .ob-choice-desc { display: block; margin-top: 1px; }

/* protected number showcase */
.ob-numbercard {
  margin-top: 1.4rem;
  padding: 1.15rem 1.3rem;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(150deg, var(--ob-teal) 0%, var(--ob-teal-deep) 90%);
  box-shadow: var(--ob-shadow-md);
}
.ob-numbercard.is-pending { background: linear-gradient(150deg, #64748b, #334155); }
.ob-numlabel {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
.ob-num {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.6rem, 1rem + 2.4vw, 2.3rem);
  font-weight: 560;
  letter-spacing: 0.01em;
  margin-top: 0.15rem;
}
.ob-numflow {
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}

/* small ON pill */
.ob-pillon {
  display: inline-block;
  margin-left: 0.4rem;
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
  background: var(--ob-green-soft);
  color: var(--ob-green);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  vertical-align: 1px;
}

/* loading state */
.ob-loading {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 3rem 0;
  color: var(--ob-muted);
  font-size: 0.95rem;
}
.ob-spin {
  width: 1.2rem;
  height: 1.2rem;
  border: 2px solid var(--ob-border-strong);
  border-top-color: var(--ob-teal);
  border-radius: 50%;
  animation: ob-spinner 0.8s linear infinite;
}
@keyframes ob-spinner { to { transform: rotate(360deg); } }

@media (max-width: 560px) {
  .ob-inline { flex-direction: column; }
  .ob-inline .ob-input, .ob-select-narrow { flex: 1 1 auto !important; width: 100%; }
  .ob-inline .ob-btn { width: 100%; }
}

/* ============================================================
   Accessibility
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .ob-progress-fill { transition: none; }
}
