/* /on-the-map/ — light self-ID form. Tokens only; no raw hex, no rainbow. */
.otm { max-width: var(--maxw-wide); margin: 0 auto; padding: 26px var(--gutter) 72px; }
.otm .display { margin-top: 4px; }
.otm .sub { max-width: 52ch; margin-bottom: 24px; }
#otm-form { display: flex; flex-direction: column; gap: 16px; max-width: 560px; }

.otm-seg { display: flex; gap: 8px; border: 0; padding: 0; margin: 0; }
.otm-seg__opt { flex: 1; }
.otm-seg__opt input { position: absolute; opacity: 0; pointer-events: none; }
.otm-seg__opt span {
  display: block; text-align: center; padding: 10px 12px; border: 1px solid var(--line);
  border-radius: var(--r-md); background: var(--surface); cursor: pointer; font-weight: 500;
}
.otm-seg__opt input:checked + span { border-color: var(--accent); background: var(--accent-wash); color: var(--accent-strong); }
.otm-seg__opt input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }

.otm-row { display: flex; gap: 12px; }
.otm-row .field { flex: 1; }

.otm-check { display: flex; align-items: flex-start; gap: 8px; font-weight: 400; }
.otm-check input { margin-top: 3px; }
.otm-consents { display: flex; flex-direction: column; gap: 10px; padding: 14px; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--surface); }

/* the frame + chevron come from the canonical details.disclosure (body.mktg variant); otm-more only tunes the inner content */
.otm-more__note { font-size: 14px; color: var(--muted); margin: 0 0 12px; }
.otm-more .field { margin-bottom: 12px; }

.otm-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.otm-chip {
  padding: 6px 12px; border: 1px solid var(--line); border-radius: var(--r-pill);
  background: var(--surface); cursor: pointer; font-size: 14px;
}
.otm-chip.is-on { border-color: var(--accent); background: var(--accent-wash); color: var(--accent-strong); }
.otm-chip:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.otm-done { margin-top: 8px; max-width: 560px; }
.otm-done__h { margin: 0 0 6px; }
.otm-done__p { margin: 0; }

@media (max-width: 560px) { .otm-row { flex-direction: column; } }
