/* ============================================================
   Business onboarding — choice screen + registration wizards
   ============================================================ */

.choice-shell {
  width: 100%;
  max-width: 1080px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  box-shadow: var(--sh-3);
}

.choice-head {
  padding: 32px 44px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.choice-body {
  padding: 8px 44px 36px;
}
.choice-body h1 {
  font-family: var(--font-display);
  font-size: 38px;
  letter-spacing: -0.035em;
  line-height: 1.05;
  font-weight: 600;
  margin: 8px 0 8px;
}
.choice-body .lead {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.55;
  margin-bottom: 28px;
  max-width: 560px;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.choice-card {
  background: var(--surface-2);
  border: 1.5px solid var(--line);
  border-radius: var(--r-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: border-color 120ms ease, transform 120ms ease, box-shadow 120ms ease;
  position: relative;
}
.choice-card:hover {
  border-color: var(--text);
  transform: translateY(-2px);
  box-shadow: var(--sh-2);
}
.choice-card.recommended {
  background: var(--dark);
  color: var(--text-on-dark);
  border-color: var(--dark);
}
.choice-card.recommended:hover { border-color: var(--signal); }

.choice-card .ribbon {
  position: absolute;
  top: 16px; right: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: var(--r-pill);
  background: var(--signal);
  color: var(--signal-on);
}

.choice-card .ic {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--line);
  display: grid; place-items: center;
}
.choice-card.recommended .ic {
  background: rgba(247, 246, 242, 0.08);
  border-color: rgba(247, 246, 242, 0.12);
}
.choice-card .ic .ms { font-size: 28px; color: var(--text); }
.choice-card.recommended .ic .ms { color: var(--signal); }

.choice-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.choice-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
}
.choice-card.recommended p { color: rgba(247, 246, 242, 0.7); }

.choice-card ul {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.choice-card li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.4;
}
.choice-card.recommended li { color: rgba(247, 246, 242, 0.78); }
.choice-card li .ms { font-size: 14px; color: var(--go); margin-top: 1px; flex-shrink: 0; }
.choice-card.recommended li .ms { color: var(--signal); }

.choice-card .cta {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
}
.choice-card.recommended .cta { border-top-color: rgba(247, 246, 242, 0.12); }
.choice-card .cta .stat {
  font-family: var(--font-mono);
  color: var(--text-muted);
  font-weight: 500;
}
.choice-card.recommended .cta .stat { color: rgba(247, 246, 242, 0.5); }
.choice-card .cta .arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.choice-card .cta .arrow .ms { font-size: 16px; }

.choice-foot {
  padding: 18px 44px;
  border-top: 1px solid var(--line);
  background: var(--surface-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}
.choice-foot a { color: var(--text); font-weight: 500; }

/* ============= REGISTRATION WIZARD ============= */
.reg-content {
  padding: 40px 56px 120px;
  max-width: 760px;
  overflow-y: auto;
}

.reg-step-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 18px;
  font-family: var(--font-mono);
}
.reg-step-meta strong { color: var(--text); font-weight: 600; }

.reg-content h1 {
  font-family: var(--font-display);
  font-size: 40px;
  letter-spacing: -0.035em;
  line-height: 1.05;
  font-weight: 600;
  margin-bottom: 12px;
}
.reg-content .lead {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.55;
  margin-bottom: 32px;
  max-width: 560px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 12px;
}
.field-grid.cols-1 { grid-template-columns: 1fr; }
.field-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; }

.field-group { display: flex; flex-direction: column; gap: 6px; }
.field-group .field-span-2 { grid-column: span 2; }
.field-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.field-label.req::after { content: ' *'; color: var(--busy); }
.field-input {
  padding: 12px 14px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r-md);
  background: var(--surface);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  width: 100%;
  outline: 0;
  transition: border-color 120ms ease;
}
.field-input:focus { border-color: var(--text); }
.field-input::placeholder { color: var(--text-faint); }
.field-input.mono { font-family: var(--font-mono); letter-spacing: 0; }
.field-hint {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.field-hint .ms { font-size: 14px; color: var(--info); }
.field-hint.verified .ms { color: var(--go); }
.field-hint.verified { color: var(--go); font-weight: 500; }

.section-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 28px 0 4px;
  padding-top: 22px;
  border-top: 1px dashed var(--line);
}
.section-title:first-of-type { padding-top: 0; border-top: 0; margin-top: 0; }
.section-title-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* radio cards */
.radio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.radio-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: border-color 120ms ease, background 120ms ease;
}
.radio-card:hover { border-color: var(--text); }
.radio-card.selected {
  background: var(--dark);
  color: var(--text-on-dark);
  border-color: var(--dark);
}
.radio-card .ms { font-size: 18px; color: var(--text); }
.radio-card.selected .ms { color: var(--signal); }
.radio-card .n { font-size: 14px; font-weight: 600; letter-spacing: -0.01em; }
.radio-card .d { font-size: 11px; color: var(--text-muted); }
.radio-card.selected .d { color: rgba(247, 246, 242, 0.6); }

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.4;
  cursor: pointer;
}
.checkbox-row .check {
  width: 20px; height: 20px;
  border-radius: 4px;
  border: 1.5px solid var(--line-strong);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--surface);
}
.checkbox-row.checked .check { background: var(--dark); border-color: var(--dark); color: var(--signal); }
.checkbox-row .check .ms { font-size: 14px; font-variation-settings: 'wght' 700; }
.checkbox-row strong { color: var(--text); font-weight: 600; }
.checkbox-row a { text-decoration: underline; color: var(--text); }
