/* ─── MOBILE ONBOARDING ──────────────────────────────────── */

.mobile-pitch-toggle {
  display: inline-flex;
  padding: 4px;
  background: var(--paper-warm);
  border-radius: 999px;
  margin-top: 22px;
}
.m-mode-btn {
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  color: var(--muted);
  transition: all .12s;
  white-space: nowrap;
}
.m-mode-btn.active { background: #fff; color: var(--ink); font-weight: 600; box-shadow: var(--shadow-sm); }

.m-onb {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  background: var(--bg);
}

.m-onb-top {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 16px 12px;
}
.m-onb-back {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  color: var(--ink);
}
.m-onb-progress {
  flex: 1; height: 3px;
  background: var(--hairline);
  border-radius: 999px;
  overflow: hidden;
}
.m-onb-progress-fill {
  height: 100%;
  background: var(--brand-copper);
  border-radius: 999px;
  transition: width .3s;
}

.m-onb-content {
  flex: 1; overflow-y: auto;
  padding: 16px 20px 24px;
  display: flex; flex-direction: column;
}

.mo-screen { display: flex; flex-direction: column; gap: 14px; min-height: 100%; }
.mo-screen.welcome { gap: 10px; }

.mo-welcome-art {
  width: 200px; height: 200px;
  margin: 8px auto;
  display: grid; place-items: center;
}
.mo-welcome-art svg { width: 100%; height: 100%; }

.mo-greeting-eyebrow {
  font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--brand-copper-deep);
  text-align: center;
}
.mo-eyebrow {
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--muted);
}
.mo-h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 38px;
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 8px 0;
  text-align: center;
}
.mo-h1 em { font-style: italic; color: var(--brand-copper-deep); }
.mo-h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.005em;
  margin: 0;
}
.mo-h2-result { text-align: center; font-size: 28px; }
.mo-h2-result em { font-style: italic; color: var(--brand-copper-deep); }

.mo-sub {
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}

.mo-field { display: flex; flex-direction: column; gap: 6px; }
.mo-foot { margin-top: auto; padding-top: 18px; }

.mo-sources { display: flex; flex-direction: column; gap: 6px; padding: 12px 14px; background: var(--paper-soft); border-radius: 10px; }
.mo-source { display: flex; gap: 8px; align-items: center; color: var(--ink-soft); font-size: 12.5px; }

.mo-otp { display: flex; justify-content: center; gap: 10px; padding: 28px 0; }
.mo-otp-input {
  width: 52px; height: 64px;
  border: 2px solid var(--hairline);
  border-radius: 12px;
  background: #fff;
  text-align: center;
  font-size: 24px; font-family: var(--font-mono); font-weight: 600;
  outline: none;
}
.mo-otp-input:focus { border-color: var(--brand-teal); }

.mo-income-input {
  margin-top: 14px;
  padding: 14px 16px;
  background: var(--paper-warm);
  border-radius: 14px;
  display: flex; align-items: baseline; gap: 8px;
}
.omr-prefix { font-size: 13px; color: var(--muted); font-weight: 500; }
.omr-num {
  flex: 1;
  border: 0; background: transparent;
  font-family: var(--font-serif);
  font-size: 36px;
  letter-spacing: -0.01em;
  outline: none;
}

.mo-band-track {
  height: 5px;
  background: var(--hairline);
  border-radius: 999px;
  position: relative;
}
.mo-band-fill {
  position: absolute; top: -3px;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--brand-copper);
  box-shadow: 0 0 0 4px rgba(234,160,122,0.2);
  transition: left .15s;
}

.mo-preview {
  margin-top: 14px;
  padding: 14px;
  background: linear-gradient(135deg, var(--brand-teal), #1b4149);
  color: #fff;
  border-radius: 12px;
  display: flex; justify-content: space-between;
}
.mo-preview .muted { color: rgba(255,255,255,0.7); }

.mo-q {
  padding: 14px;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 12px;
}

.mo-scan-art {
  position: relative;
  width: 120px; height: 120px;
  margin: 12px auto;
  display: grid; place-items: center;
}
.mo-orbit {
  position: absolute;
  border: 1.5px solid var(--brand-copper);
  border-radius: 50%;
  opacity: 0.3;
}
.mo-orbit.r1 { width: 100%; height: 100%; animation: scanRing 3s infinite; }
.mo-orbit.r2 { width: 70%; height: 70%; animation: scanRing 3s infinite 0.4s; }
.mo-orbit.r3 { width: 40%; height: 40%; animation: scanRing 3s infinite 0.8s; }
.mo-orbit-center {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--brand-teal); color: #fff;
  display: grid; place-items: center;
  position: relative; z-index: 1;
}

.mo-scan-list { display: flex; flex-direction: column; gap: 5px; margin-top: 16px; }
.mo-scan-row {
  display: flex; gap: 10px; align-items: center;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 10px;
  transition: all .2s;
}
.mo-scan-row.pending { opacity: 0.5; }
.mo-scan-row.done { background: rgba(27,65,73,0.04); }

.mo-result-ring {
  width: 80px; height: 80px;
  margin: 6px auto;
  position: relative;
}
.mo-ring-inner {
  position: absolute; inset: 0;
  display: grid; place-items: center; text-align: center;
}

.mo-matches { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.mo-match {
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 12px;
}
.mo-match.featured { border-color: var(--brand-copper); box-shadow: 0 0 0 2px rgba(234,160,122,0.15); }
